.table_search_box {
    float: right;
    text-align: right;
	margin-bottom: 16px;
}

.table_search_box .search_input {
    border: 1px solid black;
	padding: 8px 12px;
	outline: 0;
}

.table_search_box .search_btn {
	padding: 8px 12px;
    margin-left: 5px;
    border-radius: 10px;
    background: #8C4A2A;
    color: #ecf0f1;
    border: 1px solid #8C4A2A;
}

.table_search_box .search_input:focus {
	outline: 1px solid #8C4A2A;
}

.table_search_box .search_btn:hover {
    background: #2e7db2;
    color: #602a10;
}

.table_item_box {
	width: 100%;
	display: flex;
	flex-direction: column;
	font-size: 16px;
}

.table_item_row {
	width: 100%;
	display: flex;
	align-items: stretch;
}

.table_item_row:nth-child(even) {
	background-color: #f9f9f9;
}

.item_row_base {
	display: block;
    vertical-align: top;
    line-height: 1.4;
    text-align: center;
    padding: 8px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.base_act {
	text-decoration: none;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.item_row_head .item_row_base {
    border-bottom: 1px solid #000;
	font-weight: 700;
}

.base_act .item_row_base span {
	display: none;
}

@media screen and (max-width: 1000px) {
.table_search_box {
    float: none;
    text-align: center;
}

.item_row_base {
	display: flex;
    border: 0;
    text-align: left;
    padding: 0px 8px 10px;
	
}

.base_act {
    flex-direction: column;
}

.table_item_row.item_row_body {
    margin-bottom: 10px;
	padding: 10px;
}

.item_row_head .item_row_base {
	display: none;
}

.base_act .item_row_base span {
	display: block;
	min-width: 50px;
}

}

.table_overflow_box{
	overflow-x: auto;
}
.table_overflow.type1{
	width: 1400px;
    margin: auto;
}
@media (max-width: 1000px) {
.table_overflow .item_row_head .item_row_base{
    display: block;
}
}