.header {
  position: fixed;
  z-index: 1000;
  margin: auto;
  right: 0;
  left: 0;
  top: 0;
  max-width: 1920px;
  min-width: 320px;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  margin: auto;
  background: rgba(255, 255, 255, 0.15);
  -o-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.header.boxShadow {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.header.fixed {
  background: #fff;
}
.header.fixed::after {
  opacity: 0;
}

.header.fixed .right a{ color:#343434 !important}

.header.fixed .bImg{ display:block !important;}
.header.fixed .aImg{ display:none;}

.header.fixed .right .lan .right1 .lines div{ background:#343434 !important}
.header.fixed .right .lan .right1 p{ color:#343434}
.header.fixed .el-icon-search{ background:#343434}
.header.fixed .soutt img.bsousou{ display:block !important; margin-left:21px}
.header.fixed .soutt img.asousou{ display:none;}
.header.fixed .right1 p{ color:#343434 !important}



.header.fixed .right ul li a {
 color:hsla(0,0%,100%,.7);
 font-family:Fira Code Medium;
 font-weight:lighter;
 font-size:15px;
 -webkit-transition:all 1s;
 transition:all 1s
}
.header.fixed .right ul li:hover a {
 color:#fff
}
.header.fixed .right ul li:hover:before {
 width:100%
}
.header.fixed .right ul li:before {
 position:absolute;
 left:0;
 bottom:0;
 width:0;
 height:3px;
 background-color:#ea6204 !important;
 content:"";
 display:inline-block;
 -webkit-transition:all 1s;
 transition:all 1s
}

.header.fixed .right ul li li a:hover{ color:#ea6306 !important}




.header.fixed .fold-menu:before {
	content:'';
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	width:0;
	height:0;
	background-color:#fff;
	border-radius:50%;
	opacity:0;
	transform:translate(-50%,-50%);
	transition:all ease .5s;
	background:url(../img/colse2.png) no-repeat;
	z-index:99999
}

.header.fixed .fold-menu.is-active:before {
	opacity:1;
	width:40px;
	height:40px;
}


@media (min-width: 1000px) and (max-width: 1200px){

.header {
	background:#000
}


	
	}





.bsousou{ display:none}

.con {
 width:100%;
 position:fixed;
 top:0;
 left:0;
 z-index:1000;
 height:90px;
 -webkit-transition:all 1s;
 transition:all 1s
 
}


.con .main {
 width:90%;
 left:5%;
 top:0;
 z-index:100;
 padding:30px 0;
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row;
 -webkit-box-pack:justify;
 -ms-flex-pack:justify;
 justify-content:space-between;
 position:absolute
}
.con .main .left {
 width:179px;
 height:29px;
 display:inline-block;
 position:relative;
 overflow:hidden
}
.con .main .left img {
 width:100%;
 height:100%;
 -o-object-fit:cover;
 object-fit:cover;
 position:absolute;
 left:0;
 top:0;
 -webkit-transition:all .6s;
 transition:all .6s
}
.con .main .left .bImg {
	display:none;
}
.con .main .right {
 width:60%
}
.con .main .right,
.con .main .right ul {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row
}
.con .main .right ul {
 width:70%;
 list-style:none;
 -webkit-box-pack:justify;
 -ms-flex-pack:justify;
 justify-content:space-between
}
.con .main .right ul li {
 cursor:pointer;
 position:relative
}
.con .main .right ul li a {
 color:hsla(0,0%,100%,.7);
 font-family:Fira Code Medium;
 font-weight:lighter;
 font-size:15px;
 -webkit-transition:all 1s;
 transition:all 1s;
 text-transform:uppercase;
 font-weight:600
}
.con .main .right ul li:hover a {
 color:#fff
}
.con .main .right ul li:hover:before {
 width:100%
}
.con .main .right ul li:before {
 position:absolute;
 left:0;
 bottom:0;
 width:0;
 height:3px;
 background-color:#fff;
 content:"";
 display:inline-block;
 -webkit-transition:all 1s;
 transition:all 1s
}



.navbar-nav>li>ul {
    position: absolute;
    left: -50%;
    top: 60px;
    width:0% !important;
    background: #fff;
    opacity: 0;
    padding: 10px 10px;
    z-index: -1;
    transition: .5s;
    box-shadow: 0 4px 4px 1px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 100%;
	display:block !important;
}

.navbar-nav>li:hover>ul {
    opacity: 1;
    width: 300% !important;
    left: -100% !important;
    z-index: 2;
    height: auto;
}

.navbar-nav>li>ul>li {
    text-align: center;
    padding: 5px 0;
    transition: .5s;
    line-height:28px;
}


.navbar-nav>li:nth-child(4):hover ul{
  width: 300% !important;
  left: -100% !important;
}





.navbar-nav>li>ul>li>a{ color:#333 !important;font-weight:normal !important;}
.navbar-nav>li>ul>li>a:hover{ color:#ea6306 !important}

.navbar-nav>li:hover>ul>li>a{
     transition: .5s;
	 font-weight:normal !important;
}

.navbar-nav>li>ul>li:hover>a {
    color: #004ea2;
    
}

.navbar-nav>li>ul>li>a {
    color: #333;
    transition: .5s;
}




.con .main .right ul .showLi a {
 color:#fff
}
.con .main .right ul .showLi:before {
 width:100%
}
.con .main .right .lan {
 margin-left:3%;
 width:28%;
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row;
 -webkit-box-pack:justify;
 -ms-flex-pack:justify;
 justify-content:space-between;
 font-weight:600;
 text-transform:uppercase;
}
.con .main .right .lan span {
 color:#8c8c8c;
 -webkit-transition:all 1s;
 transition:all 1s;
 font-family:tsd;
 display:inline-block;
 cursor:pointer;
 width:33%;
 text-align:center;

}

.con .main .right .lan span a{ color:hsla(0,0%,100%,.7);
 font-family:Fira Code Medium;
 font-weight:lighter;
 font-size:15px;
 -webkit-transition:all 1s;
 transition:all 1s

 }

.con .main .right .lan .enspan {
 color:#fff;
 -webkit-animation-delay:1s;
 animation-delay:1s;
 -webkit-animation:big 1s linear forwards;
 animation:big 1s linear forwards

}
@-webkit-keyframes big {
 0% {
  opacity:0
 }
 to {
  opacity:1
 }
}
@keyframes big {
 0% {
  opacity:0
 }
 to {
  opacity:1
 }
}
.con .main .right .lan span:nth-child(2) {
 position:relative
}
.con .main .right .lan span:nth-child(2):before {
 position:absolute;
 left:0;
 top:3px;
 height:15px;
 width:1px;
 background-color:hsla(0,0%,100%,.2);
 content:"";
 display:inline-block
}
.con .main .right .lan span:nth-child(2):after {
 position:absolute;
 right:0;
 top:3px;
 height:15px;
 width:1px;
 background-color:hsla(0,0%,100%,.2);
 content:"";
 display:inline-block
}
.con .main .right .lan span:hover {
 color:#fff
}
.con .main .right .lan span:nth-child(3) i {
 font-size:20px;
 color:#fff
}
.con .main .right .lan .right1 {
 cursor:pointer;
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row
}
.con .main .right .lan .right1 .lines {
 height:30px;
 width:30px;
 position:relative
}
.con .main .right .lan .right1 .lines div {
 position:absolute;
 left:0;
 top:0;
 height:1px;
 width:100%;
 background-color:#fff;
 -webkit-transition:all 1s;
 transition:all 1s
}
.con .main .right .lan .right1 .lines div:first-child {
 top:5px;
 width:75%;
 -webkit-animation:long1 1s linear infinite;
 animation:long1 1s linear infinite
}
.con .main .right .lan .right1 .lines div:nth-child(2) {
 top:12px;
 width:50%;
 -webkit-animation:long2 1s ease-in infinite;
 animation:long2 1s ease-in infinite;
 -webkit-transition-delay:.2s;
 transition-delay:.2s
}
.con .main .right .lan .right1 .lines div:nth-child(3) {
 top:19px;
 -webkit-animation:long3 1s ease-out infinite;
 animation:long3 1s ease-out infinite;
 -webkit-transition-delay:.6s;
 transition-delay:.6s
}




.fold-menu:before {
	content:'';
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	width:0;
	height:0;
	background-color:#fff;
	border-radius:50%;
	opacity:0;
	transform:translate(-50%,-50%);
	transition:all ease .5s;
	background:url(../img/colse.png) no-repeat;
	z-index:99999
}

.fold-menu.is-active:before {
	opacity:1;
	width:40px;
	height:40px;
}




.page-menu {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:998;
	display:flex;
	z-index:-1;
	opacity:0;
	overflow:hidden;
	transition:ease all .7s;
}
.page-menu:before {
	content:'';
	display:block;
	position:absolute;
	top:0%;
	left:0;
	right:-20vw;
	height:100%;
	z-index:0;
	animation-direction:alternate;
	-webkit-animation-direction:alternate;
	-webkit-animation:slide 8s infinite linear;
	animation:slide 8s infinite linear;
	background:linear-gradient(100deg,#ea6104 -10%,#e8813b);
}

.page-menu:after {
	content:'';
	display:block;
	position:absolute;
	top:0;
	right:0;
	width:100%;
	height:100%;
	z-index:0;
	background-position:bottom right;
	background-size:contain;
	background-repeat:no-repeat;
	background-image:url(../img/32675.png);
}
.page-menu.actived {
	z-index:998;
	opacity:1;
}
.page-menu-main {
	position:relative;
	margin:auto;
	width:100%;
	max-width:1720px;
	padding:0 40px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	z-index:3;
	line-height:1;
}
.page-menu-left {
	width:60%;
	height:60vh;
	position:relative;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.page-menu-left:after {
	content:'';
	height:0;
	position:absolute;
	right:0;
	top:-10.2vh;
	transition:ease all .45s .2s;
	border-right:1px solid rgb(255,255,255,12%);
}
.page-menu.actived .page-menu-left:after {
	height:100vh;
}
.page-menu-left ul {
	opacity:0;
	margin-bottom:20px;
	-webkit-transform:translateX(50px);
	-moz-transform:translateX(50px);
	transform:translateX(50px);
	width:33.3333333%;
}
.page-menu-left ul:not(:last-child) {
	padding-right:30px
}
.page-menu.actived .page-menu-left ul {
	-webkit-transform:translateX(0);
	-moz-transform:translateX(0);
	transform:translateX(0);
	opacity:1;
	-moz-transition:ease -moz-transform .7s,linear opacity .3s;
	-webkit-transition:ease -webkit-transform .7s,linear opacity .3s;
	transition:ease transform .7s,linear opacity .3s;
}
.page-menu-left div {
	width:100%;
	display:flex;
}
.page-menu-left ul li {
	font-size:16px;
	color:#dcdcdc;
}

.page-menu-left ul li:not(:last-child) {
	margin-bottom:20px;
}
.page-menu-left ul li:first-child {
	font-size:24px;
	margin-bottom:38px;
	font-weight:500;
	color:#fff !important;
	text-transform:uppercase
}
.page-menu-left ul li:first-child a{ color:#fff;opacity:1;}
.page-menu-left ul li a {
	color:inherit;
	opacity:0.8;
	-moz-transition:ease opacity .4s;
	-webkit-transition:ease opacity .4s;
	transition:ease opacity .4s;
}
.page-menu-left ul li a:hover {
	opacity:1;
	color:#fff;
}
.page-menu-right {
	height:60vh;
	padding-left:50px;
	margin-right:80px;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}
.page-menu-right .top {
	color:#ffffff;
}
.page-menu-right .top .top-t1 {
	font-size:16px;
	margin-bottom:30px;
}
.page-menu-right .top .top-t2 {
	font-size:32px;
	line-height:1.35;
	font-weight:500;
}
.page-menu-right .top .top-img{ margin-top:40px;}

.page-menu-right .contact-i {
	color:#fff;
	font-family:"ITCAvantGardeStd-XLt";
	font-size:15px;
	line-height:1.4;
}

.page-menu-right .contact-i img {
	display:inline-block;
	vertical-align:middle;
	margin-right:8px;
	fill:#fff;
}
.page-menu-right .contact-i p {
	margin-top:10px;
	color:#fff;
}


@media (max-width:1366px){
	.page-menu-main {
	flex-direction:column-reverse;
	flex-wrap:wrap;
}
.page-menu-left {
	width:100%;
	height:auto;
}
.page-menu-left:after {
	display:none;
}
.page-menu-left ul {
	width:auto;
}
.page-menu-right {
	width:100%;
	margin:0;
	margin-bottom:50px;
	padding:0;
	height:auto;
	flex-direction:row;
}
.page-menu-right .top {
	width:65%;
}
.page-menu-right .contact-i {
	width:35%;
}
.page-menu-right .top .top-t2 {
	font-size:26px;
}




	}






@media (max-width:1024px){
.page-menu-left ul li:first-child {
	font-size:18px;
	font-weight:700
}
.page-menu-left ul li {
	font-size:14px;
}

}


@media (max-width:768px){
	.page-menu-left {
	justify-content:flex-start;
}
.page-menu-left ul {
	width:33.33333333%;
}
.page-menu-right {
	display:none;
}
}






@-webkit-keyframes long1 {
 0% {
  width:25%
 }
 25% {
  width:50%
 }
 50% {
  width:75%
 }
 75% {
  width:50%
 }
 to {
  width:25%
 }
}
@keyframes long1 {
 0% {
  width:25%
 }
 25% {
  width:50%
 }
 50% {
  width:75%
 }
 75% {
  width:50%
 }
 to {
  width:25%
 }
}
@-webkit-keyframes long2 {
 0% {
  width:0
 }
 25% {
  width:25%
 }
 50% {
  width:50%
 }
 75% {
  width:25%
 }
 to {
  width:0
 }
}
@keyframes long2 {
 0% {
  width:0
 }
 25% {
  width:25%
 }
 50% {
  width:50%
 }
 75% {
  width:25%
 }
 to {
  width:0
 }
}
@-webkit-keyframes long3 {
 0% {
  width:25%
 }
 25% {
  width:50%
 }
 50% {
  width:100%
 }
 75% {
  width:50%
 }
 to {
  width:25%
 }
}
@keyframes long3 {
 0% {
  width:25%
 }
 25% {
  width:50%
 }
 50% {
  width:100%
 }
 75% {
  width:50%
 }
 to {
  width:25%
 }
}
.con .main .right .lan .right1 p {
 font-family:tsd;
 font-size:14px;
 color:#fff;
 margin:5px 0 0 10px
}
.con .topMenu {
 position:absolute;
 top:-800px;
 left:0;
 width:100%;
 height:0;
 background:url(../../sunsemweb/img/i4.87255f3f.jpg) no-repeat 50%;
 background-size:cover;
 -webkit-transition:all .6s;
 transition:all .6s;
 z-index:1000
}
.con .topMenu .list {
 width:1400px;
 margin:0 auto;
 position:relative;
 padding-top:120px
}
.con .topMenu .list img {
 position:absolute;
 right:-102px;
 top:30px;
 cursor:pointer
}
.con .topMenu .list .nav {
 width:100%;
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row;
 -webkit-box-pack:center;
 -ms-flex-pack:center;
 justify-content:center;
 -ms-flex-wrap:wrap;
 flex-wrap:wrap
}
.con .topMenu .list .nav .right {
 width:25%;
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:vertical;
 -webkit-box-direction:normal;
 -ms-flex-direction:column;
 flex-direction:column;
 padding-left:30px;
 padding-right:30px;
 margin-left:2%;
 color:#8c8c8c;
 text-align:center;
 line-height:30px;
 margin-top:40px
}
.con .topMenu .list .nav .right p {
 cursor:pointer;
 -webkit-transition:all .6s;
 transition:all .6s;
 color:#c5c5c5;
 line-height:35px;
 font-family:Fira Code Medium;
 font-weight:lighter;
 font-size:14px
}
.con .topMenu .list .nav .right p:first-child {
 color:#fff;
 padding-bottom:10px;
 text-transform:uppercase;
 font-size:16px;
 font-weight:700;
 font-family:Fira Code Medium
}
.con .topMenu .list .nav .right p:hover {
 color:#fff
}
.con .showMenu {
 height:800px;
 top:0
}



.searchh {
	position:relative;
	top:84px;
    background-color: rgba(255,255,255,0.9);
    padding: 10px;
    display: none;
    margin: 5px 0;
    margin-bottom: 5px;
    margin-bottom: 20px;
    box-shadow: 0px 2px 2px rgba(0,0,0,.2);
    border-radius: 3px;
}

.searchh form {
    height: 40px;
    padding: 0;
}

.searchh #name {
    height: 40px;
    border: 1px #d2dae2 solid;
    border-radius: 0;
    width: 100%;
	padding-left:15px;
}

.searchh .btn {
    background-color: #ea6205;
    height: 40px;
    border: 0;
    border-radius: 0;
	width:15%;
    color: #fff;
	cursor:pointer;
    font-size:18px;
}

.row {
 
}

.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}


.col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  float:left;
}

@media (min-width: 768px){
	.col-sm-9{ float:left;width: 75%;}
	.searchh{ display:none;}
	}


@media (min-width: 992px){
	.col-md-10{ float:left; width: 83.33333333333334%;}
	}


.con .search {
 position:absolute;
 top:-100vh;
 left:0;
 width:100%;
 height:100vh;
 -webkit-transition:all 1s;
 transition:all 1s;
 background-color:rgba(0,0,0,.9)
}
.con .search .content {
 display:none
}
.con .showSearch {
 top:0
}
.con .showSearch .content {
 display:block;
 width:50%;
 margin:20% auto;
 position:relative
}
.con .showSearch .content input {
 width:100%;
 height:35px;
 background-color:transparent;
 outline:none;
 border:none;
 border-color:#fff!important;
 border-bottom:1px solid #fff;
 color:#fff;
 font-style:italic;
 font-family:tsd;
 text-indent:10px;
 font-size:35px;
 padding-bottom:10px;
 -webkit-animation-delay:1s;
 animation-delay:1s
}
.con .showSearch .content span {
 display:inline-block;
 position:absolute;
 right:0;
 top:0;
 cursor:pointer;
 -webkit-animation-delay:1s;
 animation-delay:1s
}
.con .showSearch .content span i {
 color:#fff;
 font-size:30px
}
.con .showSearch .content .sousuo {
 right:50%;
 top:130%
}
.con .top {
 display:none
}
.con .menuBox {
 position:fixed;
 right:0;
 top:-100vh;
 width:100%;
 background:#000;
 -webkit-transition:.8s;
 transition:.8s;
 display:block;
 height:100vh;
 display:none;
 z-index:1
}

.con .menuBox.open ul li {
 -webkit-transform:matrix(1,0,0,1,0,0);
 transform:matrix(1,0,0,1,0,0);
 opacity:1
}
.con .menuBox ul {
 display:block;
 font-size:18px;
 width:100%;
 padding:18px 0;
 text-align:center;
 list-style:none;
 overflow-y:scroll;
 z-index:1
}
.con .menuBox ul li {
 padding:15px 0;
 text-transform:uppercase;
 font-family:SourceHanSerifCN-Regular;

 -webkit-transition:all 1s;
 transition:all 1s;
 position:relative;
 opacity:0.8;
}
.con .menuBox ul li a {
 color:#fff;
 font-size:14px;
 width:100%;
 z-index:99999
}
.con .menuBox ul li a,
.con .menuBox ul li a i {
 -webkit-transition:all 1s;
 transition:all 1s
}
.con .menuBox ul li .a2 {
 color:#63accc
}
.con .menuBox ul li .a2 i {
 -webkit-transform:rotate(90deg);
 transform:rotate(90deg);
 color:#63accc
}
.con .menuBox ul li .clear {
 margin-left:5%;
 width:90%;
 display:none;
 -webkit-transition:all 2s;
 transition:all 2s;
 padding-top:15px
}
.con .menuBox ul li .clear p {
 width:100%;
 font-size:12px;
 font-family:armt;
 color:#fff;
 cursor:pointer;
 padding:8px 0;
 line-height:20px;
 text-align:center;
 background-color:rgba(103,177,207,.5)
}
.con .menuBox ul li .clear2 {
 display:block
}
@media screen and (min-width:2200px) {
 .con .topMenu .list {
  width:90%;
  padding-top:30px
 }
 .con .topMenu .list img {
  right:65px
 }
}

@media screen and (max-width:1850px) and (min-width:1401px) {
	
	.con .main .right {
  width:70%
 }
	
	}

@media screen and (max-width:1440px) and (min-width:1000px) {
 .con .main .right {
  width:80%
 }
 .con .topMenu .list {
  width:90%;
  padding-top:30px
 }
 .con .topMenu .list img {
  right:65px
 }
 .con .topMenu .list .nav .right {
  margin-top:15px
 }
 
 
 
}
@media screen and (max-width:1000px) {
 .con {
  background-color:#000
 }
 .con .main {
  display:none
 }
 .con .top {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:horizontal;
  -webkit-box-direction:normal;
  -ms-flex-direction:row;
  flex-direction:row;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
  width:100%;
  -webkit-transition:all 2s;
  transition:all 2s;

 }
 .con .top a {
  text-align:center;
  display:inline-block;
  margin:10px auto;
  width:40%;

 }
 .con .top a img {
  width:100%;
  -o-object-fit:contain;
  object-fit:contain;
  margin-top:5px;
 }
 .con .mNav {
  display:block;
  -webkit-transition:.8s;
  transition:.8s;
  position:absolute;
  right:0;
  top:7px;
  bottom:0;
  width:60px
 }
 .con .mNav .burger {
  width:32px;
  height:3px;
  background-color:#fff;
  position:absolute;
  top:25px;
  left:50%;
  margin:0 0 0 -16px;
  -webkit-transform-origin:center;
  transform-origin:center;
  -webkit-transition:.8s;
  transition:.8s
 }
 .con .mNav .burger:nth-of-type(2) {
  top:35px
 }
 .con .mNav .burger:nth-of-type(3) {
  top:45px
 }
 .con .mNav.active .burger:first-of-type {
  top:35px;
  -webkit-transform:rotate(225deg);
  transform:rotate(225deg)
 }
 .con .mNav.active .burger:nth-of-type(2) {
  opacity:0
 }
 .con .mNav.active .burger:nth-of-type(3) {
  top:35px;
  -webkit-transform:rotate(-225deg);
  transform:rotate(-225deg)
 }

 .swiper-container{ margin-top:90px;}
 }
 
 
 
 @media screen and (max-width:768px) {
	 
 .con .top a {
  text-align:center;
  display:inline-block;
  margin:10px auto;
  width:40%;
  margin-top:20px
 }
 .con .top a img {
  width:100%;
  -o-object-fit:contain;
  object-fit:contain
 }
	 
	 
	 }
	 
 
 
 
 
 
 
 
 
 
 
.con:before {
 position:absolute;
 left:0;
 top:-100%;
 content:"";
 display:inline-block;
 height:100%;
 width:100%;
 background-color:#fff;
 -webkit-transition:all 1s;
 transition:all 1s
}
.dark:before {
 top:0
}
.dark .main .left .aImg {
 top:100%
}
.dark .main .left .bImg {
 top:0
}
.dark .main .right ul li:hover a,
.dark .main .right ul li a {
 color:#000
}
.dark .main .right ul li:before,
.dark .main .right ul li:hover:before {
 background-color:#000
}
.dark .main .right ul .showLi a {
 color:#000
}
.dark .main .right ul .showLi:before {
 width:100%
}
.dark .main .right .lan span {
 color:#000;
}
.dark .main .right .lan span i {
 color:#000!important;
}
.dark .main .right .lan .enspan,
.dark .main .right .lan span:hover {
 color:#000
}
.dark .main .right .lan .right1 .lines div {
 background-color:#000
}
.dark .main .right .lan .right1 .lines p {
 color:#000
}
@media screen and (max-width:1000px) {
 .dark:before {
  display:none
 }
}

.footer{
 width:100%;
 background:url(../img/footbg.png) no-repeat;
 background-size:cover;
 /*-webkit-animation-name:polygon;
 animation-name:polygon;
 -webkit-animation-duration:2s;
 animation-duration:2s;*/
}

.footer-center{ padding-left:10%;padding-right:10%;}


.footer .one {
 width:100%;
 -webkit-box-pack:justify;
 -ms-flex-pack:justify;
 justify-content:space-between;
 padding:40px 0;
 border-bottom:1px solid #6c7178
}
.footer .one .left,
.footer .one {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row
}
.footer .one .left {
 width:50%;
 margin-right:30px;

}




.footer .one .left .l p:first-child {
 color:#fff;
 font-size:25px;
 text-transform:uppercase;
 padding-bottom:10px;

}

.footer .one .left .l{ margin-right:100px;}

.footer .one .left .l:Last-child{margin-right:0px;}


.footer .one .left a{color:#6c7178;}
.footer .one .left a:hover{ color:#fff}

.footer .one .left .r {
 padding-top:70px;

}
.footer .one .left p {
 color:#6c7178;
 font-weight:lighter;
 font-size:14px;
 line-height:30px;
 cursor:pointer;
 -webkit-transition:all 1s;
 transition:all 1s
}
.footer .one .left p:hover {
 color:#fff
}
.footer .one .center {
 width:30%;
 margin-right:40px;
}
.footer .one .center p:first-child {
 color:#fff;
 font-family:pm;
 font-size:25px;
 text-transform:uppercase;
 padding-bottom:10px
}
.footer .one .center p:nth-child(2) {
 font-size:18px;
 text-transform:capitalize;
 color:#fff;
 padding:10px 0;
 display:none
}
.footer .one .center p {
 color:#6c7178;
 font-family:Fira Code Medium;
 font-weight:lighter;
 font-size:14px;
 line-height:30px
}
.footer .one .right {
 width:30%;
}

.footer .one .right p:first-child {
 color:#fff;
 font-family:pm;
 font-size:25px;
 text-transform:uppercase;
 padding-bottom:10px
}

.footer .one .right p {
 color:#6c7178;
 font-family:Fira Code Medium;
 font-weight:lighter;
 font-size:14px;
 line-height:30px
}


.footer .one .right .info {
 position:relative;

}


.footer .one .right .info {
	position:relative;
    background-color: rgba(255,255,255,0.9);
    padding: 5px;
    margin: 5px 0;
    margin-bottom: 5px;
    box-shadow: 0px 2px 2px rgba(0,0,0,.2);
    border-radius: 3px;
}

.footer .one .right .info form {
    height: 30px;
    padding: 0;
}

.footer .one .right .info #name {
    height: 30px;
    border: 1px #d2dae2 solid;
    border-radius: 0;
    width: 100%;
	padding:0
}

.footer .one .right .info .btn {
    background-color: #ea6205;
    height: 30px;
    border: 0;
    border-radius: 0;
	width:24%;
    color: #fff;
	cursor:pointer;
    font-size:14px;
}

.row {
 
}

.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}


.footer .one .right .info .col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left:0px;
  float:left;
}

@media (min-width: 768px){
	.footer .one .right .info .col-sm-9{ float:left;width: 75%;}
	
	}


@media (min-width: 992px){
	.footer .one .right .info .col-md-10{ float:left; width: 75.33333333333334%;}
	}


@media screen and (max-width:1441px) and (min-width:1000px) {
	
	.footer .one .right .info .col-sm-9{ float:left;width: 62% !important; }
	.footer .one .right .info .col-md-2{ width:38% !important;}
	
	}



.footer .one .right .info input {
 width:100%;
 height:35px;
 background-color:transparent;
 outline:none;
 border:none;
 border-color:hsla(0,0%,100%,.1)!important;
 border-bottom:1px solid hsla(0,0%,100%,.1);
 color:#6c7178;
 font-style:italic;
 font-family:tsd;
 text-indent:10px
}
.footer .one .right .info input:focus {
 outline:none
}
.footer .one .right .info span {
 position:absolute;
 right:0;
 top:10px;
 -webkit-transform:rotate(180deg);
 transform:rotate(180deg);
 cursor:pointer
}
.footer .one .right .info span i {
 color:hsla(0,0%,100%,.5);
 font-size:20px;
 -webkit-transition:all 1s;
 transition:all 1s
}
.footer .one .right .info span i:hover {
 color:#fff
}
.footer .one .right .icons {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row;
 -webkit-box-pack:left;
 -ms-flex-pack:left;
 justify-content:left;
 -webkit-box-align:left;
 -ms-flex-align:left;
 align-items:left
}
.footer .one .right .icons i {
 color:#5b6067;
 font-size:34px;
 padding-right:5px;
 cursor:pointer;
 -webkit-transition:all 1s;
 transition:all 1s
}

.footer .one .right .icons img{ -webkit-transition:.5s ease;-moz-transition:.5s ease;transition:.5s ease; opacity:.5;}
.footer .one .right .icons a:hover img{ opacity:1}


.footer .one .right .icons i:hover {
 color:#ea6306
}

.footer .one .right .img{ width:40%; overflow:hidden;}
.footer .one .right .img img{
	margin-top:10px;
	width:100% !important;

}

@media screen and (max-width:1920px) and (min-width:1441px) {
	.footer .one .right .img{ width:30%; overflow:hidden;}
	}
.footer .two {
 width:100%;
 padding:30px 0;
 
}
.footer .two .content {
 width:100%;
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row;
 -webkit-box-pack:justify;
 -ms-flex-pack:justify;
 justify-content:space-between;
 -webkit-box-align:center;
 -ms-flex-align:center;
 align-items:center
}
.footer .two .content p:first-child {
 font-size:15px
}
.footer .two .content p:first-child a,
.footer .two .content p:first-child {
 color:#6c7178;
 -webkit-transition:all 1s;
 transition:all 1s
}
.footer .two .content p:first-child a:hover {
 color:#fff
}
.footer .two .content p:nth-child(2) {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row;
 -webkit-box-pack:justify;
 -ms-flex-pack:justify;
 justify-content:space-between
}
.footer .two .content p:nth-child(2) i {
 color:#5b6067;
 font-size:30px;
 padding-right:5px;
 cursor:pointer;
 -webkit-transition:all 1s;
 transition:all 1s
}
.footer .two .content p:nth-child(2) i:hover {
 color:#ea6306
}
.footer .two .content .link {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:horizontal;
 -webkit-box-direction:normal;
 -ms-flex-direction:row;
 flex-direction:row;
 -webkit-box-align:center;
 -ms-flex-align:center;
 align-items:center
}
.footer .two .content .link a,
.footer .two .content .link span {
 color:#6c7178;
 font-size:15px;
 margin:0 5px
}
.footer .two .content .link a {
 -webkit-transition:all 1s;
 transition:all 1s
}
.footer .two .content .link a:hover {
 color:#fff
}
@-webkit-keyframes polygon {
 0% {
  -webkit-clip-path:polygon(0 0,60% 0,0 0,100% 0);
  clip-path:polygon(0 0,60% 0,0 0,100% 0)
 }
 to {
  -webkit-clip-path:polygon(0 0,0 100%,100% 100%,100% 0);
  clip-path:polygon(0 0,0 100%,100% 100%,100% 0)
 }
}
@keyframes polygon {
 0% {
  -webkit-clip-path:polygon(0 0,60% 0,0 0,100% 0);
  clip-path:polygon(0 0,60% 0,0 0,100% 0)
 }
 to {
  -webkit-clip-path:polygon(0 0,0 100%,100% 100%,100% 0);
  clip-path:polygon(0 0,0 100%,100% 100%,100% 0)
 }
}
@media screen and (max-width:1440px) and (min-width:1000px) {
 .footer .one {
  width:90%;
  margin-left:5%
 }
 .footer .one .left {
  width:60%
 }
 .footer .one .left .r {
  margin-left:20px
 }
 .footer .two .content {
  width:90%;
  margin-left:5%
 }
 
 
 
 
 .footer .one .left .l{ margin-right:30px;}
 
 .footer .one .center p:first-child,.footer .one .left .l p:first-child,.footer .one .right p:first-child {
 color:#fff;
 font-family:pm;
 font-size:20px;
 text-transform:uppercase;
 padding-bottom:10px
}
 
 .footer .one .right .info .btn{ width:30%;}
 
 .footer .one .right .info .col-md-10{ float:left; width: 69.33333333333334%;}
 
}
@media screen and (max-width:999px) {
 .footer .one {
  width:90%;
  margin-left:5%;
  padding:20px 0;
  display:block;
 }
 
 .footer .one .left {
  display:none
 }
 .footer .one .center{ margin-bottom:30px;}
 
 .footer .one .center,.footer .one .right {
  width:100%;
  padding-top:0;
  display:block;
 }
 .footer .one .right .img img {
  width:100%
 }
 .footer .two .content {
  width:90%;
  margin-left:5%;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:column
 }
 .footer .two .content p {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  text-align:center;
 }
 .footer .two .content .link,
 .footer .two .content p {
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:row;
  line-height:30px;
 }
}


@media screen and (max-width:768px) {
	
	
	.footer .one .right .info .btn{ width:30%;}
 
 .footer .one .right .info .col-md-10{ float:left; width: 69.33333333333334%;}
	
	}





.about-con {
 width:100%;
 position:relative;
 overflow:hidden
}
.about-con img {
 width:100%;
 -o-object-fit:cover;
 object-fit:cover;
 display:block
}
.about-con .text {
 position:absolute;
 left:25%;
 width:50%;
 top:50%;
 text-align:center
}
.about-con .text p {
 color:#fff;
text-shadow: 1px 1px 1px #000;
}
.about-con .text p:first-child {
 font-size:35px;
 font-weight:700
}
.about-con .text p:nth-child(2) {
 font-size:25px;
 font-family:Fira Code Medium;
 font-weight:lighter;
 margin-top:40px
}
.about-con .scr {
 width:10%;
 position:absolute;
 left:45%;
 bottom:0;
 z-index:1000;
 height:150px;
 text-align:center;
 text-transform:uppercase;
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-orient:vertical;
 -webkit-box-direction:normal;
 -ms-flex-direction:column;
 flex-direction:column;
 -webkit-box-pack:center;
 -ms-flex-pack:center;
 justify-content:center
}
.about-con .scr span {
 width:1px;
 height:150px;
 background-color:hsla(0,0%,100%,.2);
 position:relative;
 margin-left:50%
}
.about-con .scr span:before {
 content:"";
 display:inline-block;
 width:1px;
 height:40px;
 position:absolute;
 top:0;
 left:0;
 -webkit-animation:runa 2s ease infinite;
 animation:runa 2s ease infinite;
 background-color:#fff
}
@-webkit-keyframes runa {
 0% {
  top:0
 }
 to {
  top:100%
 }
}
@keyframes runa {
 0% {
  top:0
 }
 to {
  top:100%
 }
}
@media screen and (max-width:1440px) and (min-width:1000px) {
 .about-con .text {
  top:45%
 }
 .about-con .scr {
  height:120px
 }
}
@media screen and (max-width:1000px) {
 .about-con img {
  height:500px
 }
 .about-con .text {
  width:80%;
  left:10%
 }
 .about-con .text p:first-child {
  font-size:35px
 }
 .about-con .text p:nth-child(2) {
  font-size:20px;
  line-height:30px
 }
}

@media screen and (max-width:768px) {
 .about-con img {
  height:350px
 }
 .about-con .text {
  width:80%;
  left:10%
 }
 .about-con .text p:first-child {
  font-size:35px
 }
 .about-con .text p:nth-child(2) {
  font-size:20px;
  line-height:30px
 }
}



@font-face {font-family: "iconfont";
  src: url('../fonts/iconfont.eot?t=1592875951495'); /* IE9 */
  src: url('../fonts/iconfont.eot?t=1592875951495#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('../fonts/iconfont.woff?t=1592875951495') format('woff'),
  url('../fonts/iconfont.ttf?t=1592875951495') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  url('../fonts/iconfont.svg?t=1592875951495#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icondingzhi1:before {
  content: "\e60f";
}

.iconshouye:before {
  content: "\e606";
}

.iconchanpin:before {
  content: "\e63b";
}

.iconhuiyuan1:before {
  content: "\e9e8";
}

.iconzuanshi1:before {
  content: "\e61a";
}

.iconquxiao:before {
  content: "\e713";
}

.iconliuyanfill:before {
  content: "\e743";
}

.iconshouji:before {
  content: "\e60d";
}

.iconpull_up:before {
  content: "\e60e";
}

.icondashi1:before {
  content: "\e66c";
}

.icondenglu:before {
  content: "\e619";
}

.icondingzhi3:before {
  content: "\e674";
}

.iconzuanshi:before {
  content: "\e629";
}

.icondianhua3:before {
  content: "\e686";
}

.iconqq1:before {
  content: "\e62c";
}

.iconjiantou-copy-copy:before {
  content: "\ea72";
}

.iconjiantou-copy:before {
  content: "\e60c";
}

.iconkongyemian:before {
  content: "\ea6e";
}

.iconyanjing:before {
  content: "\e7a4";
}

.iconyanjing1:before {
  content: "\e695";
}

.iconzhongzhimima:before {
  content: "\e682";
}

.icondingdan:before {
  content: "\e60b";
}

.icon_bianji:before {
  content: "\e68d";
}

.iconqueren:before {
  content: "\e669";
}

.iconyanzhengma2:before {
  content: "\e618";
}

.iconquerenmima:before {
  content: "\e628";
}

.iconyanzhengma1:before {
  content: "\e82a";
}

.iconmima:before {
  content: "\e605";
}

.iconmobile-phone:before {
  content: "\e656";
}

.iconfangan:before {
  content: "\e8d2";
}

.iconyaokongyuechi-copy:before {
  content: "\e602";
}

.iconzhiliang-:before {
  content: "\e673";
}

.iconjishu:before {
  content: "\e61c";
}

.iconquerenfangan:before {
  content: "\e62b";
}

.iconxingxing:before {
  content: "\e71a";
}

.iconyouxiangrenzheng:before {
  content: "\e660";
}

.iconrenming:before {
  content: "\e607";
}

.icondizhi:before {
  content: "\e610";
}

.icongongsi1:before {
  content: "\e617";
}

.iconzuoji-xian:before {
  content: "\e646";
}

.iconqq:before {
  content: "\e616";
}

.iconchuanzhen:before {
  content: "\e609";
}

.iconlianxiren:before {
  content: "\e654";
}

.iconyouxiang:before {
  content: "\e68b";
}

.iconyanzhengma:before {
  content: "\e636";
}

.iconphone:before {
  content: "\e880";
}

.icongongsi:before {
  content: "\e679";
}

.iconliuyanban-05:before {
  content: "\e630";
}

.iconhuodong:before {
  content: "\e615";
}

.iconliwu:before {
  content: "\e697";
}

.iconpeizhitubiaosvg-:before {
  content: "\e663";
}

.icondaixinnianjiaqi:before {
  content: "\e62d";
}

.iconjiaban:before {
  content: "\e627";
}

.icontijian:before {
  content: "\e667";
}

.iconjieqinghuodong:before {
  content: "\e71e";
}

.iconhuaban-:before {
  content: "\e67b";
}

.iconicon-test:before {
  content: "\e603";
}

.iconbieshu:before {
  content: "\e600";
}

.iconjiudian:before {
  content: "\e620";
}

.iconxiala:before {
  content: "\e67a";
}

.iconduigou:before {
  content: "\e61e";
}

.iconzixun:before {
  content: "\e625";
}

.iconkongzhi:before {
  content: "\e6a1";
}

.icondingzhi:before {
  content: "\e683";
}

.iconchuanglian-:before {
  content: "\e6d2";
}

.iconjuanlian:before {
  content: "\e640";
}

.iconhuiyuan:before {
  content: "\e614";
}

.iconweixin-copy:before {
  content: "\e601";
}

.iconweibo:before {
  content: "\e621";
}

.iconshipin:before {
  content: "\e666";
}

.icontuxing:before {
  content: "\e61f";
}

.iconshubiaoxianxing:before {
  content: "\e634";
}

.iconxiangxia:before {
  content: "\e613";
}

.iconxiangxia-right:before {
  content: "\ea6f";
}

.iconright:before {
  content: "\e60a";
}

.iconright-copy:before {
  content: "\ea73";
}

.iconarrow-right:before {
  content: "\ea71";
}

.iconsousuo:before {
  content: "\e608";
}

.iconyou:before {
  content: "\e604";
}

.iconarrow-down:before {
  content: "\e747";
}

.iconarrow-left:before {
  content: "\ea70";
}



@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon:empty {
  width: 1em;
}

.glyphicon-asterisk:before {
  content: "\2a";
}

.glyphicon-plus:before {
  content: "\2b";
}

.glyphicon-euro:before {
  content: "\20ac";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270f";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-lock:before {
  content: "\e033";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-bookmark:before {
  content: "\e044";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-fire:before {
  content: "\e104";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-bell:before {
  content: "\e123";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-wrench:before {
  content: "\e136";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-briefcase:before {
  content: "\e139";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-paperclip:before {
  content: "\e142";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-pushpin:before {
  content: "\e146";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}





@font-face {
 font-family:ar;
 src:url(../fonts/ArialMT.ttf)
}
@font-face {
 font-family:tsd;
 src:url(../fonts/AvenirLTStd-Light.otf)
}
@font-face {
 font-family:pm;
 src:url(../fonts/Poppins-Medium.ttf)
}
@font-face {
 font-family:ding;
 src:url(../fonts/DINEngschriftStd.otf)
}
@font-face {
 font-family:os;
 src:url(../fonts/Oswald-Medium.ttf)
}
@font-face {
 font-family:iconfont;
 src:url(../fonts/iconfont.svg#iconfont) format('svg')
}
.iconfont {
 font-family:iconfont!important;
 font-size:16px;
 font-style:normal;
 -webkit-font-smoothing:antialiased;
 -moz-osx-font-smoothing:grayscale
}
.icon-zhiliang:before {
 content:"\E60B"
}
