@font-face{
	font-family: "BEBAS";
	src: url('../font/BEBAS.ttf'),url('../font/BEBAS.eot');
	font-weight: normal; 
	font-style: normal;
}

/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
    margin: 0;
    padding: 0;
}

/** 设置默认字体 **/
body,button, input, select, textarea /* for ie */ {
    font: 14px/1.0 "Arial","PingFangSC-Regular","Source Han Sans CN","Microsoft YaHei","黑体","宋体","KaiTi",sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal;}
address, cite, dfn, em, var, i { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读, 让 small 正常化 */

/** 重置列表元素 **/
ul, ol { list-style: none; }

/** 重置文本格式元素 **/
a { color: #333; text-decoration: none; -webkit-tap-highlight-color: rgba(0,0,0,0);}
a:hover { text-decoration: none; cursor: pointer; }

sup { vertical-align: text-top; font-size: 0.5em;} /* 重置, 减少对行高的影响 */
sub { vertical-align: text-bottom; }

/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车：让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; outline: none; border: none; background: none;} /* 使得表单元素在 ie 下能继承字体大小 */
button, input[type="button"] { cursor: pointer;-webkit-appearance: none;}
input::-ms-clear{display:none;}/*隐藏文本框叉子*/
input::-ms-reveal{display:none;}/*隐藏密码框小眼睛*/
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }

/* 重置 HTML5 元素 */
article, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
    display: block;
    margin: 0;
    padding: 0;
}
strong{
	font-weight: normal;
}
img{
	vertical-align: top;
	image-rendering: -webkit-optimize-contrast;
  	image-rendering: crisp-edges;
	/* -ms-interpolation-mode: nearest-neighbor;
    image-rendering: pixelated; */
}

html{
	font-size: 100px;
}
body{
	color: #333;
	background: #f7f2f2;
	overflow-x: hidden;
	height: 100vh;
}
.clear-both::after{
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}
.w1600{
    width: 82%;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
}

.menu-box{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	width: 3.2rem;
	height: 100%;
	background-color: #2c2c2c;
}
.menu-box .logo-a{
	display: block;
	height: 0.9rem;
	line-height: 0.9rem;
	padding-left: 0.56rem;
}
.menu-box .logo-a img{
	vertical-align: middle;
	width: 1.73rem;
}
.menu-box .menu-ul{
	height: calc(100vh - 0.9rem);
	display: flex;
	flex-direction: column;
}
.menu-box .menu-ul li{
	flex: 1;
	box-sizing: border-box;
	border-top: 1px solid #565656;
}
.menu-box .menu2-ul li{
	flex: none;
	height: 0.77rem;
}
.menu-box .menu-ul li a{
	display: flex;
	align-items: center;
	height: 100%;
	padding-left: 0.56rem;
	position: relative;
}
.menu-box .menu-ul li a::before{
	content: "";
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 0.1rem;
	height: 0;
	background-color: #de5022;
	opacity: 0;
	transition: all 0.5s ease;
}
.menu-box .menu-ul li a::after{
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #3d3d3d;
	opacity: 0;
	transition: all 0.5s ease;
}
.menu-box .menu-ul li em{
	position: relative;
	z-index: 4;
	width: 0.22rem;
	height: 0.22rem;
	overflow: hidden;
}
.menu-box .menu-ul li img{
	height: 100%;
	transition: all 0.5s ease;
}
.menu-box .menu-ul li span{
	position: relative;
	z-index: 4;
	font-size: 0.18rem;
	margin-left: 0.16rem;
	color: #fff;
	transition: all 0.5s ease;
}
/* .menu-box .menu-ul li.active img{
	filter: drop-shadow(0.22rem 0 #de5022);
} */
.menu-box .menu-ul li.active span{
	color: #de5022;
}
.menu-box .menu-ul li.active img{
	margin-left: -0.24rem;
}
.menu-box .menu-dl{
    display: none;
    position: absolute;
    width: 0.66rem;
    height: 100%;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
	background-color: #de5022;
    z-index: 12;
    transition: all 0.5s ease;
}
.menu-box .menu-dl dt{
    width: 24px;
}
.menu-box .menu-dl dt i{
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.5s ease;
}
.menu-box .menu-active{
	
}
.menu-box .menu-active dt i:nth-of-type(1){
    transform: rotate(45deg) translate(5.5px, 6px);
}
.menu-box .menu-active dt i:nth-of-type(2){
    opacity: 0;
}
.menu-box .menu-active dt i:nth-of-type(3){
    transform: rotate(-45deg) translate(5.5px, -6px);
}

