@charset "utf-8";
/* CSS Document */
/*banner */
#banner {
  position: relative;
  background: #fff;
  height: auto;
  overflow: hidden;
  transition: all .35s;
}
#banner .swiper-container {
  width: 100%;
  height: 100%;
}
#banner .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#banner .swiper-slide img {
  max-width: 100%;
}
#banner .swiper-slide .mob {
  display: none;
}
#banner .swiper-slide .mc {
  position: absolute;
  z-index: 98;
  left: 50%;
  top: 32%;
  margin-left: -40%;
  width: 80%;
  text-align: left;
}
#banner .swiper-slide .mc > .tit {
  position: relative;
  padding: 30px 0;
  font-size: 6.5rem;
  color: #fff;
  font-weight: bold;
}
#banner .swiper-slide .mc > .tit:after {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 5px;
  background: #2a99d6;
  content: '';
}
#banner .swiper-slide .mc > .txt {
  padding: 30px 0 10px 0;
  font-size: 2rem;
  line-height: 3rem;
  color: rgba(255, 255, 255, 1);
}
#banner .swiper-slide .mc > .url {
  padding: 0;
}
#banner .swiper-slide .mc > .url > a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 200;
  opacity: .6;
  color: #0480cc;
  padding: 4px 14px;
  border-radius: 3px;
  border: 1px solid#0480cc;
  margin-right: 15px;
  transition: all .35s;
}
#banner .swiper-slide .mc > .url > a:hover {
  background: rgba(146, 191, 46, .8);
  border: 1px solid rgba(146, 191, 46, .8);
  opacity: 1;
  color: rgba(255, 255, 255, 1);
}
#banner .swiper-pagination {
  bottom: 70px;
}
#banner .swiper-pagination-bullet {
  width: 80px;
  height: 2px;
  background: #ddd;
  margin: 0 10px;
  border-radius: 0;
  border: 0;
  opacity: 1;
  transition: all .2s;
}
#banner .swiper-pagination-bullet:hover {
  opacity: .5;
}
#banner .swiper-pagination-bullet-active {
  background: #2c8be3;
  opacity: 1 !important;
}
/* end*/
/*main */
#main {
  margin: 0 auto;
}
#main .wrap {
  width: 86%;
  margin: 0 auto;
}
#main .title {
  text-align: center;
  padding: 30px 0;
}
#main .title > i {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #888;
}
#main .title > h2 {
  color: rgba(31, 87, 161, 1);
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  width: 80%;
  margin: auto;
}
#main .title > p {
  color: rgba(102, 102, 102, 1);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 20px 0;
  width: 80%;
  margin: auto;
}
#main > .product {
  margin: 0 auto;
  padding: 80px 0;
}
#main > .product .container {
  position: relative;
  margin: 0 auto;
}
#main > .product .container .swiper-container {
  width: 80%;
  margin: 0 auto;
}
#main > .product .container .swiper-slide > a {
  display: block;
  zoom: 1;
  transition: all .8s;
}
#main > .product .container .swiper-slide > a:before, #main > .product .container .swiper-slide > a:after {
  content: "";
  display: table;
}
#main > .product .container .swiper-slide > a:after {
  clear: both;
}
#main > .product .container .swiper-slide > a > .img {
  width: 50%;
  text-align: left;
  background: url("/skin/img/main_product_bg.jpg") no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  transition: all .35s;
}
#main > .product .container .swiper-slide > a > .img > img {
  width: 100%;
  height: auto;
}
#main > .product .container .swiper-slide > a > .con {
  width: 50%;
  box-sizing: border-box;
  padding: 80px 40px;
}
#main > .product .container .swiper-slide > a > .con > .tit {
  font-size: 2.4rem;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: all .35s;
}
#main > .product .container .swiper-slide > a > .con > .txt {
  font-size: 1.4rem;
  color: #999;
  line-height: 2.5rem;
  margin: 20px;
  margin-left: 0;
}
#main > .product .container .swiper-slide > a > .con > .view > span {
  display: inline-block;
  color: #0480cc;
  font-size: 1.3rem;
  padding: 4px 0;
  opacity: 0;
  transform: translateX(-10px);
  border-bottom: 1px solid #2a99d6;
  transition: all .35s;
}
#main > .product .container .swiper-slide > a > .con > .view > span .iconfont {
  margin-left: 3px;
  font-size: 1.1rem;
}
#main > .product .container .swiper-container .swiper-pagination {
  position: relative;
  bottom: 0;
}
#main > .product .container .swiper-slide > a:hover .tit {
  color: rgba(31, 87, 161, 1);
}
#main > .product .container .swiper-slide > a:hover .img {
  transform: translateY(-5px);
}
#main > .product .container .swiper-slide > a:hover .view > span {
  transform: translateX(0px);
  opacity: 1;
}
#main > .product > .more {
  text-align: center;
  margin: 0 auto;
  padding-top: 30px;
}
#main > .product > .more > a {
  display: inline-block;
  border: 2px solid #2a99d6;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 1.4rem;
  color: #0480cc;
  background: rgba(255, 255, 255, 1);
  transition: all .35s;
}
#main > .product > .more > a > i {
  display: inline-block;
  color: #2a99d6;
  font-size: 1.6rem;
  font-weight: 100;
}
#main > .product > .more > a:hover {
  background: #0480cc;
  border: 2px solid#0480cc;
  color: #fff;
  transform: translateY(-3px);
}
#main > .product > .more > a:hover i {
  color: #fff;
}
#main > .solution {
  position: relative;
  margin: 0 auto;
}
#main > .solution > .title {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 30px;
  width: 80%;
  margin-left: -40%;
  text-align: center;
}
#main > .solution > .title > h2 {
  color: rgba(255, 255, 255, 1);
}
#main > .solution > .title > p {
  color: rgba(255, 255, 255, 1);
}
#main > .solution .container {
  position: relative;
  margin: 0 auto;
}
#main > .solution .container > .box {
  position: absolute;
  z-index: 9;
  top: 30%;
  left: 50%;
  margin-left: -25%;
  width: 50%;
  text-align: center;
}
#main > .solution .container > .box > .tit {
  font-size: 36px;
  color: rgba(255, 255, 255, 1);
}
#main > .solution .container > .box > .txt {
  padding: 20px 0;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 1);
}
#main > .solution .container > .bg {
  position: relative;
  width: 100%;
  height: 100%;
}
#main > .solution .container > .bg:after {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  content: '';
}
#main > .solution .container > .nav {
  position: absolute;
  z-index: 9;
  bottom: 8%;
  left: 50%;
  margin-left: -45%;
  width: 90%;
  text-align: center;
}
#main > .solution .container > .nav > .prev {
  position: absolute;
  z-index: 44;
  left: -40px;
  top: 50%;
  cursor: pointer;
}
#main > .solution .container > .nav > .prev > i {
  display: block;
  font-size: 6rem;
  color: rgba(255, 255, 255, .2);
  transition: all .35s;
}
#main > .solution .container > .nav > .prev:hover i {
  color: rgba(255, 255, 255, 1);
}
#main > .solution .container > .nav > .next {
  position: absolute;
  z-index: 44;
  right: -40px;
  top: 50%;
  cursor: pointer;
}
#main > .solution .container > .nav > .next > i {
  display: block;
  font-size: 6rem;
  color: rgba(255, 255, 255, .2);
  transition: all .35s;
}
#main > .solution .container > .nav > .next:hover i {
  color: rgba(255, 255, 255, 1);
}
#main > .solution .container > .nav > .swiper-container {
  margin: 0 auto;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide {
  box-sizing: border-box;
  border-right: 1px solid rgba(255, 255, 255, .4);
}
#main > .solution .container > .nav > .swiper-container .swiper-slide:last-of-type {
  border: 0;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a {
  display: block;
  padding: 60px 0;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a > .ico {
  width: 50%;
  height: auto;
  margin: 0 auto;
  transition: all .35s;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a > .ico > img {
  width: 100%;
  height: auto;
  transition: all .35s;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con {
  padding: 80px 0;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit {
  text-align: center;
  margin: 0 auto;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit > p {
  display: block;
  padding-bottom: 20px;
  font-size: 2.8rem;
  color: #fff;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit > span {
  display: block;
  font-size: 3rem;
  font-family: 'Arial';
  color: #fff;
  text-transform: uppercase;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .view {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 20px;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  border: 0px solid rgba(255, 255, 255, .5);
  overflow: hidden;
  text-align: center;
  transition: all .35s
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .view:after {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  opacity: 0;
  border-radius: 100%;
  background: #0480cc;
  content: '';
  transition: all .35s;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .view > i {
  position: relative;
  z-index: 9;
  display: block;
  font-size: 2.4rem;
  color: #fff;
  overflow: hidden;
  margin: 0 auto;
  transition: all .35s;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a:hover .view {
  background: #0480cc;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a:hover .view:after {
  transform: scale(4);
  opacity: 1;
}
#main > .solution .container > .nav > .swiper-container .swiper-slide > a:hover .ico {
  transform: translateY(-8px);
}
#main > .news {
  margin: 0 auto;
  padding: 80px 0;
  background: url("/skin/img/inews.jpg") no-repeat;
  background-size: cover;
}
#main > .news > .container {
  margin: 0 auto;
  padding: 50px 0;
}
#main > .news > .container > .list {
  width: 86%;
  margin: 0 auto;
}
#main > .news > .container > .list > ul {
  margin: 0 auto;
}
#main > .news > .container > .list > ul > li {
  display: block;
  float: left;
  width: 48%;
  height: 0;
  padding: 20px;
  padding-bottom: 13%;
  position: relative;
  margin-bottom: 50px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  transition: all .35s;
}
#main > .news > .container > .list > ul > li:nth-child(even) {
  float: right;
}
#main > .news > .container > .list > ul > li > a {
  position: relative;
  zoom: 1;
  display: block;
  top: 0;
  left: 0;
}
#main > .news > .container > .list > ul > li > a:before, #main > .news > .container > .list > ul > li > a:after {
  content: "";
  display: table;
}
#main > .news > .container > .list > ul > li > a:after {
  clear: both;
}
#main > .news > .container > .list > ul > li > a > .img {
  width: 40%;
  position: relative;
}
#main > .news > .container > .list > ul > li > a > .img:after {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0;
  background: rgba(0, 0, 0, .7);
  transition: all .35s;
}
#main > .news > .container > .list > ul > li > a > .img:before {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 0;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  line-height: 40px;
  font-family: "iconfont" !important;
  font-size: 50px;
  font-weight: 100;
  opacity: 0;
  color: #0480cc;
  content: '\e606';
  transition: all .35s;
}
#main > .news > .container > .list > ul > li > a > .img > img {
  width: 100%;
  height: auto;
}
#main > .news > .container > .list > ul > li > a > .con {
  width: 60%;
  text-align: left;
  box-sizing: border-box;
  padding: 20px 40px;
}
#main > .news > .container > .list > ul > li > a > .con > .tit {
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: all .35s;
}
#main > .news > .container > .list > ul > li > a > .con > .txt {
  margin-bottom: 5px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: all .35s;
}
#main > .news > .container > .list > ul > li > a > .con > .time {
  font-size: 1.4rem;
  color: rgba(31, 87, 161, 1);
}
#main > .news > .container > .list > ul > li > a > .con > .view {
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 0;
  overflow: hidden;
  line-height: 3rem;
  text-align: center;
  background: rgba(31, 87, 161, 1);
  font-size: 1.6rem;
  transition: all .35s;
}
#main > .news > .container > .list > ul > li > a > .con > .view > i {
  color: #fff;
  font-size: 1.8rem;
}
#main > .news > .container > .list > ul > li:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}
#main > .news > .container > .list > ul > li:hover .img:after {
  opacity: 1;
}
#main > .news > .container > .list > ul > li:hover .img:before {
  top: 40%;
  opacity: 1;
}
#main > .news > .container > .list > ul > li:hover .con > .tit {
  color: rgba(31, 87, 161, 1);
}
#main > .news > .container > .list > ul > li:hover .con > .view {
  height: 30px;
}
#main > .news > .more {
  text-align: center;
  margin: 0 auto;
  padding-top: 30px;
}
#main > .news > .more > a {
  display: inline-block;
  border: 2px solid #ddd;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 1.4rem;
  color: #666;
  background: rgba(255, 255, 255, .4);
  transition: all .35s;
}
#main > .news > .more > a > i {
  display: inline-block;
  color: #0480cc;
  font-size: 1.6rem;
  font-weight: 100;
}
#main > .news > .more > a:hover {
  background: #0480cc;
  border: 2px solid#0480cc;
  color: #fff;
  transform: translateY(-3px);
}
#main > .news > .more > a:hover i {
  color: #fff;
}
#main > .about {
  position: relative;
  margin: 0 auto;
  background: #999;
}
#main > .about > .box-left {
  position: relative;
  width: 50%;
  height: 100%;
}
#main > .about > .box-left > .profile {
  background: rgba(31, 87, 161, 1);
  box-sizing: border-box;
  padding: 12%;
  text-align: left;
}
#main > .about > .box-left > .profile > .tit {
  position: relative;
  padding-bottom: 30px;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
}
#main > .about > .box-left > .profile > .tit:after {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 2px;
  background: rgba(255, 255, 255, 1);
  content: '';
}
#main > .about > .box-left > .profile > .txt {
  margin: 50px auto;
  text-align: left;
  font-size: 1.6rem;
  height: 280px;
  overflow: hidden;
  color: rgba(255, 255, 255, .8);
  line-height: 2.8rem;
}
#main > .about > .box-left > .profile > .txt > p {
  margin-bottom: 20px;
}
#main > .about > .box-left > .profile > .more {
  text-align: left;
  margin: 0 auto;
}
#main > .about > .box-left > .profile > .more > a {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .8);
  transition: all .35s;
}
#main > .about > .box-left > .profile > .more > a > i {
  display: inline-block;
  color: rgba(255, 255, 255, .8);
  font-size: 1.6rem;
  font-weight: 100;
}
#main > .about > .box-left > .profile > .more > a:hover {
  background: rgba(255, 255, 255, 1);
  border: 2px solid rgba(255, 255, 255, 1);
  color: rgba(31, 87, 161, 1);
}
#main > .about > .box-left > .profile > .more > a:hover i {
  color: rgba(31, 87, 161, 1);
}
#main > .about > .box-left > .img {
  width: 100%;
  text-align: left;
}
#main > .about > .box-left > .img > img {
  width: 100%;
  height: auto;
}
#main > .about > .box-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #000;
}
#main > .about > .box-right > .item-inner-top {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 50%;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}
#main > .about > .box-right > .item-inner-down {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 68%;
}
#main > .about > .box-right > .item-inner-down > .production {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(60, 60, 60, 1);
  box-sizing: border-box;
  padding: 12%;
  text-align: left;
}
#main > .about > .box-right > .item-inner-down > .production > .tit {
  position: relative;
  padding-bottom: 30px;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
}
#main > .about > .box-right > .item-inner-down > .production > .tit:after {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 2px;
  background: rgba(255, 255, 255, 1);
  content: '';
}
#main > .about > .box-right > .item-inner-down > .production > .txt {
  padding: 50px 0;
  text-align: left;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .8);
  line-height: 2.8rem;
}
#main > .about > .box-right > .item-inner-down > .production > .txt > p {
  margin-bottom: 20px;
}
#main > .about > .box-right > .item-inner-down > .production > .more {
  text-align: left;
  margin: 0 auto;
}
#main > .about > .box-right > .item-inner-down > .production > .more > a {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .8);
  transition: all .35s;
}
#main > .about > .box-right > .item-inner-down > .production > .more > a > i {
  display: inline-block;
  color: rgba(255, 255, 255, .8);
  font-size: 1.6rem;
  font-weight: 100;
}
#main > .about > .box-right > .item-inner-down > .production > .more > a:hover {
  background: rgba(255, 255, 255, 1);
  border: 2px solid rgba(255, 255, 255, 1);
  color: rgba(86, 86, 86, 1);
}
#main > .about > .box-right > .item-inner-down > .production > .more > a:hover i {
  color: rgba(86, 86, 86, 1);
}
#main > .about > .box-right > .item-inner-down > .img {
  position: relative;
  z-index: 1;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}
