body, html {
	height: 95%;
	/*overflow: hidden;*/
	position: relative;
}
#silderBox {
	margin-bottom: 10px;
	display: block
}
#box{
	position: relative;
	width: 100%;
	height: 40px;
	margin: 0 auto;
	margin-top: 10px; 
	background-color: #e8e8e8;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}
.bgColor{
	position: absolute;
	left:0;
	top:0;
	width:40px;
	height: 40px;
	background-color: lightblue;
}
.txt{
	position: absolute;
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #000;
	text-align: center;
}
.slider{
	touch-action: none;
	position: absolute;
	left:0;
	top:0;
	width: 50px;
	height: 40px;
	border: 1px solid #ccc;
	background: #fff;
	text-align: center;
	cursor: move;
}
.slider>i{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}
.slider.active>i{
	color:green;
}





.dsb-reg-container, .dsb-login-container {
	width: 100%;
	height: 100%;
	background-color: dodgerblue;
	position: relative;
	background-color: #000;
	background-image: url('../images/dsb-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center;
}
.dsb-reg-box, .dsb-login-box {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 500px;
	height: 550px;
	/* border: 1px solid #229EF2; */
	padding: 10px 60px;
	background-color: rgba(34, 158, 242, 0.3);
	box-shadow: 0 0 5px rgba(0,0,0,.9);
	border-radius: 10px;
}
.dsb-login-box {
	display: none;
	height: 440px;
}
.dsb-login-box.active {
	display: block
}
.dsb-title {
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	color: #fff;
}
.dsb-login-box .dsb-title {
	margin-bottom: 0px;
}
#forgetBox .dsb-title {
	margin-bottom: 60px;
}
.form-row {
	position: relative;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
}
.form-row.vipRadio {
	justify-content: flex-start;
}
.form-row.vipRadio .form-check-row {
	color: #00ffff
}
.form-row-input {
	width: 100%;
	/* border: 1px solid #229EF2; */
	outline: none;
	height: 40px;
	line-height: 40px;
	padding: 0px 10px;
	color: #fff;
	background-color: rgba(34, 158, 242, 0.3);
	border-radius: 6px;
}
input::-webkit-input-placeholder {
	color: #fff;
}
.dsb-msg {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	right: 10px;
	line-height: 40px;
	color: #F56D6D;
}
.dsb-msg.sub {
	position: relative;
	right: auto;
	top: auto;
	bottom: auto;
	color: #96eae3;
}
.error .dsb-msg {
	display: block
}
.error .form-row-input {
	border-color: #F55A5A;
}
.form-item {
	flex: 1;
	position: relative;
}
.form-item .get-code-btn {
	background-color: dodgerblue;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin-left: 20px;
	color: #fff;
	cursor: pointer;
	transition: all .3s;
}
.form-item .get-code-btn:hover {
	background-color: royalblue
}
.form-item .get-code-btn.success {
	background-color: #6FB1F1;
	cursor: default;
	color: #fff
}
.form-check-row {
	position: relative;
	line-height: 40px;
	height: 40px;
	color: #999
}
.form-radio-row {
	position: relative;
	line-height: 40px;
	height: 40px;
	color: #333;
	font-weight: bolder;
}
.check-box {
    cursor: pointer;
    width: 100%;
    text-align: center;
}
label.check-box {
	display: inline;
	font-weight: normal;
}
.radio-box {
    cursor: pointer;
    width: 100%;
    text-align: center;
}
.check-box input {
	display: none;
}
.radio-box input {
	display: none;
}
.check-box-style {
	display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    border: 1px solid dodgerblue;
    vertical-align: middle;
    border-radius: 1px;
    margin-right: 3px;
    transition: all .2s;
    border-radius: 50%;
}
.radio-box-style {
	display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    border: 1px solid dodgerblue;
    vertical-align: middle;
    border-radius: 1px;
    margin-right: 3px;
    transition: all .2s;
    border-radius: 50%;
}
.check-box-style::before {
    content: '';
    height: 8px;
    width: 8px;
    top: 3px;
    left: 3px;
    position: absolute;
    background: #00ffff;
    border-radius: 15%;
    transform: scale(0);
    transition: all .2s;
    border-radius: 50%;
}
.radio-box-style::before {
    content: '';
    height: 8px;
    width: 8px;
    top: 3px;
    left: 3px;
    position: absolute;
    background: dodgerblue;
    border-radius: 15%;
    transform: scale(0);
    transition: all .2s;
    border-radius: 50%;
}
#agreeBtn:checked+.check-box-style::before {
    transform: scale(1);
}
input[name=vip]:checked+.check-box-style::before {
    transform: scale(1);
}
input[name=serviceType]:checked+.radio-box-style::before {
    transform: scale(1);
}
.dsb-submit-btn {
	width: 100%;
	border: 0;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	background-color: dodgerblue;
	transition: all .3s;
	color: #fff;
	text-align: center;
	border-radius: 6px;
}
.dsb-submit-btn:hover {
	background-color: royalblue;
}
.form-row a {
	color: #fff;
}
.form-row a:hover {
	color: #00ffff
}
.to-login {

}
.submit-msg-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200
}
.submit-msg-container.active {
	display: block
}
.mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5)
}
.submit-msg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 450px;
	height: 300px;
	background-color: #fff;
	border-radius: 2px;
	box-shadow: 0 0 15px rgba(0,0,0,.5);
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.submit-msg-main {
	font-weight: bolder;
	font-size: 15px;
}
.submit-msg-footer {
	display: flex;
	justify-content: space-around;
	height: 40px;
	align-items: center;
}
.submit-msg-footer a {
	background-color: dodgerblue;
	color: #fff;
	flex: 1;
	text-align: center;
	margin: 0px 10px;
	line-height: 35px;
	transition: all .3s;
}
.submit-msg-footer a:hover {
	background-color: royalblue;
}
.dsb-footer {
	color: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
}
.dsb-footer  p {
	line-height: 40px;
}
.submit-msg-close {
	position: absolute;
	top: 0;
	right: -40px;
	width: 30px;
	height: 30px;
	background-color: #666;
	border-radius: 50%;
	cursor: pointer;
}
.submit-msg-close::before, .submit-msg-close::after {
	content: '';
	position: absolute;
	width: 70%;
	height: 2px;
	background-color: #999;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
} 
.submit-msg-close::before {
	transform: rotate(45deg);
}
.submit-msg-close::after {
	transform: rotate(-45deg);
}
.dsb-login-box .dsb-submit-btn {
	/* margin-top: 30px; */
}
.dsb-login-form {
	display: none
}
.dsb-login-form.active {
	display: block
}
.login-tabs {
	display: flex;
	justify-content: space-around;
	color: #fff;
	height: 50px;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(34, 158, 242, 0.6);
}
.login-tabs-item {
	cursor: pointer;
	font-size: 16px;

}
.login-tabs-item.active {
	color: #00ffff
}
.service-options .error .dsb-msg{
	left: 0;
	top: auto;
	top: 100%;
	line-height: 20px;
	font-weight: bolder;

}
.box-msg {
	/* position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto; */
	display: flex;
	width: 500px;
	height: 60px;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}
.box-msg-item {
	width: 120px;
	background-color: royalblue;
	border-radius: 5px
}
.box-msg-item a {
	line-height: 40px;
	display: block;
	text-align: center;
	color: #fff;
	letter-spacing: 2px
}




@media (max-width:768px) {

	.box-msg {
		width: 100%;
		padding: 0px 10px
	}
	.submit-msg-container {
		padding: 0px 10px;
	}
	.dsb-reg-container, .dsb-login-container {
		background-position: center center
	}
	.dsb-reg-box, .dsb-login-box {
		height: 100%;
		padding: 20px;
	}
	.submit-msg {
		height: 400px;
		width: 100%
	}
	.submit-msg-close {
		right: 10px;
		top: 10px;
	}
	.service-options .form-row {
		flex-direction: column;
	}
}