.box{
	margin-left: 3.2rem;
	min-height: 100%;
}

.head-box{
	width: 100%;
	height: 0.9rem;
	line-height: 0.9rem;
	box-sizing: border-box;
	padding-right: 0.5rem;
	background-color: #de5022;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.head-box img{
	flex-shrink: 0;
	width: 0.46rem;
}
.head-box span{
	font-size: 0.18rem;
	margin-left: 0.18rem;
	color: #fff;
}

.content-box{
	width: 100%;
	box-sizing: border-box;
	padding: 0.45rem 0.5rem 0;
}
.content-box .title-h4{
	position: relative;
	z-index: 3;
	width: 2.46rem;
	height: 0.58rem;
	box-sizing: border-box;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	background-color: #fff;
	padding: 0.24rem 0 0.1rem 0.48rem;
	font-size: 0.24rem;
	font-weight: bold;
	box-shadow: 0 0 0.15rem rgba(0,0,0,0.15);
}
.content-box .title-h5{
	text-align: right;
	height: 0.6rem;
	line-height: 0.6rem;
	font-size: 0.16rem;
	color: #a09e9e;
}
.content-box .title-h4::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 0.3rem;
	bottom: -0.3rem;
	left: 0;
	background-color: #fff;
}
.content-box .title-h4 span{
	display: none;
}
.content-box .title-h4 span:nth-of-type(1){
	display: block;
}
.content-box .content-div{
	position: relative;
	box-sizing: border-box;
	min-height: calc(100vh - 2.54rem );
	background-color: #fff;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 0.56rem 0.48rem;
	box-shadow: 0 0 0.15rem rgba(0,0,0,0.15);
}
.btn{
	display: block;
	width: 1.56rem;
	height: 0.44rem;
	text-align: center;
	line-height: 0.44rem;
	border-radius: 5px;
	background-color: #eb5e07;
	color: #fff;
	font-size: 0.18rem;
	transition: all 0.5s ease;
}
.title-dl{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	padding-bottom: 0.32rem;
	margin-bottom: 0.4rem;
	border-bottom: 1px solid #e0e0e0;
}
.title-dl dt{
	margin-bottom: 0.06rem;
}
.title-dl dd{
	
}

