/**
 * 总登录页页面样式、总主页面样式
 * 2019/12/05 
 */
@charset "utf-8";
*{
	padding:0;
	margin:0;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;}

body {   
	font-family: PingFangSC-Regular,Microsoft YaHei, "微软雅黑";
}
/*视频焦点事件*/
video:focus{
	outline: none;/*去除轮廓线*/
}
/*a标签鼠标经过时*/
a:hover{
	text-decoration: none;/*去除下划线*/
}
/*a标签焦点事件*/
a:focus{
	outline: none;/*去除轮廓线*/
	text-decoration: none;/*去除下划线*/
}
.b-answer{
	overflow: auto;
}
.b-answer-hidden{
	overflow: hidden;
}
.web-bg{
	position:fixed;/*固定定位*/
	top: 0;/*距上0px*/
	left: 0;/*距左0px*/
	width: 100vw;
	height: 100vh;
	z-index:-10;/*层级*/
	zoom: 1;
	background-color:black;/*背景颜色*/
	background-image: url(../pro/img/bj064.jpg);
	background-size: 100% 100%;
}
.web-bg img{
	width: 100vw;
	height: 100vh;
}
.web-bg video{
	width: 100%;
	height: 100%;
	object-fit: fill;
}
/*logo*/
.d-logo{
    padding-top: 6.33vh;
    text-align: center;
    height: 23vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.d-logo-pic{
	height: 8.4vh;
    display: inline-block;
    filter: drop-shadow(-0.36vw 0.64vh 0.36vw rgba(0,0,0,0.5));
}
.d-logo-pic>img{
	height: 8.4vh;
}

/*表单*/
.d-login-form{
    width: 28.125vw;
    margin: auto;
    height: 41.67vh;
    padding: 2.81vw;
    box-sizing: border-box;
    border-radius: 0.25vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15.6vh;
    margin-top: 4.7vh;
    background-image: url(../pro/img/bj063.png);
    background-size: 100% 100%;
    animation: fold13 1s linear;
    backdrop-filter: blur(1px);
    filter: drop-shadow(-0.36vw 0.64vh 0.36vw rgba(0,0,0,0.5));
    position: relative;
}
.d-content::before{
    content: "";
    width: 19.7vw;
    height: 48vh;
    padding: 0.6vh 0.35vw;
    position: absolute;
    top: 38vh;
    right: 40vw;
    z-index: -1;
    background-image: url(../pro/img/tub458.gif);
    background-size: 100% 100%;
    transform: rotateZ(180deg);
    opacity: 0.8;
}
@keyframes fold13{
0% {
		height: 2px;
		padding: 0;
		transform: scaleX(0);
	}

	50% {
		height: 2px;
		padding: 0;
		transform: scaleX(1);
	}

	100% {
		transform: scaleY(1);
	}
}
/*用户名和密码*/
.inp-user{
    width: 100%;
    height: 7vh;
    border-radius: 0.63vw;
    letter-spacing: 1px;
    font-size: 1.14vw;
    padding: 0 1vw;
    color: #fff;
    background-color: rgba(108,174,255,0.2);
    border: rgba(0,0,0,0.2);
    margin: 2.84vh 0 0;
    animation: fadein 2s linear;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
     -webkit-transition-delay: 99999s;
     -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}
.d-login-form input ,.d-login-form h5 , .d-login-form button{
	animation: twinkle1 0.3s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}
@keyframes twinkle1 {
	0% {
		opacity: 0;
		transform: none;
	}

	100% {
		opacity: 1;
		transform: none;
	}
}
.d-content{
	height: 65vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inp-user:first-child{
	margin-top: 0;
}
.inp-user:focus{
	box-shadow: 0 0 0 2px #29bafd;
}
.ys001:focus{
    color: #fff;
	box-shadow: unset;
}
input[type=text]::-webkit-input-placeholder,input[type=password]::-webkit-input-placeholder{
	color: #f3f6f9;
}
input[type=text]::-moz-input-placeholder,input[type=password]::-moz-input-placeholder{
	color: #f3f6f9;
}
/*提示信息文本*/
.h5-tip{
    text-align: left;
    color: #fff;
    font-size: 1.14vw;
    height: 1.14vw;
    width: 100%;
    margin: 2.84vh 0 0 0;
    line-height: 1;
    padding-left: 1vw;
    letter-spacing: 1px;
    /*display: none;*/
    animation: fadein 2s linear;
}
/*登录按钮*/
.dl-register{
	width: 100%;
	height: 7vh;
	margin: 2.84vh 0 0 0;
	border-radius: 0.63vw;
	font-size: 1.14vw;
	background-color: #0066ff;
	box-sizing: border-box;
	display: block;
	color: #fff;
	letter-spacing: 1px;
	/* margin-bottom: 1.5vh; */
	padding: 0;
	animation: fadein 2s linear;
}
.dl-register:hover{
	color: #fff;
	background-color: #2a7df9;
}
.dl-register:active{
	outline: none!important;
	color: #fff;
	background-color: #0066ff;
	border: unset !important;
	box-shadow: none;
}
.dl-register:focus{
	outline: none!important;
	color: #fff;
}
.b-register:hover{
	color:#fff;/*文本颜色*/
}
/*登录按钮鼠标经过时*/
.b-register:focus{
	outline: none!important;
	color:#fff;/*文本颜色*/
}
.b-register:active{
	color:#fff!important;/*文本颜色*/
	outline: none;
	background-color: #a20000;/*背景颜色*/
}
/*表单文本*/
.d-form-text{
	text-align: center;/*文本居中*/
	color: #797878;/*文本颜色*/
	margin: 5.5vh auto 0;/*自动居中*/
	font-size: 14px;/*字号大小*/
}
.dl003{
	text-align: center;
	background: rgba(0,0,0,0.05);
	color: #fff;
	width: 75%;
	margin: 4vh auto 0vw;
	height: 16vh;
	display: block;
	line-height: 2vh;
	font-size: 2.8vh;
	border-radius: 8px;
	animation: dh001 1s ease;
	padding: 4.2vh;
	text-shadow: 0px 2px 2px rgba(0,0,0,0.8);
	box-shadow: -0.63vw 1.11vh 0.63vw rgba(0,0,0,0.5);
}
@keyframes dh001{
	0%{
		opacity: 0;
		transform: scale(0.2);
	}
	100%{
		opacity: 1;
		transform: scale(1);
	}
}
.dl004{
	margin-right: 3vw;
}
.dl005{
	text-align: center;
	color: #fff;
	display: block;
	line-height: 9vh;
	font-size: 2.8vh;
	animation: dh001 1s ease;
}
.dl006{
	height: 10vh!important;
	padding: 0;
	line-height: 10vh!important;
}
.dl007{
	width: 100vw;
	display: flex;
	justify-content: center;
}
.dl008{
	height: 6vh;
	margin-top: 2vh;
	filter: drop-shadow(-5px 5px 2px rgba(0,0,0,0.5));
}
.dl009{
	height: 6vh;
	margin-right: 2vw;
	margin-top: 2vh;
	filter: drop-shadow(-5px 5px 2px rgba(0,0,0,0.5));
}

/*退出*/
.a-exit{
    position: fixed;
    right: 1vh;
    top: 1vh;
    height: 5vh;
    width: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0.63vw;
}
.a-exit img{
	width: 40%;
}
/*退出单击时*/
.a-exit:hover {
    background-color: rgba(18,38,100,0.6);
}
.a-exit:active {
    background-color: #0066ff;
}


@media screen and (max-width:768px){
	.d-login-form{
		width: 30vw;
		height: 47vh;
	}
	.b-register {
	    width: 24vw;
	}
	.inp-user {
	    width: 24vw;
	}
	.dl-register{
		 width: 24vw;
	}
	.dl003{
		border-radius: 5px;
		line-height: 4vh;
		padding: 3.5vh 0;
		width: 80%;
	}
	.dl005{
		border-radius: 5px;
		line-height: 4vh;
		padding: 2vh;
	}
	.dl006 {
	    padding: 0;
	}
}
.dl010{
	margin: 7vh auto 0vw;
}
.dl011{
	color: #fff;
	font-size: 7vh;
	letter-spacing: 0.8vw;
}
.dl012{
	padding-top: 9vh;
}
.dl013{
	height: 10vh;
	vertical-align: top;
	margin-right: 2vw;
}

/* logo */
.d-logo-pic span{
    font-size: 8.8vh;
    line-height: 1;
    font-weight: bold;
    font-family: 'Source Han Sans CN';
    /* background: linear-gradient(to right, #fbe2ba 10%,#f8c06b 50%,#fbe2ba 90%); */
    background: linear-gradient(to right, #5aabff 10%,#b3e6ff 50%,#4ca4ff 90%);
    -webkit-background-clip: text;
    color: transparent;
    vertical-align: middle;
    display: block;
    letter-spacing: 5px;
    text-align: center;
    animation: flipinX 2s linear;
}
@keyframes flipinX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        transform: perspective(400px) rotateX(0);
        opacity: 1;
    }
}
/* 更多应用 */
.foot-moreApp{
	width: 12vw!important;
	background: rgba(0, 0, 0, 0.1);
	background-size: 40%;
	color: #fff!important;
	display: flex!important;
	align-items: center;
	justify-content: center;
	font-size: 2vh;
	font-family: PingFang SC,Microsoft YaHei, "微软雅黑";
}
.foot-moreApp img{
	margin-right: 0.4vw;
	height: 3vh;
}


/* 弹出框 */
.dlmt{
	height: 60vh;
	width: 60vw;
	border-radius: 1.25vw;
	-webkit-box-shadow: -0.36vw 0.64vh 0.36vw rgba(0,0,0,0.5);
	box-shadow: -0.36vw 0.64vh 0.36vw rgba(0,0,0,0.5);
	margin: auto;
}
.dlmt::-webkit-scrollbar {
	display:none;
}
.modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0;
}
.modal-content {
    border: 0;
    box-shadow: none;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #a20000;
}
.dlmt-title{
	font-size: 3vh;
	color: #fff;
	padding: 2vh 2vw;
	text-shadow: 0px 2px 2px rgba(0,0,0,0.8);
}
.dlmt-con{
	overflow: hidden;
	padding: 2vh 2vw;
}
.dlmt-con ul{
	height: 100%;
	margin: 0;
	overflow-y: scroll;
}
.dlmt-con ul::-webkit-scrollbar{
	display: none;
	opacity: 0;
}
.dlmt-con .dc-item{
	color: #fff;
	font-size: 2.4vh;
	text-shadow: 0px 2px 2px rgba(0,0,0,0.8);
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 0 0 4vh;
	text-align: justify;
	letter-spacing: 0.2vw;
}
.dlmt-con .dc-item:last-child{
	margin-bottom: 0;
}
.dlmt-con .dc-con{
	padding-left: 0.4vw;
}
.dlmt-con .dc-con p{
	margin: 0;
}
.dlmt-con .dc-con p:last-child{
	padding-top: 1vh;
	line-height: 1.8;
}
.dlmt-confirm{
	width: 5vw;
	color: #fff!important;
	font-size: 1.8vh;
	font-family: 'PingFang SC';
	letter-spacing: 1px;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 16px;
	box-shadow: none;
	text-shadow: 0px 2px 2px rgba(0,0,0,0.8);
}
.dlmt-confirm:first-child{
	margin-right: 2vw;
}
.foot-item-tcc.dlmt-confirm:active{
	background-color: #a20000;
	box-shadow:  inset 0 0 0 2px #fff!important;
}

