/* disabled 内容背景色透明 */
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	background-color: transparent !important;
}

/* 去记忆内容覆盖的阴影和背景色 */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
	background-color: transparent;
	background-image: none;
	transition: background-color 50000s ease-in-out 0s;
	/* 背景色透明  生效时长  过渡效果  启用时延迟的时间 */
}

/* main css */
/*===== 头部 =====*/

/* 中间内容 */
.sectionBox {
	background: #fff;
}

.affiliatePackage_box {
	padding: 15px;
	background: #fff;
	margin-bottom: 8px;
	font-size: 16px;
}

.affiliatePackage_title {
	font-weight: 600;
	font-size: 18px;
	padding: 0 10px;
}

.supportingParameters {
	margin-top: 10px;
	padding: 10px;
	border-top: 1px solid #b3b3b3;
}

.supportingParameters_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.starRating_icon {
	font-size: 20px;
	color: #F2BA38;
}

/* 个人资料 */
.personalInformation_box,
.onlineInformation_box {
	padding: 15px;
	background: #fff;
	/* margin-bottom: 8px; */
	font-size: 16px;
}

.personalInformation_title,
.onlineInformation_title {
	font-weight: 600;
	font-size: 18px;
	padding: 0 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #b3b3b3;
}

.personalInformation_form,
.onlineInformation_form {
	padding-top: 10px;
}

.inputList_box {
	border: 1px solid #b3b3b3;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	padding: 0 15px;
}

.inputList_box label {
	font-size: 14px;
	margin: 0;
	display: flex;
	align-items: center;
}

.inputList_box label span {
	color: #CC1919;
	margin-right: 10px;
}

.inputList_box input {
    width: 80%;
    text-align: right;
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 14px;
	padding: 0;
}

.inputList_box input:focus {
	border: none;
	box-shadow: none;
	outline: none;
}

.radioBox {
	width: 49%;
	padding: 0 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.radioBox label {
	width: auto;
	margin: 0;
}

.radioBox label input {
	width: auto;
	bottom: 3px;
}

.radioBox label span {
	color: #333;
}

.isCountry_select,
.isCountry_select:focus {
	border: none;
	box-shadow: none;
	outline: none;
	cursor: pointer;
}

.check_btn {
	border-left: 1px solid #b3b3b3;
	border-radius: initial;
	padding: 8px 12px;
}

.isPlace_select,
.isPlace_select:focus {
	border: none;
	box-shadow: none;
	outline: none;
	cursor: pointer;
}

.userInformation_submit {
	text-align: center;
	padding: 30px 15px;
}

.userInformation_submit .submit_btn {
	width: 100%;
}

.userInformation_submit .submit_btn,
.userInformation_submit .submit_btn:focus {
	background-color: #5a73a4;
	border-color: #5a73a4;
	color: #fff;
}

.userInformation_submit .submit_btn:hover,
.userInformation_submit .submit_btn:focus:hover {
	background-color: #455f93;
	border-color: #455f93;
	color: #fff;
}


/* 媒体查询css */
@media (max-width:768px) {
	.inputList_box input {
	    width: 50%;
	}
}

@media (min-width: 768px) and (max-width: 992px) {
	.inputList_box input {
	    width: 70%;
	}
}

@media (max-height: 540px) {
	.inputList_box input {
	    width: 70%;
	}
}

@media (min-width:1200px) {
	.inputList_box input {
	    width: 80%;
	}
}