.upload-dl{
	flex-shrink: 0;
	width: 2.24rem;
	height: 1.68rem;
	border-radius: 5px;
	background-color: #f7f2f2;
	position: relative;
}
.upload-dl dt{
	position: absolute;
	width: 70%;
	top: 50%;
	left: 15%;
	text-align: center;
	transform: translateY(-50%);
}
.upload-dl dt img{
	width: 0.34rem;
}
.upload-dl dt p{
	font-size: 0.14rem;
	color: #999;
	line-height: 1.6;
	margin-top: 0.14rem;
}
.upload-dl dd{
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
}
.upload-dl dd .controls,
.upload-dl dd .controls .btn-group,
.upload-dl dd .controls .btn,
.upload-dl dd .controls .file{
	vertical-align: top;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
	margin: 0;
}
.upload-dl dd .controls{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 6;
}
.upload-dl dd .controls .upload-btn,
.upload-dl dd .controls .fa{
	display: none;
}
.upload-dl dd .js-img-list-f{
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.upload-dl dd .img-list{
	position: relative;
	width: 100%;
	height: 100%;
}
.upload-dl dd .img-list .fancybox-img{
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}
.upload-dl dd .img-list .img-list-action{
	position: absolute;
	z-index: 7;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0.3rem;
	line-height: 0.3rem;
	text-align: center;
	background-color: rgba(0,0,0,0.6);
}
.upload-dl dd .img-list .img-list-action a{
	display: block;
	color: red;
	font-size: 0.16rem;
}

.upload-div{
	flex-shrink: 0;
	width: calc(100% - 1.26rem);
	display: flex;
	flex-wrap: wrap;
}
.upload-div .controls{
	flex-shrink: 0;
	width: 2.24rem;
	height: 1.68rem;
	border-radius: 5px;
	overflow: hidden;
	background-color: #f7f2f2;
	position: relative;
	margin-right: 0.2rem;
}
.upload-div .controls h6{
	position: absolute;
	width: 70%;
	top: 50%;
	left: 15%;
	text-align: center;
	transform: translateY(-50%);
}
.upload-div .controls h6 img{
	width: 0.34rem;
}
.upload-div .controls h6 p{
	font-size: 0.14rem;
	color: #999;
	line-height: 1.6;
	margin-top: 0.14rem;
}
.upload-div .controls .btn{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}
.upload-div .controls .file{
	width: 100%;
	height: 100%;
	vertical-align: top;
	cursor: pointer;
}
.upload-div .js-img-list-f{
	flex: 1;
	font-size: 0;
}
.upload-div .img-list{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 2.24rem;
	height: 1.68rem;
	border-radius: 5px;
	overflow: hidden;
	margin-right: 0.2rem;
	margin-bottom: 0.2rem;
}
.upload-div .img-list .fancybox-img{
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}
.upload-div .img-list .img-list-action{
	position: absolute;
	z-index: 7;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0.3rem;
	line-height: 0.3rem;
	text-align: center;
	background-color: rgba(0,0,0,0.6);
}
.upload-div .img-list .img-list-action a{
	display: block;
	color: red;
	font-size: 0.16rem;
}



.invoice-div{
	
}
.invoice-div .form{
	
}
.invoice-div .form .ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -0.3rem;
}
.invoice-div .form li{
	flex-shrink: 0;
	width: 48%;
	margin-top: 0.3rem;
	display: flex;
	position: relative;
}
.invoice-div .form .length-li{
	width: 100%;
}
.invoice-div .form li .zs-i{
	position: absolute;
	right: 0.1rem;
	bottom: 0.1rem;
	font-size: 0.14rem;
	color: #999;
}
.invoice-div .form li span{
	flex-shrink: 0;
	width: 1.26rem;
	height: 0.44rem;
	line-height: 0.44rem;
	font-size: 0.18rem;
}
.invoice-div .form .bt-li span::after{
	content: "*";
	color: #ff0000;
	margin-left: 0.05rem;
}
.invoice-div .form li input[type="text"]{
	flex: 1;
	min-width: 0;
	height: 0.44rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 0.18rem;
	box-sizing: border-box;
	padding: 0 0.12rem;
}
.invoice-div .form button{
	margin-top: 0.5rem;
	margin-left: 1.26rem;
}
.invoice-div .form .btn-div{
	margin-top: 0.5rem;
	margin-left: 1.26rem;
}
.invoice-div .form .btn-div button{
	display: inline-block;
	vertical-align: top;
	margin: 0 0.3rem 0 0;
}
.invoice-div .form li input[disabled],
.company-div .form li textarea[disabled]{
	background-color: #f2f2f2;
}

.invoice-div .hide-form li{
	display: none;
}
.invoice-div .hide-form li:nth-of-type(1){
	display: flex;
}
.invoice-div .hide-form li:nth-of-type(2){
	display: flex;
}



.modify-div{
	
}
.modify-div .form{
	
}
.modify-div .form .ul{
	display: block;
	width: 50%;
	margin: -0.3rem auto 0;
}
.modify-div .form li{
	width: 100%;
}
.modify-div .form button{
	margin: 0.5rem auto 0;
}
.modify-div .div{
	position: absolute;
	width: 1.56rem;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: none;
}
.modify-div .div img{
	width: 1.1rem;
}
.modify-div .div p{
	font-size: 0.3rem;
	margin: 0.36rem 0;
}
.modify-div .div span{
	display: block;
	height: 0.42rem;
	line-height: 0.42rem;
	border: 1px solid #EB5E07;
	color: #EB5E07;
	border-radius: 5px;
	font-size: 0.16rem;
	cursor: pointer;
}


.audience-div{
	
}
.audience-div .dl{
	font-size: 0;
}
.audience-div .dl dt{
	display: inline-block;
	vertical-align: top;
	width: 1.26rem;
	line-height: 0.44rem;
	font-size: 0.18rem;
}
.audience-div .dl dd{
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 1.26rem);
}
.audience-div .dl dd a{
	
}
.audience-div .dl dd #content{
	width: 5.0rem;
	margin-top: 0.36rem;
	position: relative;
}
.audience-div .dl dd #content::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}
.audience-div .dl dd .img1{
	width: 100%;
}
.audience-div .dl dd .img2{
	position: absolute;
	bottom: 6.2%;
	right: 7.2%;
	z-index: 3;
	width: 19%;
	height: auto;
}
.audience-div .dl dd .div{
	position: absolute;
	transform: translateY(-50%);
	top: 54%;
	left: 5.2%;
	z-index: 3;
	width: 88%;
	text-align: center;
	color: #444;
	box-sizing: border-box;
	padding: 0 0.2rem;
}
.audience-div .dl dd h5{
	font-size: 0.26rem;
	line-height: 1.3;
	font-weight: bold;
}
.audience-div .dl dd h6{
	font-size: 0.22rem;
	font-weight: bold;
	margin-top: 0.12rem;
}
.audience-div .dl dd h6 span{
	color: #EB5E07;
}

