.mains{
	float: left;
	width: 998px;
	border: 1px solid #e5e5e5;
	margin: 20px 0;
	padding: 0 20px;
}

.tabs{
	float: left;
	height: 50px;
	border-top: 1px solid #E5E5E5;
	border-right: 1px solid #E5E5E5;
}

.tabs span{
	float: left;
	padding: 0 40px;
	line-height: 50px;
	border-left: 1px solid #E5E5E5;
	color: #333333;
	cursor: pointer;
}

.tabs span.active{
	color: #666666;
	font-weight: bold;
	position: relative;
	cursor: default;
}

.tabs span.active:after{
	content: '';
	width: 100%;
	height: 1px;
	background-color: #FFFFFF;
	position: absolute;
	bottom: -1px;
	left: 0;
}

.recBox{
	float: left;
	width: 100%;
	margin-bottom: 20px;
	box-sizing: border-box;
	border: 1px solid #E5E5E5;
	padding: 40px;
}

.recBox .content{
	float: left;
	width: 100%;
}

.recBox .send{
	float: left;
	width: 180px;
	height: 40px;
	line-height: 40px;
	background-color: #f8504c;
	color: #FFFFFF;
	border-radius: 20px;
	text-align: center;
	margin-top: 40px;
	cursor: pointer;
}

.recMask{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, .8);
	
	display: none;
	justify-content: center;
	align-items: center;
}

.sendBox{
	width: 400px;
	background-color: #FFFFFF;
	box-sizing: border-box;
	padding: 0 30px;
}

.sendBox .title{
	float: left;
	width: 100%;
	height: 50px;
	border-bottom: 1px solid #E5E5E5;
	
	font-size: 16px;
	font-weight: bold;
	line-height: 50px;
}

.sendBox .line{
	float: left;
	width: 100%;
	height: 40px;
	margin-top: 20px;
}

.sendBox .line .filde{
	float: left;
	width: 70px;
	line-height: 40px;
	position: relative;
	font-size: 14px;
	text-align: justify;
	text-align-last: justify;
	box-sizing: border-box;
	padding-left: 10px;
}

.sendBox .line .filde em{
	color: #ff6666;
	position: absolute;
	top: 0;
	left: 0;
}

.sendBox .line input[type=text]{
	float: right;
    width: 260px;
    line-height: 40px;
    font-size: 14px;
    color: #999999;
    box-sizing: border-box;
    border: 1px solid #EAEAEA;
    padding: 0 15px;
}

.sendBox .line input[type=file]{display: none;}

.sendBox .line .chose{
	float: left;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
    color: #999999;
	text-align: center;
	background-color: #E5E5E5;
	margin-left: 10px;
	cursor: pointer;
}

.sendBox .buttons{
	float: left;
	width: 100%;
	margin: 30px 0;
	display: flex;
	justify-content: center;
}

.sendBox .buttons span{
	width: 100px;
	font-size: 14px;
	line-height: 40px;
	border-radius: 20px;
	text-align: center;
	margin: 0 15px;
	cursor: pointer;
}
.sendBox .buttons .close{background-color: #E5E5E5; color: #333333;}
.sendBox .buttons .check{background-color: #007ce6; color: #FFFFFF;}

.sendBox .radio{
	float: right;
	width: 260px;
	height: 42px;
}

.sendBox .radio .filde{
	float: left;
	margin-right: 15px;
	line-height: 42px;
	font-size: 14px;
	color: #666666;
}

.sendBox .radio .name{
	float: left;
	margin-right: 15px;
	line-height: 42px;
	font-size: 14px;
}

.sendBox .radio input[type=radio]{
	-webkit-appearance: none;
    float: left;
    width: 16px;
    height: 16px;
	margin-right: 5px;
	margin-top: 13px;

    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid #999999;
    cursor: pointer;
    position: relative;
}

.sendBox .radio input[type=radio]:checked, .sendBox .radio input[type=radio]:hover {
    border-color: #00B5AD;
}

.sendBox .radio input[type=radio]:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00B5AD;
    position: absolute;
    top: 3px;
    left: 3px;
}