.bg-color {
  background: #fff;
}

.head {
  background: #fff;
  position:fixed;
  top:0;
  left:0;
  width: 100%;
  z-index: 1000;
}
.head .warpper{
  display:flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  display:flex;
  align-items: center;
}
.logo>img{
  margin-right: 10px;
}
.logo>div h1{
  font-size: 2.8rem;
  color: #454545;
  font-weight: bold;
}
.logo>div>small{
  font-size: 1.2rem;
  color: #454545;
  letter-spacing: 0.5px;
}
.navul {
  display:flex;
  justify-content: center;
  align-items: center;
}
.navul li {
  margin:0 20px;
}
.navul li a{
  display:block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #454545;
  line-height: 100px;
  position:relative;
  overflow:hidden;
}
.navul li a:before{
  position:absolute;
  display: block;
  content: '';
  bottom:0;
  left:0;
  right:0;
  width: 100%;
  height: 3px;
  background:#0842a3;
  transform:rotateY(90deg);
  transition: 350ms 0s transform cubic-bezier(0.42, 0, 0.58, 1);
}
.navul li.active a:before,
.navul li:hover a:before {
  transform:rotateY(0deg);
}
.head-group{
  display:flex;
  align-items: center;
}
.head-group li{
  background:#1a479c;
  border-radius: 30px;
  display:flex;
  align-items: center;
  cursor: pointer;
  transition: 400ms 0s all linear;
}
.head-group li>div{
  width: 40px;
  height: 40px;
  display:flex;
  align-items: center;
  justify-content: center;
}
.head-group li>div svg{
  width: 25px;
  height: 25px;
}
.tel{
  margin-left: 10px;
  padding-left:7px;
  padding-right:15px;
}
.tel span{
  color:#fff;
  font-size: 1.6rem;
  line-height: 40px;
  height: 40px;
  overflow:hidden;
}

.flex_c_c{
  display:flex;justify-content: center;  align-items: center;
}


.searchshowbg{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  width: 100%;
  background:#fff;
  border-top: 1px solid #ddd;
}
.searchshowbg>div{
  height: 120px;
}
.searchshowbg form input[name=keyword]{
  width: 270px;
  line-height: 50px;
  border:1px solid #eee;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding:0 15px;
  font-size: 1.6rem;
  color: #333;
}
.searchshowbg form input[name=keyword]::placeholder{
  font-size: 1.6rem;
  color: #333;
}
.searchshowbg form input[type=submit] {
  line-height: 50px;
  width: 110px;
  background:#1a479c;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}







/*indexbody*/
.indexbody{
  position: relative;
  height: 100%;
}
.indexSwiper {
  width: 100%;
  height: 100%;
}
.indexSwiper>.swiper-wrapper>.swiper-slide{
  width: 100%;
  height: 100%;
}
.indexSwiper>.swiper-wrapper>.swiper-slide:last-of-type{
  height: initial;
}
.indexpd{
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 100px;
}
.title{
  text-align: center;
  margin-bottom:1.5vw;
}
.title h3{
  font-size: 3.6rem;
  font-weight: bold;
  color: #333333;
}
.title p{
  font-size: 1.6rem;
  color: #444444;
}
/*banner*/
.swiperbanner{
  width: 100%;
  height: 100%;
}
.swiperbanner .swiper-button-prev{
  width: 100px;
  left:3%;
}
.swiperbanner .swiper-button-next{
  width: 100px;
  right: 3%;
}
.swiperbanner .swiper-button-next svg{
  transform: rotate(180deg);
}
.swiperbanner .swiper-button-prev svg,
.swiperbanner .swiper-button-next svg {
  width: 30px;
  height: 30px;
}
.swiperbanner .swiper-button-prev:after,
.swiperbanner .swiper-button-next:after{
  display:none;
}
.swiperbanner .swiper-button-prev i,
.swiperbanner .swiper-button-next i{
  display:block;
  width: 1px;
  background:#fff;
  height: 16px;
  margin:0 10px;
  transition: 350ms 0s all ease;
}
.swiperbanner .swiper-button-prev span,
.swiperbanner .swiper-button-next span{
  color: #fff;
  transition: 350ms 0s all ease;
  font-size: 1.6rem;
}
.swiperbanner .swiper-button-prev:hover span,
.swiperbanner .swiper-button-next:hover span{
  font-size: 1.8rem;
}
.swiperbanner .swiper-button-prev:hover i,
.swiperbanner .swiper-button-next:hover i{
  margin:0 15px;
}

.swiperbanner .swiper-pagination{
  bottom:3vw;
}
.swiperbanner .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  background:#fff;
  position:relative;
  margin:0 15px!important;
  opacity: 1;
}
.swiperbanner .swiper-pagination-bullet:after{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  display:block;
  content: '';
  width: 30px;
  height: 30px;
  border:2px solid #fff;
  border-radius: 50%;
  opacity: 0;
}
.swiperbanner .swiper-pagination-bullet-active:after{
  opacity: 1;
}