.materlal-div{
	
}
.materlal-div .ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -0.3rem;
}
.materlal-div .ul li{
	flex-shrink: 0;
	width: 48%;
	margin-top: 0.3rem;
	display: flex;
}
.materlal-div .ul li span{
	flex-shrink: 0;
	width: 1.26rem;
	height: 0.44rem;
	line-height: 0.44rem;
	font-size: 0.18rem;
}
.materlal-div .ul li a{
	flex: 1;
	height: 0.44rem;
	line-height: 0.44rem;
	color: #999;
	border-radius: 5px;
	font-size: 0.18rem;
	box-sizing: border-box;
	padding: 0 0.2rem;
	background-color: #f7f2f2;
	background-image: url(../img/tb2.png);
	background-size: 0.2rem;
	background-repeat: no-repeat;
	background-position: right 0.2rem center;
	transition: all 0.5s ease;
}
.materlal-div .ul li p{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 1.26rem);
	height: 0.44rem;
	line-height: 0.44rem;
	color: #666;
	border-radius: 5px;
	font-size: 0.18rem;
	box-sizing: border-box;
	padding: 0 0.2rem;
	background-color: #f2f2f2;
	border: 1px solid #ccc;
}
.materlal-div .h5{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	margin: 0.5rem 0;
}

.materlal-div .form{
	font-size: 0;
	margin-top: 0.3rem;
}
.materlal-div .form .span{
	display: inline-block;
	vertical-align: top;
	width: 1.26rem;
	line-height: 0.44rem;
	font-size: 0.18rem;
}
.materlal-div .form .upload-dl{
	display: inline-block;
	vertical-align: top;
}
.materlal-div .form .btn{
	margin: 0.5rem 0 0 1.26rem;
}


