@charset "utf-8";
a,.slow{
	transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
}
.slowa{
	transition:all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}
.hidden{
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;          /* for IE */
	-o-text-overflow: ellipsis;      /* for Opera */
	-icab-text-overflow: ellipsis;   /* for iCab */
	-khtml-text-overflow: ellipsis;  /* for Konqueror Safari */
	-moz-text-overflow: ellipsis;    /* for Firefox,mozilla */
	-webkit-text-overflow: ellipsis; /* for Safari,Swift*/
}

/* loading 样式 */
.loaderbg {
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	position: fixed;
	left: 0;
	top: 0;
}
.loader {
	width: 2.5em;
	height: 2.5em;
	transform: rotate(165deg);
	z-index: 9999;
	position: fixed;
	top: calc(50% - 1.25em);
	left: calc(50% - 1.25em);
}
.loader:before, .loader:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 0.5em;
	height: 0.5em;
	border-radius: 0.25em;
	transform: translate(-50%, -50%);
}
.loader:before {
	animation: before 2s infinite;
}
.loader:after {
	animation: after 2s infinite;
}

@keyframes before {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
  }
  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
  }
  100% {
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
}
@keyframes after {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
  }
  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
  }
  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}

.imgs{
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-bottom: 75%;
}
.imgs img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

html,body{
	font-size: 12px;
	color: #333;
	line-height: 1.8;
	max-width: 750px;
	margin: 0 auto;
}
#head{
	display: block;
	height: 60px;
	position: fixed;
	z-index: 999;
	background: #FFFFFF;
	left: 0;
	top: 0;
	width: 100%;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#head .logo{
	left: 3%;
	top: 12px;
	position: absolute;
}
#head .logo img{
	height: 38px;
}
#head .head_ico{
	position: absolute;
	right: 3%;
	top: 8px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 99;
	background: #096DDF;
	border-radius: 50%;
}
#head .head_ico span{
	position: absolute;
	top: 19px;
	left: 9px;
	width: 22px;
	height: 2px;
	background: #fff;
	-webkit-transition: all 300ms;
	transition: all 300ms;
}
#head .head_ico span:after, #head .head_ico span:before {
	content: '\20';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background:  #fff;
	-webkit-transition: all 300ms;
	transition: all 300ms;
}
#head .head_ico span:before{
	top: -8px;
}
#head .head_ico span:after{
	bottom: -8px;
}
.body-nav #head .head_ico span {
	background:none;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.body-nav #head .head_ico span:before{
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 0;
	top: 0;
}
.body-nav #head .head_ico span:after{
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 0;
	bottom: 0;
}

#head .page-navigation{
	display: none;
	z-index:9999;
	top:60px;
	overflow-y: auto;
	position: fixed;
	max-height: calc(100% - 46px);
	left: 0px;
	width: 100%;
	background:#096DDF;
}
#head .nav_pad{
	padding: 30px 10%;	
}
#head .nav_pad li{
	position: relative;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: returnToNormal;
	animation-name: returnToNormal;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
#head .page-navigation a{
	line-height:40px;
	padding: 5px 15px;
	font-size:16px;
	color: rgba(255,255,255,0.9);
	display: block;
	text-align: center;
}
#head .page-navigation .sub{
	display: none;
	padding: 5px 10%;
}
#head .page-navigation .sub a{
	line-height: 35px;
	font-size:14px;
	color: rgba(255,255,255,0.7);
}
.body-nav #head .page-navigation{
	height: 100%;
}


.w_100{
	max-width: 100%;
	display: inline-block;
	vertical-align: top;
}
.inl_b{
	display: inline-block;
	vertical-align: top;
}
.c-333{color: #333;}
.c-fff{color: #fff;}
.c-666{color: #666;}
.c-999{color: #999;}
.c-4D4543{color: #4D4543;}
.c-E4191D{color: #E4191D;}
.c-888889{color: #888889;}
.c-1E1818{color: #1E1818;}
.f-13{font-size: 13px;}
.f-14{font-size: 14px;}
.f-15{font-size: 15px;}
.f-16{font-size: 16px;}
.f-18{font-size: 18px;}
.f-20{font-size: 20px;}
.f-22{font-size: 22px;}
.f-24{font-size: 24px;}
.f-26{font-size: 26px;}
.f-28{font-size: 28px;}
.f-30{font-size: 30px;}
.t-cen{text-align: center;}
.f-bold{font-weight: bold;}
.ovhide{overflow: hidden;}
.pad_t5{padding-top: 5px;}
.pad_t10{padding-top: 10px;}
.pad_t15{padding-top: 15px;}
.pad_t20{padding-top: 20px;}
.pad_t25{padding-top: 25px;}
.pad_t30{padding-top: 30px;}
.pad_b5{padding-bottom: 5px;}
.pad_b10{padding-bottom: 10px;}
.pad_b15{padding-bottom: 15px;}
.pad_b20{padding-bottom: 20px;}
.pad_b25{padding-bottom: 25px;}
.pad_b30{padding-bottom: 30px;}
.padcm{padding-left: 16px;padding-right: 16px;}

.flex{
	display: flex;
	flex-wrap: wrap;
}
.flex_between{
	justify-content: space-between;
}
.flex_align{
	align-items: center;
}

#main{
	padding-top: 60px;
	padding-bottom: 52px;
}


#foot{
	position: fixed;
	width: 100%;
	height: 52px;
	background: #f8f8f8;
	left: 0;
	bottom: 0;
}
#foot li{
	float: left;
	width: 25%;
	text-align: center;
}
#foot li a{
	display: block;
	padding-top: 5px;
}
#foot li img{
	width: 22px;
	display: inline-block;
	vertical-align: top;
}
#foot li p{
	font-size: 12px;
}

.sharewxbg{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 99999;
	background: rgba(0,0,0,0.6);
	display: none;
	text-align: center;
}
.sharewxbg img{
	max-width: 100%;
	display: inline-block;
	vertical-align: top;
}

@media screen and (min-width:750px ) {
	#head,#foot,#head .page-navigation{
		width: 750px;
		left: 50%;
		margin-left: -375px;
	}
	.sharewxbg img{
		max-width: 100%;
	}
}

@-webkit-keyframes returnToNormal {
  0%{
	opacity: 0;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
  }
  100% {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
  }
}
@keyframes returnToNormal {
  0%{
	opacity: 0;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
  }
  100% {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
  }
}