/*公司简介*/
.indexCompany{
  background-image: url('../images/combg.png'),linear-gradient(#13439e,#2452aa);
  background-repeat: no-repeat; /* 对所有背景层生效 */
  background-position: right bottom; /* 对所有背景层生效 */
  display:flex;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.indexcom_left{
  width: 45%;
  height: 100%;
}
.indexcom_left img{
  height: 100%;
}
.indexcom_right{
  width: 47%;
  box-sizing: border-box;
  padding-left: 2vw;
  padding-top: 100px;
}


.indexcom_right>small{
  font-size: 2rem;
  color: #fff;
  display:block;
}


.indexcom_right>h1{
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
}
.indexcom_right>b{
  display:block;
  width: 30px;
  height: 4px;
  background:#fff;
  margin:15px 0;
}
.indexcom_right>p{
  font-size: 1.6rem;
  color: #fff;
  line-height: 32px;
  -webkit-line-clamp: 5; /* 关键属性：显示3行后省略 */
  display: -webkit-box;
  -webkit-box-orient: vertical; /* 垂直排列 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
  margin-bottom: 3vw;
}
.indexcom_right>ul{
  display:flex;
  align-items: center;
  margin-top: 4vw;
}
.indexcom_right>ul li:last-of-type{
  margin-right: 0;
}
.indexcom_right>ul li h4{
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  margin-top: 15px;
}
.indexcom_right>ul li p{
  font-size: 1.4rem;
  color: #fff;
}

@media only screen and (min-width: 960px) {
  .trani{
    transition-property:all;
    transition-duration:1s;
    transition-timing-function:ease-in-out;
    transition-delay:0.5s;
    transform:translateY(20px);
    opacity: 0;
  }
  .swiper-slide-active .trani{
    transform:translateY(0);
    opacity:1;
  }
  .indexcom_right>h1{
    transition: 350ms 0.2s all ease-in-out;
    transform:translateY(20px);
    opacity: 0;
  }
  .indexcom_right>small{
    transition: 350ms 0s all ease-in-out;
    transform:translateY(20px);
    opacity: 0;
  }
  .indexcom_right>ul li{
    margin-right: 4vw;
    transition: 350ms 0.2s all ease-in-out;
    transform:translateY(20px);
    opacity: 0;
  }
  .indexSwiper .swiper-slide-active .indexcom_left{
    width: 50%;
  }
}








/*产品*/
.indexprobg{
  background:url("../images/probg.jpg") repeat center/cover;
  display:flex;
  align-items: center;
  justify-content: center;
}
.proflSwiper{
  width: 80%;
  margin:0 auto;
  margin-bottom: 2vw;
}
.proflSwiper .swiper-slide a{
  display:flex;
  justify-content: center;
  align-items: center;
  background:#fff;
  width:100%;
  height: 73px;
  border-radius: 8px;
  transition: 350ms 0s all ease;
}
.proflSwiper .swiper-slide a:hover{
  background:#1a479c;
}
.proflSwiper .swiper-slide a img{
  transition: 350ms 0s all ease;
  max-height: 28px;
  max-width: 30px;
}
.proflSwiper .swiper-slide a span{
  display:block;
  margin-left: 8px;
  font-size: 1.8rem;
  color: #3d3d3d;
  transition: 350ms 0s all ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
}
.proflSwiper .swiper-slide a:hover img{
  filter:grayscale(100) brightness(100);
}
.proflSwiper .swiper-slide a:hover span{
  color: #fff;
}
.prolistSwiper .swiper-slide a{
  display:block;
  background:#fff;
  border-radius: 8px;
  overflow:hidden;
  width: 100%;
}
.proallStyle a>b{
  width: 100%;
  height: 17vw;
}
.proallStyle a>b>i{
  border-radius: 50%;
  text-align: center;
  width: 64px;
  line-height: 64px;
  font-weight: lighter;
  font-size: 4rem;
  background: rgba(26, 71, 156, 0.9);
  color: #fff;
  position:absolute;
  left:50%;
  top:40%;
  transform: translate(-50%,-50%);
  transition: 350ms 0s all ease;
  opacity: 0;
}
.proallStyle a:hover>b>i {
  top:50%;
  opacity: 1;
}
.proallStyle a>p{
  width:100%;
  text-align: center;
  line-height: 70px;
  box-sizing: border-box;
  padding:0 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
  font-size: 1.8rem;
  color: #444444;
  transition: 350ms 0s all ease;
}
.proallStyle a:hover>p{
  background:#1a479c;
  color: #fff;
}

/*解决方案*/
.sloSwi01{
  width: 100%;
  height: 100%;
  position:relative;
  overflow:hidden;
}
#clock{
  position: absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width: 37vw;
  height: 37vw;
  z-index: 100;
}
.wid-100{
  height: 100%;
  position:absolute;
}

.msg_2{
  position:absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
}
.msg_2 li{
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  display:none;
}
.msg_2 li.on{
  display:block;
}
.max-wid{
  position:absolute;
  left:50%;
  bottom:0;
  transform: translateX(-50%);
  height: calc(100% - 100px);
  z-index: 99;
}
.tio_div{
  position:absolute;
  left:0;
  top: 6vw;
}
.tio_div>h2{
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
}
.tio_div>h4{
  font-size: 3.6rem;
  color: #fff;
  font-weight: lighter;
}
.tio_div>b{
  display:block;
  width: 37px;
  height: 4px;
  background:#fff;
  margin-bottom: 2vw;
  margin-top: 1vw;
}

.msg_1{
  color: #fff;
  font-size: 2rem;
  position:absolute;
  bottom:6vw;
  right:0;
  width: 420px;
  text-align: right;
}
.msg_1 li{

  display:none;
}
.msg_1 li.on{
  display:block;
}
.msg_1 li a{
  margin-left:auto;
  margin-right: 0;
}


.msg_1 li>h3{
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
}
.msg_1 li>h5{
  font-size: 1.8rem;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 1.5vw;
}


#home #top .indexBanner #clock>img {
  height: 100%;
  position: absolute;
  z-index: 3;
}

.time-box {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

.time-box>ul {
  width: 0;
  position: absolute;
}


.time-box>ul>li {
  height: calc(100% + 2.5px);
  position: absolute;
  bottom: -1%;
  left: 0;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  color: rgba(255, 255, 255, 0.6);
}
.time-cir li img{
  position:relative;
  max-width: 22px;
  max-height: 22px;
  opacity: 0;
}
.time-box>ul.time-cir {
  transform: scale(1.02);
  bottom: 51%;
  left: 50%;
  height: 50%;
}
.time-box>ul>li i {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  cursor: pointer;
  pointer-events: auto;
  display:flex;
  align-items: center;
  justify-content: center;
}
.time-box>ul>li:nth-of-type(1) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.time-box>ul>li:nth-of-type(2) {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}
.time-box>ul>li:nth-of-type(3) {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}
.time-box>ul>li:nth-of-type(4) {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.time-box>ul>li:nth-of-type(5) {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.time-box>ul>li:nth-of-type(6) {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}


.time-box>ul>li:nth-of-type(1) i img{
  transform: rotate(-180deg);
}
.time-box>ul>li:nth-of-type(2) i img{
  transform:rotate(-240deg);
}
.time-box>ul>li:nth-of-type(3) i img{
  transform:rotate(-300deg);
}
.time-box>ul>li:nth-of-type(4) i img{
  transform: rotate(-360deg);
}
.time-box>ul>li:nth-of-type(5) i img{
  transform:rotate(-60deg);
}
.time-box>ul>li:nth-of-type(6) i img{
  transform: rotate(-120deg);
}
.time-box>ul.time-cir li i span{
  position:absolute;
  left:50%;
  top:50%;
  background:#fff;
  border-radius: 50%;
  transform:translate(-50%,-50%) ;

  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  opacity: 0.8;
}
.time-box>ul.time-cir li.on i span{
  width: 37px;
  height: 37px;
  opacity: 1;
}




.time-box>ul.time-cir li.on img{
  opacity: 1;
}

.time-box>ul.time-cir li p {
  cursor: pointer;
  pointer-events: auto;
  position: absolute;
  top: -60px;
  left: 50%;
  width: 120px;
  font-size: 1.6rem;
  transform: translateX(-50%) rotate(180deg);
  text-align: center;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.time-box>ul.time-cir li.on p {
  color: #fff;
  opacity: 1;
  font-weight: bold;
}
.time-box>ul>li:nth-of-type(2) p {
  transform: translateX(-21%) rotate(120deg);
  top: -60px;
}

.time-box>ul>li:nth-of-type(3) p {
  transform: translateX(-80%) rotate(60deg);
  top: -75px;
}

.time-box>ul>li:nth-of-type(4) p {
  transform: translateX(-50%) rotate(0deg);
  top: -45px;
}

.time-box>ul>li:nth-of-type(5) p {
  transform: translateX(-27%) rotate(300deg);
  top: -60px;
}

.time-box>ul>li:nth-of-type(6) p {
  transform: translateX(-79%) rotate(240deg);
  top: -69px;
}

.time-box .time-el .shi {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 45%;
  transform-origin: 50% 12.5%;
  height: 40%;
  width: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: all 1.6s ease-in-out;
}

.time-box .time-el .shi.on {
  transition-duration: 1s;
}

.time-box .time-el .fen {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 12%;
  transform-origin: 50% 76%;
  height: 50%;
  width: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.59, 0, 0.42, 0.99);
}

.time-move {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  transform: translateY(0px);
}
.time-move canvas
{
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}



/*合作伙伴*/
@keyframes cirscale {
  0%{transform:translate(-50%,-50%) scale(1);}
  35%{transform:translate(-50%,-50%) scale(1.05);}
  60%{transform:translate(-50%,-50%) scale(1.03)}
  100%{transform:translate(-50%,-50%) scale(1)}
}
@keyframes moveup {
  0%{transform:translateY(0)}
  35%{transform:translateY(5px)}
  50%{transform:translateY(0)}
  70%{transform:translateY(3px)}
  100%{transform:translateY(0)}
}
.indexcoopbg{
  background:url("../images/coopbg.jpg") no-repeat center/cover;
  display:flex;
  align-items: center;
  justify-content: center;
}
.indexcoop ul{
  width: 85%;
  margin:0 auto;
  margin-top: 2vw;
  height: 28vw;
  position:relative;
}
.indexcoop ul li{
  position:absolute;
  display:flex;
  justify-content: center;
  align-items: center;
  animation-name:moveup;
  animation-duration:2s;
  animation-timing-function:linear;
  animation-iteration-count:infinite;
  animation-direction:alternate;
  animation-fill-mode:forwards;
}
.indexcoop ul li:first-of-type{
  width: 160px;height: 160px;
  top:0;left:0;
  animation-delay:0s;
}
.indexcoop ul li:nth-of-type(2){
  width: 180px;height: 180px;
  bottom: 0;
  left: 8%;
  animation-delay:0.2s;
}
.indexcoop ul li:nth-of-type(3){
  width: 100px;height: 100px;
  top: 46%;
  left: 25%;
  animation-delay:0.6s;
}
.indexcoop ul li:nth-of-type(4){
  width: 180px;height: 180px;
  top:20%;right:52%;
  animation-delay:0.5s;
}
.indexcoop ul li:nth-of-type(5){
  width: 110px;height: 110px;
  bottom: 23%;
  left: 52%;
  animation-delay:0.4s;
}
.indexcoop ul li:nth-of-type(6){
  width: 130px;height: 130px;
  bottom: 8%;
  right: 28%;
  animation-delay:0.2s;
}
.indexcoop ul li:nth-of-type(7){
  width: 170px;height: 170px;
  top:10%;right:16%;
  animation-delay:0.5s;
}
.indexcoop ul li:nth-of-type(8){
  width: 160px;height: 160px;
  top:40%;right:0;
  animation-delay:0.4s;
}
.indexcoop ul li i{
  background: rgba(26, 71, 156, 0.2);
  display:block;
  width: 100%;
  height: 100%;
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  /* 动画简写：名称 时长 速度曲线 延迟 播放次数 方向 结束样式 */
  animation: cirscale 2s linear 0s infinite alternate forwards;
}
.indexcoop ul li i:before{
  width: 90%;
  height: 90%;
  background:#1a479c;
  border-radius: 50%;
  display:block;
  content: '';
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  animation: cirscale 1.6s linear 0.3s infinite alternate forwards;
}
.indexcoop ul li b{
  background:#fff;
  position:relative;
  display:flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 80%;
  border-radius: 50%;
}
.indexcoop ul li b img{
  max-width: 80%;
  max-height: 80%;
}

/*新闻资讯*/
.newsbg{
  background:url("../images/newsbg.jpg") no-repeat center/cover;
  display:flex;
  justify-content: center;
  align-items: center;
}
.newsbg .title h3,
.newsbg .title p{
  color: #fff;
}
.mynewsSwiper{
  position:relative;
  width: 100%;
  padding-top: 15px;
}
.mynewsSwiper .swiper-slide{
  transition: 350ms 0s all ease;
  transform:translateY(0);
}
.mynewsSwiper .swiper-slide a{
  display:block;
  width: 100%;
  background:#fff;
  box-sizing: border-box;
  padding:10px;

}
.mynewsSwiper .swiper-slide:hover{
  transform:translateY(-10px);
  box-shadow: 0 0 9px #555555;
}
.mynewsSwiper .swiper-slide a>b{
  width: 100%;
  height: 15vw;
}
.news_text {
  padding:10px;
  padding-bottom: 0;
  box-sizing: border-box
}
.news_text>h3{
  line-height: 50px;
  font-size: 2.2rem;
  color: #2b2b2b;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow:hidden;
  transition: 350ms 0s all ease;
}
.news_text>small{
  font-size: 1.6rem;
  color: #525252;
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news_text>div{
  margin-top: 4vw;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.news_text>div span{
  display:block;
  font-size: 1.5rem;
  color: #4c4c4c;
  transition: 350ms 0s all ease;
}

.mynewsSwiper .swiper-slide a:hover .news_text>h3,
.mynewsSwiper .swiper-slide a:hover .news_text>div span{
  color: #1a479c;
}
.mynewsSwiper .swiper-slide a .news_text>div svg{
  width: 25px;
}
.mynewsSwiper .swiper-slide a:hover .news_text>div svg path{
  fill:#1a479c;
}


/*footer*/
.footerbg{
  background:#1a479c;
}
.footer{
  padding:3vw 0;
}
.foot{
  background:#4569ad;
  padding:15px;
}
.foot,
.foot a{
  color: #fff;
  font-size:1.8rem;
}
.foot a:hover{
  text-decoration: underline;
}

.footer>.warpper{
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.foot-nav{
  display:flex;
  align-items: center;
  margin-bottom: 2vw;
}
.foot-logo{
  display:flex;
  align-items: center;
  margin-right: 3vw;
}
.foot-logo div {
  margin-left: 15px;
}
.foot-logo div h1{
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
}
.foot-logo div small{
  color: #fff;
  font-size: 1.4rem;
  letter-spacing:1.7px;
}
.foot-nav-list{
  display:flex;
  align-items: center;
  justify-content:flex-end;
}
.foot-nav-list a{
  color: #fff;
  margin-left: 2vw;
  font-size: 2rem;
  font-weight: bold;
}

.foot-nav-list a:hover{
  text-decoration: underline;
}
.fot_lx{
  display:flex;
  align-items: center;
}
.fot_lx li{
  display:flex;
  align-items: center;
  margin-right: 3vw;
}
.fot_lx li>img{
  margin-right: 12px;
}
.fot_lx li>div p{
  font-size: 1.8rem;
  color: #fff;
}
.fot_right{
  background:#fff;
  text-align: center;
  box-sizing: border-box;
  padding:10px;
}
.fot_right>img{
  width: 130px;
}
.fot_right>p{
  font-size: 1.4rem;
  color: #404040;
  margin-top: 5px;
}









.pro-sider {
  float: left;
  width: 260px;
}
.pro-sider .in-title {
  height: 80px;
  background: url(../images/i-pro-title.jpg) no-repeat center;
  text-align: center;
  line-height: 1;
  overflow: hidden;
}
.pro-sider .in-title h3 {
  margin-top: 20px;
  font-size: 22px;
  color: #fff;
  margin-bottom: 5px;
}
.pro-sider .in-title em {
  font-size: 13px;
  color: #728dbc;
}
.pro-sider .pro-sider-ul {
  border: 1px solid #ededed;
  background: #fff;
  border-top: none;
  overflow: hidden;
}
.pro-sider .pro-sider-ul .ul-li {
  padding: 0 15px;
  height: 59px;
}
.pro-sider .pro-sider-ul .ul-li a {
  position: relative;
  height: 58px;
  line-height: 58px;
  font-size: 14px;
  color: #595959;
  display: block;
  padding-left: 10px;
  padding-right: 30px;
  border-bottom: 1px dashed #ededed;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-sider .pro-sider-ul .ul-li a h2{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-sider .pro-sider-ul .ul-li a div.icon {
  position: absolute;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background: #ededed url(../images/sider-bg-01.png) no-repeat center;
  border-radius: 50%;
  right: 8px;
  top: 50%;
  margin-top: -8px;
  font-size: 12px;
}
.pro-sider .pro-sider-ul .ul-li:hover,
.pro-sider .pro-sider-ul .ul-li.active {
  background: #268ae7;
}
.pro-sider .pro-sider-ul .ul-li:hover a,
.pro-sider .pro-sider-ul .ul-li.active a {
  border: none;
  color: #fff;
}
.pro-sider .pro-sider-ul .ul-li:hover div.icon,
.pro-sider .pro-sider-ul .ul-li.active div.icon {
  background: #0058b1 url(../images/sider-bg-02.png) no-repeat center;
}
.pro-sider .pro-sider-ul .ul-li:last-child a {
  border-bottom: none;
}
.pro-sider .pro-sider-tel {
  overflow: hidden;
  height: 100px;
  line-height: 1;
  font-size: 20px;
  color: #0058b1;
  border: 1px solid #ededed;
  border-top: none;
  padding-left: 80px;
  background: url(../images/sider-tel.png) no-repeat 25px center;
}
.pro-sider .pro-sider-tel span {
  display: block;
  margin: 30px 0 8px;
  font-size: 14px;
  color: #808080;
}
.pro-sider .pro-sider-tel em {
  letter-spacing: 2px;
  font-weight: bold;
}


.m-column-t {
  position: relative;
  text-align: center;
  font-size: 0;
}
.m-column-t .center {
  display: inline-block;
  font-size: 0;
}
.m-column-t .center h3 {
  color: #333;
  font-size: 30px;
}
.m-column-t .center p {
  color: #d2d2d2;
  font-size: 30px;
}
.m-column-t span {
  position: absolute;
  width: 415px;
  top: 50%;
  margin-top: -5px;
  height: 5px;
  border-bottom: 1px solid #d2d2d2;
  z-index: 1;
}
.m-column-t span.mcl {
  left: 0;
}
.m-column-t span.mcl em {
  float: right;
}
.m-column-t span.mcr {
  right: 0;
}
.m-column-t span em {
  display: block;
  height: 11px;
  border-left: 1px solid #d2d2d2;
}
.textLine {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textLine3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textHidden {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.domHidden {
  overflow: hidden;
}
.about-main {
  padding: 20px 0 70px;
  min-height: 170px;
}
.about-main .ab-content {
  float: right;
  width: 925px;
}
.about-main .ab-content .title {
  line-height: 50px;
}
.about-main .ab-content .title a {
  color: #333;
  padding: 0 5px;
}
.about-main .ab-content .title span.icon-home {
  color: #535353;
}
.about-main .ab-content .title em {
  color: #999;
}
.about-main .ab-content .ab-conBox {
  overflow: hidden;
  background: #fff;
  min-height: 55px;
  padding: 30px 45px 40px;
}
.about-main .ab-content .ab-conBox .de-title {
  text-align: center;
  font-size: 20px;
  color: #333;
  line-height: 25px;
  margin-bottom: 8px;
}
.about-main .ab-content .ab-conBox .sub-co {
  font-size: 14px;
  color: #999;
  text-align: center;
  line-height: 18px;
}
.about-main .ab-content .ab-conBox .ab-detail {
  overflow: hidden;
  margin-top: 30px;
  font-size: 14px;
  color: #777373;
  line-height: 25px;
}
.ab-sild {
  float: left;
  width: 260px;
}
.ab-sild .title {
  position: relative;
  height: 50px;
  text-align: center;
  background: #f3c04b;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span {
  position: absolute;
  height: 3px;
  width: 30px;
  top: 50%;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span em {
  display: block;
  height: 7px;
  border-left: 1px solid #fff;
}
.ab-sild .title span.stl {
  left: 35px;
}
.ab-sild .title span.stl em {
  float: right;
}
.ab-sild .title span.str {
  right: 35px;
}
.ab-sild .sild-cate {
  background: #fff;
  margin-bottom: 20px;
}
.ab-sild .sild-cate .list {
  overflow: hidden;
}
.ab-sild .sild-cate .list li {
  position: relative;
  border-bottom: 1px solid #eee;
  height: 60px;
  line-height: 60px;
}
.ab-sild .sild-cate .list li a {
  display: block;
  padding-right: 35px;
  font-size: 14px;
  color: #333;
  padding-left: 20px;
}
.ab-sild .sild-cate .list li:last-child {
  border-bottom: none;
}
.ab-sild .sild-cate .list li:hover {
  border-color: #f3c04b;
  background: #f3c04b;
}
.ab-sild .sild-cate .list li:hover a {
  color: #fff;
}
.ab-sild .sild-cate .list li:hover:after {
  color: #fff;
}
.ab-sild .sild-cate .list li:after {
  font-weight: bold;
  right: 20px;
  top: 0;
  color: #999;
  position: absolute;
  content: "\e904";
  font-family: 'icomoon' !important;
}
.ab-sild .sild-cont {
  background: #fff;
}
.ab-sild .sild-cont .cont-list {
  padding: 20px;
}
.ab-sild .sild-cont .cont-list ul li {
  color: #333;
  padding: 5px 0;
  padding-left: 60px;
  font-size: 14px;
}
.ab-sild .sild-cont .cont-list ul li span {
  width: 60px;
  margin-left: -60px;
  display: block;
  height: 20px;
  line-height: 20px;
  float: left;
  color: #666;
}
.pro-center {
  background: #fff;
  padding-bottom: 25px;
}
.pro-center .pro-list {
  overflow: hidden;
  padding: 25px 18px 10px;
}
.pro-center .pro-list ul li {
  float: left;
  width: 200px;
  margin: 0 10px 20px;
  border: 1px solid #fff;
}
.pro-center .pro-list ul li:hover {
  border-color: #f3c04b;
}
.pro-center .pro-list ul li .img {
  overflow: hidden;
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  font-size: 0;
  background: #eee;
}
.pro-center .pro-list ul li .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.pro-center .pro-list ul li .title {
  background: #f7f8fc;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.pro-center .pro-list ul li .title:hover {
  color: #f3c04b;
}
.page {
  font-size: 0;
  text-align: center;
}
.page .center {
  display: inline-block;
  overflow: hidden;
}
.page .center .page-span {
  float: left;
  font-size: 14px;
  color: #c3c3c3;
  line-height: 32px;
  margin-right: 30px;
}
.page .center .page-list {
  float: left;
  overflow: hidden;
}
.page .center .page-list ul li {
  float: left;
  width: auto;
  min-width: 30px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0 4px;
  padding: 0;
  border: none;
  background: transparent;
}
.page .center .page-list ul li a {
  min-width: 20px;
  padding: 0 5px;
  border: 1px solid #eee;
  display: block;
  color: #333;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.page .center .page-list ul li:hover a {
  color: #f3c04b;
}
.page .center .page-list ul li.active a {
  background: #f3c04b;
  color: #fff;
}
.news-center {
  background: #fff;
  padding-bottom: 25px;
}
.news-center .new-list {
  padding: 45px 45px 0px;
}
.news-center .new-list ul li {
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
}
.news-center .new-list ul li a {
  overflow: hidden;
  display: block;
  height: 90px;
  padding-bottom: 30px;
}
.news-center .new-list ul li a .img {
  float: left;
  width: 130px;
  height: 90px;
  background: #eee;
  line-height: 90px;
  font-size: 0;
  text-align: center;
}
.news-center .new-list ul li a .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.news-center .new-list ul li a .info {
  float: right;
  width: 690px;
}
.news-center .new-list ul li a .info h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  color: #333;
}
.news-center .new-list ul li a .info em {
  display: block;
  font-size: 12px;
  color: #999;
  line-height: 16px;
  margin-bottom: 10px;
}
.news-center .new-list ul li a .info p {
  font-size: 14px;
  line-height: 22px;
  color: #999;
  max-height: 44px;
  overflow: hidden;
}
.news-center .new-list ul li a:hover h3 {
  color: #f3c04b;
}
.message-c {
  background: #fff;
  padding: 40px 50px;
  overflow: hidden;
}
.message-c .p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-bottom: 35px;
}
.message-c .from input {
  display: block;
  height: 38px;
  line-height: 38px;
  padding: 0 5px;
  border: 1px solid #d2d2d2;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
.message-c .from input[name=user],
.message-c .from input[name=phone] {
  width: 348px;
}
.message-c .from textarea {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  display: block;
  width: 728px;
  height: 130px;
  border: 1px solid #d2d2d2;
  padding: 5px;
  margin-bottom: 10px;
}
.message-c .from .code {
  overflow: hidden;
}
.message-c .from .code input[name=code] {
  width: 258px;
  float: left;
}
.message-c .from .code a {
  display: block;
  float: left;
  width: 80px;
  height: 38px;
  padding: 1px 0;
  margin-left: 10px;
}
.message-c .from .code a img {
  width: 80px;
  height: 38px;
}
.message-c .from .btn {
  padding-top: 25px;
}
.message-c .from .btn a {
  display: block;
  width: 362px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  background: #8fa4de;
}
.message-c .from .btn a:hover {
  background: #8397d0;
}
.contact-o {
  background: #fff;
  overflow: hidden;
  padding: 40px 0;
  text-align: center;
}
.contact-o iframe {
  width: 830px;
  height: 500px;
  margin: 0 auto;
}