.search_box{
	width: 100%;
    height: 140px;
    background: #8B8B8C;
    align-items: center;
    display: flex;
    justify-content: center;
}
input[type="search"]{
	height: 90px;
    width: 1165px;
    border-radius: 50px;
    text-align: center;
    font-size: 34px;
}

.table{
    width: 100%;
    font-size: 30px;
    color: black;
    background: #fff;
}
.conten-box{
	overflow: hidden;
	overflow-y: scroll;
	white-space: nowrap;
	height: 470px;
	width: 100%;
}
.conten-box::-webkit-scrollbar{
	width: 0;
}

tr{
    height: 90px;
    border-color: #EEEEEF;
}

.sure_box{
	display: flex;
    justify-content: center;
}
.sure_btn{
    width: 321px;
    height: 77px;
    background: #B82E32;
    color: white;
    font-size: 36px;
    border-radius: 40px;
    letter-spacing: 4px;
    /*position: absolute;
    bottom: 20px;		*/
	margin: 50px;
}


.radio_box {
    position: relative;
    /*line-height: 30px;*/
}

input[type="radio"] {
    width: 35px;
	height: 35px;
    /* opacity: 0; */
}

label {
    position: absolute;
    /*left: 5px;
    top: 3px;*/
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: 1px solid #B82E32;
	cursor: pointer;
}
        
/*设置选中的input的样式*/
/* + 是兄弟选择器,获取选中后的label元素*/
input:checked+label { 
    background-color: #B82E32;
    /*background-color: #FFFFFF;*/
    border: 1px solid #B82E32;
}
 /*添加的加号与label进行拼接(一个矩形边框去掉上和左的边框),再旋转45度*/
input:checked+label::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 20px;
    top: 3px;
    left: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    
    /*内里是圆圈的写法*/
    /*position: absolute;
    content: "";
    width: 29px;
    height: 29px;
    background: #B82E32;
    border-radius: 50%;
    top: 3px;
    left: 3px;*/
}