/*内页样式开始*/
:root {
  --white: #fff;
  --black: #000;
  --primary: #b8926a;
}
@keyframes ks {
    0% {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 0;
    }
    10% {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      opacity: .3;
    }
    100% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      opacity: 0;
    }
  }
  @-webkit-keyframes ks {
    0% {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 0;
    }
    10% {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: .3;
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0;
    }
  }
  @-moz-keyframes ks {
    0% {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 0;
    }
    10% {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      opacity: .3;
    }
    100% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      transform: scale(1);
      opacity: 0;
    }
  }
  @-moz-keyframes ani_scale {
    0% {
      -webkit-transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes ani_scale {
    0% {
      -webkit-transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @-webkit-keyframes ani_scale {
    0% {
      -webkit-transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }

#index-body .news{
    margin-bottom:0;
}
#index-body .news .content{
    background: none;
}
.service-page .service-2 .service-2-img .s-2.active img {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}
/*#index-body .init-1 {
  background: url(../images/about-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}*/
#index-body .news {
    padding: 100px 0 0;
    position: relative;
    z-index: 1;
  }
  #index-body .news .header .left {
    vertical-align: bottom;
  }
  #index-body .news .header .left span.tag {
    width: 16.9%;
  }
  #index-body .news .header .left h3.title {
    font-size: 56px;
    margin-top: 14px;
    line-height: 2;
  }
  #index-body .news .header .right {
    text-align: right;
    vertical-align: bottom;
  }
  #index-body .news .content {
    padding-top: 80px;
  }
  #index-body .news .content ul {
    margin-right: -76px;
  }
  #index-body .news .content ul li {
    padding-right: 76px;
  }
  #index-body .news .content ul li .box {
    padding-top: 25px;
    position: relative;
    font-weight: 400;
  }
  #index-body .news .content ul li .box span {
    font-size: 16px;
    line-height: 2;
  }
  #index-body .news .content ul li .box time {
    display: block;
    font-size: 18px;
    line-height: 2;
    color: #ef8203;
    margin-top: 2px;
  }
  #index-body .news .content ul li .box h3 {
    font-size: 28px;
    line-height: 1.6;
    margin-top: 45px;
    font-weight: 400;
    text-transform: uppercase;
  }
  #index-body .news .content ul li .box p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.53);
    padding-right: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  #index-body .news .content ul li .box::before {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #ef8203;
    position: absolute;
    top: 0;
    left: 0;
  }
  #index-body .news .content ul li .box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -moz-transition: transform .5s ease, -moz-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease;
    -moz-transition: transform .5s ease;
    -ms-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    background: var(--primary);
  }
  #index-body .news .content ul li .box:hover::after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform-origin: 100% 0;
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    -o-transform-origin: 100% 0;
  }
  #index-body .news .bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  #index-body span.tag::before {
  content: '';
  height: 1px;
  background: #ef8203;
  width: 28.1%;
  display: inline-block;
  vertical-align: top;
  margin: 12px 18px 0 0;
}
#index-body .init-1 .about-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 67.5px 0 50px;
  position: relative;
  z-index: 2;
  margin: 100px 0 30px;
}
#index-body .init-1 .about-box::after {
  position: absolute;
  z-index: -1;
  content: "";
  left: 32.5px;
  height: 100%;
  width: 310px;
  top: 0;
  background: url(../images/xiantiao.jpg) no-repeat center center;
  background-size: cover;
}
#index-body .init-1 .about-box .left {
  width: 50%;
  padding-right: 30px;
  padding-bottom: 11.5px;
}
#index-body .init-1 .about-box .left .title h3 {
  margin-top: 2.5px;
  font-size: 36px;
  line-height: 2;
  text-transform: uppercase;
  color: #000000;
}
#index-body .init-1 .about-box .left .title h2 {
  font-size: 59px;
  line-height: .8;
  color: #000000;
  text-transform: uppercase;
  font-weight: bold;
  padding-left: 17.5px;
  margin-bottom: 7.5px;
}
/*#index-body .init-1 .about-box .left .content {
  max-width: 450px;
  margin: 0 0 0 auto;
}*/
#index-body .init-1 .about-box .left .content p {
  font-size: 16px;
  line-height: 2;
  color: #5b5b5b;
}
#index-body .init-1 .about-box .left .content .jinghuiabs {
  font-size: 16px;
  line-height: 2;
  color: #5b5b5b;
}
#index-body .init-1 .about-box .left .content .jinghuiabs h1 {
  display: inline;
}
#index-body .init-1 .about-box .left .play-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 25px;
  margin-top: 37.5px;
}
#index-body .init-1 .about-box .left .play-box .play {
  display: block;
  position: relative;
  z-index: 6;
  margin-left: 7.5px;
}
#index-body .init-1 .about-box .left .play-box .play::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
}
#index-body .init-1 .about-box .left .play-box .play::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}
#index-body .init-1 .about-box .right {
  width: 50%;
  position: relative;
}
#index-body .init-1 .about-box .right .a-1 {
  margin-left: -13px;
  width: 80%;
}
#index-body .init-1 .about-box .right .a-2 {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: -81px;
  width: 71.5%;
  z-index: 10;
}
#index-body .init-1 .about-box .right .a-2 img {
  -webkit-transition: 1s 0.6s cubic-bezier(0.53, 0.38, 0, 1);
  -moz-transition: 1s 0.6s cubic-bezier(0.53, 0.38, 0, 1);
  transition: 1s 0.6s cubic-bezier(0.53, 0.38, 0, 1);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
#index-body .init-1 .about-box .right .a-2::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -5px;
  background: #ef8203;
  -webkit-transition: 1s 0.3s cubic-bezier(0.53, 0.38, 0, 1);
  -moz-transition: 1s 0.3s cubic-bezier(0.53, 0.38, 0, 1);
  transition: 1s 0.3s cubic-bezier(0.53, 0.38, 0, 1);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
#index-body .init-1 .about-box .right .a-2.active img {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .init-1 .about-box .right .a-2.active::after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
#index-body .init-2 {
  background: url(../images/init-2-bg.jpg) no-repeat center center;
  background-size: cover;
}
#index-body .init-2 ul {
  position: relative;
  padding: 175px 0 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .init-2 ul li {
  position: relative;
  z-index: 5;
}
#index-body .init-2 ul li:first-child {
  padding-left: 22.5px;
}
#index-body .init-2 ul li p {
  font-size: 16px;
  line-height: 1;
  color: #505050;
  text-transform: uppercase;
  letter-spacing: 3px;
}
#index-body .init-2 ul li span {
  font-size: 100px;
  line-height: .8;
  color: #ef8203;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  white-space: nowrap;
}
#index-body .init-2 ul li span sub{
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
}
#index-body .init-4 {
  padding: 49.5px 0 37.5px;
  background: url(../images/init-4-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
#index-body .init-4 .swiper-slide {
  text-align: center;
}
#index-body .init-4 .swiper-slide:hover img {
  -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}
#index-body .init-4 .swiper-slide span img {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
#index-body .init-4 .swiper-slide h4 {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin: 10px 0 5px;
}
#index-body .init-4 .swiper-slide p {
  font-size: 14px;
  line-height: 2;
  color: #ffffff;
}
@media screen and (max-width: 1680px) {
  #index-body .init-2 ul{
    padding-left: 70px;
  }
}
@media screen and (max-width: 1440px) {
  #index-body .news .header .left h3.title {
    font-size: 52px;
    line-height: 2;
  }
}
@media screen and (max-width: 1280px) {
  #index-body .news .header .left h3.title {
    font-size: 45px;
  }
  #index-body .news {
    padding: 100px 0;
  }
  #index-body .news .content ul li .box h3 {
    font-size: 23px;
    line-height: 2;
  }
  #index-body .news .content ul li .box p {
    padding-right: 0;
    line-height: 2;
  }
  #index-body .init-2 ul{
    padding-left: 78px;
  }
  #index-body .init-2 ul li span{
    font-size: 70px;
  }
  #index-body .init-2 ul li p{
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 1100px) {
  #index-body .news .content ul {
    margin-right: -50px;
  }
  #index-body .news .content ul li {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1000px) {
  #index-body .news {
    padding: 60px 0;
  }
  #index-body .news .header .left {
    width: 100%;
  }
  #index-body .news .header .right {
    width: 100%;
    margin-top: 20px;
    text-align: left;
  }
  #index-body .news .content {
    padding-top: 60px;
  }
  #index-body .init-1 .about-box .left .title h2 {
    font-size: 55px;
  }
  #index-body .init-1 .about-box .left .play-box {
    padding-left: 0;
  }
  #index-body .init-1 .about-box .left .content p {
    font-size: 14px;
  }
  #index-body .init-2 ul {
    padding: 60px 0 60px 40px; 
  }
  #index-body .init-2 ul li span {
    font-size: 40px;
  }
}
@media screen and (max-width: 700px) {
  #index-body .news,
  #index-body .advantage {
    padding: 30px 0;
  }
  #index-body .news .header .left h3.title {
    font-size: 36px;
    line-height: 2;
  }
  #index-body .news .content {
    padding-top: 30px;
  }
  #index-body .init-1 .about-box .left {
    padding-right: 0;
    padding-bottom: 0;
    width: 100%;
  }
  #index-body .init-1 .about-box .right {
    display: none;
  }
   #index-body .init-2 {
    display: none;
  }
}
@media screen and (max-width: 500px) {

}

