/*公共样式*/

*{
	box-sizing:border-box;
	-moz-box-sizing:border-box; 
	-webkit-box-sizing:border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,body {
	margin:0;
	padding:0;
	background-color: #000000;
	font-family: "微软雅黑";
	font-size: 12px;
}
h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,cite,code,del,dfn,em,img,q,s,samp,small,strike,strong,sub,sup,tt,var,dd,dl,dt,li,ol,ul,fieldset,form,label,input,textarea,legend,button,table,tbody,caption,tfoot,thead,tr,th,td{
	margin:0;
	padding:0;
	border:0;
	font-weight:normal;
	font-style:normal;
}
table {
	border-collapse:collapse;
	border-spacing:0
}
/*去除按钮默认样式*/
input[type="button"], input[type="submit"], input[type="reset"] {
	-webkit-appearance: none;
}
textarea {  -webkit-appearance: none;}
/*去除input发光边框*/
input:focus, textarea:focus {
    outline: none;
}
/*去除IE10+浏览器文本框后面的小叉叉*/
input::-ms-clear {
    display: none;
}
/*禁止多行文本框textarea拖拽*/
textarea {
    resize: none;
}
ol,ul {
	list-style:none;
}
a:focus {
	outline:thin dotted;
	outline-style:none;
	 -moz-outline-style: none;
	background: none;
}
img {
	border:0;
	-ms-interpolation-mode:bicubic;
}
a {
	text-decoration:none;
	outline:none; 
	background: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-moz-user-select: none;
}
input::-webkit-input-placeholder {
	color:#c0c4c8
}
.clearfix:after{
	clear:both;
	content:'.';
	display:block;
	width: 0;
	height: 0;
	visibility:hidden;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.hid{
	display: none;
}
.show{
	display: block;
}
i{
	font-style: normal;
}
select{
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
}
select::-ms-expand { display: none; }
button{outline: none;background:none;}
input{background:none;  outline:none;  border:0px;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);  }
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
  margin: 0; 
}
input[type=number] {
    -moz-appearance:textfield;
}
button{-webkit-appearance: none; -webkit-tap-highlight-color: transparent;}
.max-width{max-width: 1200px;margin: 0 auto;}
/*自动隐藏文字*/
.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.ellipsis1 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	white-space: normal !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.ellipsis2 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	white-space: normal !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/*头部样式*/
#header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 999;
     background-color: #fff;
}
#header header {
     height: 95px;
     background: #0A0A0A;
     position: relative;
}
#header .max-width{
	height:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .logo{
	width:75px;
	margin-right:30px;
}
#header .con{
	display: flex;
	align-items: center;
}
#header .li{
	margin-right: 60px;
	position: relative;
}
#header .li>a{
	height:95px;
	line-height: 95px;
	display: block;
	font-family: Arial;
	font-weight: 400;
	font-size: 22px;
	color: #7D7C7C;
}
#header .li.active>a,#header .li:hover>a{
	color: #FFFFFF;
}
#header .li.active::after,#header .li:hover::after{
	content:'';
	width: 56px;
	height: 4px;
	background: #FFFFFF;
	position: absolute;
	bottom:20px;
	left:0;
	right:0;
	margin:0 auto;
}
#header .profile{
	padding-left:35px;
	background:url(../icon-img/profile.png) no-repeat left 0 center;
	background-size:25px;
	font-family: Arial;
	font-weight: 400;
	font-size: 22px;
	color: #7D7C7C;
	position: relative;
	display: flex;
	align-items: center;
	height:100%;
	cursor: pointer;
}
#header .no-login{
	display: flex;
	justify-content: space-between;
	position: relative;
}
#header .no-login .no-login-li a{
	height:95px;
	line-height: 95px;
	display: block;
	font-family: Arial;
	font-weight: 400;
	font-size: 22px;
	color: #7D7C7C;
}
#header .no-login .no-login-li:hover a,#header .no-login .no-login-li:active a{
	color: #FFFFFF;
}
#header .no-login .no-login-li:nth-child(2){
	margin-left: 30px;
}
#header .li:hover .child,#header .profile:hover .child,#header .no-login:hover .child{
	display: block;
}
#header .child{
	display: none;
	position: absolute;
	top:95px;
	left:0;
	padding:10px;
	background:#0A0A0A;
	border-radius: 10px;
	border: 1px solid #232323;
	width: max-content;
	white-space: nowrap;
}
#header .profile .child {
	right:0;
	left:auto;
}
#header .child .child-li{
	padding:5px 0;
}
#header .child a{
	display: block;
	line-height: 40px;
	font-family: Arial;
	font-weight: 400;
	font-size: 18px;
	color: #FFFFFF;
	padding:0 25px;
}
#header .child .child-li.active a ,#header .child .child-li:hover a{
	background: #45A141;
	border-radius: 10px;
}
#m-header{
    display: none;
}
.m-nav{
	display: none;
}
body{
	padding:95px 0 80px;
	position: relative;
	min-height: 100vh;
}
.footer{
	text-align: center;
	height:80px;
	line-height: 80px;
	background:#0A0A0A;
	font-family: Arial;
	font-weight: 400;
	font-size: 20px;
	color: #FFFFFF;
	/*position: absolute;*/
	/*bottom:0;*/
	/*left:0;*/
	/*right: 0;*/
}
.right-box{
	position:fixed;
	top:50%;
	right:15px;
	width: 100px;
	height: 100px;
	background: rgba(69, 161, 65, 0.55);
	border-radius: 10px;
	margin-top:-50px;
	z-index: 999;
}
.right-box a{
	display: block;
	padding-top:65px;
	background:url(../icon-img/service.png) no-repeat center top 18px;
	background-size:40px;
	font-family: Arial;
	font-weight: 400;
	font-size: 18px;
	color: #FFFFFF;
	text-align: center;
	height:100%;
}
.background-cen{
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
}