/* 左上角logo */
.d-logo-company{
	text-align: left;
	padding-left: 3vw;
	position: relative;
	top: -1vh;
}
.d-logo-company img{
	height: 5vh;
	filter: drop-shadow(-3px 4px 1px rgba(0,0,0,0.5));
}
/* ---------隐私复选框------------ */
.ysdl1 input{
	margin: 0;
	margin-right: 0.5vw;
}
input[type="checkbox"] {
    width: 1.3vw;
	height: 2.2vh;
	outline: none;
}
.ysdl2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 8.33vh;
    position: absolute;
    bottom: 0;
    left: calc((100% - 10vw) / 2);
}
.ysdl2 a{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.63vw;
}
.ys001{
    color: #fff;
    font-size: 2vh;
    line-height: 2vh;
    position: absolute;
    bottom: 1.165vh;
    left: calc((100% - 10vw) / 2);
    width: 10vw;
    height: 6vh;
    border-radius: 0.63vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.ys001:hover {
	color: #fff;
	background-color: rgba(30,171,237,0.2);
}
.ys001:active {
	color: #fff;
	background-color: #159cdb;
	text-shadow:none;
}
input[type="checkbox"]{
	width: 1.6vw;
	height: 2.8vh;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	line-height: 18px;
	position: relative;
	margin-right: 1vw;
	margin-top: 0;
}
input[type="checkbox"]::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #adadad;
	width: 100%;
	height: 100%;
	border: 1px solid #adadad;
}
input[type="checkbox"]:checked::before{
	content: "\2713";
	background-color: #056e;
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	border: 1px solid #056e;
	color:#fff;
	font-size: 1.8vh;
	font-weight: bold;
	line-height: 1.8vh;
	padding: 0.3vh 0;
}
.ys002{
	color: #fff;
	font-size: 2vh;
}
.ys002:hover{
	color: #fff;
}
.ys002:focus{
	color: #fff;
}
.ysdl2 input:hover{
	cursor:pointer;
}
.ys003{
	text-decoration: underline;
	margin-left: 0.5vw;
}
.ys003:hover{
	opacity: 0.85;
}
.ys003:active{
	transform: scale(0.9);
}
@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}