#main > .netowrk {
  margin: 0 auto;
  padding: 80px 0;
  background: url("/skin/img/main_network_bg.jpg") no-repeat;
  background-position: left bottom;
  background-size: cover;
}
#main > .netowrk > .container {
  margin: 0 auto;
  padding: 50px 0;
}
#main > .netowrk > .container > .content {
  width: 50%;
  box-sizing: border-box;
  padding-right: 5%;
}
#main > .netowrk > .container > .content > .item {
  display: block;
  text-align: left;
  padding: 30px 0;
}
#main > .netowrk > .container > .content > .w50 {
  width: 50%;
  padding-right: 5%;
}
#main > .netowrk > .container > .content > .w100 {
  width: 100%;
  clear: both;
}
#main > .netowrk > .container > .content > .item > h3 {
  font-size: 8.6rem;
  color: rgba(31, 87, 161, 1);
}
#main > .netowrk > .container > .content > .item > p {
  font-size: 2rem;
  color: #666;
}
#main > .netowrk > .container > .content > .item > h4 {
  font-size: 3rem;
  font-weight: normal;
  color: #666;
}
#main > .netowrk > .container > .map {
  width: 50%;
  text-align: right;
}
#main > .netowrk > .container > .map > img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1640px) {
  #main > .solution .container > .nav {
    bottom: 4%;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a {
    padding: 40px 0;
  }
  #main > .news > .container > .list > ul > li > a > .con {
    padding: 10px 40px;
  }
  #main > .news > .container > .list > ul > li > a > .con > .tit {
    font-size: 2rem;
  }
  #main > .news > .container > .list > ul > li > a > .con > .txt {
    font-size: 1.5rem;
    line-height: 2.3rem;
  }
  #main > .news > .container > .list > ul > li > a > .con > .time {
    font-size: 1.4rem;
  }
  #main > .about > .box-left > .profile > .txt {
    height: 270px;
  }
}
@media only screen and (max-width: 1560px) {
  #banner .swiper-slide .mc {
    top: 30%;
  }
  #banner .swiper-slide .mc > .tit {
    padding: 30px 0;
    font-size: 6rem;
  }
  #banner .swiper-slide .mc > .txt {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .ico {
    width: 46%;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit > p {
    font-size: 2.5rem;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit > span {
    font-size: 2.8rem;
  }
  #main > .about > .box-left > .profile > .txt {
    height: 240px;
  }
}
@media only screen and (max-width: 1460px) {
  #main > .product .container .swiper-container {
    width: 90%;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con {
    padding: 50px 0;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit > p {
    font-size: 2.2rem;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit > span {
    font-size: 2.5rem;
  }
  #main > .news > .container > .list > ul > li > a > .con > .tit {
    font-size: 1.8rem;
  }
  #main > .news > .container > .list > ul > li > a > .con > .txt {
    font-size: 1.4rem;
    line-height: 2.0rem;
  }
  #main > .news > .container > .list > ul > li > a > .con > .time {
    font-size: 1.3rem;
  }
  #main > .about > .box-left > .profile > .tit {
    font-size: 3.2rem;
  }
  #main > .about > .box-left > .profile > .txt {
    height: 210px;
  }
  #main > .about > .box-right > .item-inner-down > .production > .tit {
    font-size: 3.2rem;
  }
  #main > .about > .box-right > .item-inner-down > .production {
    padding: 8%;
  }
  #main > .netowrk > .container > .content > .item > h3 {
    font-size: 7.2rem;
  }
  #main > .netowrk > .container > .content > .item > h4 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 1280px) {
  #banner .swiper-slide .mc > .tit {
    font-size: 5.2rem;
  }
  #banner .swiper-slide .mc > .txt {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
  #banner .swiper-slide .mc > .url > a {
    font-size: 1.3rem;
  }
  #main > .product .container .swiper-slide > a > .con > .tit {
    font-size: 2.2rem;
  }
  #main > .product .container .swiper-slide > a > .con > .txt {
    line-height: 2.2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con {
    padding: 30px 0;
  }
  #main > .news > .container > .list > ul > li > a > .con {
    padding: 0 40px;
  }
  #main > .news > .container > .list > ul > li > a > .con > .tit {
    font-size: 1.8rem;
  }
  #main > .news > .container > .list > ul > li > a > .con > .txt {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  #main > .news > .container > .list > ul > li > a > .con > .time {
    font-size: 1.2rem;
  }
  #main > .about > .box-left > .profile > .txt {
    height: 190px;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  #main > .about > .box-right > .item-inner-down > .production > .txt {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  #main > .netowrk > .container > .content > .item > h3 {
    font-size: 6.8rem;
  }
  #main > .netowrk > .container > .content > .item > p {
    font-size: 1.8rem;
  }
  #main > .netowrk > .container > .content > .item > h4 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1200px) {
  #banner .swiper-slide .mc > .tit {
    font-size: 4.6rem;
  }
  #banner .swiper-slide .mc > .txt {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  #banner .swiper-slide .mc > .url > a {
    font-size: 1.2rem;
  }
  #main > .product .container .swiper-slide > a > .con {
    padding: 70px 40px;
  }
  #main > .product .container .swiper-slide > a > .con > .txt {
    display: none;
  }
  #main > .solution .container > .nav > .prev, #main > .solution .container > .nav > .next {
    top: 32%;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit > p {
    font-size: 2rem;
    padding-bottom: 10px;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit > span {
    display: none;
    font-size: 2.2rem;
  }
  #main > .news > .container > .list > ul > li > a > .con > .tit {
    -webkit-line-clamp: 1;
  }
  #main > .netowrk > .container > .content {
    float: none;
    width: 100%;
    padding-right: 0;
  }
  #main > .netowrk > .container > .content > .item {
    text-align: center;
  }
  #main > .netowrk > .container > .content > .w50 {
    padding-right: 0;
  }
  #main > .netowrk > .container > .content > .item > h3 {
    font-size: 5.6rem;
  }
  #main > .netowrk > .container > .content > .item > h4 {
    font-size: 2.4rem;
  }
  #main > .netowrk > .container > .map {
    float: none;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 1080px) {
  #banner .swiper-slide .mc {
    top: 25%;
  }
  #banner .swiper-slide .mc > .tit {
    font-size: 3.6rem;
    padding-top: 0;
  }
  #banner .swiper-slide .mc > .txt {
    width: 40%;
  }
  #banner .swiper-pagination {
    bottom: 50px;
  }
  #banner .swiper-pagination-bullet {
    width: 60px;
    height: 2px;
  }
  #main > .product .container .swiper-slide > a > .con {
    padding: 50px 40px;
  }
  #main > .product .container .swiper-slide > a > .con > .tit {
    font-size: 2rem;
  }
  #main > .solution .container > .nav > .prev > i {
    font-size: 4.8rem;
  }
  #main > .solution .container > .nav > .next > i {
    font-size: 4.8rem;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a {
    padding: 20px 0;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .ico {
    width: 40%;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con {
    padding: 30px 0;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .view {
    bottom: 20px;
    margin-left: -18px;
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .view > i {
    font-size: 2rem;
  }
  #main > .news > .container > .list > ul > li {
    padding-bottom: 44%;
  }
  #main > .news > .container > .list > ul > li > a > .img {
    float: none;
    width: 100%;
  }
  #main > .news > .container > .list > ul > li > a > .con {
    float: none;
    width: 100%;
    padding: 10px 0;
  }
  #main > .news > .container > .list > ul > li > a > .con > .txt {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  #main > .news > .container > .list > ul > li > a > .con > .time {
    font-size: 1.3rem;
  }
  #main > .about > .box-left {
    position: relative;
    float: none;
    width: 100%;
    height: auto;
  }
  #main > .about > .box-left > .profile {
    padding: 8%;
  }
  #main > .about > .box-left > .profile > .txt {
    height: 110px;
  }
  #main > .about > .box-right {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    background: rgba(38, 87, 161, 1);
  }
  #main > .about > .box-right > .item-inner-top {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 50%;
    height: 50%;
    opacity: .5;
  }
  #main > .about > .box-right > .item-inner-down {
    position: relative;
    z-index: 5;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 68%;
  }
  #main > .about > .box-right > .item-inner-down > .production {
    position: relative;
    z-index: 3;
    width: 50%;
    height: auto;
  }
  #main > .about > .box-right > .item-inner-down > .img {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 50%;
    background-size: cover;
  }
}
@media only screen and (max-width: 860px) {
  #banner .swiper-slide .mc {
    width: 90%;
    margin-left: -45%;
  }
  #banner .swiper-slide .mc > .tit {
    font-size: 3.2rem;
  }
  #banner .swiper-slide .mc > .txt {
    padding: 10px 0;
  }
  #banner .swiper-slide .mc > .url > a {
    font-size: 1.1rem;
  }
  #main .title > h2 {
    font-size: 3.4rem;
  }
  #main .title > p {
    font-size: 1.5rem;
    padding: 10px 0;
  }
  #main > .product .container .swiper-slide > a > .con > .tit {
    font-size: 1.8rem;
  }
  #main > .product .container .swiper-slide > a > .con {
    padding: 50px 30px;
  }
  #main > .solution {
    background: #0480cc;
  }
  #main > .solution .container > .nav {
    position: relative;
    bottom: 0;
    background: #0480cc;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con {
    padding: 10px 0;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .tit > p {
    font-size: 1.8rem;
    padding: 0;
  }
  #main > .solution .container > .nav > .swiper-container .swiper-slide > a > .con > .view {
    bottom: 0;
  }
  #main > .news > .container > .list > ul > li {
    padding-bottom: 40%;
    margin-bottom: 30px;
  }
  #main > .news > .container > .list > ul > li > a > .con > .txt {
    display: none;
  }
}
@media only screen and (max-width: 786px) {
  #banner .swiper-slide .pc {
    display: none;
  }
  #banner .swiper-slide .mob {
    display: block;
    width: 100%;
  }
  #banner .swiper-slide .mc {
    top: 20%;
    width: 90%;
    margin-left: -45%;
    text-align: center;
  }
  #banner .swiper-slide .mc > .tit {
    font-size: 3.2rem
  }
  #banner .swiper-slide .mc > .tit:after {
    left: 50%;
    margin-left: -30px;
    width: 60px;
    height: 3px;
  }
  #banner .swiper-slide .mc > .txt {
    margin: 0 auto;
    padding: 10px 0;
    width: 80%;
  }
  #banner .swiper-slide .mc > .url > a {
    margin: 0;
    padding: 4px;
    border: 0;
    opacity: .8;
  }
}
@media only screen and (max-width: 640px) {
  #banner .swiper-slide .mc > .tit {
    font-size: 2.8rem;
  }
  #banner .swiper-slide .mc > .txt {
    font-size: 1.2rem;
  }
  #banner .swiper-slide .mc > .url > a {
    font-size: 1rem;
  }
  #main .title > h2 {
    font-size: 3.2rem;
  }
  #main .title > p {
    font-size: 1.4rem;
  }
  #main > .product .container .swiper-slide > a > .img {
    float: none;
    width: 100%;
    text-align: center;
  }
  #main > .product .container .swiper-slide > a > .img > img {
    width: 100%;
    height: auto;
  }
  #main > .product .container .swiper-slide > a > .con {
    float: none;
    width: 100%;
    padding: 10px 40px;
    text-align: center;
  }
  #main > .product .container .swiper-slide > a > .con > .tit {
    font-size: 1.6rem;
  }
  #main > .product .container .swiper-slide > a > .con > .view {
    display: none;
  }
  #main > .product > .more > a {
    padding: 8px 25px;
    font-size: 1.2rem;
  }
  #main > .product > .more > a > i {
    font-size: 1.4rem;
  }
  #main > .news {
    padding: 40px 0;
  }
  #main > .news > .container {
    padding: 10px 0;
  }
  #main > .news > .container > .list > ul > li {
    float: none;
    width: 100%;
    padding-bottom: 28%;
    margin-bottom: 20px;
  }
  #main > .news > .container > .list > ul > li > a > .img {
    float: left;
    width: 40%;
  }
  #main > .news > .container > .list > ul > li > a > .con {
    float: right;
    width: 60%;
    padding: 10px 20px;
  }
  #main > .news > .container > .list > ul > li > a > .con > .tit {
    -webkit-line-clamp: 2;
  }
  #main > .news > .more {
    padding-top: 20px;
  }
  #main > .news > .more > a {
    padding: 8px 25px;
    font-size: 1.2rem;
  }
  #main > .news > .more > a > i {
    font-size: 1.4rem;
  }
  #main > .about > .box-left > .profile > .tit {
    font-size: 2.4rem;
    padding-bottom: 20px;
  }
  #main > .about > .box-right > .item-inner-down > .production > .tit {
    font-size: 2.4rem;
    padding-bottom: 20px;
  }
  #main > .about > .box-left > .profile > .more > a {
    padding: 8px 25px;
    font-size: 1.2rem;
  }
  #main > .about > .box-left > .profile > .more > a > i {
    font-size: 1.4rem;
  }
  #main > .about > .box-right > .item-inner-down > .production {
    width: 60%;
    padding: 6%;
  }
  #main > .about > .box-right > .item-inner-down > .production > .txt {
    padding: 30px 0;
  }
  #main > .about > .box-right > .item-inner-down > .production > .more > a {
    padding: 8px 25px;
    font-size: 1.2rem;
  }
  #main > .about > .box-right > .item-inner-down > .production > .more > a > i {
    font-size: 1.4rem;
  }
  #main > .about > .box-right > .item-inner-down > .img {
    width: 40%;
  }
  #main > .about > .box-right > .item-inner-top {
    width: 40%;
  }
  #main > .netowrk > .container > .content > .item > h4 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 520px) {
  #main .title > h2 {
    font-size: 2.8rem;
  }
  #main .title > p {
    font-size: 1.2rem;
  }
  #main > .product .container .swiper-slide > a > .con {
    padding: 10px;
  }
  #main > .solution .container > .nav > .prev {
    left: -20px;
  }
  #main > .solution .container > .nav > .next {
    right: -20px;
  }
  #main > .solution .container > .nav > .prev > i, #main > .solution .container > .nav > .next > i {
    font-size: 3.2rem;
  }
  #main > .news > .container > .list > ul > li > a > .con {
    padding: 0 20px;
  }
  #main > .news > .container > .list > ul > li > a > .con > .tit {
    font-size: 1.6rem;
  }
  #main > .about > .box-right > .item-inner-down > .production {
    width: 100%;
    padding: 6%;
  }
  #main > .about > .box-right > .item-inner-top {
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    width: 50%;
    height: 130px;
    background-size: cover
  }
  #main > .about > .box-right > .item-inner-down > .img {
    position: relative;
    width: 50%;
    height: 130px;
  }
  #main > .netowrk {
    padding: 40px 0;
  }
  #main > .netowrk > .container {
    padding: 20px 0;
  }
  #main > .netowrk > .container > .content > .item {
    padding: 10px 0;
  }
  #main > .netowrk > .container > .content > .item > h3 {
    font-size: 4.2rem;
  }
  #main > .netowrk > .container > .content > .item > p {
    font-size: 1.3rem;
  }
}
.iwd {
	width: 86%!important;
	margin: 0 auto;
}
.ljl {
	margin-left: 10%;
}