.more {
  padding: 13px 46px 13px 45px;
  display: inline-block;
  font-size: 18px;
  border-radius: 27px;
  color: var(--white);
  background: #ef8203;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  overflow: hidden;
}
.more::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -moz-transition: transform .5s ease, -moz-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease;
  -moz-transition: transform .5s ease;
  -ms-transition: transform .5s ease;
  -o-transition: transform .5s ease;
  -webkit-transition: transform .5s ease;
  background: var(--black);
}
.more:hover {
  color: var(--white);
}
.more:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
}

  .inner-banner .ui.container,
  .inner-page .ui.container {
    max-width: 1440px;
  }
  .inner-banner {
    height: 460px;
    background-position: center center;
    background-size: cover;
    position: relative;
  }
  .inner-banner .box {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 1;
    color: white;
  }
  .inner-banner .box .mbx {
    display: block;
    font-size: 20px;
    line-height: 2;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
  }
  .inner-banner .box .mbx:after {
    display: none;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: -1;
    -o-box-shadow: 0 0 30px 40px var(--primary);
    -webkit-box-shadow: 0 0 30px 40px var(--primary);
    box-shadow: 0 0 30px 40px var(--primary);
    background: var(--primary);
  }
  .inner-banner h2 {
    font-size: 40px;
    line-height: 2;
    margin-bottom: -12px;
    margin-top: 10px;
    z-index: 1;
    position: relative;
    padding-bottom: 30px;
    font-weight: bold;
  }
  .about-page#index-body .init-1.about-1 .about-box {
    padding: 67.5px 0 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .about-page#index-body .init-1.about-1 .about-box::after {
    display: none;
  }
  .about-page#index-body .init-1.about-1 .about-box .left .title {
    max-width: 450px;
  }
  .about-page#index-body .init-1.about-1 .about-box .left span.tag{
    font-size: 16px;
      letter-spacing: 3px;
  }
  .about-page#index-body .init-1.about-1 .about-box .left span.tag:before {
      content: '';
      height: 1px;
      background: var(--primary);
      width: 28.1%;
      display: inline-block;
      vertical-align: top;
      margin: 12px 18px 0 0;
  }
  .about-page#index-body .init-1.about-1 .about-box .left h3.title {
      margin-top: 32px;
      font-size: 30px;
      line-height: 1.2;
      letter-spacing: 1px;
      font-weight: 300;
      text-transform: uppercase;
  }
  .about-page#index-body .init-1.about-1 .about-box .left h3 {
    /*font-size: 15px;
    line-height: 1.5;*/
    font-weight: 600;
  }
  .about-page#index-body .init-1.about-1 .about-box .left .text {
    font-size: 13px;
    letter-spacing: 3px;
    margin: 7.5px 0 0;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 2.2em;
    color: var(--primary);
    max-width: 260px;
  }
  .about-page#index-body .init-1.about-1 .about-box .left .content {
    margin: 15px auto 0 0;
  }
  .about-page#index-body .init-1.about-1 .about-box .right .a-2 {
    top: 20%;
    bottom: auto;
    width: 68%;
  }
  .about-page#index-body .about-4 .more {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
  }
  .about-page#index-body .about-4 .more:hover {
    color: var(--primary);
  }
  .about-page#index-body .about-4 .more .border-holder {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .about-page#index-body .about-4 .more .border-holder span {
    background: #fff;
  }
  .about-page#index-body .about-4 .more .border-holder::after {
    background: #fff;
  }
  .about-page .about-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-3 .left {
    width: 50%;
    background: url(/yoolo/2024/07/19/about-3-1.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
  }
  .about-page .about-3 .left .about-3-img {
    display: none;
  }
  .about-page .about-3 .left .play {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .about-page .about-3 .left .play:hover svg circle:last-child {
    stroke-dashoffset: 0;
    -webkit-transform: rotate(55deg);
    -moz-transform: rotate(55deg);
    -ms-transform: rotate(55deg);
    transform: rotate(55deg);
  }
  .about-page .about-3 .left .play svg circle:last-child {
    stroke-dashoffset: 300;
    stroke-dasharray: 300;
    -webkit-transform: rotate(-200deg);
    -moz-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: 1.2s cubic-bezier(0.4, 0.37, 0.3, 0.8);
    -moz-transition: 1.2s cubic-bezier(0.4, 0.37, 0.3, 0.8);
    transition: 1.2s cubic-bezier(0.4, 0.37, 0.3, 0.8);
  }
  .about-page .about-3 .left .play::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
  }
  .about-page .about-3 .left .play::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    animation-delay: .4s;
  }
  .about-page .about-3 .right {
    width: 50%;
  }
  .about-page .about-3 .right .content {
    padding: 13.3% 25% 13.3% 17.5%;
  }
  .about-page .about-3 .right .content .content-title h3 {
    text-transform: uppercase;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: 0.75px;
    margin: 12.5px 0;
  }
  .about-page .about-3 .right .content .content-title .text {
    font-size: 13px;
    letter-spacing: 3px;
    margin: 6.5px 0 0;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 2.2;
    color: #ef8203;
  }
  .about-page .about-3 .right .content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 21px 0 0;
  }
  .about-page .about-3 .right .content ul li {
    width: 33.3333%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: #797979;
    margin-bottom: 9px;
  }
  .about-page .about-3 .right .content ul li .fa {
    margin-right: 5px;
  }
  .about-page .about-4 {
    /*background-image: url(../images/about-4-bg.jpg);*/
    background: #ef8203;
    padding: 45px 0;
  }
  .about-page .about-4 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .about-page .about-4 .container .text {
    max-width: 700px;
  }
  .about-page .about-4 .container .text h3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.09;
    letter-spacing: 0.75px;
    margin-bottom: 7.5px;
    word-wrap: break-word;
  }
  .about-page .about-4 .container .text P {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    line-height: 2.23;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 4px;
  }
  .about-page .about-5 {
    background: #1c0a09;
    padding: 62.5px 0;
  }
  .about-page .about-5 .top {
    text-align: center;
  }
  .about-page .about-5 .top h3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.09;
    letter-spacing: 0.75px;
    margin-bottom: 2.5px;
    word-wrap: break-word;
  }
  .about-page .about-5 .top P {
    font-size: 13px;
    letter-spacing: .6;
    font-weight: 500;
    margin: 0;
    line-height: 2.23;
    text-transform: uppercase;
    color: #ef8203 !important;
    letter-spacing: 8px;
  }
  .about-page .about-5 .teamBox {
    margin-top: 30px;
  }
  .about-page .about-5 .teamBox .swiper-slide img {
    width: 100%;
  }
  .about-page .about-5 .teamBox .swiper-slide h4 {
    text-transform: uppercase;
    color: #fff;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 10px 0 5px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
  }
  .about-page .about-5 .teamBox .swiper-slide p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 2;
    text-transform: uppercase;
    color: var(--primary);
  }
  .about-page .about-6 {
    padding: 67.5px 0;
    background-image: url(../images/about-6-bg.jpg);
  }
  .about-page .about-6 .swiper-slide {
    text-align: center;
  }
  .about-page .about-6 .swiper-slide h3 {
    text-transform: uppercase;
    color: #000;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.75px;
    margin: 10px 0 15px;
    word-wrap: break-word;
  }
  .about-page .about-6 .swiper-slide .text {
    margin: 0 0 21px;
    padding: 0 15%;
    font-size: 25px;
    color: #615e5e;
    line-height: 1.56;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
  }
  .about-page .about-6 .swiper-slide img {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
  }
  .about-page .about-6 .swiper-slide h4 {
    text-transform: uppercase;
    color: #000;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    margin: 10px 0 6px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
  }
  .about-page .about-6 .swiper-slide span {
    font-size: 13px;
    letter-spacing: .6;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    color: #ef8203 !important;
    letter-spacing: 8px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
  }
  .about-page .about-6 .swiper-slide-active .text {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 1s .3s;
    -moz-transition: 1s .3s;
    transition: 1s .3s;
  }
  .about-page .about-6 .swiper-slide-active img {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 1s .5s;
    -moz-transition: 1s .5s;
    transition: 1s .5s;
  }
  .about-page .about-6 .swiper-slide-active h4 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 1s .7s;
    -moz-transition: 1s .7s;
    transition: 1s .7s;
  }
  .about-page .about-6 .swiper-slide-active span {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 1s .7s;
    -moz-transition: 1s .7s;
    transition: 1s .7s;
  }
  .about-page .about-6 .clientBox {
    position: relative;
  }
  .about-page .about-6 .clientBox .swiper-button-prev,
  .about-page .about-6 .clientBox .swiper-button-next {
    width: auto;
    height: auto;
    background: none;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .about-page .about-6 .clientBox .swiper-button-prev {
    left: -5%;
  }
  .about-page .about-6 .clientBox .swiper-button-prev svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .about-page .about-6 .clientBox .swiper-button-next {
    right: -5%;
  }
  .service-page .service-1 {
    padding: 120px 0;
  }
  .service-page .service-1 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page .service-1 ul li {
    width: 25%;
    text-align: center;
  }
  .service-page .service-1 ul li .svg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .service-page .service-1 ul li .content h5 {
    text-transform: uppercase;
    color: #000;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 7.5px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
  }
  .service-page .service-1 ul li .content p {
    color: #000;
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 auto;
    max-width: 240px;
  }
  .service-page .service-2 {
    padding-bottom: 120px;
  }
  .service-page .service-2 .top {
    text-align: center;
  }
  .service-page .service-2 .top h3 {
    text-transform: uppercase;
    color: #000;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 5px;
    margin: 10px 0 0;
    word-wrap: break-word;
  }
  .service-page .service-2 .top p {
    font-size: 13px;
    letter-spacing: .6;
    font-weight: 500;
    margin: 0;
    line-height: 2.23;
    text-transform: uppercase;
    color: #ef8203;
    letter-spacing: 8px;
  }
  .service-page .service-2 .service-2-img {
    padding: 25px 0;
    position: relative;
  }
  .service-page .service-2 .service-2-img .s-1 {
    width: 83.1%;
  }
  .service-page .service-2 .service-2-img .s-2 {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 58%;
    /*top: 20%;*/
    width: 52.5%;
    z-index: 10;
  }
  .service-page .service-2 .service-2-img .s-2 img {
    -webkit-transition: 1s 0.6s cubic-bezier(0.53, 0.38, 0, 1);
    -moz-transition: 1s 0.6s cubic-bezier(0.53, 0.38, 0, 1);
    transition: 1s 0.6s cubic-bezier(0.53, 0.38, 0, 1);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  .service-page .service-2 .service-2-img .s-2::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: -5px;
    background: var(--primary);
    -webkit-transition: 1s 0.3s cubic-bezier(0.53, 0.38, 0, 1);
    -moz-transition: 1s 0.3s cubic-bezier(0.53, 0.38, 0, 1);
    transition: 1s 0.3s cubic-bezier(0.53, 0.38, 0, 1);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  .service-page .service-2 .service-2-img .s-2.active img {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  .service-page .service-2 .service-2-img .s-2.active::after {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  .service-page .service-2 .service-2-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page .service-2 .service-2-box .left {
    width: 45%;
    padding-top: 45px;
  }
  .service-page .service-2 .service-2-box .left .title {
    max-width: 450px;
  }
  .service-page .service-2 .service-2-box .left h3 {
    font-size: 22px;
    line-height: 1.2;
  }
  .service-page .service-2 .service-2-box .left .text {
    font-size: 13px;
    letter-spacing: 3px;
    margin: 15px 0 0;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 2.2em;
    color: #ef8203;
  }
  .service-page .service-2 .service-2-box .left .content {
    margin: 15px auto 0 0;
  }
  .service-page .service-2 .service-2-box .left .content p {
    margin: 5px 0;
    font-size: 16px;
    line-height: 2;
  }
  .service-page .service-2 .service-2-box .right {
    width: 50%;
    padding: 25% 0% 0% 10%;
  }
  .service-page .service-2 .service-2-box .right ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 6px;
    border-bottom: 1px solid rgba(12, 7, 5, 0.1);
  }
  .service-page .service-2 .service-2-box .right ul li span {
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 500;
    line-height: 2.15;
    text-transform: uppercase;
  }
  .service-page .service-2 .service-2-box .right ul li .item-label {
    color: #c28562;
  }
  .service-page .service-2 .service-2-box .right ul li .item-text {
    color: #615e5e;
  }
  .service-page .service-4 {
    background: url(/yoolo/2024/07/19/service1.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
  }
  .service-page .service-4 .s-form {
    margin: 0 auto;
    max-width: 860px;
    background: url(../images/noise-background.jpg) no-repeat center center;
    background-size: cover;
    padding: 40px 40px 35px;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
  }
  .service-page .service-4 .s-form form h2 {
    text-align: center;
    text-transform: uppercase;
    color: #000;
    font-size: 32px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.75px;
    margin-bottom: 7.5px;
    word-wrap: break-word;
  }
  .service-page .service-4 .s-form form .form-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .service-page .service-4 .s-form form .form-box input {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 20px;
    padding: 7px 20px 7px 0;
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: #000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #d5d5d5;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
  }
  .service-page .service-4 .s-form form .form-box input[type="date"] {
    width: 48%;
  }
  .service-page .service-4 .s-form form .form-box input[type="phone"] {
    width: 48%;
  }
  .service-page .service-4 .s-form form .form-box textarea {
    height: 80px;
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 0 0 20px;
    padding: 7px 20px 7px 0;
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: #000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #d5d5d5;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
    transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
  }
  .service-page .service-5 {
    padding: 120px 32.5px 27.5px;
  }
  .service-page .service-5 .partnerBox {
    margin-bottom: 25px;
  }
  .service-page .service-5 .partnerBox .swiper-slide {
    text-align: center;
  }
  .service-page .service-5 .partnerBox .swiper-slide:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    -webkit-filter: gray;
    filter: gray;
  }
  .service-page .service-5 .partnerBox .swiper-slide img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-filter: gray;
    filter: gray;
    cursor: pointer;
  }
  .service-page .service-5 p {
    text-align: center;
    text-transform: uppercase;
    color: #ef8203;
    font-size: 13px;
    line-height: 2.2;
    letter-spacing: 3px;
    font-weight: 500;
    margin: 0 auto;
    max-width: 600px;
  }
  .service-page#index-body .service-3 {
    /*background: url(../images/service-3-bg.jpg) repeat;*/
  }
  .service-page#index-body .service-4 button {
    width: 100%;
    margin-top: 7.5px;
    border: 1px solid transparent;
    background: #ef8203;
    color: #fff;
  }
  .service-page#index-body .service-4 button .border-holder {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .service-page#index-body .service-4 button .border-holder span {
    background: #fff;
  }
  .service-page#index-body .service-4 button .border-holder::after {
    display: none;
  }
  @media screen and (max-width: 1600px) {
    .about-page .about-3 .right .content {
      padding: 8% 10% 8% 12%;
    }
    .about-page .about-6 .clientBox .swiper-button-prev{
      left: 0;
    }
    .about-page .about-6 .clientBox .swiper-button-next{
      right: 0;
    }
  }
  @media screen and (max-width: 1230px) {
    .inner-banner {
      height: 400px;
    }
    .about-page .about-4 .container .text {
      max-width: 585px;
    }
    .service-page .service-1 ul li {
      padding: 0 15px;
    }
    .service-page .service-1 ul li .content p {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 1100px) {
    .inner-banner {
      height: 350px;
    }
    .about-page .about-6 .clientBox .swiper-button-prev{
      left: 0;
    }
    .about-page .about-6 .clientBox .swiper-button-next {
      right: 0%;
  }
  }
  @media screen and (max-width: 1000px) {
    .inner-banner {
      height: 300px;
    }
    .about-page .about-4 .container .text P {
      letter-spacing: 2px;
    }
    .about-page .about-4 .container .text {
      max-width: 410px;
    }
  }
  @media screen and (max-width: 700px) {
    .inner-banner {
      height: 250px;
    }
    .inner-banner h2 {
      font-size: 30px;
    }
    .inner-banner .box .mbx {
      font-size: 14px;
      margin-bottom: 10px;
      line-height: 2;
    }
    .about-page .about-3 .left {
      width: 100%;
    }
    .about-page .about-3 .left .about-3-img {
      display: block;
    }
    .about-page#index-body .init-1.about-1 .about-box {
      margin-bottom: 30px;
    }
    .about-page .about-3 .right {
      width: 100%;
    }
    .about-page .about-3 .right .content {
      padding: 40px 15px;
    }
    .about-page .about-4 .container .text {
      max-width: 355px;
    }
    .about-page .about-6 .clientBox .swiper-button-prev,
    .about-page .about-6 .clientBox .swiper-button-next {
      display: none;
    }
    .service-page .service-1 ul li {
      width: 50%;
      margin-bottom: 20px;
    }
    .service-page .service-2 .service-2-img .s-2{
      top: 50%;
    }
    .service-page .service-2 .service-2-box{
      margin-top: 17%;
    }
    .service-page .service-2 .service-2-box .left {
      width: 100%;
    }
    .service-page .service-2 .service-2-box .right {
      width: 100%;
      padding: 10% 0% 0% 0%;
    }
    .indusknow {
      display: none;
    }
  }
  @media screen and (max-width: 500px) {
    .inner-banner {
      height: 180px;
    }
    .inner-banner h2 {
      font-size: 24px;
    }
    .about-page .about-4 .container .text {
      max-width: 100%;
    }
    .about-page .about-4 .container {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .about-page#index-body .about-4 .more {
      margin-top: 20px;
    }
    .about-page .about-6 .swiper-slide .text {
      padding: 0;
    }
    .service-page .service-1 ul li {
      width: 100%;
    }
    .service-page .service-4 .s-form {
      padding: 80px 40px 70px;
    }
    .service-page .service-4 .s-form form .form-box input[type="date"] {
      width: 100%;
    }
    .service-page .service-4 .s-form form .form-box input[type="phone"] {
      width: 100%;
    }
  }
  .inner-page .m-page {
    margin-top: 75px;
    text-align: center;
    display: block;
  }
  .inner-page .m-page a,
  .inner-page .m-page span {
    line-height: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 20px;
    color: #7f7f7f;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .inner-page .m-page a:hover,
  .inner-page .m-page span {
    background: var(--primary);
    color: white;
  }
  .custom-page i.tag {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--primary);
    line-height: 30px;
  }
  .custom-page h2 {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.8;
  }
  .custom-page .custom-1 {
    padding: 200px 0 130px;
  }
  .custom-page .custom-1 .box {
    background: url("../images/custom-1.jpg") center center no-repeat;
    background-size: cover;
    display: block;
  }
  .custom-page .custom-1 .box .img {
    margin-left: 50%;
    display: inline-block;
    top: -70px;
    margin-bottom: -150px;
    position: relative;
  }
  .custom-page .custom-1 .box .img .play {
    position: absolute;
    left: 45%;
    bottom: 10%;
    white-space: nowrap;
  }
  .custom-page .custom-1 .box .img .play p {
    max-width: 300px;
    font-size: 16px;
    line-height: 30px;
    margin-top: 15px;
    display: block;
    white-space: normal;
    margin-left: 50px;
  }
  .custom-page .custom-1 .box .img .play span {
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background: rgba(230, 0, 18, 0.5);
    position: relative;
    z-index: 1;
  }
  .custom-page .custom-1 .box .img .play span i {
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .custom-page .custom-1 .box .img .play span:after,
  .custom-page .custom-1 .box .img .play span:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: inherit;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1;
  }
  .custom-page .custom-1 .box .img .play span:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s;
  }
  .custom-page .custom-1 .box .img .play h6 {
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    margin-left: 20px;
  }
  .custom-page .custom-2 {
    padding-bottom: 90px;
  }
  .custom-page .custom-2 h2 {
    width: 55%;
  }
  .custom-page .custom-2 .text {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #959595;
    line-height: 30px;
    margin-top: 25px;
  }
  .custom-page .custom-2 .iconList {
    float: right;
    margin-top: -20px;
  }
  .custom-page .custom-2 .iconList ul li {
    width: auto;
    margin-left: 25px;
  }
  .custom-page .custom-2 .iconList ul li i {
    display: block;
    width: 82px;
    height: 82px;
    border-radius: 100%;
    border: 1px solid #eee;
    line-height: 82px;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .custom-page .custom-2 .iconList ul li i img {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .custom-page .custom-2 .iconList ul li h6 {
    display: block;
    font-size: 16px;
    color: #3b3b3b;
    margin-top: 8px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    text-align: center;
    line-height: 30px;
  }
  .custom-page .custom-2 .iconList ul li:hover i {
    background: var(--primary);
  }
  .custom-page .custom-2 .iconList ul li:hover i img {
    -webkit-filter: brightness(1) invert(1);
    filter: brightness(1) invert(1);
  }
  .custom-page .custom-2 .iconList ul li:hover h6 {
    color: var(--primary);
  }
  .custom-page .custom-2 .list {
    margin-top: 60px;
    text-align: center;
  }
  .custom-page .custom-2 .list ul {
    margin: 0 -20px;
  }
  .custom-page .custom-2 .list ul li {
    padding: 0 20px;
  }
  .custom-page .custom-3 {
    padding: 80px 0 100px;
    text-align: center;
    background: #f5f5f5;
  }
  .custom-page .custom-3 .text {
    display: block;
    font-size: 16px;
    color: #7a7a7a;
    margin: 20px 0 30px;
    line-height: 30px;
  }
  .custom-page .custom-3 .list > ul {
    border-bottom: 1px solid #eee;
    text-align: left;
  }
  .custom-page .custom-3 .list > ul > li {
    padding: 30px 0 30px 65px;
    border-top: 1px solid #eee;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
  }
  .custom-page .custom-3 .list ul li i {
    position: absolute;
    top: 18px;
    left: 0;
    width: 60px;
  }
  .custom-page .custom-3 .list ul li i img {
    display: block;
    max-width: 100%;
  }
  .custom-page .custom-3 .list ul li h5 {
    padding-right: 60px;
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 2;
  }
  .custom-page .custom-3 .list ul li h5 span {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
  }
  .custom-page .custom-3 .list ul li h5 span:after,
  .custom-page .custom-3 .list ul li h5 span:before {
    content: '';
    width: 100%;
    height: 1px;
    background: black;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .custom-page .custom-3 .list ul li h5 span:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .custom-page .custom-3 .list ul li .content {
    margin-top: 30px;
    font-size: 18px;
    color: #7a7a7a;
    line-height: 2;
  }
  .custom-page .custom-3 .list ul li .content table {
    border: none;
  }
  .custom-page .custom-3 .list ul li .content table tbody {
    table-layout: fixed;
  }
  .custom-page .custom-3 .list ul li .content table tbody td {
    border: none;
  }
  .custom-page .custom-3 .list ul li .content table tbody td:first-child {
    padding-right: 10%;
    border-right: 1px solid #e5e5e5;
  }
  .custom-page .custom-3 .list ul li .content table tbody td:last-child {
    padding-left: 10%;
  }
  .custom-page .custom-3 .list ul li.active {
    border-top: 2px solid black;
  }
  .custom-page .custom-3 .list ul li.active h5 span:after {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  .custom-page .custom-4 {
    padding: 70px 0 60px;
    text-align: center;
  }
  .custom-page .custom-4 .form {
    margin-top: 50px;
  }
  .custom-page .custom-4 .form ul {
    margin: -10px;
  }
  .custom-page .custom-4 .form ul li {
    padding: 10px;
  }
  .custom-page .custom-4 .form ul li input,
  .custom-page .custom-4 .form ul li textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    background: white;
    line-height: 30px;
  }
  .custom-page .custom-4 .form ul li input:focus,
  .custom-page .custom-4 .form ul li textarea:focus {
    border-color: var(--primary);
  }
  .custom-page .custom-4 .form ul li textarea {
    height: 120px;
  }
  .custom-page .custom-4 .form ul li input[type="submit"] {
    padding: 15px 50px;
    width: auto;
    border-color: black;
    color: black;
    font-weight: bold;
    max-width: none;
  }
  .custom-page .custom-4 .form ul li input[type="submit"]:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
  }
  .custom-page .custom-4 .form ul li.wid-100 {
    width: 100%;
  }
  .technology-page {
    padding: 140px 0 120px;
  }
  .technology-page i.tag {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--primary);
    line-height: 30px;
  }
  .technology-page h2 {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.6;
  }
  .technology-page .technology-1 .list {
    margin-top: 25px;
  }
  .technology-page .technology-1 .list ul li {
    font-size: 16px;
    color: #959595;
    line-height: 30px;
  }
  .technology-page .technology-1 .list ul li i {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid var(--primary);
    line-height: 30px;
    position: relative;
    text-align: center;
    font-size: 16px;
    color: var(--primary);
    margin-right: 7px;
    margin-top: -3px;
  }
  .technology-page .technology-1 .list ul li i:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    border: inherit;
    opacity: .4;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  .technology-page .technology-2 {
    margin-top: 75px;
  }
  .technology-page .technology-2 ul {
    margin: -15px -20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .technology-page .technology-2 ul li {
    padding: 15px 20px;
  }
  .technology-page .technology-2 ul li .box {
    background: white;
    -o-box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
    -webkit-box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
    box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
    text-align: center;
    padding: 60px 50px 25px;
    height: 100%;
  }
  .technology-page .technology-2 ul li .box h5 {
    font-size: 26px;
    color: var(--primary);
    line-height: 1.6;
  }
  .technology-page .technology-2 ul li .box .text {
    display: block;
    margin: 40px 0 30px;
    font-size: 16px;
    color: #6b6a6a;
    line-height: 30px;
  }
  .technology-page .technology-2 ul li .box .box2 .left {
    width: 40%;
    vertical-align: middle;
  }
  .technology-page .technology-2 ul li .box .box2 .right {
    width: 60%;
    vertical-align: middle;
    padding-left: 10px;
    text-align: left;
  }
  .technology-page .technology-2 ul li:nth-child(2) .box .text {
    margin-bottom: 0;
  }
  .case-page {
    padding-bottom: 40px;
    background: url("../images/about-1-bg.jpg") top right no-repeat;
  }
  .case-page i.tag {
    margin-top: 110px;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #ef8203;
    line-height: 30px;
  }
  .case-page h2 {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 2;
  }
  .case-page .list {
    margin-top: 40px;
  }
  .case-page .list ul {
    margin: -15px -13px;
  }
  .case-page .list ul li {
    padding: 15px 13px;
  }
  .case-page .list ul li a.img {
    display: block;
    -o-box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
    -webkit-box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
    box-shadow: 0 0 40px rgba(95, 95, 95, 0.15);
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .case-page .list ul li a.img img {
    display: block;
    width: 100%;
  }
  .case-page .list ul li a.img h6 {
    display: block;
    font-size: 30px;
    font-weight: bold;
    padding: 20px 15px;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    background: white;
    line-height: 1.6;
  }
  .case-page .list ul li a.img:hover {
    background: var(--primary);
  }
  /*.case-page .list ul li a.img:hover h6 {
    color: white;
  }*/
  .proyd-page {
    height: 100%;
  }
  .proyd-page .box {
    height: 100%;
  }
  .proyd-page .box .left {
    width: 22%;
    height: 100%;
    background: url("../images/proyd-1.jpg") center center;
    background-size: cover;
    position: relative;
  }
  .proyd-page .box .left .box2 {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    padding: 0 20px 0 60px;
  }
  .proyd-page .box .left .box2 i.tag {
    font-size: 14px;
    color: var(--primary);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2;
  }
  .proyd-page .box .left .box2 i.tag img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
  }
  .proyd-page .box .left .box2 i.tag span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 30px;
  }
  .proyd-page .box .left .box2 h6 {
    display: block;
    font-size: 24px;
    line-height: 1.8;
    text-transform: uppercase;
    margin: 10px 0 20px;
    font-weight: bold;
  }
  .proyd-page .box .left .box2 .text {
    display: block;
    font-size: 16px;
    color: #949494;
    line-height: 30px;
    margin: 20px 0 30px;
  }
  .proyd-page .box .left .box2 .play {
    white-space: nowrap;
    cursor: pointer;
  }
  .proyd-page .box .left .box2 .play span {
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background: rgba(230, 0, 18, 0.5);
    position: relative;
    z-index: 1;
  }
  .proyd-page .box .left .box2 .play span i {
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .proyd-page .box .left .box2 .play span:after,
  .proyd-page .box .left .box2 .play span:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: inherit;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1;
  }
  .proyd-page .box .left .box2 .play span:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s;
  }
  .proyd-page .box .left .box2 .play h5 {
    font-size: 18px;
    line-height: 1.8;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    margin-left: 20px;
    color: var(--primary);
  }
  .proyd-page .box .right {
    width: 78%;
    height: 100%;
    overflow: hidden;
    background: url("../images/proyd-bg.jpg") center center no-repeat;
    position: relative;
    z-index: 1;
  }
  .proyd-page .box .right ul {
    height: 100%;
  }
  .proyd-page .box .right ul li {
    height: 100%;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .proyd-page .box .right ul li .img {
    width: 300%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .proyd-page .box .right ul li .box2 {
    bottom: 10%;
    left: 0;
    width: 100%;
    padding: 0 40px;
    position: absolute;
  }
  .proyd-page .box .right ul li .box2 .list {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    left: -20px;
  }
  .proyd-page .box .right ul li .box2 .list dl dd {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1;
    display: none;
  }
  .proyd-page .box .right ul li .box2 .list dl dd:last-child {
    margin-bottom: 0;
  }
  .proyd-page .box .right ul li .box2 .list dl dd:hover {
    text-decoration: underline;
  }
  .proyd-page .box .right ul li .box2 h5 {
    font-size: 36px;
    line-height: 1.6;
    margin: 90px 0 20px;
    font-weight: bold;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .proyd-page .box .right ul li:after,
  .proyd-page .box .right ul li:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #cf2929;
    -webkit-transition: .5s all,width 0s .5s;
    -moz-transition: .5s all,width 0s .5s;
    transition: .5s all,width 0s .5s;
    opacity: 0;
    z-index: -1;
  }
  .proyd-page .box .right ul li:nth-child(2) .img {
    left: -100%;
  }
  .proyd-page .box .right ul li:nth-child(3) .img {
    left: -200%;
  }
  .proyd-page .box .right ul li:hover {
    background: rgba(188, 158, 113, 0.8);
  }
  .proyd-page .box .right ul li:hover .img {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .6s .2s;
    -moz-transition: .6s .2s;
    transition: .6s .2s;
  }
  .proyd-page .box .right ul li:hover .list {
    left: 0;
  }
  .proyd-page .box .right ul li:hover .list dl dd {
    display: block;
    color: white;
  }
  .proyd-page .box .right ul li:hover h5 {
    color: white;
  }
  .proyd-page .box .right ul li:hover a.more {
    color: white;
  }
  .proyd-page .box .right ul li:hover a.more:before {
    background: white;
  }
  .proyd-page .box .right ul li:hover a.more:after {
    border-color: white;
  }
  .proyd-page .box .right ul li:hover:after,
  .proyd-page .box .right ul li:hover:before {
    opacity: 1;
    width: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .proyd-page .box .right ul li:hover:after {
    -webkit-transition: .8s .2s;
    -moz-transition: .8s .2s;
    transition: .8s .2s;
  }
  .proyd-page .box .right ul:hover li .box2 h5,
  .proyd-page .box .right ul:hover li .box2 a.more {
    color: white;
    opacity: .2;
  }
  .proyd-page .box .right ul:hover li .box2 h5:before,
  .proyd-page .box .right ul:hover li .box2 a.more:before {
    background: white;
  }
  .proyd-page .box .right ul:hover li .box2 h5:after,
  .proyd-page .box .right ul:hover li .box2 a.more:after {
    border-color: white;
  }
  .proyd-page .box .right ul:hover li:hover .box2 h5,
  .proyd-page .box .right ul:hover li:hover .box2 a.more {
    opacity: 1;
  }
  .product-page {
    padding: 100px 0 0;
  }
  .product-page .sideBox .slideLeft {
    width: 27.5%;
  }
 
  .product-page .sideBox .slideLeft .box {
    padding: 30px 20px;
    background: #f7f7f7;
    margin-bottom: 20px;
  }
  .product-page .sideBox .slideLeft .box:last-child {
    margin-bottom: 0;
  }
  .product-page .sideBox .slideLeft .box h4 {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2;
    color: black;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .product-page .sideBox .slideLeft .box h4:after {
    content: '';
    width: 24%;
    background: #ef8203;
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 5px;
  }
  .product-page .sideBox .slideLeft .box .list ul li {
    margin-bottom: 10px;
    position: relative;
  }
  .product-page .sideBox .slideLeft .box .list ul li ul {
    display: none;
  }
    .product-page .sideBox .slideLeft .box .list ul li.active ul {
    display: block;
  }
  .product-page .sideBox .slideLeft .box .list ul li ul{
      padding-top:15px;
      padding-bottom: 20px;
      padding-left: 15px;
  }
  .product-page .sideBox .slideLeft .box .list ul li ul li a {
    display: block;
    padding: 15px 35px 15px 12px;
    font-size: 18px;
    color: #262626;
    background: white;
    -o-box-shadow: 0 0 21px rgba(25, 25, 25, 0.11);
    -webkit-box-shadow: 0 0 21px rgba(25, 25, 25, 0.11);
    box-shadow: 0 0 21px rgba(25, 25, 25, 0.11);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    text-align: center;
    line-height: 1.8;
  }
    .product-page .sideBox .slideLeft .box .list ul li ul li a.active{
        background: #ef8203;
        color: #fff;
    }
        .product-page .sideBox .slideLeft .box .list ul li ul li a:hover{
        background: #ef8203;
        color: #fff;
    }
  .product-page .sideBox .slideLeft .box .list ul li .navs {
    display: block;
    padding: 15px 35px 15px 12px;
    font-size: 18px;
    color: #262626;
    background: white;
    -o-box-shadow: 0 0 21px rgba(25, 25, 25, 0.11);
    -webkit-box-shadow: 0 0 21px rgba(25, 25, 25, 0.11);
    box-shadow: 0 0 21px rgba(25, 25, 25, 0.11);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    text-align: center;
    line-height: 2;
  }
  .product-page .sideBox .slideLeft .box .list ul li .navs span {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 14px;
    top: 24px;
    display: block;
    cursor: pointer;
  }
  /*.product-page .sideBox .slideLeft .box .list ul li.active .navs span:after{
      opacity: 0;
  }*/
  .product-page .sideBox .slideLeft .box .list ul li .navs span:after,
  .product-page .sideBox .slideLeft .box .list ul li .navs span:before {
    content: '';
    width: 100%;
    height: 1px;
    background: black;
    position: absolute;
    top: 50%;
    left: 0;
    transition: .3s;
  }
  .product-page .sideBox .slideLeft .box .list ul li .navs span.active1:after{
      opacity: 0;
  }
  .product-page .sideBox .slideLeft .box .list ul li .navs span:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .product-page .sideBox .slideLeft .box .list.nav ul li a:hover {
    /*background: #ef8203;*/
    /*color: white;*/
    /*text-align: left;*/
  }
    .product-page .sideBox .slideLeft .box .list.nav ul li .navs{
        transition: .3s;
    }
    .product-page .sideBox .slideLeft .box .list.nav ul li .navs:hover {
    background: #ef8203;
    /*color: white;*/
    /*text-align: left;*/
  }
  .product-page .sideBox .slideLeft .box .list.nav ul li .navs:hover a{
      color: #fff;
  }
  .product-page .sideBox .slideLeft .box .list.nav ul li .navs:hover span::before{
      background: #fff;
  }
  .product-page .sideBox .slideLeft .box .list.nav ul li .navs:hover span::after{
      background: #fff;
  }
  .product-page .sideBox .slideLeft .box .list.nav ul li.active .navs {
    background: #ef8203;
    color: white;
    text-align: left;
    line-height: 2;
  }
  .product-page .sideBox .slideLeft .box .list.nav ul li.active .navs span::after,
  .product-page .sideBox .slideLeft .box .list.nav ul li.active .navs span::before {
    background: #fff;
  }
  .product-page .sideBox .slideLeft .box .list.info ul li {
    margin-bottom: 18px;
  }
  .product-page .sideBox .slideLeft .box .list.info ul li a {
    padding-left: 60px;
    text-align: left;
    padding-right: 15px;
  }
  .product-page .sideBox .slideLeft .box .list.info ul li a i {
    width: 38px;
    position: absolute;
    top: -5px;
    left: 0px;
  }
  .product-page .sideBox .slideLeft .box .list.info ul li:last-child {
    margin-bottom: 0;
  }
  .product-page .sideBox .slideLeft .box .list.info ul li a {
    font-size: 16px;
  }
  .product-page .sideBox .slideLeft .box .list.info ul li:last-child a {
    font-size: 16px;
    line-height: 30px;
  }
  .product-page .sideBox .slideLeft .box.playBg {
    height: 370px;
    padding: 0;
    position: relative;
  }
  .product-page .sideBox .slideLeft .box.playBg:after {
    content: '';
    width: 100%;
    height: 40%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: transparent;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, transparent), color-stop(100%, #dfd0b1));
    /* 兼容Safari4-5, chrome1-9 */
    background: -moz-linear-gradient(bottom, transparent 0%, #dfd0b1 100%);
    /* firefox */
    background: -webkit-linear-gradient(top, transparent 0%, #dfd0b1 100%);
    /* chrome */
    /* opera */
    /* ie */
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#dfd0b1));
    background: -webkit-linear-gradient(top, transparent, #dfd0b1);
    background: -moz-linear-gradient(top, transparent, #dfd0b1);
    background: linear-gradient(to bottom, transparent, #dfd0b1);
    /* firefox */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='#dfd0b1',GradientType=0)";
    /* 兼容IE8~IE9 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='#dfd0b1', GradientType=0);
    /* 兼容IE5~IE9 */
  }
  .product-page .sideBox .slideLeft .box.playBg .play {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    white-space: nowrap;
    z-index: 1;
    cursor: pointer;
  }
  .product-page .sideBox .slideLeft .box.playBg .play span {
    display: inline-block;
    vertical-align: middle;
    /*width: 26px;*/
    /*height: 26px;*/
    border-radius: 100%;
    /*background: white;*/
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .product-page .sideBox .slideLeft .box.playBg .play span i {
      color: #fff;
      font-size: 40px;
    /*border-left: 8px solid var(--primary);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
  }
  /*.product-page .sideBox .slideLeft .box.playBg .play span:after,
  .product-page .sideBox .slideLeft .box.playBg .play span:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: inherit;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1;
  }*/
  .product-page .sideBox .slideLeft .box.playBg .play span:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s;
  }
.product-page .sideBox .slideLeft .box.playBg .play a{
    display: block;
     text-align: center;
}
.product-page .sideBox .slideLeft .box.playBg .play a:hover h6{
    color: #ef8203;
}
  .product-page .sideBox .slideLeft .box.playBg .play h6 {
    font-size: 21px;
    line-height: 1.8;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    /*margin-left: 20px;*/
    color: white;
    letter-spacing: 1px;
    max-width: 100%;
    word-break: break-word;
    white-space: normal;
    transition: .3s;
  }
  .product-page .sideBox .slideRight {
    width: 72.5%;
    padding-left: 50px;
  }
  .product-page .sideBox .slideRight .jinghuipro {
    font-size: 16px;
    line-height: 2;
    margin-top: 20px;
  }
  .product-page .sideBox .slideRight .hmvillaelevator1 h1 {
    font-weight: 700;
    line-height: 2;
    color: #ef8203;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4e4e4;
    font-size: 26px;
    margin-bottom: 20px;
  }
  .product-page .sideBox .slideRight .hmvillaelevator1 {
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 20px;
  }
  .product-page .sideBox .slideRight .hmvillaelevator1 .jinghuidet {
    font-size: 16px;
    line-height: 2;
    margin-top: 30px;
  }
  .product-page .sideBox .slideRight .hmvillaelevator1 .jinghuidet .intro2 {
    display: none;
  }
  .product-page .sideBox .slideRight .list ul {
    margin: -20px -10px;
  }
  .product-page .sideBox .slideRight .list ul li {
    padding: 20px 10px;
  }
  .product-page .sideBox .slideRight .list ul li .box:hover .p-img {
    border: 1px solid #ccc;
  }
  .product-page .sideBox .slideRight .list ul li .box .p-img {
    overflow: hidden;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border: 1px solid transparent;
  }
  .product-page .sideBox .slideRight .list ul li .box .p-img img {
    width: 100%;
  }
  .product-page .sideBox .slideRight .list ul li .box .p-img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .product-page .sideBox .slideRight .list ul li .box h4 {
    font-size: 18px;
    color: #000;
    line-height: 2;
    text-align: center;
    margin-top: 15px;
    height: 115px;
    background: #f2f2f2;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .product-page .sideBox .slideRight .list ul li .box h4:hover {
    color: #fff;
    background: #ef8203;
  }
  .prodet-page {
    padding: 20px 0 20px;
  }
  .prodet-page i.tag {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #ef8203;
    line-height: 2;
  }
  .prodet-page h2,
  .prodet-page h1 {
    display: block;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.6;
  }
  .indusknow {
         line-height: 2;
         font-size:16px;
  }
  .indusknow h3{
        display: block;
        font-weight: 700;
        line-height: 2;
        color: #ef8203;
        padding-bottom: 20px;
    
        font-size: 26px;
         margin-bottom: 20px;
  }
  .indusknow h2{
        display: block;
        font-weight: 700;
        line-height: 2;
        color: var(--primary);
      
         border-top: 1px solid #e4e4e4;
        font-size: 20px;
       
  }
  .prodet-page .prodet-1 .left {
    background: url("../images/init-2-2.jpg") center center no-repeat;
    background-size: cover;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    width: 40%;
  }
  .prodet-page .prodet-1 .left img {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .prodet-page .prodet-1 .left i.block {
    width: 25%;
    height: 30%;
    position: absolute;
    /*background: #eee;*/
    z-index: -1;
    left: -12%;
    top: 20%;
  }
  .prodet-page .prodet-1 .left .big {
    border: 1px solid #ededed;
    margin-bottom: 20px;
  }
  .prodet-page .prodet-1 .right {
    padding-left: 2%;
    vertical-align: middle;
    width: 60%;
  }
  .prodet-page .prodet-1 .right h1 {
    font-size: 24px;
    line-height: 2;
  }
  .prodet-page .prodet-1 .right .content {
    display: block;
    padding: 15px 0 0px;
    font-size: 18px;
    color: #959595;
    line-height: 1.8;
  }
  .prodet-page .prodet-1 .right .content h6 {
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: underline;
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: bold;
  }
  .prodet-page .prodet-1 .left .slick ul{
    margin-right: -10px;
  }
  .prodet-page .prodet-1 .left .slick ul li{
    padding-right: 20px;
  }
  .prodet-page .prodet-1 .left .slick ul li a{
    display: block;
  }
  .prodet-page .prodet-1 .right .btn {
    padding: 30px 0;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
  }
  .prodet-page .prodet-1 .right .btn a {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    padding: 0 24px;
    border-radius: 20px;
    background: black;
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-right: 25px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin-top: 5px;
  }
  .prodet-page .prodet-1 .right .btn a:hover {
    background: #ef8203;
  }
  .prodet-page .prodet-1 .right .share {
    margin-top: 20px;
  }
  .prodet-page .prodet-1 .right .share h6 {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 30px;
  }
  .prodet-page .prodet-1 .right .share ul {
    display: inline-block;
    vertical-align: middle;
  }
  .prodet-page .prodet-1 .right .share ul li {
    width: auto;
    margin-left: 15px;
    color: #666;
    font-size: 14px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .prodet-page .prodet-1 .right .share ul li:hover {
    color: var(--primary);
  }
  .prodet-page .custom-page .custom-3 {
    background: none;
    padding: 110px 0;
  }
  .prodet-page .custom-page .custom-3 .list > ul > li {
    padding-left: 0;
  }
  .prodet-page .custom-page .custom-3 .list > ul > li i {
    display: none;
  }
  .prodet-page .prodet-2 h2 {
    display: inline-block;
    margin-top: 100px;
    line-height: 2;
  }
  .prodet-page .prodet-2 .btn {
    /*float: right;*/
    display: none;
  }
  .prodet-page .prodet-2 .btn div {
    width: 36px;
    height: 36px;
    display: inline-block;
    margin-left: 10px;
    border: 1px solid #d3c3a1;
    line-height: 36px;
    text-align: center;
    font-size: 24px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
    color: var(--primary);
  }
  .prodet-page .prodet-2 .btn div:hover {
    color: white;
    background: var(--primary);
  }
  .prodet-page .prodet-2 .list {
    display: inline-block;
    width: 100%;
    margin-top: 40px;
  }
  .prodet-page .prodet-2 .list ul {
    margin: -12px;
  }
  .prodet-page .prodet-2 .list ul li {
    padding: 12px;
  }
  .prodet-page .prodet-2 .list ul li .box {
    padding: 15px;
    background: white;
    background: url("../images/init-2-2.jpg") center center;
    background-size: cover;
    text-align: center;
    position: relative;
    -o-box-shadow: 0 0 17px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.04);
  }
  .prodet-page .prodet-2 .list ul li .box a {
    display: block;
    overflow: hidden;
  }
  .prodet-page .prodet-2 .list ul li .box a:hover{
    color: #ef8203;
  }
  .prodet-page .prodet-2 .list ul li .box a img{
    width: 100%;
  }
  .prodet-page .prodet-2 .list ul li .box span {
    font-size: 14px;
    color: #404040;
    text-transform: uppercase;
    position: absolute;
    top: 40px;
    right: 20px;
    display: block;
  }
  .prodet-page .prodet-2 .list ul li .box span i {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: block;
    margin: 0 auto 5px;
  }
  .prodet-page .prodet-2 .list ul li .box h5 {
    font-size: 16px;
    line-height: 2;
    font-weight: bold;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    padding-top: 20px;
  }
  .prodet-page .prodet-2 .list ul li .box:hover h5 {
    color: var(--primary);
  }
  .honor-page {
    padding: 130px 0 160px;
    text-align: center;
    overflow: hidden;
  }
  .honor-page .text {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    display: block;
    margin: 15px auto 20px;
    line-height: 30px;
  }
  .honor-page .list {
    margin-top: 10px;
    position: relative;
  }
  .honor-page .list ul li {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
  }
  .honor-page .list ul li img {
    width: 100%;
  }
  .honor-page .list ul .slick-slide li {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    left: 90%;
  }
  .honor-page .list ul .slick-slide + div.slick-active li {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    left: 45%;
  }
  .honor-page .list ul .slick-slide + div.slick-active + div.slick-current li {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    left: 0;
    z-index: 2;
  }
  .honor-page .list ul .slick-slide + div.slick-active + div.slick-current + div.slick-active li {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    left: -45%;
    z-index: 1;
  }
  .honor-page .list ul .slick-slide + div.slick-active + div.slick-current + div.slick-active + div.slick-slide li {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    left: -90%;
  }
  .honor-page .list ul .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    background-position: center center;
    background-repeat: no-repeat;
    border: none;
    background-size: 12px;
    z-index: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .honor-page .list ul .slick-arrow.slick-prev {
    background-image: url("../images/banner-btn-l.png");
    left: 0;
  }
  .honor-page .list ul .slick-arrow.slick-next {
    background-image: url("../images/banner-btn-r.png");
    right: 0;
  }
  .honor-page .list ul .slick-arrow:hover {
    background-color: var(--primary);
  }
  .contact-page .contact-1 {
    padding-top: 80px;
  }
  .contact-page .contact-2 {
    padding: 100px 0 60px;
  }
  .contact-page .contact-1 .list ul {
    margin: -8px;
  }
  .contact-page .contact-1 .list ul li {
    padding: 8px;
  }
  .contact-page .contact-1 .list ul li .box {
    -o-box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
    -webkit-box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
    box-shadow: 0 0 7px rgba(43, 52, 59, 0.08);
    text-align: center;
    padding-bottom: 30px;
  }
  .contact-page .contact-1 .list ul li .box span {
    height: 60px;
    width: 60px;
    line-height: 60px;
    background: var(--primary);
    position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .contact-page .contact-1 .list ul li .box span i {
    color: white;
    font-size: 30px;
    display: inline-block;
    vertical-align: middle;
  }
  .contact-page .contact-1 .list ul li .box span:after {
    content: '';
    width: 100%;
    height: 13px;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: inherit;
  }
  .contact-page .contact-1 .list ul li .box span:before {
    content: '';
    border-right: 13px solid transparent;
    border-bottom: 12px solid var(--primary);
    position: absolute;
    left: 100%;
    bottom: 100%;
  }
  .contact-page .contact-1 .list ul li .box h5 {
    font-size: 21px;
    line-height: 2;
    padding: 25px 0 15px;
    font-weight: bold;
  }
  .contact-page .contact-1 .list ul li .box p {
    font-size: 16px;
    line-height: 2;
    font-weight: normal;
    min-height: 100px;
  }
  .contact-page .contact-2 .left {
    width: 28%;
    vertical-align: middle;
  }
  .contact-page .contact-2 .left .img {
    position: relative;
  }
  .contact-page .contact-2 .left .img .text {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 10%;
    padding: 0 30px;
    color: white;
    text-align: left;
  }
  .contact-page .contact-2 .left .img .text h5 {
    font-weight: bold;
    font-size: 22px;
    line-height: 1,8;
  }
  .contact-page .contact-2 .left .img .text p {
    font-size: 16px;
    line-height: 30px;
    margin: 15px 0;
  }
  .contact-page .contact-2 .left .img .text a.more {
    display: inline-block;
    line-height: 36px;
    height: 38px;
    padding: 0 30px;
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .contact-page .contact-2 .right {
    width: 72%;
    padding-left: 30px;
    vertical-align: middle;
  }
  .contact-page .contact-2 .right h3 {
    font-size: 32px;
    font-weight: bold;
    line-height: 2;
  }
  .contact-page .contact-2 .right .form {
    margin-top: 30px;
  }
  .contact-page .map {
    margin-top: 60px;
  }
  .form ul {
    margin: -10px;
  }
  .form ul li {
    padding: 10px;
  }
  .form ul li input,
  .form ul li textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    line-height: 30px;
  }
  .form ul li input:focus,
  .contact-page .form ul li textarea:focus {
    border-color: var(--primary);
  }
  .form ul li textarea {
    height: 120px;
  }
  .form ul li input[type="submit"] {
    padding: 12px;
    max-width: 180px;
    border-color: black;
    background-color: transparent;
    font-weight: bold;
  }
  .form ul li input[type="submit"]:hover {
    color: white;
    background-color: #ef8203;
    border-color: #ef8203;
  }
  .form ul li.wid-100 {
    width: 100%;
  }
  .faq-page {
    padding: 120px 0 40px;
  }
  .faq-page ul li {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    background: #f8f8f8;
  }
  .faq-page ul li h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.8;
  }
  .faq-page ul li .content {
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 16px;
    line-height: 30px;
  }
  .faq-page ul li:last-child {
    margin-bottom: 0;
  }
  .news-page {
    padding: 100px 0;
  }
  .news-page .list ul {
    margin: -10px;
  }
  .news-page .list ul li {
    padding: 10px;
  }
  .news-page .list ul li .img-box {
    display: block;
  }
  .news-page .list ul li .img-box img {
    width: 100%;
  }
  .news-page .list ul li .content {
    padding: 15px;
    border: 1px solid #eee;
  }
  .news-page .list ul li .content h4 {
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 2;
    transition: .3s;
  }
  .news-page .list ul li .content h4:hover{
    color: #ef8203;
  }
  .news-page .list ul li .content p {
    font-size: 16px;
    line-height: 2;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 120px;
  }
  .news-page .list ul li .content a.more {
    display: inline-block;
    line-height: 34px;
    height: 34px;
    padding: 0 25px;
    border: 1px solid #eee;
    font-size: 16px;
    color: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .news-page .list ul li .content a.more:hover {
    color: #ef8203;
    background: var(--primary);
  }
  .newdet-page {
    padding: 100px 0;
  }
  .newdet-page h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    line-height: 1.8;
  }
  .newdet-page h1 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    line-height: 2;
  }
  .newdet-page time {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #666;
    margin-top: 20px;
    text-align: center;
  }
  .newdet-page .content {
    display: block;
    font-size: 16px;
    line-height: 2.5;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  .newdet-page .m-link {
    font-size: 16px;
    line-height: 30px;
  }
  .newdet-page .m-link a {
    display: block;
  }
  .newdet-page .m-link a:hover {
    text-decoration: underline;
  }
  @media screen and (max-width: 1500px) {
    #innerHeader .box .menu-box ul.menu > li {
      margin: 0 5px;
    }
    #innerHeader .box {
      padding-right: 15px;
    }
    #innerHeader .logo {
      padding-left: 30px;
      padding-right: 20px;
    }
    #innerHeader {
      line-height: 80px;
      height: 80px;
    }
    .inner-banner {
      height: 460px;
    }
    .contact-page .contact-2 .right h3 {
      font-size: 28px;
    }
    .contact-page .form ul li input,
    .contact-page .form ul li textarea,
    .contact-page .form ul li input[type="submit"] {
      padding: 10px;
    }
    .contact-page .contact-2 .left .img .text h5 {
      font-size: 18px;
    }
    .honor-page {
      padding: 80px 0;
    }
    .honor-page .list {
      margin-top: 50px;
    }
    .prodet-page {
      padding: 80px 0;
    }
    .prodet-page .prodet-1 .right h1 {
      font-size: 40px;
    }
    .prodet-page .prodet-1 .right .content {
      padding: 30px 0 50px;
    }
    .custom-page .custom-3 .list ul li .content {
      font-size: 16px;
    }
    .product-page .sideBox .slideRight {
      padding-left: 30px;
    }
    .product-page .sideBox .slideLeft .box .list ul li a.navs {
      font-size: 16px;
    }
    .product-page .sideBox .slideRight .list ul li .box .left h4 {
      font-size: 16px;
    }
    .product-page .sideBox .slideRight .list ul li .box .left {
      padding: 25px 0 25px 15px;
    }
    .product-page .sideBox .slideLeft .box.playBg .play h6 {
      font-size: 18px;
    }
    .proyd-page .box .right ul li .box2 h5 {
      font-size: 24px;
    }
    .proyd-page .box .left .box2 {
      padding-left: 30px;
    }
    .proyd-page .box .left .box2 h6 {
      font-size: 18px;
    }
    .proyd-page .box .left .box2 .text {
      font-size: 14px;
      margin: 15px 0 20px;
    }
    .proyd-page .box .left .box2 .play h5 {
      font-size: 14px;
    }
    .proyd-page .box .right {
      background-size: 100% auto;
    }
    .proyd-page .box .right ul li .box2 .list dl dd {
      font-size: 14px;
    }
    .case-page {
      padding: 80px 0;
    }
    .case-page .list ul li a.img h6 {
      font-size: 22px;
      padding: 15px;
    }
    .case-page h2,
    .technology-page h2,
    .custom-page h2,
    .prodet-page .prodet-1 .right h1 {
      font-size: 32px;
    }
    .technology-page {
      padding: 80px 0;
    }
    .technology-page .technology-2 ul li .box h5 {
      font-size: 22px;
    }
    .technology-page .technology-2 ul li .box .text {
      margin: 20px 0;
      font-size: 16px;
    }
    .technology-page .technology-2 ul li .box {
      padding: 30px;
    }
    .custom-page .custom-1 {
      padding: 120px 0 80px;
    }
    .custom-page .custom-4 .form ul li input,
    .custom-page .custom-4 .form ul li textarea {
      padding: 10px;
    }
    .custom-page .custom-4 .form ul li input[type="submit"] {
      padding: 10px 40px;
    }
    .contact-page .contact-1 .list ul li .box h5 {
      font-size: 18px;
      line-height: 1.8;
    }
    .custom-page .custom-3 .list ul li h5 {
      font-size: 26px;
    }
  }
  @media screen and (max-width: 1250px) {
    #innerHeader .box .menu-box ul.menu > li {
      margin: 0 15px;
      font-size: 16px;
    }
    #innerHeader .logo img {
      max-height: 50px;
    }
    .product-page .sideBox .slideLeft .box .list ul li a.navs {
      padding: 10px 30px 10px 10px;
    }
    .product-page .sideBox .slideLeft .box .list ul li a.navs span {
      top: 16px;
      right: 10px;
    }
    .product-page .sideBox .slideLeft .box h4 {
      font-size: 16px;
    }
    .product-page .sideBox .slideLeft .box .list.info ul li:last-child a {
      font-size: 13px;
    }
    .product-page .sideBox .slideLeft .box .list.info ul li a {
      padding-left: 45px;
    }
    .product-page .sideBox .slideLeft .box .list.info ul li a i {
      width: 30px;
      top: 6px;
    }
    .product-page .sideBox .slideLeft .box.playBg .play h6 {
      font-size: 14px;
    }
    .product-page .sideBox .slideRight .list ul li .box .left h4 {
      font-size: 16px;
      line-height: 30px;
    }
    .product-page .sideBox .slideRight .list ul li .box .left p {
      font-size: 13px;
    }
    .product-page {
      padding: 60px 0;
    }
    .inner-page .m-page {
      margin-top: 40px;
    }
    .proyd-page .box .left .box2 h6 {
      font-size: 15px;
    }
    .proyd-page .box .left .box2 i.tag {
      font-size: 12px;
    }
    .proyd-page .box .left .box2 i.tag img {
      width: 30px;
    }
    .proyd-page .box .left .box2 .text {
      font-size: 13px;
    }
    .proyd-page .box .left .box2 .play h5 {
      font-size: 12px;
    }
    .proyd-page .box .right ul li .box2 h5 {
      font-size: 18px;
      margin: 40px 0 20px;
    }
    .news-page .list ul li .content a.more {
      line-height: 30px;
      height: 32px;
      font-size: 16px;
      padding: 0 15px;
    }
    .proyd-page .box .right ul li .box2 .list dl dd {
      font-size: 13px;
    }
    .proyd-page .box .right ul li .box2 {
      padding: 0 15px;
    }
    .case-page h2,
    .technology-page h2,
    .custom-page h2,
    .prodet-page .prodet-1 .right h1,
    .prodet-page h2 {
      font-size: 28px;
    }
    .prodet-page .custom-page .custom-3 {
      padding: 60px 0;
    }
    .custom-page .custom-3 .list ul li .content table tbody td:first-child {
      padding-right: 5%;
    }
    .custom-page .custom-3 .list ul li .content table tbody td:last-child {
      padding-left: 5%;
    }
    .custom-page .custom-3 .list ul li .content {
      font-size: 16px;
      line-height: 30px;
    }
    .news-page,
    .newdet-page {
      padding: 60px 0;
    }
    .inner-banner {
      height: 400px;
    }
    .inner-banner h2 {
      font-size: 48px;
    }
    .newdet-page .content,
    .technology-page .technology-1 .list ul li {
      font-size: 16px;
    }
    .technology-page .technology-2 ul li .box h5 {
      font-size: 18px;
      line-height: 1.8;
    }
    .faq-page {
      padding: 60px 0;
    }
    .faq-page ul li h4 {
      font-size: 16px;
      line-height: 30px;
    }
    .faq-page ul li .content {
      font-size: 16px;
    }
    .custom-page .custom-1 .box .img {
      width: 170px;
    }
    .custom-page .custom-1 .box .img .play h6 {
      font-size: 16px;
    }
    .custom-page .custom-3 .list ul li i {
      width: 40px;
      top: 21px;
    }
    .custom-page .custom-3 .list ul li h5 {
      font-size: 22px;
    }
    .custom-page .custom-4 .form ul li input,
    .custom-page .custom-4 .form ul li textarea,
    .contact-page .form ul li input,
    .contact-page .form ul li textarea {
      font-size: 16px;
    }
    .contact-page .contact-1 .list ul li .box p {
      font-size: 16px;
    }
    .contact-page .contact-2 .right h3 {
      font-size: 24px;
    }
    .contact-page .contact-2 .left .img .text {
      padding: 0 15px;
    }
    .contact-page .contact-2 .left .img .text h5 {
      font-size: 17px;
    }
    .contact-page .contact-2 .left .img .text p {
      font-size: 15px;
    }
    .case-page .list ul li a.img h6 {
      font-size: 18px;
    }
    #innerHeader {
      display: none !important;
    }
    .proyd-page .box .right ul li {
      width: 100%;
      height: 300px;
      margin-bottom: 20px;
      display: block;
      overflow: hidden;
    }
    .proyd-page .box .right ul li .img {
      opacity: 1;
      overflow: hidden;
      width: 100%;
      left: 0 !important;
      background-size: cover;
    }
    .proyd-page .box .right ul li .box2 {
      color: white;
      bottom: 10px;
    }
    .proyd-page .box .right ul li .box2 h5 {
      margin: 20px 0 10px;
    }
    .body-overflow-box {
      height: auto !important;
    }
  }
  @media screen and (max-width: 1000px) {
    .inner-banner {
      height: 300px;
    }
    .case-page h2,
    .technology-page h2,
    .custom-page h2,
    .prodet-page .prodet-1 .right h1,
    .prodet-page h2 {
      font-size: 24px;
    }
    .case-page .list ul li a.img h6 {
      font-size: 16px;
      line-height: 30px;
    }
    .contact-page .contact-1 .list ul li {
      width: 50%;
    }
    .contact-page .contact-2 .right {
      width: 100%;
      padding-left: 0;
    }
    .contact-page .contact-2 .left {
      display: none;
    }
    #mapContainer {
      height: 300px !important;
    }
    .custom-page .custom-2 h2,
    .custom-page .custom-2 .text {
      width: 100%;
    }
    .custom-page .custom-2 .text {
      font-size: 16px;
    }
    .custom-page .custom-2 .iconList {
      display: none;
    }
    .custom-page .custom-2 .list {
      margin-top: 30px;
    }
    .custom-page .custom-2 {
      padding: 50px 0;
    }
    .custom-page .custom-2 .list ul li {
      padding: 0 10px;
    }
    .custom-page .custom-2 .list ul {
      margin: 0 -10px;
    }
    .custom-page .custom-3 {
      padding: 60px 0;
    }
    .technology-page .technology-2 ul li {
      width: 100% !important;
    }
    .technology-page .technology-2 ul li .box .box2 {
      margin-top: 20px;
    }
    .honor-page .text {
      font-size: 14px;
    }
    .newdet-page h2 {
      font-size: 24px;
    }
    .newdet-page h1 {
      font-size: 24px;
    }
    .prodet-page .prodet-1 .right .btn a {
      line-height: 32px;
      height: 32px;
      padding: 0 15px;
      font-size: 14px;
    }
    .prodet-page .prodet-1 .right {
      width: 60%;
      padding-left: 3%;
    }
    .prodet-page .prodet-1 .left {
      width: 40%;
    }
    .prodet-page .prodet-1 .right .content h6 {
      font-size: 16px;
    }
    .prodet-page .prodet-1 .right .content {
      font-size: 16px;
      line-height: 30px;
    }
    .prodet-page .prodet-1 .right .content {
      padding: 15px 0;
    }
    .prodet-page .prodet-1 .right .btn {
      padding: 10px 0;
    }
    .prodet-page .prodet-1 .right .share {
      margin-top: 10px;
    }
    .prodet-page {
      padding: 60px 0 30px;
    }
    .product-page .sideBox .slideRight {
      width: 100%;
      padding-left: 0;
    }
    .product-page .sideBox .slideLeft {
      display: none;
    }
    .proyd-page .box .right {
      width: 100%;
    }
    .proyd-page .box .left {
      display: none;
    }
  }
  @media screen and (max-width: 700px) {
    .product-page .sideBox .slideRight .list ul li {
      width: 100%;
    }
    .prodet-page .prodet-1 .right {
      width: 100%;
      padding-left: 0;
      padding-top: 20px;
    }
    .prodet-page .prodet-1 .left {
      width: 100%;
    }
    .custom-page .custom-3 .list ul li .content table tbody td {
      display: block !important;
      width: 100%;
      padding: 0 !important;
      border-right: none;
    }
    .custom-page .custom-3 .list ul li .content table tbody td:first-child {
      border-right: none;
    }
    .inner-banner h2 {
      font-size: 36px;
      margin-bottom: -7px;
    }
    .inner-banner {
      height: 220px;
    }
    .custom-page .custom-1 .box .img {
      width: 120px;
      margin-left: 5%;
    }
    .custom-page .custom-1 .box .img .play p {
      margin-left: 0;
      display: none;
    }
    .custom-page .custom-1 .box .img .play h6 {
      max-width: 200px;
      white-space: normal;
    }
    .custom-page i.tag {
      font-size: 16px;
    }
    .contact-page .contact-1 {
      padding: 40px 0;
    }
  }
  @media screen and (max-width: 500px) {
    .inner-banner h2 {
      font-size: 20px;
    }
    .inner-banner {
      height: 260px;
    }
    .inner-banner .box .mbx {
      font-size: 16px;
      line-height: 2;
    }
    .case-page {
      padding: 50px 0;
    }
    .case-page h2,
    .technology-page h2,
    .custom-page h2,
    .prodet-page .prodet-1 .right h1,
    .prodet-page h2 {
      font-size: 20px;
      line-height: 1.8;
    }
    .contact-page .contact-1 .list ul li {
      width: 100%;
    }
    .contact-page .contact-1 .list ul li .box p {
      height: auto;
      min-height: auto;
    }
    .contact-page .contact-1 .list ul li .box span {
      width: 40px;
      height: 40px;
      line-height: 40px;
    }
    .contact-page .contact-1 .list ul li .box span i {
      font-size: 20px;
    }
    .contact-page .contact-2 .right h3 {
      font-size: 20px;
      line-height: 1.8;
    }
    .custom-page .custom-3 .list ul li h5 {
      font-size: 16px;
      line-height: 30px;
    }
    .custom-page .custom-3 .list ul li h5 span {
      top: 3px;
    }
    .custom-page .custom-3 .list ul li {
      padding-left: 20px;
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .custom-page .custom-3 .list ul li i {
      width: 30px;
      top: 14px;
    }
    .technology-page .technology-2 ul li .box .box2 .right {
      width: 100%;
      padding-left: 0;
    }
    .technology-page .technology-2 ul li .box .box2 .left {
      width: 100%;
    }
    .technology-page .technology-2 ul li .box img {
      max-height: 120px;
    }
    .honor-page .list ul li {
      -webkit-transform: scale(1) !important;
      -moz-transform: scale(1) !important;
      -ms-transform: scale(1) !important;
      transform: scale(1) !important;
      left: 0 !important;
    }
    .honor-page {
      padding: 40px 0;
    }
    .prodet-page .prodet-1 .right .btn a {
      margin-right: 15px;
      font-size: 16px;
    }
    .prodet-page .prodet-2 .btn div {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 18px;
    }
    .proyd-page .box .right {
      padding: 15px;
    }
    .proyd-page .box .right ul li .box2 h5 {
      font-size: 16px;
      line-height: 30px;
    }
    .proyd-page .box .right ul li:last-child {
      margin-bottom: 0;
    }
  }
  .prodet-page .ab-3 {
    padding: 90px 0 100px;
  }
  .prodet-page .ab-3 .content {
    display: block;
    padding: 25px 0 80px;
    font-size: 16px;
    color: #959595;
    line-height: 30px;
  }
  .prodet-page .ab-3 .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .prodet-page .ab-3 .list ul li {
    padding: 50px 25px 65px;
    border: 1px solid #eee;
    text-align: center;
    margin: -1px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
  }
  .prodet-page .ab-3 .list ul li i {
    display: block;
    height: 109px;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .prodet-page .ab-3 .list ul li i.ie1 {
    background-image: url("../images/icon-3-1-1.png");
  }
  .prodet-page .ab-3 .list ul li i.ie2 {
    background-image: url("../images/icon-3-2-1.png");
  }
  .prodet-page .ab-3 .list ul li i.ie3 {
    background-image: url("../images/icon-3-3-1.png");
  }
  .prodet-page .ab-3 .list ul li i.ie4 {
    background-image: url("../images/icon-3-4-1.png");
  }
  .prodet-page .ab-3 .list ul li i.ie5 {
    background-image: url("../images/icon-3-5-1.png");
  }
  .prodet-page .ab-3 .list ul li i.ie6 {
    background-image: url("../images/icon-3-6-1.png");
  }
  .prodet-page .ab-3 .list ul li:hover i.ie1 {
    background-image: url("../images/icon-3-1-2.png");
  }
  .prodet-page .ab-3 .list ul li:hover i.ie2 {
    background-image: url("../images/icon-3-2-2.png");
  }
  .prodet-page .ab-3 .list ul li:hover i.ie3 {
    background-image: url("../images/icon-3-3-2.png");
  }
  .prodet-page .ab-3 .list ul li:hover i.ie4 {
    background-image: url("../images/icon-3-4-2.png");
  }
  .prodet-page .ab-3 .list ul li:hover i.ie5 {
    background-image: url("../images/icon-3-5-2.png");
  }
  .prodet-page .ab-3 .list ul li:hover i.ie6 {
    background-image: url("../images/icon-3-6-2.png");
  }
  .prodet-page .ab-3 .list ul li h5 {
    display: block;
    font-size: 20px;
    line-height: 1.8;
    margin: 10px 0 20px;
    text-transform: uppercase;
    font-weight: bold;
  }
  .prodet-page .ab-3 .list ul li p {
    display: block;
    font-size: 16px;
    color: #959595;
    line-height: 30px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    /*height: 6.4em;*/
  }
  .prodet-page .ab-3 .list ul li:hover {
    background: var(--primary);
    color: white;
  }
  .prodet-page .ab-3 .list ul li:hover p {
    color: white;
  }
  .prodet-page .ab-3 .list ul li:nth-child(2),
  .prodet-page .ab-3 .list ul li:nth-child(5) {
    top: -30px;
  }
  @media screen and (max-width: 1230px) {
    .prodet-page .ab-3 .list ul li i {
      height: 80px;
      background-size: auto 100%;
    }
    .prodet-page .ab-3 .list ul li h5 {
      font-size: 18px;
    }
    .prodet-page .ab-3 .list ul li p {
      font-size: 16px;
    }
    .prodet-page .ab-3 .list ul li {
      padding: 30px 15px;
    }
    .prodet-page .ab-3 {
      padding: 60px 0;
    }
    .prodet-page .ab-3 {
      padding: 0;
    }
  }
  @media screen and (max-width: 1000px) {
    .prodet-page .ab-3 .content {
      font-size: 16px;
    }
    .prodet-page .ab-3 .list ul li i {
      height: 60px;
    }
    .prodet-page .ab-3 .list ul li {
      width: 50%;
    }
    .prodet-page .ab-3 .list ul li:nth-child(2),
    .prodet-page .ab-3 .list ul li:nth-child(5) {
      top: 0;
    }
  }
  @media screen and (max-width: 700px) {
    .prodet-page .ab-3 .list ul li {
      width: 100%;
    }
    .prodet-page .ab-3 .list ul li p {
      height: auto !important;
    }
  }
  /*内页样式结束*/


/*# sourceMappingURL=style.css.map */
body,
html {
    padding: 0;
    margin: 0;
    /*min-width: 1200px;*/
}

.footer .bot p .bot-f {
    width: 65px;
    height: 70px;
    position: absolute;
    left: 530px;
    top: 0;
}

.demo-1 {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
}

.bdimgshare-bg,
.bdimgshare-content {
    display: none;
}

.flatwindow {
    width: 100px;
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 17;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    left: 0;
    cursor: pointer;
    /*background: url(../img/0.jpg) center/cover no-repeat;*/
}

.flatwindow a {
    display: block;
    width: 100%;
    height: 100%;
}

.flatwindow .imgg {
    position: absolute;
    width: 282px;
    /*height: 89px;*/
    /*bottom: -105px;*/
    bottom: 0;
    height: auto;
    left: 0;
    z-index: 2;
}

.flatwindow .imgg img {
    display: block;
    width: 100%;
}

.header-warp {
    background-color: #fff;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%
}

.header-warp.on {
    display: block;
}

.float-box {
    width: 100px;
    height: 205px;
    position: fixed;
    left: 0;
    top: 30%;
    z-index: 8;
    box-shadow: 2px 0 5px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.float-box .top {
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.float-box .top a {
    display: block;
    height: 100%;
    width: 100%;
}

.float-box .top a img {
    display: block;
    width: 100%;
    height: 100%;
}

.float-box .bot {
    width: 100px;
    height: 85px;
    background-color: #fff;
    padding-top: 15px;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.float-box .bot .menu {
    width: 100%;
    font-size: 20px;
    color: #222;
    line-height: 25px;
    height: 25px;
    text-align: center;
    font-family: 'BEBAS';
    padding-top: 7px;
}

.float-box.cut {
    top: 0;
    width: 162px;
    height: 81px;
}

.float-box.cut .top {
    float: left;
    width: 81px;
    height: 81px;
    padding-top: 0px;
}

.float-box.cut .bot {
    float: left;
    height: 66px;
    width: 81px;
}

.float-box.cut .navv {
    height: 35px;
}

.float-box.cut .navv p:nth-child(2) {
    top: 11px;
    width: 40px;
    left: -1px;
}

.float-box.cut .navv p:nth-child(3) {
    top: 20px;
}

.float-box.cut .bot .menu {
    padding-top: 0;
    font-size: 16px;
    line-height: 20px;
    height: 20px;
}

.float-box.cut .navv p {
    width: 28px;
    left: 5px;
}

.header-left {
    width: 25%;
    position: fixed;
    left: -25%;
    top: 0;
    height: 100%;
    z-index: 18;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    overflow: hidden;
}

.header-left.on {
    opacity: 1;
    left: 0%
}

.header-left img {
    display: block;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: all 2s;
    -webkit-transition: all 2s;
    transition-delay: 0.5s;
}

.header-left.on img {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.header {
    /*width: 0%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
    z-index: 10;*/
    /*opacity: 0;*/
    /*transition: all 0.5s;
    -webkit-transition: all 0.5s;*/
    /*box-shadow: -1px 0 10px 0 rgba(0, 0, 0, 0.2)*/
}

.header.on {
    opacity: 1;
    width: 75%;
}

.header .navv {
    position: absolute;
    right: 5%;
    top: 3%;
    z-index: 5;
}

.navv {
    width: 40px;
    height: 38px;
    margin: 0 auto 0;
    cursor: pointer;
    position: relative;
}

.navv p {
    width: 40px;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    border-radius: 20%;
}

.navv p:nth-child(1) {
    top: 2px;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.navv p:nth-child(1) {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.float-box .navv p:nth-child(1) {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
}

.navv p:nth-child(2) {
    top: 16px;
    width: 54px;
    left: -7px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.navv p:nth-child(2) {
    opacity: 0;
}

.float-box .navv p:nth-child(2) {
    opacity: 1;
}

.navv p:nth-child(3) {
    top: 30px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.navv p:nth-child(3) {
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.float-box .navv p:nth-child(3) {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
}

.header .nav1 {
    width: auto;
    margin: 12% 0 10% 12%;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.header .nav1.on {
    margin: 10% 0 10% 12%;
    opacity: 1
}

.header .nav1 a {
    display: inline-block;
    margin-right: 44px;
    padding-left: 67px;
    line-height: 22px;
    font-size: 14px;
    color: #282828;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.header .nav1 a:before {
    display: block;
    width: 52px;
    height: 1px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 48%;
    background-color: #282828;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.header .nav1 a:hover {
    padding-left: 60px;
    margin-right: 51px;
}

.header .nav1 a:hover:before {
    width: 45px;
}

.header .nav2 {
    width: auto;
    padding-left: 12%;
    position: relative;
    margin: 0% 0 10% 0;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    top: 2%
}

.header .nav2.on {
    opacity: 1;
    top: 0
}

.header .nav2 i {
    display: block;
    width: 0;
    height: 1px;
    background-color: #282828;
    position: absolute;
    left: 0;
    top: 50px;
}

.header .nav2 li {
    width: auto;
    float: left;
    margin-right: 6%;
}

.header .nav2 li .h2 {
    display: block;
    font-size: 24px;
    line-height: 25px;
    color: #282828;
    margin-bottom: 40px;
    padding-left: 0
}

.header .nav2 li .h2 span {
    font-size: 18px;
    font-family: 'Century Gothic'
}

.header .nav2 li a {
    display: block;
    font-size: 14px;
    line-height: 29px;
    color: #666666;
    padding-left: 28px;
}

.header .nav2 li a em {
    display: inline-block;
    width: 0px;
    height: 1px;
    background-color: #666666;
    margin-right: 3px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.header .nav2 li a:hover em {
    width: 12px;
}

.header .language {
    width: 100px;
    height: 30px;
    margin-left: 2%;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.header .language.on {
    margin-left: 5%;
    opacity: 1
}

.header .language a {
    color: #9ca3a5;
    font-size: 18px;
    margin-right: 25px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.header .language a.on,
.header .language a:hover {
    color: #333;
}



.footer {
    width: 100%;
    height: auto;
    background-color: #fff;
    overflow: hidden;
    /*background:#fff url(../img/footer-bg.png) center no-repeat*/
}

.footer .mian {
    width: 1200px;
    height: auto;
    padding: 90px 0 50px;
    margin: 0 auto;
}

.footer .mian .left {
    width: 75%;
    height: auto;
}

.footer .mian ul li {
    float: left;
    width: 16.5%
}

.footer .mian ul li .title {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #222;
    margin-bottom: 15px;
}

.footer .mian ul li a {
    display: block;
    font-size: 14px;
    line-height: 29px;
    color: #666;
    cursor: pointer;
}

.footer .mian ul li a:hover {
    color: #222
}

.footer .mian .right {
    width: 24%;
    height: auto;
    border-left: 1px solid #ccc
}

.footer .mian .right .sel {
    width: 230px;
    position: relative;
    float: right;
    margin-bottom: 15px;
    cursor: pointer;
}

.footer .mian .right .sel .tit {
    width: 200px;
    padding: 0 15px;
    background-color: #f4f4f4;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    color: #747474;
    position: relative;
}

.footer .mian .right .sel .tit i {
    display: block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #7a7a7a;
    position: absolute;
    right: 15px;
    top: 40%;
    border-radius: 2px;
}

.footer .mian .right .sel .cent {
    height: auto;
    width: 230px;
    background-color: #7a7a7a;
    position: absolute;
    top: 32px;
    left: 0;
    display: none
}

.footer .mian .right .sel .cent {
    max-height: 300px;
    overflow-y: auto;
}

.footer .mian .right .sel .cent a {
    display: block;
    width: 200px;
    padding: 6px 15px;
    line-height: 20px;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.footer .mian .right .sel .cent a:hover {
    background-color: #666;
}

.footer .mian .right .pic {
    width: 260px;
    padding-left: 35px
}

.footer .mian .right .pic .flr {
    float: right;
    width: 126px;
}

.footer .mian .right .pic .flr:nth-child(2) {
    margin-right: 5px
}

.footer .mian .right .pic img {
    display: block;
    width: 126px;
    height: 129px;
}

.footer .mian .right .pic h2 {
    display: block;
    font-size: 12px;
    line-height: 30px;
    color: #222;
    text-align: center;
}

.footer .bot {
    width: 100%;
    height: 72px;
    background-color: #081016
}

.footer .bot p {
    width: 1200px;
    height: 42px;
    line-height: 42px;
    padding: 15px 0;
    margin: 0 auto;
    font-size: 14px;
    color: #77797b
}

.footer .bot p a {
    float: right;
    display: block;
    color: #77797b
}

.footer .bot p a:hover {
    color: #fff;
}

header {
    display: none;
}

.banner .model-ban {
    display: none
}

/*base*/
@font-face {
    font-family: 'BEBAS';
    src: url('../fonts/BEBAS.eot');
    src: url('../fonts/BEBAS.eot') format('embedded-opentype'),
        url('../fonts/BEBAS.woff2') format('woff2'),
        url('../fonts/BEBAS.woff') format('woff'),
        url('../fonts/BEBAS.ttf') format('truetype'),
        url('../images/BEBAS.svg#BEBAS') format('svg');
}

input.inpt::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
}

input.inpt:-moz-placeholder,
textarea:-moz-placeholder {
    color: #999;
}

.waiter {
    display: none
}

.bg {
    background-color: #fafafa
}

.fc {
    background-color: #fcfcfc
}

.loadingBg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: #f5f5f5;
    z-index: 9999;
}

.loading {
    width: 90px;
    height: 113px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -45px;
    margin-top: -56.5px;
    z-index: 999;
}

.m-black,
.m-red {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 90px;
}

.m-black {
    background: url(../images/timg2.jpg) no-repeat left top;
    height: 113px;
}

.m-red {
    background: url(../images/timg.jpg) no-repeat left bottom;
    height: 113px;
    -webkit-animation: fill 3s infinite linear;
    animation: fill 3s infinite linear;
    -moz-animation: fill 3s infinite linear;
}

@-moz-keyframes fill {
    0% {
        height: 0px;
    }

    25% {
        height: 40px;
    }

    50% {
        height: 85px;
    }

    75% {
        height: 125px;
    }

    100% {
        height: 173px;
    }
}

@-webkit-keyframes fill {
    0% {
        height: 0px;
    }

    25% {
        height: 40px;
    }

    50% {
        height: 85px;
    }

    75% {
        height: 125px;
    }

    100% {
        height: 173px;
    }
}

@keyframes fill {
    0% {
        height: 0px;
    }

    25% {
        height: 40px;
    }

    50% {
        height: 85px;
    }

    75% {
        height: 125px;
    }

    100% {
        height: 173px;
    }
}

.fy {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    min-height: 45px;
    margin-bottom: 130px;
}

.fy a {
    font-size: 14px;
    color: #222;
    padding: 12px 17px;
    background-color: #e8e8e8;
    margin: 0 2px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.fy .t1 {
    padding: 12px 30px;
}

/*.fy a:hover,.fy a.on{background-color: #004a82;color: #fff;}*/
.fy a:hover,
.fy a.active {
    background-color: #004a82;
    color: #fff;
}

.base-ban {
    width: 100%;
    height: auto;
    position: relative;
}

.base-ban img {
    display: block;
    width: 100%;
}

.base-ban .warp {
    position: absolute;
    top: 30%;
    left: 13%;
}

.base-ban .warp h2 {
    font-size: 72px;
    font-family: 'Century Gothic';
    color: #fff;
    display: block;
    line-height: 80px;
    font-weight: bold;
    position: relative;
    padding-top: 35px;
    margin-bottom: 15px;
}

.base-ban .warp h2:before {
    display: block;
    content: '';
    height: 3px;
    width: 220px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.base-ban .warp .mintit {
    font-size: 48px;
    color: #fff;
    line-height: 55px;
    font-weight: bold;
    margin-bottom: 20px;
}

.base-ban .warp .cent,
.base-ban .warp .cent p {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    font-family: 'Century Gothic';
}

.base-ban .warp .cent {
    margin-bottom: 60px;
}

.base-ban .warp .btns {
    display: block;
    width: 63px;
    height: 63px;
    border-radius: 100%;
    background-color: #248e3e;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.base-ban .warp .btns i {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/bot-arr.png) center no-repeat;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.base-ban .warp .btns:hover {
    background-color: rgba(255, 255, 255, 0.7)
}

.base-ban .warp .btns:hover i {
    background: url(../images/bot-arr1.png) center no-repeat;
}

.banner .video {
    display: block;
    width: 100%;
    height: 100%;
}

.banner {
    width: 100%;
    height: 100%;
}

.iab {
    width: 100%;
    height: auto;
    padding-bottom: 100px;
    overflow: hidden;
    /*background: url(../img/ipro-bg.jpg) center no-repeat*/
}

.iab .warp {
    width: 1200px;
    margin: 0 auto;
    padding-top: 150px;
    height: auto;
}

.iab .warp .box {
    width: 390px;
    float: left;
    padding-top: 40px;
}

.iab .warp .box h2 {
    display: block;
    line-height: 70px;
    font-size: 66px;
    text-transform: capitalize;
    color: #222;
    font-family: 'BEBAS';
    padding-top: 55px;
    position: relative;
    margin-bottom: 10px;
}

.iab .warp .box h2:before {
    display: block;
    width: 125px;
    height: 3px;
    background-color: #222;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}

.iab .warp .box h3 {
    display: block;
    font-size: 50px;
    color: #222;
    line-height: 60px;
    margin-bottom: 30px;
}

.iab .warp .box .cent {
    font-size: 16px;
    line-height: 30px;
    color: #1d2830;
    margin-bottom: 40px;
}

.iab .warp .box .cent p {
    font-size: 16px;
    line-height: 30px;
    color: #1d2830;
}

.iab .warp .box .btns {
    display: block;
    width: 130px;
    height: 48px;
    line-height: 48px;
    color: #fff;
    font-size: 18px;
    padding: 0 30px;
    border-radius: 3px;
    text-transform: capitalize;
    font-family: 'BEBAS';
    background: #005ba0 url(../images/rddr.png) 80% center no-repeat;
    border: 1px solid #005ba0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin-bottom: 100px;
}

.iab .box .btns:hover {
    background: #005ba0 url(../images/rddr.png) 87% center no-repeat;
    box-shadow: 0 1px 6px 0px rgba(0, 91, 160, 1)
}

.iab .box .details {
    width: 299px;
    height: 299px;
    overflow: hidden;
    float: right;
}

.iab .box .details img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s
}

.iab .box .details:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.iab .warp .pic {
    float: right;
    width: 718px;
    height: auto;
}

.iab .warp .pic .video-pc {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
}

.iab .warp .pic .video-pc img {
    display: block;
    width: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s
}

.iab .warp .pic .video-pc:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.iab .warp .pic .video-pc .btns {
    display: block;
    width: 76px;
    height: 76px;
    background: url(../images/iab-btns.png) center no-repeat;
    z-index: 5;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -38px 0 0 -38px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.iab .warp .pic .video-pc .btns:hover {
    background: url(../images/iab-btns1.png) center no-repeat;
}

.iab .warp .pic .video-ph {
    display: none;
}

.iab .warp .bot {
    padding-left: 40px;
    height: auto;
}

.iab .warp .bot ul li {
    float: left;
    margin-right: 90px;
}

.iab .warp .bot ul li:last-child {
    margin-right: 0px;
}

.iab .bot li p {
    font-size: 64px;
    color: #1d2830;
    text-align: center;
    line-height: 70px;
    font-family: 'BEBAS';
    margin-bottom: 5px;
}

/*.iab .bot li:nth-child(1) p{font-family: 'Times New Roman';}*/
.iab .bot li .intro {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.prop-zhez {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: url(../images/tipbg.png) center repeat;
    z-index: 100;
    display: none
}

.prop-video-box {
    width: 950px;
    margin: 0 auto;
    height: 60%;
    position: fixed;
    top: 15%;
    left: 50%;
    z-index: 101;
    margin-left: -475px
}

.prop-video-box .close {
    display: block;
    width: 35px;
    height: 35px;
    background: url(../images/ico_07.png) center no-repeat;
    position: absolute;
    right: -50px;
    top: 0px;
}

.prop-video-box .video {
    display: block;
    width: 100%;
    height: 100%
}

.prop-video-box .main {
    display: block;
    width: 100%;
    height: 100%
}

.iproduct {
    width: 100%;
    height: auto;
}

.iproduct .title {
    width: 100%;
    background-color: #fff;
}

.iproduct .title .mian {
    max-width: 1200px;
    padding: 50px 0;
    text-align: center;
    margin: 0 auto;
}

.iproduct .title h2 {
    display: block;
    font-size: 50px;
    line-height: 60px;
    color: #222;
    margin-bottom: 15px;
}

.iproduct .title .cent {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #8d8d8d;
}

.iproduct .title .cent p {
    font-size: 14px;
    line-height: 16px;
    color: #8d8d8d;
}

.iproduct .pic {
    width: 100%;
    position: relative;
}

.iproduct .pic img {
    display: block;
    width: 100%;
}

.iproduct .main {
    text-align: center;
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    z-index: 5;
}

.iproduct .main h2 {
    display: block;
    font-size: 54px;
    color: #fff;
    line-height: 60px;
    margin-bottom: 20px;
}

.iproduct .main .cent,
.iproduct .main .cent p {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
}

.iproduct .main .cent {
    margin-bottom: 35px;
}

.iproduct .main .btns {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    margin: 0 auto;
    background-color: #005ba0;
    position: relative;
    border: 1px solid #005ba0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.iproduct .main .btns:hover {
    background-color: transparent;
    border: 1px solid #fff;
}

.iproduct .main .btns i {
    display: block;
    width: 48px;
    height: 48px;
    background: url(../images/bot-arr.png) center no-repeat;
    animation: downico 1.5s ease-out infinite;
    animation: downico 1.5s ease-out infinite\0/IE9;
    position: absolute;
    left: 0;
    top: 0;
}

@keyframes downico {
    0% {
        left: 0;
        opacity: 1;
    }

    35% {
        left: 30%;
        opacity: 0;
    }

    65% {
        left: -30%;
        opacity: 0;
    }

    100% {
        left: 0;
        opacity: 1;
    }
}

.iproduct .warp {
    width: 1000px;
    height: 158px;
    overflow: hidden;
    margin: -80px auto 0;
    position: relative;
    box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
    z-index: 5;
}

.iproduct .swiper-container {
    width: 900px;
    height: 158px;
    text-align: center;
    position: relative;
}

.iproduct .swiper-container .g {
    display: block;
    width: 1px;
    height: 80px;
    position: absolute;
    z-index: 5;
    top: 50%;
    margin-top: -40px;
    background-color: #fff;
    right: 0;
}

.iproduct .swiper-slide .tit {
    font-size: 18px;
    line-height: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    height: 20px;
    color: #666;
    text-align: center;
}

.iproduct .swiper-slide.on .tit {
    color: #222;
}

.iproduct .swiper-slide:hover .tit {
    color: #222;
}

.iproduct .pagination {
    position: absolute;
    z-index: 20;
    left: 10px;
    bottom: 10px;
}

.iproduct .swiper-pagination-switch {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #222;
    margin-right: 5px;
    opacity: 0.8;
    border: 1px solid #fff;
    cursor: pointer;
}

.iproduct .swiper-visible-switch {
    background: #aaa;
}

.iproduct .swiper-active-switch {
    background: #fff;
}

.iproduct .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: red;
    margin-top: -100px;
    position: absolute;
    z-index: 50;
}

.iproduct .arrow-left {
    background: url(../images/ipro-larr.png) center no-repeat;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -10px;
    width: 10px;
    height: 20px;
}

.iproduct .arrow-right {
    background: url(../images/ipro-rarr.png) center no-repeat;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
    width: 10px;
    height: 20px;
}

.iproduct .pci {
    width: 50px;
    height: 50px;
    margin: 40px auto 10px auto;
    position: relative;
}

.iproduct .pci .gray {
    display: block;
    width: 50px;
    height: 50px;
}

.iproduct .pci .green {
    display: block;
    width: 50px;
    height: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    overflow: hidden;
}

.iproduct .swiper-slide:hover .pci .green {
    height: 50px;
}

.iproduct .swiper-slide .pci .green img {
    display: block;
    height: 50px;
    width: 50px;
    position: absolute;
    bottom: 0;
    left: 0
}

.iproduct .swiper-slide.on .pci .green {
    height: 50px;
}

.iproduct .swiper-slide {
    position: relative;
    cursor: pointer;
}

.iproduct .swiper-slide i {
    display: block;
    width: 90%;
    position: absolute;
    bottom: 0;
    height: 4px;
    background-color: #fff;
    left: 50%;
    margin-left: -45%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.iproduct .swiper-slide.on i {
    background-color: #06b4a1;
}

.iproduct .swiper-slide em {
    display: block;
    width: 1px;
    height: 80px;
    background-color: #f2f2f2;
    right: 0px;
    top: 50%;
    position: absolute;
    z-index: 2;
    margin-top: -40px;
}

.isocial {
    width: 100%;
    height: auto;
    padding: 120px 0 130px 0;
    overflow: hidden;
    /*background:#fff url(../img/izeren-bg.jpg) center no-repeat*/
}

.isocial .warp {
    width: 1200px;
    margin: 0 auto;
}

.isocial .warp .pic {
    width: 658px;
    height: 661px;
    overflow: hidden;
    float: left;
}

.isocial .warp .pic img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.isocial .warp .pic:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.isocial .warp .box {
    width: 450px;
    height: auto;
    float: right;
}

.isocial .warp .box .logo {
    display: block;
    width: 129px;
    height: 188px;
    margin-bottom: 32px;
}

.isocial .warp .box h2 {
    display: block;
    font-size: 65px;
    color: #222;
    text-transform: capitalize;
    line-height: 70px;
    padding-top: 50px;
    position: relative;
    font-family: 'BEBAS';
    margin-bottom: 20px;
}

.isocial .warp .box h2 i {
    display: block;
    width: 125px;
    height: 3px;
    background-color: #222;
    position: absolute;
    top: 0;
    left: 0
}

.isocial .warp .box .mintit {
    font-size: 50px;
    color: #222;
    line-height: 55px;
    margin-bottom: 25px;
}

.isocial .warp .box .cent {
    font-size: 16px;
    line-height: 28px;
    color: #585858;
    margin-bottom: 45px;
}

.isocial .warp .box .btns {
    display: block;
    width: 130px;
    height: 48px;
    line-height: 48px;
    color: #fff;
    font-size: 18px;
    padding: 0 30px;
    border-radius: 3px;
    text-transform: capitalize;
    font-family: 'BEBAS';
    background: #005ba0 url(../images/rddr.png) 80% center no-repeat;
    border: 1px solid #005ba0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.isocial .warp .box .btns:hover {
    background: #005ba0 url(../images/rddr.png) 87% center no-repeat;
    box-shadow: 0 1px 6px 0px rgba(0, 91, 160, 1)
}

.inews {
    width: 1200px;
    margin: 0 auto;
    padding: 75px 0 80px 0
}

.inews .title {
    width: 92%;
    margin: 0 auto 55px;
    text-align: center;
}

.inews .title h2 {
    font-size: 50px;
    line-height: 55px;
    color: #222;
    margin-bottom: 15px;
}

.inews .title .mintit {
    font-size: 14px;
    color: #8a8a8a;
    line-height: 16px;
}

.inews .mian li {
    width: 380px;
    margin-right: 30px;
    height: 467px;
    background-color: #fff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.inews .mian li.on {
    margin-right: 0;
}

.inews .mian li a {
    display: block;
    width: 100%;
    height: auto;
}

.inews .mian li .pic {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.inews .mian li .pic img {
    display: block;
    width: 100%;
    height: 240px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.inews .mian li:hover .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.inews .mian .pic .time {
    width: 51px;
    height: 46px;
    background-color: #003f76;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    font-size: 14px;
    color: #fff;
    line-height: 22px;
    text-align: center;
    padding-top: 5px
}

.inews .mian .pic .time span {
    font-size: 16px;
    line-height: 18px;
}

.inews .mian .box {
    width: 320px;
    margin: 0 auto;
    padding-top: 25px;
}

.inews .mian .box h2 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #222;
    margin-bottom: 20px;
}

.inews .mian .box .cent {
    font-size: 16px;
    color: #666666;
    line-height: 26px;
}


.iin {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 85px;
}

.iin .title {
    width: 92%;
    margin: 0 auto 55px;
    text-align: center;
}

.iin .title h2 {
    font-size: 50px;
    line-height: 55px;
    color: #222;
    margin-bottom: 15px;
}

.iin .title .mintit {
    font-size: 14px;
    color: #8a8a8a;
    line-height: 16px;
}

.iin .slides a {
    display: block;
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    padding-bottom: 75px;
}

.iin .slides a .pic {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.iin .slides a .pic img {
    display: block;
    width: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.iin .slides li:hover a .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.iin .slides a .pic .time {
    width: 51px;
    height: 46px;
    background-color: #003f76;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    font-size: 14px;
    color: #fff;
    line-height: 22px;
    text-align: center;
    padding-top: 5px
}

.iin .slides a .pic .time span {
    font-size: 16px;
    line-height: 18px;
}

.iin .slides .box {
    width: 84%;
    margin: 0 auto;
}

.iin .slides .box h2 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #222;
    margin-bottom: 20px;
}

.iin .slides .box .cent {
    font-size: 16px;
    color: #666666;
    line-height: 26px;
}

.flex-direction-nav {
    display: none
}



/*job*/
.h-title {
    width: 100%;
    height: 75px;
    position: relative;
    text-align: center;
    line-height: 75px;
    background-color: #fff;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.h-title i {
    display: block;
    width: 54%;
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    background-color: #005ba0;
}

.h-title a {
    font-size: 16px;
    color: #666666;
    margin: 0 30px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.h-title a.on,
.h-title a:hover {
    color: #005ba0
}

.job-linian {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 50px;
    width: 1200px;
    margin: 0 auto 80px
}

.job-linian p {
    font-size: 14px;
    line-height: 24px;
    color: #565656;
}

.job-warp {
    width: 1200px;
    margin: 0 auto 80px;
}

.job-warp ul li {
    height: auto;
    width: 100%;
    border-bottom: 1px solid #e9ebed
}

.job-warp li .title {
    height: 52px;
    line-height: 52px;
    padding: 0 40px;
    color: #4b4b4b;
    background-color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.job-warp li.on .title {
    background-color: #005ba0;
    color: #fff;
}

.job-warp li .title span {
    float: right;
    padding-right: 30px;
    background: url(../images/job-icon1.png) right center no-repeat;
}

.job-warp li.on .title span {
    background: url(../images/job-icon2.png) right center no-repeat
}

.job-warp li .warp {
    padding: 10px 40px 20px;
    background-color: #fff;
    display: none
}

.job-warp .warp .tbl {
    width: 80%;
    margin-bottom: 25px;
    padding: 10px 20% 20px 0;
    border-bottom: 1px solid #e9ebed
}

.job-warp .warp .tbl p {
    width: 25%;
    float: left;
    font-size: 14px;
    color: #222;
    line-height: 26px;
}

.job-warp .warp .tbl p span {
    color: #565656;
    padding-left: 15px;
}

.job-warp .warp .cont h2 {
    font-size: 14px;
    color: #222;
    line-height: 30px;
    margin-bottom: 15px;
}

.job-warp .warp .cont .cent,
.job-warp .warp .cont .cent p {
    font-size: 14px;
    line-height: 28px;
    color: #565656
}

.job-warp .warp .btns {
    font-size: 14px;
    line-height: 20px;
    color: #005ba0;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.job-warp .warp .btns:hover {
    color: #222;
}

/*contact*/
.contact-warp {
    width: 1200px;
    margin: 0 auto 100px;
    padding: 110px 0 0;
}

.contact-warp form {
    display: block;
    width: 100%;
    height: auto;
}

.contact-warp h2,
.welfare-warp .title h2,
.lead-news .title h2,
.staff-news .title h2,
.paper-news .title h2,
.news-title .title h2,
.bookcase .title h2 {
    font-size: 48px;
    line-height: 55px;
    color: #004a82;
    font-family: 'Century751 SeBd BT';
    text-transform: Uppercase;
    display: block;
    margin-bottom: 10px;
}

.contact-warp h2 span,
.welfare-warp .title h2 span,
.lead-news .title h2 span,
.staff-news .title h2 span,
.paper-news .title h2 span,
.news-title .title h2 span,
.bookcase .title h2 span {
    color: #248e3e
}

.contact-warp h3,
.welfare-warp .title h3,
.lead-news .title h3,
.staff-news .title h3,
.paper-news .title h3,
.news-title .title h3,
.bookcase .title h3 {
    display: block;
    font-size: 40px;
    line-height: 50px;
    color: #004a82;
    margin-bottom: 70px;
}

.contact-warp .message {
    margin-bottom: 90px;
}

.contact-warp .message .mian {
    width: 100%;
    margin-bottom: 120px;
}

.contact-warp .message .mian ul .inp {
    float: left;
    width: 360px;
    height: 200px;
    margin-right: 60px;
}

.contact-warp .message .mian ul .inp:nth-child(3) {
    margin-right: 0
}

.contact-warp .message .mian ul .inp input {
    display: block;
    width: 100%;
    height: 70px;
    line-height: 70px;
    border: 0;
    border-top: 1px solid #cdcdcc;
    font-family: 'Century Gothic';
    font-weight: bold;
    outline: none;
    font-size: 18px
}

.contact-warp .message .mian ul .text {
    width: 780px;
    float: left;
    height: 200px;
    font-family: 'Century Gothic';
    font-weight: bold;
}

.contact-warp .message .mian ul .text textarea {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2.5% 3%;
    line-height: 30px;
    resize: none;
    box-sizing: border-box;
    border: 1px solid #cdcdcc;
    outline: none;
}

.contact-warp .message .btns {
    width: 100%;
    height: auto;
    position: relative;
}

.contact-warp .message .btns:before {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #cdcdcc;
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
}

.contact-warp .message .btns input {
    display: block;
    width: auto;
    height: 62px;
    background: #004a82 url(../images/contact-icon1.png) 65% center no-repeat;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    float: right;
    font-family: 'Century Gothic';
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    padding: 0 170px 0 110px;
    border: 0;
    position: relative;
    z-index: 2
}

.contact-warp .message .btns input:hover {
    background: #004a82 url(../images/contact-icon1.png) 70% center no-repeat;
    box-shadow: 0 1px 10px 0 rgba(0, 74, 140, 1)
}

.contact-warp .contact {
    width: 100%;
}

.contact-warp .contact .warp {
    width: 100%;
}

.contact-warp .contact .warp .box {
    width: 28%;
    height: auto;
    float: left;
}

.contact-warp .contact .box ul li {
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 0
}

.contact-warp .contact .box ul li:last-child {
    border-bottom: 0;
}

.contact-warp .contact .box ul li p {
    font-size: 26px;
    color: #333333;
    text-transform: Capitalize;
    font-family: 'Century Gothic';
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 12px;
}

.contact-warp .contact .box ul li span {
    display: block;
    font-size: 18px;
    color: #666666;
    line-height: 20px;
}

.contact-warp .map {
    width: 60%;
    height: 500px;
    float: right;
}

.contact-warp .map #allmap {
    width: 100%;
    height: 100%;
}

.BMap_noprint,
.anchorBL {
    opacity: 0
}

.contact-warp .BMap_bubble_title {
    color: #cc5522;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-warp .BMap_bubble_content {
    color: #333;
    font-size: 14px;
    line-height: 20px;
}

/*welfare公益事业*/
.welfare-ban {
    width: 1200px;
    margin: 0 auto 95px;
}

.welfare-ban img {
    display: block;
    width: 100%;
}

.welfare-warp {
    width: 1200px;
    margin: 0 auto 60px;
}

.welfare-warp .title {
    margin-bottom: 110px;
}

.welfare-warp .title h3 {
    margin-bottom: 20px;
}

.welfare-warp .title .cent,
.welfare-warp .title .cent p {
    font-size: 14px;
    line-height: 32px;
    color: #333333;
    width: 1200px;
}

.welfare-warp .warp {
    width: 100%;
    height: auto;
}

/*.welfare-warp .warp ul{display: block;width: 100%;height: 100%;margin-bottom: 30px;}*/
.welfare-warp .warp ul li {
    width: 357px;
    background-color: #fff;
    padding: 10px;
    float: left;
    margin: 0 34px 30px 0;
    position: relative;
    top: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    min-height: 400px;
}

.welfare-warp .warp ul li:hover {
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.2);
    top: -10px;
}

.welfare-warp .warp ul li.on {
    margin-right: 0;
}

.welfare-warp .warp ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.welfare-warp .warp li .pic {
    width: 100%;
    height: 190px;
    overflow: hidden;
    margin-bottom: 30px;
}

.welfare-warp .warp li .pic img {
    display: block;
    width: 100%;
    height: 100%;
}

.welfare-warp .warp li .box h2 {
    display: block;
    color: #282828;
    line-height: 32px;
    font-size: 20px;
    margin-bottom: 15px;
}

.welfare-warp .warp li .box .cent {
    font-size: 14px;
    line-height: 24px;
    color: #888888;
    margin-bottom: 15px;
}

.welfare-warp .warp li .box .time {
    display: block;
    font-size: 14px;
    color: #282828;
    line-height: 20px;
}

.welfare-warp .warp .noimg .box {
    padding-top: 30px;
}

.welfare-warp .warp .noimg a i {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #248e3e;
    top: 0;
    left: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    position: absolute;
}

.welfare-warp .warp .noimg .box h2 {
    margin-bottom: 25px;
    min-height: 64px;
}

.welfare-warp .warp .noimg .box .cent {
    margin-bottom: 25px;
}

.welfare-warp .warp .noimg .box .time {
    margin-bottom: 110px;
}

.welfare-warp .warp .noimg .box em {
    display: block;
    width: 100%;
    height: 21px;
    background: url(../images/welfare-arr.png) left center no-repeat;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    position: absolute;
    bottom: 2%;
    left: 2%
}

.welfare-warp .warp .noimg:hover .box em {
    background: url(../images/welfare-arr.png) 10% center no-repeat;
}

.welfare-warp .warp .noimg:hover a i {
    top: 0px;
}

/*charity 慈善家楼*/
.charity .h-title {
    margin-bottom: 0
}

.charity-ban {
    width: 100%;
}

.charity-ban img {
    display: block;
    width: 100%;
}

.charity-warp {
    width: 1080px;
    height: auto;
    padding: 80px 60px 70px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    margin: -140px auto 70px;
    position: relative;
}

.charity-warp .left,
.charity-warp .right {
    width: 47%;
    float: left;
    height: auto;
    font-size: 14px;
    line-height: 30px;
    color: #1c1c1b
}

.charity-warp .right {
    float: right;
}

.charity-atlas {
    width: 1200px;
    margin: 0 auto 80px;
}

.charity-atlas ul li {
    float: left;
    width: 284px;
    height: 194px;
    overflow: hidden;
    margin: 0 21px 22px 0;
}

.charity-atlas ul li:nth-child(4),
.charity-atlas ul li:nth-child(8) {
    margin-right: 0
}

.charity-atlas ul li a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: ;
    position:
}

.charity-atlas ul li a img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.charity-atlas ul li:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

/*领导活动*/
.lead-title {
    background-color: #fff;
    width: 100%;
    height: 75px;
    position: relative;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 70px;
}

.lead-title i {
    display: block;
    position: absolute;
    height: 4px;
    width: 60%;
    background-color: #005ba0
}

.lead-title .swiper-container {
    width: 750px;
    height: 75px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

.lead-title .swiper-slide {
    height: 100%;
}

.lead-title .swiper-slide .title {
    font-size: 16px;
    line-height: 75px;
    color: #666666;
    width: 150px;
    display: block;
    cursor: pointer;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.lead-title .swiper-slide.on .title,
.lead-title .swiper-slide:hover .title {
    color: #005ba0
}

.lead-news,
.staff-news,
.paper-news {
    width: 1200px;
    margin: 0 auto 80px;
}

.lead-news .title,
.staff-news .title,
.paper-news .title {
    margin-bottom: 50px;
    text-align: center;
}

.lead-news .title h3,
.staff-news .title h3,
.paper-news .title h3 {
    margin-bottom: 0
}

.lead-news .list,
.staff-news .list {
    width: 100%;
}

.lead-news .list li {
    float: left;
    width: 385px;
    height: 420px;
    background-color: #fff;
    box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.1);
    margin: 0 22px 24px 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.lead-news .list li:nth-child(3),
.lead-news .list li:nth-child(6) {
    margin-right: 0
}

.lead-news .list li a,
.staff-news .list li a {
    display: block;
    width: 100%;
    height: 100%;
}

.lead-news .list li a .pic {
    width: 100%;
    height: 221px;
    overflow: hidden;
    margin-bottom: 30px;
}

.lead-news .list li a .pic img {
    display: block;
    height: 100%;
    width: 100%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.lead-news .list .box {
    padding: 0 8%;
}

.lead-news .list .box h2 {
    font-size: 20px;
    color: #282828;
    line-height: 30px;
    margin-bottom: 5px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.lead-news .list .box .cent {
    font-size: 18px;
    line-height: 30px;
    color: #888;
    padding-bottom: 30px;
    position: relative;
}

.lead-news .list .box .cent:before {
    display: block;
    width: 120px;
    height: 3px;
    background-color: #005ba0;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
}

.lead-news .list li:hover .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.lead-news .list li:hover .box h2 {
    color: #005ba0
}

.lead-news .list li:hover {
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.3);
}

.videonews {
    display: none;
}

/*员工*/
.staff-title {
    background-color: #fff;
    width: 100%;
    height: 75px;
    position: relative;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 70px;
}

.staff-title i {
    display: block;
    position: absolute;
    height: 4px;
    width: 60%;
    background-color: #005ba0
}

.staff-title .swiper-container {
    width: 900px;
    height: 75px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

.staff-title .swiper-slide {
    height: 100%;
}

.staff-title .swiper-slide .title {
    font-size: 16px;
    line-height: 75px;
    color: #666666;
    width: 150px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    display: block;
    cursor: pointer;
}

.staff-title .swiper-slide.on .title,
.staff-title .swiper-slide:hover .title {
    color: #005ba0
}

.staff-news .title {
    margin-bottom: 85px;
}

.staff-news .list {
    width: 1200px;
    height: auto;
    margin: 0 auto;
}

.staff-news .list li {
    float: left;
    width: 296px;
    height: 203px;
    position: relative;
    margin: 0 5px 5px 0;
    overflow: hidden;
}

.staff-news .list li:nth-child(4),
.staff-news .list li:nth-child(8) {
    margin-right: 0
}

.staff-news .list li img {
    display: block;
    width: 100%;
}

.staff-news .list li .box {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    padding: 3%;
    opacity: 0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.staff-news .list li .box .details {
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    padding: 5%;
    color: #fff;
}

.staff-news .list li .details .math {
    font-size: 24px;
    line-height: 28px;
    position: relative;
    font-family: 'Century Gothic';
    margin-bottom: 15px;
    display: none;
}

.staff-news .list li .details .math:before {
    display: block;
    width: 15px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 35px;
    content: '';
}

.staff-news .list li .details .cent {
    font-size: 18px;
    line-height: 28px;
    height: 76%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 5%;
    left: -50%;
    opacity: 0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    position: relative;
}

.staff-news .list li .details .infor {
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    right: -30%;
    opacity: 0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    opacity: 0;
    position: relative;
}

.staff-news .list li.on .box {
    opacity: 1;
}

.staff-news .list li.on .details .cent {
    left: 0;
    opacity: 1
}

.staff-news .list li.on .details .infor {
    right: 0;
    opacity: 1
}

/*广夏报*/
.paper-news .serch {
    width: 520px;
    height: 45px;
    margin: 0 auto 70px;
}

.paper-news .serch span {
    display: block;
    width: 17%;
    font-size: 18px;
    color: #666;
    line-height: 45px;
    background-color: #f1f1f1;
    float: left;
    text-align: center;
}

.paper-news .serch input[type='text'] {
    display: block;
    height: 45px;
    line-height: 45px;
    width: 61.5%;
    background-color: #fff;
    padding: 0 5% 0 5%;
    font-size: 14px;
    float: left;
    border: 0;
}

.paper-news .serch input[type='submit'] {
    display: block;
    width: 11%;
    float: left;
    border: 0;
    background-color: #205db1;
    height: 45px;
    background: #205db1 url(../images/paper-icon.jpg) center no-repeat;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px
}

.paper-news .list {
    width: 100%;
}

.paper-news .list li {
    width: 23%;
    height: auto;
    float: left;
    margin: 0 2.5% 35px 0;
}

.paper-news .list li:nth-child(4),
.paper-news .list li:nth-child(8) {
    margin-right: 0
}

.paper-news .list li a {
    display: block;
    width: 100%;
    height: 100%;
}

.paper-news .list li a .pic {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.1)
}

.paper-news .list li a .pic img {
    display: block;
    width: 100%;
    border: 1px solid #dddddd;
    box-sizing: border-box;
}

.paper-news .list li a .tit {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #333;
    line-height: 26px;
}

.le-title {
    display: none
}


/*新闻中心*/
.maxnews {
    width: 1200px;
    height: 573px;
    overflow: hidden;
    margin: 0 auto 75px;
    position: relative;
}

.maxnews img {
    display: block;
    width: 100%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.maxnews:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.maxnews .box {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 89px;
    box-sizing: border-box;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.maxnews .box h2 {
    font-size: 28px;
    line-height: 35px;
    font-family: 'Century Gothic';
    font-weight: bold;
    padding-top: 260px;
    margin-bottom: 25px;
}

.maxnews .box .details,
.maxnews .box .details p {
    font-size: 28px;
    line-height: 38px;
}

.maxnews .box .details {
    margin-bottom: 45px
}

.maxnews .box .btns {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    display: block;
    width: 130px;
    height: 48px;
    line-height: 48px;
    padding: 0 30px;
    color: #00487e;
    font-weight: bold;
    font-family: 'BEBAS';
    font-size: 16px;
    border-radius: 3px;
    background: #fff url(../images/maxnews-icon.png) 80% center no-repeat
}

.maxnews .box .btns:hover {
    background: #f2f2f2 url(../images/maxnews-icon.png) 85% center no-repeat
}

.maxnews:hover .box {
    background-color: rgba(0, 91, 160, 0.8);
}

.news-title {
    width: 1200px;
    margin: 0 auto 60px;
}

.news-title .warp {
    width: 100%;
}

.news-title .warp li {
    float: left;
    height: auto;
    width: 32%;
    margin: 0 2% 29px 0;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    min-height: 430px;
}

.news-title .warp li a {
    display: block;
    width: 100%;
    height: auto
}

.news-title .warp li .pic {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-title .warp li .pic img {
    display: block;
    width: 100%;
}

.news-title .warp li .box {
    padding: 0 10%;
    padding-bottom: 30px;
}

.news-title .warp li .box .time {
    font-size: 14px;
    line-height: 25px;
    color: #004a82;
    font-family: 'Century Gothic';
    margin-bottom: 5px;
}

.news-title .warp li .box h2 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #222;
    height: 60px;
}

.news-title .warp li .ico {
    padding: 0 10%;
    height: 55px;
    border-top: 1px solid #efefef;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}

.news-title .warp li .ico span {
    display: block;
    float: left;
    height: 55px;
    width: 35px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.news-title .warp li .ico span:nth-child(1) {
    background: url(../images/news-ico1.png) left center no-repeat
}

.news-title .warp li .ico span:nth-child(1):hover {
    background: url(../images/news-ico11.png) left center no-repeat
}

.news-title .warp li .ico span:nth-child(2) {
    background: url(../images/news-ico2.png) left center no-repeat
}

.news-title .warp li .ico span:nth-child(2):hover {
    background: url(../images/news-ico22.png) left center no-repeat
}

.news-title .warp li .ico span:nth-child(3) {
    background: url(../images/news-ico3.png) left center no-repeat
}

.news-title .warp li .ico span:nth-child(3):hover {
    background: url(../images/news-ico33.png) left center no-repeat
}

.news-title .warp li .ico span:nth-child(4) {
    background: url(../images/news-ico4.png) left center no-repeat
}

.news-title .warp li .ico span:nth-child(4):hover {
    background: url(../images/news-ico44.png) left center no-repeat
}

.news-title .warp li:nth-child(3),
.news-title .warp li:nth-child(6),
.news-title .warp li:nth-child(9),
.news-title .warp li:nth-child(12) {
    margin-right: 0;
}

.news-title .warp li:hover {
    top: -8px;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.3);
}

.news-title .warp .noimg {
    position: relative;
    min-height: 430px;
}

.news-title .warp .noimg .box {
    padding: 10% 10% 0%;
}

.news-title .warp .noimg .box h2 {
    margin-bottom: 12%
}

.news-title .warp .noimg .box .details {
    font-size: 16px;
    line-height: 22px;
    color: #666666;
    min-height: 80px;
}

.news-title .warp .noimg .ico {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}




/*书架*/
.bookcase {
    text-align: center;
    width: 1200px;
    margin: 0 auto;
}

.bookcase .list {
    width: 100%;
    height: auto;
    text-align: left;
    margin-bottom: 50px;
}

.bookcase .list li {
    width: 100%;
    background-color: #fff;
    padding: 65px 0 75px;
    box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.bookcase .list li a {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.bookcase .list li .pic {
    width: 24%;
    float: left;
    padding: 1%;
    border: 1px solid #edc9af;
    margin-left: 5%;
}

.bookcase .list li .pic img {
    display: block;
    width: 100%;
}

.bookcase .list li .box {
    width: 55%;
    float: right;
    margin-right: 5%
}

.bookcase .list li .box h2 {
    display: block;
    font-size: 36px;
    color: #222;
    line-height: 40px;
    padding: 15px 0 35px;
    position: relative;
    margin-bottom: 40px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.bookcase .list li .box h2:before {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #222;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.bookcase .list li .box .details,
.bookcase .list li .box .details p {
    font-size: 16px;
    line-height: 30px;
    color: #333;
}

.bookcase .list li .box .details {
    padding-bottom: 65px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 60px;
}

.bookcase .list li .box .btns {
    display: block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #e0e0e0;
    padding-left: 25px;
    text-align: center;
    font-size: 14px;
    color: #333;
    background: url(../images/book-btnico.png) 22% center no-repeat;
    position: relative;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    top: 0
}

.bookcase .list li:hover .box .btns {
    top: -10px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid #f3f3f3;
}

.bookcase .list li:hover .box h2 {
    color: #004a82
}

.bookcase .list li:hover .box h2:before {
    background-color: #004a82
}

.bookcase .list li .box .btns:hover {
    color: #004a82
}


.cul .staff-title {
    margin-bottom: 0
}

.cul1,
.cul3,
.cul4,
.cul5,
.cul7 {
    position: relative;
    width: 100%;
    height: auto;
}

.cul1 .pic,
.cul3 .pic,
.cul4 .pic,
.cul5 .pic,
.cul7 .pic {
    width: 100%;
    height: auto;
}

.cul1 .pic img,
.cul3 .pic img,
.cul4 .pic img,
.cul5 .pic img,
.cul7 .pic img {
    display: block;
    width: 100%;
}

.cul1 .box {
    width: 630px;
    padding: 120px 570px 325px 0;
    margin: 0 auto;
}

.cul1 .box h2,
.cul2 .box h2,
.cul3 .box h2,
.cul4 .box h2,
.cul5 .box h2,
.cul6 .warp .box h2,
.cul7 .box h2,
.speech-lead .title h2,
.pro-heder .warp .box h2,
.ab1 .warp .pic h2,
.ab2 .warp1 .warp .box h2 {
    font-size: 48px;
    line-height: 55px;
    color: #005ba0;
    font-family: 'Century Gothic';
    text-transform: Uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.cul1 .box h2 span,
.cul2 .box h2 span,
.cul3 .box h2 span,
.cul4 .box h2 span,
.cul5 .box h2 span,
.cul6 .warp .box h2 span,
.cul7 .box h2 span,
.speech-lead .title h2 span,
.pro-heder .warp .box h2 span,
.ab1 .warp .pic h2 span,
.ab2 .warp1 .warp .box h2 span {
    color: #248e3e
}

.cul1 .box h3,
.cul2 .box h3,
.cul3 .box h3,
.cul4 .box h3,
.cul5 .box h3,
.cul6 .warp .box h3,
.cul7 .box h3,
.speech-lead .title h3,
.pro-heder .warp .box h3,
.ab1 .warp .pic h3,
.ab2 .warp1 .warp .box h3 {
    display: block;
    color: #005ba0;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 40px;
}

.cul1 .box .details,
.cul1 .box .details p,
.cul3 .box .details,
.cul3 .box .details p,
.cul4 .box .details,
.cul4 .box .details p,
.cul5 .box .details,
.cul5 .box .details p,
.cul6 .box .details,
.cul6 .box .details p,
.cul7 .box .details,
.cul7 .box .details p {
    font-size: 16px;
    line-height: 32px;
    color: #005ba0
}

.cul2 {
    width: 1200px;
    margin: 0 auto;
    padding: 170px 0;
}

.cul2 .pic {
    width: 32%;
    float: left;
}

.cul2 .pic img {
    display: block;
    width: 100%;
}

.cul2 .box {
    width: 55%;
    float: right;
}

.cul2 .box h2 {
    padding-top: 0;
}

.cul2 .box .details,
.cul2 .box .details p {
    font-size: 16px;
    line-height: 32px;
    color: #333;
}

.cul3 .box {
    width: 610px;
    padding: 180px 590px 360px 0;
    margin: 0 auto;
}

.cul3 .box h2,
.cul3 .box h2 span,
.cul3 .box h3 {
    color: #fff;
}

.cul3 .box .details,
.cul3 .box .details p {
    color: #fff;
}

.cul4 .box {
    width: 740px;
    height: auto;
    padding: 110px 300px 120px 160px;
    margin: 0 auto;
}

.cul4 .box .details p {
    color: #333;
}

.cul4 .box .details {
    margin-bottom: 90px;
}

.cul4 .box .img {
    display: block;
    width: 691px;
    height: 241px;
}

.cul4 .box .img img {
    display: block;
    width: 100%;
    height: 100%
}

.cul5 .box {
    width: 570px;
    margin: 0 auto;
    padding: 270px 630px 350px 0
}

.cul5 .box .details,
.cul5 .box .details p {
    color: #fff;
}

.cul5 .box h2,
.cul5 .box h3,
.cul5 .box h2 span {
    color: #fff;
}

.cul6 {
    width: 100%;
    height: auto;
    padding: 110px 0 120px;
}

.cul6 .warp {
    width: 1010px;
    margin: 0 auto;
    padding: 0 100px 0 90px;
}

.cul6 .warp .box {
    width: 32%;
    float: left;
}

.cul6 .box .details,
.cul6 .box .details p {
    color: #333;
}

.cul6 .warp .pic {
    width: 55%;
    float: right;
    padding-top: 75px;
}

.cul6 .warp .pic .top {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 38px;
}

.cul6 .warp .pic .top a,
.cul6 .warp .pic .bot .list a {
    display: block;
    width: 100%;
    height: auto;
}

.cul6 .warp .pic .top img {
    display: block;
    width: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.cul6 .warp .pic .top:hover img {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
}

.cul6 .warp .pic .top .title,
.cul6 .warp .pic .bot .list .title {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: 15px;
    line-height: 18px;
    padding: 10px 0
}

.cul6 .warp .pic .bot {
    width: 100%;
    height: auto;
}

.cul6 .warp .pic .bot .list {
    width: 46%;
    height: auto;
    position: relative;
    margin-right: 8%;
    float: left;
    overflow: hidden;
}

.cul6 .warp .pic .bot .list:nth-child(2) {
    margin-right: 0
}

.cul6 .warp .pic .bot .list img {
    display: block;
    width: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.cul6 .warp .pic .bot .list:hover img {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
}

.cul7 .box {
    width: 870px;
    padding: 85px 240px 100px 90px;
    margin: 0 auto;
}

.cul7 .box .details,
.cul7 .box .details p {
    color: #333;
}

.cul7 .box .details {
    margin-bottom: 60px;
}

.cul7 .box .img {
    width: 100%;
    height: auto;
}

.cul7 .box .img img {
    display: block;
    ,
    max-width: 100%;
}


/*honor*/
.honor-title {
    margin-bottom: 10px;
}

.honor-title,
.honor-title .pic,
.honor-warp .warp .mian {
    width: 100%;
    height: auto;
}

.honor-title .pic img {
    display: block;
    width: 100%;
}

.honor-title .box {
    width: 1200px;
    margin: -150px auto 0;
    height: auto;
    position: relative;
    z-index: 5
}

.honor-title .box ul li {
    float: right;
    border: 1px solid #fff;
    width: 132px;
    margin-left: 15px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.honor-title .box ul li a {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.honor-title .box ul li img {
    display: block;
    width: 100%;
}

.honor-title .box ul li p {
    text-align: center;
    background-color: #0057a1;
    font-size: 16px;
    color: #fff;
}

.honor-title .box ul li:hover {
    border: 1px solid #dd9a43;
}

.honor-warp {
    width: 1200px;
    margin: 0 auto;
}

.honor-warp .warp {
    width: 100%;
    margin-bottom: 80px;
}

.honor-warp .warp h2 {
    display: block;
    line-height: 40px;
    font-size: 30px;
    color: #333;
    font-weight: bold;
    font-family: 'Century Gothic';
    margin-bottom: 25px;
}

.honor-warp .warp .mian li {
    margin-bottom: 2px;
    background: #006bb6 url(../images/honor-ioc1.png) 98% center no-repeat;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.honor-warp .warp .mian li a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    ;
    display: block;
    line-height: 30px;
    font-size: 22px;
    color: #fff;
    padding: 40px 17% 40px 3%;
    width: 80%;
}

.honor-warp .warp .mian li:hover {
    background-color: #0057a1
}

.honorif {
    width: 1200px;
    margin: 0 auto 80px;
}

.honorif .math {
    width: 100%;
    height: auto;
    height: 125px;
    margin-bottom: 60px;
}

.honorif .math h2 {
    font-size: 155px;
    color: #006bb6;
    font-weight: bold;
    font-family: 'Century Gothic';
    line-height: 120px;
    width: auto;
    display: block;
    float: left;
}

.honorif .math p {
    float: left;
    width: auto;
    position: relative;
    padding-top: 75px;
    line-height: 60px;
    font-size: 26px;
    color: #333;
    height: 50px;
}

.honorif .math p:before {
    display: block;
    width: 10px;
    height: 2px;
    background-color: #006bb6;
    content: '';
    top: 45px;
    left: 0
}

.honorif .mian {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.honorif .mian table {
    text-align: center;
}

.honorif .mian table tr th {
    padding: 25px 0;
    border-top: 1px solid #006bb6;
    position: relative;
    font-size: 30px;
    width: 25%
}

.honorif .mian table tr th i {
    display: block;
    width: 1px;
    height: 20px;
    background-color: #98c3e1;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}

.honorif .mian table tr th:nth-child(1):before {
    display: block;
    width: 1px;
    background-color: #006bb6;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 2;
    height: 100%;
    content: ''
}

.honorif .mian table tr th:nth-child(4):before {
    display: block;
    width: 1px;
    background-color: #006bb6;
    right: 0;
    top: 0;
    position: absolute;
    z-index: 2;
    height: 100%;
    content: ''
}

.honorif .mian table tr td {
    padding: 40px 0;
    font-size: 22px;
    line-height: 28px;
    background-color: #006bb6;
    color: #fff;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    border-bottom: 2px solid #fff;
}

.honorif .mian table tr td i {
    font-style: normal;
    background-color: #fff;
    color: #006bb6;
    border-radius: 100%;
    font-family: 'Century Gothic';
    font-weight: bold;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.honorif .mian table tr td:nth-child(2) {
    font-family: 'Century Gothic';
}

/*领导致辞*/
.speech-whiet {
    height: 310px;
}

.speech {
    width: 100%;
    background-color: #f3f3f3;
}

.speech .warp {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    top: -200px;
}

.speech .warp .pic {
    width: 43%;
    float: left;
}

.speech .warp .pic img {
    display: block;
    width: 100%;
}

.speech .warp .box {
    width: 50%;
    float: right;
}

.speech .warp .box .mian .cont {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
}

.speech .mian .cont span {
    display: inline-block;
    float: left;
}

.speech .mian .cont .name {
    font-size: 40px;
    line-height: 45px;
    letter-spacing: 10px;
    max-width: 35%;
}

.speech .mian .cont .mintit {
    font-size: 22px;
    padding: 15px 0 0 10px;
    max-width: 63%;
    line-height: 30px;
}

.speech .mian .cent {
    font-size: 14px;
    line-height: 30px;
    color: #333;
    margin-bottom: 100px;
}

.speech .title {
    width: 100%;
    height: 45px;
    margin-bottom: 40px;
}

.speech .title span {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    cursor: pointer;
    display: block;
    float: left;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background-color: #999;
    border-radius: 3px;
    padding: 0 30px;
    margin-right: 40px;
}

.speech .title span:last-child {
    margin-right: 0;
}

.speech .title span.on,
.speech .title span:hover {
    background-color: #005ba0;
}

.speech .details,
.speech .details p {
    font-size: 16px;
    color: #333;
    line-height: 32px;
}

.speech-lead {
    width: 1200px;
    margin: 0 auto 60px;
}

.speech-lead .title {
    padding-top: 110px;
}

.speech-lead .title h3 {
    margin-bottom: 60px;
}

.speech-lead .warp {
    width: 100%;
}

.speech-lead .warp li {
    float: left;
    width: 30%;
    margin-right: 4.5%;
}

.speech-lead .warp li:last-child {
    margin-right: 0;
}

.speech-lead .warp li a {
    display: block;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.speech-lead .warp li a .pic {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.speech-lead .warp li a .pic i {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3) url(../images/speech-ico1.png) 91% 8% no-repeat;
}

.speech-lead .warp .pic img {
    display: block;
    width: 100%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.speech-lead .warp li:hover .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.speech-lead .warp .box {
    width: 100%;
}

.speech-lead .warp .box h2 {
    display: block;
    font-size: 18px;
    color: #222;
    line-height: 26px;
}

.speech-lead .warp .box .details {
    font-size: 15px;
    color: #444;
}

/*产品详情*/
.pro-heder {
    width: 100%;
    height: 264px;
    margin-bottom: 60px;
}

.pro-heder .warp {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.pro-heder .warp .box {
    width: 70%;
    float: left;
}

.pro-heder .warp .box h2,
.pro-heder .warp .box h3 {
    color: #fff;
}

.pro-heder .warp .box h2 {
    padding-top: 60px;
}

.pro-heder .warp a {
    display: block;
    float: right;
    height: 65px;
    width: 65px;
    border-radius: 100%;
    margin-top: 86px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.pro-heder .warp .rarr {
    background: #fff url(../images/inputinfor-larr.png) center no-repeat;
    margin-left: 30px;
}

.pro-heder .warp .larr {
    background: #fff url(../images/inpurinfor-rarr.png) center no-repeat;
}

.pro-heder .warp a:hover {
    background-color: #d5ecfd
}

.pro-warp {
    width: 1200px;
    margin: 0 auto 50px;
    border-bottom: 1px solid #e5e5e5;
}

.pro-warp .pro-title {
    margin-bottom: 55px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eaeaea;
}

.pro-warp .pro-title .left {
    float: left;
    width: 530px;
    height: auto;
}

.pro-warp .pro-title .title {
    margin-bottom: 35px;
}

.pro-warp .pro-title .title .tit {
    font-size: 48px;
    line-height: 50px;
    color: #222;
}

.pro-warp .pro-title .title .mintit {
    font-size: 30px;
    line-height: 35px;
    color: #222;
    padding-left: 15px;
}

.pro-warp .pro-title .time {
    color: #adadad;
    font-size: 18px;
    height: 30px;
    overflow: hidden;
}

.pro-warp .pro-title .time .te1 {
    height: 30px;
    color: #adadad;
    font-size: 18px;
    line-height: 30px;
    padding-right: 15px;
    border-right: 1px solid #adadad;
    margin-right: 15px;
    display: block;
    width: auto;
    float: left;
}

.pro-warp .pro-title .time .te2 {
    font-size: 12px;
    line-height: 15px;
    width: 350px;
    display: block;
    float: left;
}

.pro-warp .pro-title .right {
    float: right;
    width: 435px;
}

.pro-warp .pro-title .right a {
    background-color: #999999;
    color: #fff;
    border-radius: 3px;
    font-size: 18px;
    margin-left: 5px;
    display: inline-block;
    width: 136px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    margin-bottom: 15px;
}

.pro-warp .pro-title .right a.on,
.pro-warp .pro-title .right a:hover {
    background-color: #005ba0
}

.fc .fy {
    padding-top: 60px;

}

.pro-warp .main .icon {
    width: 72px;
    background-color: #f5f5f5;
    padding: 20px 0;
    float: left;
}

.pro-warp .main .icon a {
    width: 32px;
    height: 32px;
    margin: 0 auto 40px;
    cursor: pointer;
    display: block;
}

.pro-warp .main .icon a:last-child {
    margin-bottom: 0;
}

.pro-warp .main .icon a img {
    display: block;
    width: 100%;
    height: 100%;
}

.pro-warp .main .warp {
    width: 887px;
    float: right;
    margin-right: 5%;
    padding-bottom: 30px;
}

.pro-warp .main .warp p,
.pro-warp .cont p {
    font-size: 18px;
    line-height: 30px;
    color: #333;
}

.pro-warp .main .warp img,
.pro-warp .cont img {
    max-width: 100%
}

.pro-warp .main .icon a {
    float: none;
    padding-left: 0
}

.pro-warp .news-title {
    margin-bottom: 50px;
    padding: 50px 0;
    border-bottom: 1px solid #eaeaea;
}

.pro-warp .news-title h2 {
    font-size: 30px;
    line-height: 50px;
    color: #222;
    margin-bottom: 20px;
}

.pro-warp .news-title .mintit {
    font-size: 16;
    line-height: 20px;
    color: #666;
}

/*.pro-warp .cont{width: 94%;margin: 0 auto;}*/



.fc .reture {
    display: none;
}

.sports {
    width: 1200px;
    margin: 0 auto 150px;
}

.sports li {
    width: 48%;
    margin: 0 4% 25px 0;
    box-sizing: border-box;
    padding: 22px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    float: left;
}

.sports li:hover {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.sports li:nth-child(even) {
    margin-right: 0
}

.sports li a {
    display: block;
    width: 100%;
    padding-top: 30px;
    border-top: 2px solid #eaeaea;
    position: relative;
}

.sports li a i {
    display: block;
    height: 4px;
    width: 0;
    position: absolute;
    left: 0;
    top: -2px;
    background-color: #248e3e;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.sports li:hover a i {
    width: 100%;
}

.sports li a .title {
    margin-bottom: 35px;
}

.sports li a .title .tit {
    font-size: 20px;
    line-height: 30px;
    color: #282828;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    float: left;
}

.sports li a .title .time {
    font-size: 14px;
    line-height: 32px;
    color: #282828;
    display: block;
    max-width: 20%;
    float: right;
}

.sports li a .details {
    font-size: 14px;
    line-height: 24px;
    color: #888888;
    margin-bottom: 20px;
}

.sports li a em {
    display: block;
    width: 100%;
    background: url(../images/welfare-arr.png) left center no-repeat;
    height: 21px;
}

.sports p {
    font-size: 18px;
    line-height: 30px;
    color: #333;
}

.sports img {
    max-width: 100%;
}

/*关于我们*/
.ab-title {
    background-color: #fff;
    width: 100%;
    height: 75px;
    position: relative;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.1);
}

.ab-title i {
    display: block;
    position: absolute;
    height: 4px;
    width: 60%;
    background-color: #005ba0
}

.ab-title .swiper-container {
    width: 910px;
    height: 75px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

.ab-title .swiper-slide {
    height: 100%;
}

.ab-title .swiper-slide .title {
    font-size: 16px;
    line-height: 75px;
    color: #666666;
    width: 130px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    display: block;
    cursor: pointer;
}

.ab-title .swiper-slide.on .title,
.ab-title .swiper-slide:hover .title {
    color: #005ba0
}

.ab1 {
    width: 100%;
    height: auto;
    padding: 100px 0 80px 0;
    background: url(../images/ab-bg11.png) top right no-repeat
}

.ab1 .warp {
    width: 1200px;
    margin: 0 auto;
}

.ab1 .warp .pic {
    width: 37%;
    float: left;
}

.ab1 .warp .pic .details .mintit {
    font-size: 24px;
    line-height: 30px;
    color: #444;
    background: url(../images/ab-icon1.png) 28% center no-repeat;
    margin-bottom: 25px;
    display: block;
}

.ab1 .warp .pic .details img {
    display: block;
    width: 100%;
    margin-bottom: 45px;
}

.ab1 .warp .box {
    width: 60%;
    float: right;
}

.ab1 .warp .box h2 {
    display: block;
    font-size: 32px;
    line-height: 35px;
    color: #3a9649;
    margin-bottom: 30px;
}

.ab1 .warp .box .details,
.ab1 .warp .box .details p {
    font-size: 14px;
    line-height: 28px;
    color: #333333;
}

.ab1 .warp .box .details {
    margin-bottom: 50px;
}

.ab1 .warp .box .box-img {
    display: block;
    width: 100%;
    margin-bottom: 60px;
}

.ab1 .warp .box .bot {
    height: auto;
}

.ab1 .warp .box .bot li {
    float: left;
    width: 25%;
    text-align: center;
}

.ab1 .warp .box .bot li:last-child {
    margin-right: 0
}

.ab1 .warp .box .bot li .math {
    font-size: 64px;
    color: #1d2830;
    text-align: center;
    line-height: 70px;
    font-family: 'BEBAS';
    margin-bottom: 5px;
}

.ab1 .warp .box .bot li .tit {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.ab2 {
    width: 100%;
    position: relative;
    top: 0px;
    opacity: 1;
}

.ab2.on {
    top: 0;
    opacity: 1
}

.ab2 .warp1 {
    padding: 190px 0 100px;
}

.ab2 .warp1 .warp {
    width: 1200px;
    margin: 0 auto;
}

.ab2 .warp1 .warp .box {
    width: 44%;
    float: left;
}

.ab2 .warp1 .warp .box h2,
.ab2 .warp1 .warp .box h3 {
    color: #fff;
}

.ab2 .warp1 .warp .box h2 {
    font-family: 'BEBAS'
}

.ab2 .warp1 .warp .box .details,
.ab2 .warp1 .warp .box .details p {
    font-size: 14px;
    color: #fff;
    line-height: 28px;
}

.ab2 .warp1 .warp .box .details {
    margin-bottom: 55px;
    height: 196px;
    position: relative;
    overflow: hidden;
}

.ab2 .warp1 .warp .box .details .cent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.ab2 .warp1 .warp .box .name {
    height: 47px;
    width: 100%;
}

.ab2 .warp1 .warp .box .name img {
    display: block;
    height: 100%;
    float: right;
}

.ab2 .warp1 .warp .pic {
    width: 43%;
    float: right;
}

.ab2 .warp1 .warp .pic img {
    display: block;
    width: 100%;
}

.ab2 .warp1 .warp .box .btns {
    width: 100%;
    height: 40px;
}

.ab2 .warp1 .warp .box .btns span {
    display: block;
    float: left;
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.ab2 .warp1 .warp .box .btns .left {
    background: url(../images/top-arr.png) center no-repeat;
}

.ab2 .warp1 .warp .box .btns .right {
    background: url(../images/bottom-arr.png) center no-repeat;
}

.ab2 .warp1 .warp .box .btns span:hover {
    background-color: #005ba0;
    border: 1px solid #005ba0;
}

#ab3 {
    padding: 80px 0 120px;
    margin: 0 auto 0
}

#ab3 .warp li a .box {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 25px;
}

.abb4 {
    display: none;
}

.ab4 {
    width: 100%;
    padding: 110px 0 95px;
    background-color: #fafafa;
    /*background: url(../img/ab4-bg.jpg) center/cover no-repeat*/
}

.ab4 .ab-warp {
    width: 1200px;
    margin: 0 auto;
}

.ab4 .box {
    width: 325px;
    float: left;
}

.ab4 .box .title {
    margin-bottom: 40px;
}

.ab4 .box .title h2 {
    font-size: 48px;
    line-height: 50px;
    color: #00487e;
    font-family: 'BEBAS';
    margin-bottom: 15px;
}

.ab4 .box .title h3 {
    color: #00487e;
    display: block;
    font-size: 42px;
    line-height: 45px;
    margin-bottom: 40px;
    padding-bottom: 35px;
    position: relative;
}

.ab4 .box .title h3:before {
    content: '';
    display: block;
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #00487e
}

.ab4 .box .year {
    margin-bottom: 55px;
}

.ab4 .box .year h2 {
    font-size: 40px;
    font-family: 'BEBAS';
    color: #00487e;
    line-height: 40px;
    margin-bottom: 20px;
}

.ab4 .box .year .cent,
.ab4 .box .year .cent p {
    font-size: 16px;
    color: #666;
    line-height: 26px;
}

.ab4 .box .year .cent {
    min-height: 270px;
}

.ab4 .box .math .details {
    font-size: 35px;
    color: #3a9649;
    line-height: 45px;
    font-family: 'BEBAS';
    margin-bottom: 10px;
}

.ab4 .box .math .tit {
    font-size: 18px;
    line-height: 26px;
    color: #999999
}

.ab4 .pic {
    width: 820px;
    float: right;
    height: 650px;
}

.ab4 .pic .top-img {
    width: 100%;
    max-height: 512px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.ab4 .pic .top-img img {
    display: block;
    width: 100%;
}

.ab4 .pic .warp {
    height: 100%;
    width: 100%;
    position: relative;
}

.ab4 .pic .warp .mian {
    height: 140px;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.ab4 .pic .warp ul {
    width: 100%;
    height: 100%;
}

.ab4 .pic .warp ul li {
    height: 100%;
    width: 166px;
    float: left;
    position: relative;
    font-size: 22px;
    font-family: 'BEBAS';
    color: #999;
    box-sizing: border-box;
    border-left: 1px solid rgba(155, 155, 155, 0.1);
}

.ab4 .pic .warp ul li span {
    display: block;
    width: 100%;
    height: 135px;
    line-height: 215px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    box-sizing: border-box;
    padding-left: 15px;
}

.ab4 .pic .warp ul li i {
    display: block;
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    left: 0;
    top: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.ab4 .pic .warp ul li:hover i {
    width: 100%;
}

.ab4 .pic .warp ul li:hover span {
    color: #00487e;
    padding-left: 25px;
}

.ab4ban .device {
    width: 100%;
    height: 512px;
    overflow: hidden;
}

.ab4ban .device .arrow-left {
    background: url(../images/ab4-icon1.png) no-repeat left top;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
}

.ab4ban .device .arrow-right {
    background: url(../images/ab4-icon2.png) no-repeat left bottom;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
}

.ab4ban .swiper-container {
    height: 512px;
    width: 100%;
}

.ab4ban .swiper-container .swiper-slide,
.ab4ban .swiper-container .swiper-wrapper,
.ab4ban {
    width: 100%;
    height: 512px;
}

.ab4ban .swiper-container .swiper-slide img {
    display: block;
    width: 100%;
}

.pagination {
    display: block;
}


.ab5 {
    width: 1200px;
    margin: 0 auto;
    padding: 150px 0 140px;
    position: relative;
}

.ab5 .pic {
    width: 50%;
    position: absolute;
    left: 0;
    bottom: 140px;
}

.ab5 .pic img {
    display: block;
    width: 100%;
}

.ab5 .box {
    width: 40%;
    float: right;
    background-color: #005ba0;
    padding: 95px 5% 90px;
}

.ab5 .box h2,
.ab6 .warp .title h2,
.ab7 .warp h2 {
    font-size: 48px;
    line-height: 50px;
    color: #fff;
    font-family: 'BEBAS';
    margin-bottom: 15px;
}

.ab5 .box h3,
.ab6 .warp .title h3 {
    display: block;
    font-size: 42px;
    line-height: 45px;
    color: #fff;
    margin-bottom: 40px;
}

.ab5 .box .cent,
.ab5 .box .cent p {
    font-size: 14px;
    line-height: 28px;
    color: #fff;
}

.ab5 .box .cent {
    margin-bottom: 60px;
}

.ab5 .box .btns {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    display: inline-block;
    width: auto;
    height: 48px;
    line-height: 48px;
    background-color: #fff;
    border-radius: 3px;
    text-align: center;
    font-size: 18px;
    font-family: 'BEBAS';
    padding: 0 70px 0 30px;
    background: #fff url(../images/maxnews-icon.png) 83% center no-repeat;
    color: #00487e;
}

.ab5 .box .btns:hover {
    background: #fff url(../images/maxnews-icon.png) 88% center no-repeat;
    opacity: 0.8
}

.ab6 .warp {
    width: 1200px;
    margin: 0 auto;
    padding: 100px 0 200px;
}

.ab6 .warp .mian {
    width: 100%;
    height: 443px;
    position: relative;
}

.ab6 .warp .mian #srcllo {
    position: absolute;
    bottom: 0;
    height: 5px;
    background-color: #fff;
    width: 100px;
    left: 0
}

.ab6 .warp .mian li {
    float: left;
    width: 397px;
    margin-right: 4px;
}

.ab6 .warp .mian li .top {
    width: 100%;
    height: 267px;
    margin-bottom: 4px;
}

.ab6 .warp .mian li .bot {
    width: 100%;
    height: 132px;
}

.ab6 .warp .mian li .bot p {
    width: 197px;
    height: 132px;
    margin-right: 3px;
    float: left;
}

.ab6 .warp .mian li .bot p:nth-child(2) {
    margin-right: 0
}

.ab6 .warp .mian li a,
.ab6 .warp .mian li img {
    display: block;
    height: 100%;
    width: 100%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.ab6 .warp .mian li a {
    position: relative;
    overflow: hidden;
}

.ab6 .warp .mian li span {
    display: block;
    position: absolute;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 8;
    left: 0;
    bottom: -20px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.ab6 .warp .mian li .top:hover img,
.ab6 .warp .mian li .bot p:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.ab6 .warp .mian li .top:hover span,
.ab6 .warp .mian li .bot p:hover span {
    opacity: 1;
    bottom: 0px
}

.ab6 .warp .mian li:nth-child(even) .top {
    margin-bottom: 0
}

.ab6 .warp .mian li:nth-child(even) .bot {
    margin-bottom: 3px
}

.video-phone {
    display: none;
}

.ab7 .warp {
    padding: 300px 0 290px;
}

.ab7 .warp .icon {
    width: 117px;
    height: 117px;
    margin: 0 auto 25px;
    position: relative;
    cursor: pointer;
}

.ab7 .warp .icon:before {
    display: block;
    width: 105px;
    height: 4px;
    background-color: #fff;
    left: -85px;
    top: 48%;
    position: absolute;
    z-index: 2;
    content: '';
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.ab7 .warp .icon:hover:before {
    width: 130px;
    left: -6px
}

.ab7 .warp h2 {
    text-align: center;
}

.prot-bg {
    width: 100%;
    position: absolute;
    height: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
    z-index: -1;
}

.prot-bg img {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1920px;
    margin-left: -960px;
}

.iani {
    animation: ibg 2s ease;
    -webkit-animation: ibg 2s ease;
}

@keyframes ibg {
    0% {
        filter: alpha(opacity=50);
        -moz-opacity: 0.5;
        -khtml-opacity: 0.5;
        opacity: 0.5;
        transform: scale(1.1)
    }

    100% {
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        transform: scale(1)
    }
}

@-webkit-keyframes ibg {
    0% {
        filter: alpha(opacity=50);
        -moz-opacity: 0.5;
        -khtml-opacity: 0.5;
        opacity: 0.5;
        transform: scale(1.1)
    }

    100% {
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        transform: scale(1)
    }
}

.prot,
.prot .warp1 ul,
.prot .warp2 ul {
    width: 100%;
    height: 100%;
}

.prot .warp1,
.prot .warp2 {
    width: 33.33%;
    height: 100%;
    float: left;
}

.prot div li {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.prot .warp1 li {
    width: 100%;
    height: 33%;
    cursor: pointer;
    background: url(../images/product-bgt.png) center repeat;
    text-align: right;
}

.prot .warp1 li:last-child {
    height: 34%
}

.prot .warp1 li a,
.prot .warp2 li a {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 6% 8%;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.prot .warp1 li:nth-child(3) a {
    border-bottom: 0;
}

.prot .warp2 li:nth-child(4) a {
    border-bottom: 0;
}

.prot .warp1 li h2,
.prot .warp1 li h3,
.prot .warp2 li h2,
.prot .warp2 li h3 {
    font-size: 32px;
    line-height: 40px;
    color: #fff;
}

.prot .warp2 li {
    width: 100%;
    height: 25%;
    background: url(../images/product-bgt.png) center repeat
}

.prot div li h2 {
    text-transform: capitalize;
    margin-bottom: 5px;
    text-align: right;
}

.prot .warp1 li h3,
.prot .warp2 li h3 {
    opacity: 0;
    position: relative;
    top: 20px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    text-align: right;
}

.prot .warp1 li:hover h3,
.prot .warp2 li:hover h3 {
    opacity: 1;
    top: 0;
}

.prot .warp2 li a {
    padding: 5% 7%;
}

.prot .warp2 li h2 {
    line-height: 40px;
}

.prot .warp2 li h3,
.prot .warp1 li h3 {
    font-size: 26px;
}

.prot div li a img {
    display: block;
    position: absolute;
    bottom: 6%;
    left: 5%;
    opacity: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.prot .warp2 li:hover img,
.prot .warp1 li:hover img {
    left: 8%;
    opacity: 1
}

.dpbd {
    display: none;
}

.prot .warp1 li:hover,
.prot .warp2 li:hover {
    background: #238e3c url(../images/product-bgt.png) center repeat
}

/*新闻详情*/

.newsinfor {
    width: 1200px;
    margin: 0 auto 60px;
    height: auto;
    padding: 0 0px 70px;
}

.bbg {
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1)
}

.newsinfor .title {
    padding: 100px 0 50px;
}

.newsinfor .title h2 {
    display: block;
    font-size: 40px;
    color: #333;
    line-height: 50px;
    margin-bottom: 15px;
}

.newsinfor .title .mintit {
    font-size: 16px;
    text-align: center;
    color: #888;
    line-height: 30px;
}

.newsinfor .warp,
.newsinfor .warp p {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.newsinfor .warp {
    border-bottom: 1px solid #ccc;
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.newsinfor .warp img {
    max-width: 100%;
}

.newsinfor .bott {
    width: 100%;
    margin-bottom: 60px;
}

.newsinfor .bott .left {
    width: 75%;
    height: auto;
    float: left;
}

.newsinfor .bott .left p {
    font-size: 16px;
    line-height: 26px;
    color: #333;
}

.newsinfor .bott .left p a {
    color: #333;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.newsinfor .bott .left p a:hover {
    color: #004a82
}

.newsinfor .bott .btns {
    display: block;
    width: 120px;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    background-color: #004a82;
    font-size: 16px;
    color: #fff;
    text-align: center;
    float: right;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    border: 1px solid #004a82;
}

.newsinfor .bott .btns:hover {
    background-color: transparent;
    color: #004a82
}

.forie {
    width: 100%;
    height: 100%;
    background: url(../images/tishi.png) center no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
}


.stinfor {
    width: 1200px;
    margin: 100px auto 100px;
}

.stinfor .pic {
    float: left;
    margin-right: 4%
}

.stinfor .left {
    width: 733px;
    height: auto;
}

.stinfor .left .topimg {
    width: 733px;
    height: 501px;
    overflow: hidden;
    margin-bottom: 18px;
}

.stinfor .left .topimg img {
    display: block;
    width: 100%;
}

.stinfor .left .botimg {
    height: 79px;
    width: 100%;
    position: relative;
}

.stinfor .left .botimg .mian {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.stinfor .left .botimg .left {
    width: 11px;
    height: 22px;
    cursor: pointer;
    position: absolute;
    left: 2%;
    z-index: 6;
    top: 50%;
    margin-top: -11px;
    background: url(../images/stinfor-larr.png) center no-repeat;
}

.stinfor .left .botimg .right {
    height: 79px;
    cursor: pointer;
    width: 11px;
    height: 22px;
    position: absolute;
    right: 2%;
    z-index: 6;
    top: 50%;

    margin-top: -11px;
    background: url(../images/stinfor-rarr.png) center no-repeat;
}

.stinfor .left .botimg ul {
    display: block;
    width: 100%;
    height: 100%;
}

.stinfor .left .botimg ul li {
    display: block;
    height: 79px;
    width: 115px;
    float: left;
    margin-right: 9px;
    position: relative;
}

.stinfor .left .botimg ul li img {
    display: block;
    width: 100%;
}

.stinfor .left .botimg ul li i {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 79px;
    width: 115px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.stinfor .left .botimg ul li.cur i {
    background-color: rgba(0, 0, 0, 0);
}

.stinfor .box {
    /*width: 420px;*/
    /*float: right;*/
}

.stinfor .box h2 {
    display: block;
    font-size: 30px;
    line-height: 36px;
    color: #222;
    margin-bottom: 45px;
}

.stinfor .box .details {
    font-size: 14px;
    line-height: 30px;
    color: #333333
}

.st-phone,
.phone-box {
    display: none;
}

.st-btns {
    display: block;
    width: 120px;
    height: 45px;
    margin: 0 auto 100px;
    line-height: 45px;
    border-radius: 5px;
    background-color: #004a82;
    font-size: 16px;
    color: #fff;
    text-align: center;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    border: 1px solid #004a82;
}

.st-btns:hover {
    background-color: transparent;
}

.led-warp {
    width: 1100px;
    margin: 80px auto;
    padding: 60px 50px 90px;
    background-color: #fff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1)
}

.led-warp .title {
    font-size: 30px;
    line-height: 50px;
    color: #222;
    margin-bottom: 50px;
    text-align: center;
}

.led-warp .warp,
.led-warp .warp p {
    font-size: 16px;
    line-height: 30px;
    color: #666;
}

.led-warp .warp {
    margin-bottom: 50px;
}

.led-warp .warp h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
    color: #555;
}

.led-warp .warp .tet {
    margin-bottom: 20px;
}

.led-warp .warp p span {
    font-weight: bold;
}

.led-warp .bot {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 50px;
}

.led-warp .bot a {
    color: #444;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.led-warp .bot a:hover {
    color: #005ba2;
}

.led-warp .fot {
    width: 100%;
    text-align: right;
}

.led-warp .fot p,
.led-warp .fot {
    font-size: 18px;
    line-height: 30px;
    color: #666;
}

.led-warp .fot p.on {
    padding-right: 42px;
}




@media screen and (min-width:1110px) and (max-width:1200px) {
    .ab4 .box {
        width: 350px;
    }
}

@media screen and (min-width: 970px) and (max-width: 1110px) {
    .pro-warp .pro-title .right {
        width: 325px
    }

    .pro-warp .pro-title .right a {
        margin-left: 4px;
        width: 100px;
    }

    .ab4 .box {
        width: 252px;
    }
}

@media screen and (min-width: 970px) and (max-width: 1250px) {
    .footer .mian {
        width: 94%;
        height: auto;
        padding: 90px 0 50px;
        margin: 0 auto;
    }

    .footer .bot p {
        width: 90%;
    }

    .iab .warp {
        padding: 5% 5% 0% 5%;
        height: auto;
        width: auto;
    }

    .iab .warp .box {
        width: 31%;
        float: left;
        padding-top: 40px;
    }

    .iab .warp .pic {
        width: 60%;
    }

    .iab .box .details {
        width: 100%;
        height: auto;
    }

    .iab .box .details img {
        width: 100%;
    }

    .iab .warp .bot {
        padding-top: 30px;
    }

    .iab .warp .bot ul li {
        width: 50%;
        margin-right: 0;
        text-align: center;
        margin-bottom: 15px;
    }

    .iproduct .warp {
        width: 800px;
        height: 140px;
    }

    .iproduct .swiper-container {
        width: 660px;
        height: 140px;
    }

    .iproduct .pci {
        margin-top: 30px;
    }

    .iproduct .main {
        top: 20%
    }

    .isocial .warp {
        width: 94%;
        margin: 0 auto;
    }

    .isocial .warp .pic {
        width: 50%;
        height: auto
    }

    .isocial .warp .box {
        width: 45%;
        height: auto
    }

    .isocial .warp .box .logo {
        width: 110px;
        height: auto
    }

    .isocial .warp .box h2 {
        padding-top: 35px;
        margin-bottom: 15px;
        line-height: 60px;
        font-size: 55px;
    }

    .isocial .warp .box .mintit {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 15px;
    }

    .isocial .warp .box .cent {
        margin-bottom: 35px;
    }

    .iin {
        max-width: 90%;
        margin: 0 auto;
    }

    .iin .slides a {
        padding-bottom: 40px;
    }

    .footer .mian .left {
        width: 70%
    }

    .footer .mian .right {
        width: 29%;
    }

    .base-ban .warp {
        position: absolute;
        top: 18%;
        left: 13%;
    }

    .base-ban .warp h2 {
        padding-top: 25px;
    }

    .base-ban .warp .cent {
        margin-bottom: 40px;
    }

    .job-warp {
        width: 90%;
    }

    .job-warp .warp .tbl {
        width: 100%;
        padding-right: 0;
    }

    .job-warp .warp .tbl p {
        width: 25%;
    }

    .contact-warp {
        width: 90%;
        margin: 0 auto;
        padding: 110px 0 0;
    }

    .contact-warp .message .mian ul .inp {
        float: left;
        width: 30%;
        height: 200px;
        margin-right: 3%;
    }

    .contact-warp .message .mian ul .text {
        width: 63%
    }

    .contact-warp .message .btns {
        width: 96%;
    }

    .welfare-ban {
        width: 100%;
        margin: 0 auto 95px;
    }

    .welfare-warp {
        width: 90%;
        margin: 0 auto 60px;
    }

    .welfare-warp .warp ul li {
        width: 30%;
        height: auto;
        margin: 0 2% 30px 0;
        padding: 1%;
    }

    .welfare-warp .warp li .pic {
        height: auto;
    }

    .welfare-warp .warp .noimg .box .time {
        margin-bottom: 60px;
    }

    .charity-warp {
        width: 80%;
        padding: 80px 5% 70px;
        margin: -110px auto 70px;
    }

    .charity-atlas {
        width: 90%;
    }

    .charity-atlas ul li {
        float: left;
        width: 23%;
        overflow: hidden;
        margin: 0 2.5% 22px 0;
        max-height: 166px;
        height: auto;
    }

    /*.charity-atlas ul li:nth-child(4),.charity-atlas ul li:nth-child(8){margin-right:2%}*/
    /*.charity-atlas ul li:nth-child(3),.charity-atlas ul li:nth-child(6){margin-right: 0}*/
    .lead-news {
        width: 90%;
    }

    .lead-news {
        width: 90%;
        margin: 0 auto 80px;
    }

    .lead-news .list li {
        width: 31%;
        margin: 0 3.5% 24px 0;
        height: auto;
        padding-bottom: 40px;
    }

    .lead-news .list li a .pic {
        height: auto;
    }

    .paper-news {
        width: 90%;
    }

    .staff-news {
        width: 90%;
    }

    .staff-news .list {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .staff-news .list li {
        float: left;
        width: 24%;
        height: auto;
        position: relative;
        margin: 0 1% 1% 0;
        overflow: hidden;
    }

    .staff-news .list li .details .cent {
        margin-bottom: 0;
        height: 62%;
        line-height: 25px;
    }

    .maxnews {
        width: 100%;
        height: auto;
    }

    .news-title {
        width: 90%;
        margin: 0 auto 60px;
    }

    .maxnews .box h2 {
        padding-top: 200px;
    }

    .bookcase {
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }

    .bookcase .list li .pic {
        width: 27%;
    }

    .cul1 .box {
        width: 70%;
        padding: 120px 25% 325px 5%;
        margin: 0 auto;
    }

    .cul2 {
        width: 90%;
        padding: 150px 0
    }

    .cul2 .pic {
        width: 40%
    }

    .cul3 .box {
        width: 70%;
        padding: 150px 25% 330px 5%
    }

    .cul4 .box {
        width: 70%;
        padding: 110px 20% 120px 10%
    }

    .cul5 .box {
        width: 70%;
        padding: 230px 25% 300px 5%;
    }

    .cul6 .warp {
        width: 90%;
        padding: 0;
    }

    .cul6 .warp .box {
        width: 35%;
    }

    .cul7 .box {
        width: 90%;
        padding: 85px 5% 100px 5%
    }

    .honor-title .box {
        width: 90%;
        margin: -135px auto 0;
        height: auto;
        position: relative;
        z-index: 5
    }

    .honor-title .box ul li {
        float: right;
        border: 1px solid #fff;
        width: 120px;
        margin-left: 15px;
        box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
    }

    .honor-warp {
        width: 90%;
    }

    .honor-warp .warp .mian li a {
        padding: 30px 17% 30px 3%;
    }

    .honorif {
        width: 90%;
    }

    .speech .warp {
        width: 90%;
        margin: 0 auto;
        position: relative;
        top: -200px;
    }

    .speech .title span {
        padding: 0 20px;
    }

    .speech .warp .box .mian .cont {
        margin-bottom: 15px;
    }

    .speech .mian .cent {
        margin-bottom: 15%;
    }

    .speech .title {
        margin-bottom: 30px;
    }

    .speech .warp .box .mian .cont {
        padding-bottom: 15px;
    }

    .speech-lead {
        width: 90%;
        margin: 0 auto 60px;
    }

    .speech .mian .cont .mintit {
        padding: 0 0 0 10px
    }

    .pro-heder .warp {
        width: 90%;
    }

    .pro-warp {
        width: 90%;
    }

    .pro-warp .main .warp {
        width: 80%
    }

    .sports {
        width: 90%;
        margin: 0 auto 150px;
    }


    .header .nav1.on {
        margin: 10% 0 10% 5%;
    }

    .header .nav2 {
        padding-left: 5%;
        margin-bottom: 4%
    }

    .ab1 .warp {
        width: 90%
    }

    .ab1 .warp .pic h2 {
        line-height: 50px;
    }

    .ab1 .warp .box .bot {
        padding-left: 0px;
    }

    .ab1 .warp .box .box-img {
        margin-bottom: 40px;
    }

    .ab2 .warp1 .warp {
        width: 90%;
        margin: 0 auto;
    }

    .ab2 .warp1 .warp .box {
        width: 46%;
    }

    .ab2 .warp1 .warp .pic {
        width: 49%
    }

    .ab5 {
        width: 90%;
        padding: 130px 0 120px;
    }

    .ab5 .pic {
        bottom: 120px;
    }

    .ab5 .box {
        width: 44%;
        padding: 70px 3%
    }

    .ab6 .warp {
        width: 90%;
        margin: 0 auto;
    }

    .ab7 .warp {
        padding: 270px 0 250px;
    }

    .prop-video-box {
        width: 840px;
        margin-left: -440px;
    }

    .prot .warp1 li h2,
    .prot .warp1 li h3,
    .prot .warp2 li h2,
    .prot .warp2 li h3 {
        font-size: 26px;
        line-height: 35px;
        color: #fff;
    }

    .prot .warp2 li h3,
    .prot .warp1 li h3 {
        font-size: 22px;
    }

    .prot .warp1 li a,
    .prot .warp2 li a {
        padding: 5% 7%
    }

    .ab4 .ab-warp {
        width: 90%;
        margin: 0 auto;
    }

    .ab4 .pic {
        width: 550px;
        float: right;
        height: 500px;
    }

    .ab4 .pic .top-img {
        width: 100%;
        max-height: 512px;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1
    }

    .ab4 .pic .top-img img {
        display: block;
        width: 100%;
    }

    .ab4 .pic .warp {
        height: 100%;
        width: 100%;
        position: relative;
    }

    .ab4 .pic .warp .mian {
        height: 140px;
        width: 100%;
        position: relative;
        overflow: hidden;
        z-index: 2;
    }

    .ab4 .pic .warp ul {
        width: 100%;
        height: 100%;
    }

    .ab4 .pic .warp ul li {
        width: 138px;
    }

    .ab4 .box .year {
        margin-bottom: 0
    }

    .newsinfor {
        width: 90%;
        margin: 0 auto 60px;
        height: auto;
        padding: 0 3% 70px;
        background-color: #fff;
        box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1)
    }

    .news-title .warp .noimg .box .details {
        line-height: 24px;
    }

    .stinfor .left {
        width: 488px;
    }

    .stinfor {
        width: 90%;
    }

    .stinfor .left .topimg {
        width: 488px;
        height: 334px;
    }

    .ab4ban .device {
        width: 100%;
        height: 343px;
    }

    .ab4ban .swiper-container .swiper-slide,
    .ab4ban .swiper-container .swiper-wrapper,
    .ab4ban {
        width: 100%;
        height: 343px;
    }

    .ab4ban .swiper-container .swiper-slide img {
        display: block;
        width: 100%;
    }

    .led-warp {
        width: 84%;
        padding: 60px 3% 90px;
    }
}

@media screen and (min-width: 1100px) and (max-width: 1200px) {
    /*.stinfor .box{width:45%;}*/
}

@media screen and (min-width: 970px) and (max-width: 1099px) {
    /*.stinfor .box{width:40%;}*/
}

@media screen and (min-width:1300px) and (max-width: 1390px) {
    .header .nav2 li {
        margin-right: 5%
    }
}

@media screen and (min-width:1100px) and (max-width: 1299px) {
    .header .nav2 li {
        margin-right: 3%
    }

    .header .nav2 li .h2 {
        font-size: 22px;
    }
}

@media screen and (min-width:970px) and (max-width:1099px) {
    .header .nav2 li {
        margin-right: 2%
    }

    .header .nav2 li .h2 {
        font-size: 22px;
    }
}

@media screen and (max-width:970px) {
    .flatwindow .imgg {
        width: 2.5rem;
        bottom: 0rem;
    }
}  

.colors-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.colors-box .title {
  font-weight: bold;
  margin-right: 5px;
}
.colors-box .colors-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.colors-box .colors-list li {
  margin-left: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
}
.colors-box .colors-list li .checkbox-container {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
.colors-box .colors-list li .checkbox-container input[type="checkbox"] {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  position: relative;
  z-index: 3;
}
.colors-box .colors-list li .checkbox-container span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0;
  background-color: #000;
  position: none;
}
.colors-box .colors-list li .checkbox-container input[type="checkbox"]:checked + span {
  opacity: 1;
}
.colors-box .colors-list li label {
  margin-left: 8px;
  display: flex;
  align-items: center;
}
.colors-box .colors-list li label .color-box{
  width: 30px;
  height: 30px;
  border-radius: 6px;
  margin-right: 5px;
  background-color: red;
}


.options-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.options-box .title {
  font-weight: bold;
  margin-right: 5px;
}
.options-box .title a{
  transition: .3s;
}
.options-box2 .title a:hover {
  color: #ef8203;
}
.options-box2 .title a[href="javascript:void(0);"]:hover {
  color: #000;
}
.options-box .options-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.options-box .options-list li {
  margin-left: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
}
.options-box .options-list li .checkbox-container {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
.options-box .options-list li .checkbox-container input[type="checkbox"] {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  position: relative;
  z-index: 3;
}
.options-box .options-list li .checkbox-container span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0;
  background-color: #000;
  position: none;
}
.options-box .options-list li .checkbox-container input[type="checkbox"]:checked + span {
  opacity: 1;
}
.options-box .options-list li label {
  margin-left: 8px;
  display: flex;
  align-items: center;
}

@media screen and (max-width:1000px) {
    #index-body .init-1 .about-box{
        flex-wrap: wrap;
    }
    #index-body .init-1 .about-box .left,
    #index-body .init-1 .about-box .right{
        width: 100%;
    }
    #index-body .init-1 .about-box .left .title h3{
        line-height: 1.5;
    }
    #index-body .init-2 ul{
        flex-wrap: wrap;
    }
    #index-body .init-2 ul li{
        padding: 15px 0;
    }
    .about-page .about-3{
        flex-wrap: wrap;
    }
    .about-page .about-3 .left,
    .about-page .about-3 .right{
        width: 100%;
    }
}
@media screen and (max-width:700px) {
    #index-body .init-1 .about-box{
    margin-top: 10px;
    }
    .about-page .about-3 .right .content ul li{
        width: 50%;
    }
}