.certificate-div{
	
}
.certificate-div .form{
	
}
.certificate-div .form ul{
	margin-bottom: 0.3rem;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.certificate-div .form ul:last-of-type{
	border-bottom: none;
}
.certificate-div .form li{
	flex-shrink: 0;
	width: 48%;
	margin-bottom: 0.3rem;
	display: flex;
}
.certificate-div .form li span{
	flex-shrink: 0;
	width: 1.26rem;
	height: 0.44rem;
	line-height: 0.44rem;
	font-size: 0.18rem;
}
.certificate-div .form .bt-li span::after{
	content: "*";
	color: #ff0000;
	margin-left: 0.05rem;
}
.certificate-div .form li input,
.certificate-div .form li select{
	flex: 1;
	height: 0.44rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 0.18rem;
	box-sizing: border-box;
	padding: 0 0.12rem;
}
.certificate-div .form li select{
	padding: 0 0.06rem;
}
.certificate-div .form li input[disabled],
.certificate-div .form li select[disabled]{
	background-color: #f2f2f2;
}
.certificate-div .form li button{
	flex-shrink: 0;
	margin-left: 0.2rem;
	width: 0.8rem;
	height: 0.44rem;
	background-color: #eb5e07;
	color: #fff;
	font-size: 0.16rem;
	border-radius: 5px;
	transition: all 0.5s ease;
}
.certificate-div .form .btn{
	margin: -0.1rem 0 0 1.26rem;
}
.certificate-div .form .btn-div{
	flex-shrink: 0;
	margin: -0.1rem 0 0 1.26rem;
}
.certificate-div .form .btn-div button{
	display: inline-block;
	vertical-align: top;
	margin: 0 0.3rem 0 0;
}
.certificate-div .hide-form li{
	display: none;
}
.certificate-div .hide-form li:nth-of-type(1){
	display: flex;
}
.certificate-div .hide-form li:nth-of-type(2){
	display: flex;
}


.welcome-div{
	
}
.welcome-div .dl{
	display: flex;
	height: 2.42rem;
	padding-bottom: 0.24rem;
	margin-bottom: 0.3rem;
	border-bottom: 1px solid #e0e0e0;
}
.welcome-div .dl dt,
.welcome-div .dl dd{
	flex-shrink: 0;
	width: 48.5%;
	height: 100%;
	border-radius: 5px;
	background-color: #f7f2f2;
	margin-right: 3%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.welcome-div .dl dt img{
	width: 2.2rem;
	margin-bottom: 0.2rem;
}
.welcome-div .dl dt p{
	font-size: 0.16rem;
	color: #666;
	margin-top: 0.14rem;
}
.welcome-div .dl dd{
	margin-right: 0;
}
.welcome-div .dl dd img{
	width: 1.55rem;
	margin-bottom: 0.2rem;
}
.welcome-div .dl dd p{
	font-size: 0.18rem;
}

.welcome-div .div{
	
}
.welcome-div .div h5{
	font-size: 0.16rem;
	color: #666;
	margin-bottom: 0.2rem;
}
.welcome-div .div table{
	width: 100%;
	text-align: center;
}
.welcome-div .div tr{
	height: 0.42rem;
}
.welcome-div .div tr:nth-of-type(2n){
	background-color: #f7f7f7;
}
.welcome-div .div th{
	font-size: 0.18rem;
}
.welcome-div .div td{
	font-size: 0.16rem;
}
.welcome-div .div .td{
	color: #ff0000;
}


.company-div{
	
}
.company-div .radio-div{
	/* display: inline-block;
	vertical-align: middle; */
	width: calc(100% - 1.26rem);
	height: 0.44rem;
	line-height: 0.44rem;
}
.company-div .radio-div label{
	font-size: 0.18rem;
	color: #666;
	display: inline-block;
	margin-right: 0.4rem;
	cursor: pointer;
}
.company-div .radio-div label:last-of-type{
	margin-right: 0;
}
.company-div .radio-div label input{
	
}
.company-div .radio-div small{
	color: #ccc;
	font-size: 0.18rem;
	margin-left: 0.4rem;
}
.company-div .form .li1{
	width: 26%;
}
.company-div .form .li2{
	width: 18%;
}
.company-div .form li .short-span{
	width: 0.5rem;
}
.company-div .form li select{
	flex: 1;
	min-width: 0;
	height: 0.44rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 0.18rem;
	box-sizing: border-box;
	padding: 0 0.08rem;
}
.company-div .form li textarea{
	flex: 1;
	min-width: 0;
	resize: none;
	height: 1.7rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 0.18rem;
	box-sizing: border-box;
	padding: 0.1rem 0.08rem 0.3rem;
	line-height: 1.6;
}
.company-div .form li .p{
	flex-shrink: 0;
	width: calc(100% - 1.26rem);
	display: flex;
	align-items: center;
	font-size: 0.18rem;
	color: #666;
}
.company-div .form li .p input[type="text"]{
	flex: none;
	flex-shrink: 0;
	width: 2.8rem;
	margin-right: 0.2rem;
}
.company-div .form li .p strong{
	flex-shrink: 0;
	width: 1.0rem;
	height: 0.44rem;
	border: 1px solid #eb5e07;
	color: #eb5e07;
	margin-left: -0.1rem;
	border-radius: 5px;
	font-size: 0.18rem;
	box-sizing: border-box;
	padding: 0 0.12rem;
	text-align: center;
	line-height: 0.44rem;
	margin-right: 0.2rem;
	cursor: pointer;
	transition: all 0.5s ease;
}
.company-div .form li .p strong:hover{
	background-color: #eb5e07;
	color: #fff;
}
.company-div .form .div{
	padding-bottom: 0.4rem;
	margin-bottom: 0.4rem;
	border-bottom: 1px solid #e0e0e0;
}
.company-div .form .img-em{
	display: block;
	font-size: 0;
} 
.company-div .form .img-em img{
	width: 3.0rem !important;
	margin-right: 0.2rem;
}
.company-div .form .img-em img:last-of-type{
	margin-right: 0;
}


.img-box{
	position: fixed;
	z-index: 9;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.8);
	display: none;
}
.img-box div{
	position: absolute;
	height: 90vh;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.img-box div img{
	height: calc(100% - 34px);
	width: auto;
}
.img-box div p{
	text-align: center;
	font-size: 14px;
	margin-top: 20px;
	color: #fff;
}


.inlet-box{
	width: 100%;
	height: 100vh;
	background-image: url(../img/bg1.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
}
.inlet-box .logo-img{
	position: absolute;
	width: 2.92rem;
	top: 0.5rem;
	left: 0.5rem;
}
.inlet-box .div{
	position: absolute;
	width: 7.2rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	justify-content: space-between;
}
.inlet-box .div a{
	flex-shrink: 0;
	width: 2.6rem;
	text-align: center;
}
.inlet-box .div a em{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 2.13rem;
	height: 2.16rem;
	background-image: url(../img/icon13.png);
}
.inlet-box .div a img{
	flex-shrink: 0;
	width: 0.71rem;
	transition: all 0.5s ease;
}
.inlet-box .div a strong{
	display: block;
	color: #fff;
	font-size: 0.28rem;
	margin-top: 0.3rem;
	font-weight: bold;
}


.login-box{
	width: 100%;
	height: 100vh;
	background-image: url(../img/bg2.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
}
.login-box .logo-img{
	position: absolute; 
	top: 0.5rem;
	left: 0.5rem;
}
.login-box .div{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 14.0rem;
	border-radius: 0.3rem;
	overflow: hidden;
}
.login-box .div .img{
	width: 100%;
	height: auto;
}
.login-box .div .form{
	position: absolute;
	width: 31.5%;
	height: 100%;
	top: 0;
	right: 0;
	box-sizing: border-box;
	padding: 1.3rem 0.4rem;
} 
.login-box .div .form h6{
	font-size: 0.28rem;
	font-weight: bold;
	color: #666;
	margin-bottom: 0.48rem;
}
.login-box .div .form label{
	position: relative;
	padding-left: 0.6rem;
	display: block;
	height: 0.64rem;
	border-radius: 0.1rem;
	overflow: hidden;
	background-color: #fff;
	margin-bottom: 0.28rem;
}
.login-box .div .form img{
	position: absolute;
	width: 0.21rem;
	top: 50%;
	left: 0.18rem;
	margin-top: -0.12rem;
}
.login-box .div .form input{
	width: 100%;
	height: 100%;
	font-size: 0.18rem;
}
.login-box .div .form button{
	width: 100%;
	height: 0.64rem;
	border-radius: 0.1rem;
	background-color: #EB5E07;
	color: #fff;
	font-size: 0.18rem;
	margin-top: 0.9rem;
}
.login-box .h5{
	position: absolute;
	font-size: 0.16rem;
	width: 100%;
	text-align: center;
	color: #666;
	left: 0;
	bottom: 6%;
}


.notice-div{
	
}
.notice-div p{
	font-size: 0.18rem;
	line-height: 1.8;
	text-align: justify;
}
.notice-div .radio-div{
	margin-bottom: 0.4rem;
}
.notice-div .radio-div label{
	display: flex;
	align-items: center;
	font-size: 0.18rem;
	margin-top: 0.16rem;
	cursor: pointer;
}
.notice-div .radio-div input{
	margin-right: 0.1rem;
}


.marketingg-div{
	
}
.marketingg-div .div{
	padding-left: 0.2rem;
	line-height: 1.6;
	padding-bottom: 0.32rem;
	margin-bottom: 0.4rem;
	border-bottom: 1px solid #e0e0e0;
}
.marketingg-div .div:last-of-type{
	margin-bottom: 0 !important;
}
.marketingg-div .div h5{
	position: relative;
	font-size: 0.22rem;
}
.marketingg-div .div h5::before{
	content: "";
	position: absolute;
	top: 50%;
	left: -0.2rem;
	margin-top: -0.05rem;
	width: 0.1rem;
	height: 0.1rem;
	border-radius: 50%;
	background-color: #EB5E07;
}
.marketingg-div .div span{
	display: block;
	font-size: 0.18rem;
	color: #EB5E07;
	margin: 0.06rem 0;
}
.marketingg-div .div p{
	font-size: 0.18rem;
}
.marketingg-div .div h6{
	font-size: 0.18rem;
	color: #999;
	margin: 0.06rem 0;
}
.marketingg-div .div ul{
	
}
.marketingg-div .div ul li{
	position: relative;
	font-size: 0.18rem;
	color: #999;
	padding-left: 0.2rem;
}
.marketingg-div .div ul li::before{
	position: absolute;
	font-size: 0.24rem;
	top: -0.04rem;
	left: 0;
	content: "▸";
	color: #EB5E07;
}
.marketingg-div .div img{
	width: auto;
	height: auto;
	max-width: 100%;
	margin-top: 0.1rem;
}
.marketingg-div .div ol{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.marketingg-div .div ol li{
	flex-shrink: 0;
	width: 46%;
	margin-top: 0.2rem;
}
.marketingg-div .div ol li span{
	color: #333;
}
.marketingg-div .div ol li i{
	color: #EB5E07;
}
.marketingg-div .div ol li img{
	width: 100%;
}
.marketingg-div .div table{
	width: 100%;
	background-color: #fcede4;
}
.marketingg-div .div table td{
	border: 1px solid #fff;
	font-size: 0.18rem;
	line-height: 1.4;
	padding: 0.2rem;
}


.title-div{
	
}
.title-div dl{
	display: none;
}
.title-div dl:nth-of-type(1){
	display: block;
}


.enterprise-div{
	
}
.enterprise-div .form-div{
	display: none;
}
.enterprise-div .show-div{
	display: block;
}
.enterprise-div .div3 .ol{
	display: flex;
	flex-wrap: wrap;
}
.enterprise-div .div3 .ol li{
	flex-shrink: 0;
	width: 32%;
	margin-right: 2%;
	height: 0.44rem;
	line-height: 0.44rem;
}
.enterprise-div .div3 .ol li:nth-of-type(3n){
	margin-right: 0;
}
.enterprise-div .div3 .ol li label{
	font-size: 0.18rem;
	color: #666;
	display: inline-block;
	cursor: pointer;
}
.enterprise-div .div3 .dl{
	
}
.enterprise-div .div3 .dl dt{
	font-size: 0.24rem;
	font-weight: bold;
	margin-bottom: 0.2rem;
}
.enterprise-div .div3 .dl dd{
	height: 0.44rem;
	line-height: 0.44rem;
	font-size: 0.18rem;
	color: #666;
}
.enterprise-div .div3 .dl dd label{
	display: inline-block;
	cursor: pointer;
}


.prompt-div{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	display: none;
}
.prompt-div img{
	width: 1.1rem;
}
.prompt-div h6{
	font-size: 0.3rem;
	margin: 0.36rem 0;
}
.prompt-div p{
	font-size: 0.18rem;
	line-height: 1.6;
}
.prompt-div span{
	margin: 0.36rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.9rem;
	height: 0.42rem;
	line-height: 0.42rem;
	border: 1px solid #EB5E07;
	color: #EB5E07;
	border-radius: 5px;
	font-size: 0.18rem;
	cursor: pointer;
}
.prompt-div span img{
	width: 0.2rem;
	margin-left: 0.2rem;
}
.prompt-div small{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
}











@media (min-width: 992px) {
	.inlet-box .div a:hover img{
		transform: scale(1.2);
	}
	.menu-box .menu-ul li:hover a::before{
		height: 100%;
		opacity: 1;
	}
	.menu-box .menu-ul li:hover a::after{
		width: 100%;
		opacity: 1;
	}
	.menu-box .menu-ul li:hover span{
		color: #de5022;
	}
	.menu-box .menu-ul li:hover img{
		margin-left: -0.24rem;
	}
	.btn:hover{
		background-color: #d05408;
	}
	.certificate-div .form li button:hover{
		background-color: #d05408;
	}
	.materlal-div .ul li a:hover{
		color: #de5022;
	}
}

@media (max-width: 1600px) {
	html{
		font-size: 90px;
	}
}

@media (max-width: 1400px) {
	html {
	    font-size: 80px;
	}
	.menu-box{
		width: 2.8rem;
	}
	.box{
		margin-left: 2.8rem;
	}
}

@media (max-width: 992px) {
	.menu-box{
		position: fixed;
		z-index: 99;
		width: 100%;
		height: 0.66rem;
		top: 0;
		left: 0;
		box-sizing: border-box;
		padding-left: 0.2rem;
	}
	.menu-box .logo-a{
		height: 0.66rem;
		line-height: 0.66rem;
		width: 1.8rem;
		padding-left: 0;
	}
	.menu-box .logo-a img{
		width: 100%;
	}
	.menu-box .menu-ul{
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: auto;
		background-color: #333;
		display: none;
	}
	.menu-box .menu-ul li{
		height: 0.66rem;
	}
	.menu-box .menu-ul li a{
		padding-left: 0.2rem;
	}
	.menu-box .menu-dl{
		display: flex;
	}
	.box{
		margin-left: 0;
		width: 100%;
		min-height: auto;
		padding-top: 0.66rem;
	}
	.content-box{
		padding: 0.4rem 0.2rem;
	}
	.content-box .title-h4{
		padding-left: 0.2rem;
	}
	.content-box .content-div{
		padding: 0.3rem 0.2rem;
		min-height: auto;
	}
	.content-box .title-h5{
		height: auto;
		line-height: 1.5;
		text-align: center;
		margin-top: 0.3rem;
	}
	.inlet-box .logo-img,
	.login-box .logo-img{
		top: 0.3rem;
		left: 0.2rem;
		width: 2.6rem;
	}
	.inlet-box .div{
		width: 100%;
		flex-wrap: wrap;
		align-items: center;
		flex-direction: column;
	}
	.inlet-box .div a{
		margin: 0.3rem 0;
		transform: scale(0.95);
	}
	.login-box .div .img{
		display: none;
	}
	.login-box .div{
		width: 100%;
		box-sizing: border-box;
		padding: 0 0.2rem;
		border-radius: 0;
	}
	.login-box .div .form{
		padding: 0.5rem 0.3rem;
		border-radius: 0.2rem;
		position: static;
		width: 100%;
		background-color: rgba(249,207,182,1);
	}
	.head-box{
		height: 0.6rem;
		line-height: 0.6rem;
		justify-content: flex-start;
		padding: 0 0.2rem;
	}
	.head-box img{
		width: 0.4rem;
	}
	
	.invoice-div .form .ul{
		margin-top: -0.2rem;
	}
	.invoice-div .form li{
		width: 100%;
		margin-top: 0.2rem;
	}
	.invoice-div .form .btn-div{
		margin-top: 0.4rem;
		margin-left: 0;
		text-align: center;
	}
	.invoice-div .form .btn-div button{
		margin: 0 0.1rem;
	}
	.company-div .form li .p input[type="text"]{
		width: 1.2rem;
	}
	.enterprise-div .div3 .ol li{
		width: 100%;
		margin-right: 0;
		height: auto;
		line-height: 1;
	}
	.enterprise-div .div3 .ol li label{
		width: 100%;
	}
	.enterprise-div .div3 .dl dd{
		height: auto;
		line-height: 1.5;
	}
	.marketingg-div .div ol li{
		width: 100%;
	}
	.welcome-div .dl{
		height: auto;
		flex-wrap: wrap;
	}
	.welcome-div .dl dt{
		margin-right: 0;
		margin-bottom: 0.2rem;
	}
	.welcome-div .dl dt, 
	.welcome-div .dl dd{
		width: 100%;
		padding: 0.3rem 0;
	}
	.materlal-div .ul{
		margin-top: -0.2rem;
	}
	.materlal-div .ul li{
		width: 100%;
		margin-top: 0.2rem;
	}
	.company-div .radio-div label{
		margin-right: 0.2rem;
	}
	.company-div .form .li2,
	.company-div .form .li1{
		width: 100%;
	}
	.company-div .form li .short-span{
		width: 1.26rem;
	}
	.upload-dl{
		flex-shrink: 0;
		width: calc(100% - 1.26rem);
	}
	.upload-div .controls{
		width: 100%;
		margin-right: 0;
	}
	.upload-div .js-img-list-f{
		margin-top: 0.2rem;
	}
	.upload-div .img-list{
		width: 100%;
	}
	.invoice-div .form button{
		margin: 0.4rem auto 0;
	}
	.certificate-div .form li{
		width: 100%;
		margin-bottom: 0.2rem;
	}
	.certificate-div .form .btn-div{
		margin-left: 0;
		text-align: center;
	}
	.certificate-div .form .btn-div button{
		margin: 0 0.1rem;
	}
	.audience-div .dl dd{
		width: 100%;
		margin-top: 0.2rem;
	}
	.audience-div .dl dd #content{
		width: 100%;
	}
	.audience-div .dl dd h5{
		font-size: 0.22rem;
	}
	.audience-div .dl dd h6{
		font-size: 0.18rem;
	}
	.invoice-div .form .ul{
		width: 100%;
	}
	.prompt-div{
		position: static;
	}
	.img-box div{
		height: 76vh;
	}
}




















































































