@charset "UTF-8";
/* 颜色变量 */
.news-list-box li {
  padding: 20px 16px;
}

.news-list-box li > a {
  display: flex;
}

.news-list-box li > a .img-box {
  width: 278px;
  min-width: 278px;
  height: 208px;
  margin-right: 26px;
  border-radius: 4px;
  overflow: hidden;
}

.news-list-box li > a .img-box > img {
  width:100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}

.news-list-box li > a .content-box {
  padding: 8px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.news-list-box li > a .content-box .title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.news-list-box li > a .content-box .title i {
  width: 34px;
  min-width: 34px;
  height: 22px;
  margin-right: 5px;
  line-height: 22px;
  border: 1px solid #FF6600;
  color: #FF6600;
  text-align: center;
  font-size: 12px;
  border-radius: 2px;
}

.news-list-box li > a .content-box .title h3 {
  font-weight: normal;
}

.news-list-box li > a .content-box .content {
  flex: 1;
  font-size: 14px;
  color: #999;
  line-height: 1.8;
  -webkit-line-clamp: 3;
}

.news-list-box li > a .content-box .time {
  font-size: 12px;
  color: #999;
}

.news-list-box li:hover {
  background-color: #FAFAFA;
}

.news-list-box li:hover > a .img-box > img {
  transform: scale(1.2);
}

.news-list-box li:hover > a .content-box h3 {
  color: #00A67D;
}
.global-list{
  display: flex;
  justify-content: space-between;
}
.global-list li {
  position: relative;
  width: 220px;
  height: 230px;
}

.global-list li .six-box {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 190px;
  background-color: #F3F3F3;
  transition: all .6s;
}

.global-list li .six-box::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  transform: translateX(-100%);
  border-right: 50px solid #F3F3F3;
  border-top: 95px solid transparent;
  border-left: 50px solid transparent;
  border-bottom: 95px solid transparent;
  transition: all .6s;
}

.global-list li .six-box::after {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  transform: translateX(100%);
  border-left: 50px solid #F3F3F3;
  border-top: 95px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 95px solid transparent;
  transition: all .6s;
}

.global-list li .six-box .img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  overflow: hidden;
  z-index: 10;
}

.global-list li .six-box .img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.global-list li p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #252928;
}

.global-list li:hover .six-box {
  background: #00A67D;
}

.global-list li:hover .six-box::before {
  border-right-color: #00A67D;
}

.global-list li:hover .six-box::after {
  border-left-color: #00A67D;
}

.global-list li:hover .six-box .img-box > img {
  transform: scale(1.2);
}

.case-scenic {
  background: url("../images/case-scenic-bg.png") no-repeat center;
  background-size: cover;
}

.scenic-list {
  display: flex;
  flex-wrap: wrap;
}

.scenic-list li {
  margin-right: 20px;
  margin-bottom: 30px;
}

.scenic-list li:nth-of-type(5n) {
  margin-right: 0;
}

.scenic-list li > a {
  position: relative;
  display: block;
  color: #252928;
  font-size: 16px;
  text-align: center;
}

.scenic-list li > a .img-box {
  width: 224px;
  height: 224px;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}

.scenic-list li > a .img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.scenic-list li > a .img-box i {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 58px;
  height: 26px;
  border-radius: 26px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 26px;
  background-image: linear-gradient(278deg, #00A674 0%, #0ACC5E 100%);
  opacity: .8;
}

.scenic-list li:hover > a img {
  transform: scale(1.2);
}

.scenic-list li:hover > a p {
  color: #00A67D;
}

.case-company {
  background-color: #fff;
}

.company-list {
  display: flex;
  flex-wrap: wrap;
}

.company-list li {
  transition: all .6s;
  box-sizing: border-box;
}

.company-list li h3 {
  padding: 10px 0;
  text-align: center;
  font-size: 16px;
  color: #252928;
  font-weight: 400;
}

.company-list li .img-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.company-list li .img-list .img-box {
  position: relative;
  background-color: #fff;
  border: 1px solid #DEDEDE;
  overflow: hidden;
}

.company-list li .img-list .img-box > img {
  position: absolute;
  left:50%;
  top:50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.company-list li:nth-child(-n+3) {
  width: 386px;
  margin-bottom: 16px;
  margin-right: 21px;
  padding: 10px 18px;
}

.company-list li:nth-child(-n+3) .img-box {
  width: 169px;
  height: 70px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.company-list li:nth-child(-n+3) .img-box:nth-of-type(2n) {
  margin-right: 0;
}

.company-list li:nth-of-type(1) {
  background-color: #F2FAF8;
}

.company-list li:nth-of-type(2) {
  background-color: #F2F8FA;
}

.company-list li:nth-of-type(3) {
  margin-right: 0;
  background-color: #FAF8F2;
}

.company-list li:nth-child(n+4) {
  width: 288px;
  margin-right: 16px;
  padding: 0 14px;
}

.company-list li:nth-child(n+4) .img-box {
  width: 126px;
  height: 52px;
  margin-bottom: 8px;
  margin-right: 8px;
}

.company-list li:nth-child(n+4) .img-box:nth-of-type(2n) {
  margin-right: 0;
}

.company-list li:nth-of-type(4) {
  background-color: #F9F2FA;
}

.company-list li:nth-of-type(5) {
  background-color: #F2F5FA;
}

.company-list li:nth-of-type(6) {
  background-color: #F2F9FA;
}

.company-list li:nth-of-type(7) {
  background-color: #F2FAF6;
  margin-right: 0;
}

.company-list li:hover {
  transform: translateY(-5px);
  box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.3);
}

.product-box .product-item:nth-of-type(2n) {
  background-color: #F5F5F5;
}

.product-box .product-item .item-content {
  height: 580px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-box .product-item .item-content .info-box {
  width: 500px;
}
.product-box .product-item .item-content .info-box a{
  display: block;
  width: 120px;
  height: 34px;
  margin-top:34px;
  background: linear-gradient(281deg, #00B46A 0%, #00C9A0 100%);
  box-shadow: 0px 3px 6px rgba(31, 37, 41, 0.16);
  opacity: 1;
  border-radius: 103px;
  color: #fff;
  font-size:14px;
  text-align: center;
  line-height: 34px;
  transition: transform .6s;
}
.product-box .product-item .item-content .info-box a:hover{
  background: #00B46A;
  border: 1px solid #00B46A;
  color: #f3eb23;
  transform: translateY(-5px);
}
.product-box .product-item .item-content .img-box {
  width: 683px;
}

.product-box .product-item .item-content span {
  position: relative;
  font-size: 26px;
  color: #252928;
  font-weight: 400;
}

.product-box .product-item .item-content span::before {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  content: '';
  width: 100%;
  height: 2px;
  background-color: #00A67D;
}

.product-box .product-item .item-content p {
  margin-top: 50px;
  font-size: 16px;
  line-height: 1.5;
}

.product-box .product-item:hover .item-content span::before {
  animation: myWidth linear 1s;
}

.solution-box{
  background: #fff;
}
.solution-box .item, .five-box .item {
  height: 763px;
}

.solution-box .item .page-title, .five-box .item .page-title {
  padding: 30px 0;
}

.solution-box .item ul, .five-box .item ul {
  display: flex;
  flex-wrap: wrap;
}

.solution-box .item ul li, .five-box .item ul li {
  position: relative;
  width: 296px;
  height: 223px;
  margin-right: 5px;
  margin-bottom: 5px;
  overflow: hidden;
}

.solution-box .item ul li > img, .five-box .item ul li > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}

.solution-box .item ul li > i, .five-box .item ul li > i {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 76px;
  height: 28px;
  border-radius: 28px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 28px;
}

.solution-box .item ul li:nth-of-type(4n), .five-box .item ul li:nth-of-type(4n) {
  margin-right: 0;
}

.solution-box .item ul li:hover > img, .five-box .item ul li:hover > img {
  transform: scale(1.2);
}

.solution-box .item:nth-of-type(1) {
  background: url("../images/solution-bg1.png") no-repeat bottom center;
  background-size: 100%;
  background-attachment: fixed;
  background-color: #fcfcfc;
}

.solution-box .item:nth-of-type(2) {
  background: url("../images/solution-bg2.png") no-repeat bottom center;
  background-size: 100%;
  background-attachment: fixed;
}
.solution-box .item:nth-of-type(3) {
  height: 660px;
}
.five-box .page-title {
  padding-bottom: 0 !important;
}

.five-box .item .img-box {
  position: relative;
  width: 1200px;
  height: 370px;
}

.five-box .item .img-box > img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.five-box .item ul {
  margin-top: 17px;
}

.five-box .item ul li {
  width: 390px;
  height: 179px;
  margin: 0;
  margin-right: 15px;
}

.five-box .item ul li:nth-of-type(3n) {
  margin-right: 0;
}

.five-box .item:nth-of-type(2) {
  background: url("../images/5g-bg.png") no-repeat bottom center;
  background-size: cover;
}


/* 分页样式修改 */
.zxf_pagediv .zxfPagenum {
  border: 1px solid #E0E0E0;
  border-radius: 2px;
}

.zxf_pagediv .zxfPagenum:hover {
  color: #00A67D;
  border-color: #00A67D;
}

.zxf_pagediv .nextbtn:hover, .zxf_pagediv .prebtn:hover {
  color: #00A67D;
}

.zxf_pagediv .current {
  border: 1px solid #00A67D;
  background-color: #00A67D;
}

.zxf_pagediv .zxfokbtn {
  width: 74px;
  height: 40px;
  line-height: 40px;
}

.zxf_pagediv .zxfokbtn:hover {
  color: #00A67D;
  border-color: #00A67D;
}


/* 分页 */
@media all and (max-width: 960px) {
  .zxf_pagediv {
    padding: 0 !important;
    display: flex;
    justify-content: space-around;
  }
  .zxf_pagediv > span, .zxf_pagediv > a {
    display: none!important;
  }
  .zxf_pagediv .nextbtn, .zxf_pagediv .prebtn {
    display: block !important;
  }
}
/* 产品服务手机端 */
@media all and (max-width: 960px) {
  .product-box .product-item .item-content {
    height: 50vw;
  }
  .product-box .product-item .item-content .info-box {
    width: 40vw;
    text-align: center;
  }
  .product-box .product-item .item-content .info-box span {
    font-size: 4.2vw;
  }
  .product-box .product-item .item-content .info-box span::before {
    display: none;
  }
  .product-box .product-item .item-content .info-box p {
    margin-top: 4vw;
    font-size: 3.6vw;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
    /*autoprefixer: on */
  }
  .product-box .product-item .item-content .info-box a {
    width: 20vw;
    height: 6vw;
    line-height: 6vw;
    margin-top: 4vw;
    font-size: 3.2vw;
  }
  .product-box .product-item .item-content .img-box {
    width: 50vw;
  }
}

/* 解决方案手机端 */
@media all and (max-width: 960px) {
  .solution-box{
    padding: 0;
  }
  .solution-box .wid-1200, .five-box .wid-1200 {
    padding: 0 5.8vw;
  }
  .solution-box .item, .five-box .item {
    padding-bottom: 4vw;
    height: auto;
  }
  .solution-box .item .page-title, .five-box .item .page-title {
    padding: 6vw 0 6vw;
  }
  .solution-box .item:nth-of-type(1), .five-box .item:nth-of-type(1) {
    height: 80vw;
  }
  .solution-box .item:nth-of-type(1) .wid-1200, .solution-box .item:nth-of-type(2) .wid-1200{
    padding: 0;
  }
  .solution-box .item:nth-of-type(2), .five-box .item:nth-of-type(2) {
    height: 80vw;
  }
  .solution-box .item:nth-of-type(3){
    height: auto;
  }
  .solution-box .item ul li, .five-box .item ul li {
    width: 42vw;
    height: 32vw;
    margin: 0;
    margin-bottom: 4vw;
    margin-right: 4vw;
  }
  .solution-box .item ul li:nth-of-type(2n), .five-box .item ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  .solution-box .item ul li > i, .five-box .item ul li > i {
    font-size: 3.6vw;
    width: 18vw;
    height: 7vw;
    line-height: 7vw;
  }
}

/* 5g应用手机端 */
@media all and (max-width: 960px) {
  .five-box .item {
    overflow: hidden;
    height: 171vw !important;
    padding-bottom: 0;
  }
  .five-box .item .img-box {
    width: 100%;
    height: 30vw;
  }
  .five-box .item .img-box > img {
    position: absolute;
  }
  .five-box .item ul li {
    width: 98vw;
    margin: 0;
    margin-bottom: 4vw;
  }
}

/* 经典案例手机端 */
@media all and (max-width: 960px) {
  .global-list {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 4vw;
  }
  .global-list li {
    position: relative;
    width: 45vw;
    height: 45vw;
    overflow: hidden;
    margin: 0;
    margin-right: 2vw;
    margin-bottom: 2vw;
    border-radius: 4px;
  }
  .global-list li .six-box .img-box{
    border-radius: 0;
    width: 45vw;
    height: 45vw;
  }
  .global-list li:nth-of-type(2){
    margin-right:0;
  }
  .global-list li:nth-of-type(n+3){
    width: 29vw;
    height: 29vw;
  }
  .global-list li:nth-of-type(n+3) .img-box{
    width:29vw;
    height: 29vw;
  }
  .global-list li:last-child{
    margin-right: 0;
  }
  .global-list li .six-box {
    background-color: transparent;
    height: 100%;
  }

  .global-list li .six-box::before {
    display: none;
  }
  .global-list li .six-box:after {
    display: none;
  }

  /*.global-list li:nth-of-type(2) {*/
  /*  margin-right: 0;*/
  /*}*/
  /*.global-list li:nth-of-type(3) {*/
  /*  margin-left: 25vw;*/
  /*  margin-right: 25vw;*/
  /*}*/
  .global-list li p {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 5vw;
    font-size: 3.6vw;
    color: #fff;
    white-space: normal;
    padding:0 5px;
  }
}

/* 合作景区手机端 */
@media all and (max-width: 960px) {
  .case-scenic .wid-1200 {
    padding: 0 5.8vw;
  }
  .scenic-list {
    flex-wrap: wrap;
  }
  .scenic-list li {
    margin: 0;
    margin-right: 4vw;
    margin-bottom: 4vw;
  }
  .scenic-list li:nth-of-type(5n) {
    margin-right: 4vw;
  }
  .scenic-list li:nth-of-type(2n) {
    margin-right: 0;
  }
  .scenic-list li > a {
    font-size: 3.6vw;
  }
  .scenic-list li > a .img-box {
    width: 42vw;
    height: 42vw;
    margin-bottom: 2vw;
  }
  .scenic-list li > a .img-box i {
    width: 12vw;
    height: 5vw;
    line-height: 5vw;
    font-size: 3.6vw;
  }
}

/* 合作机构手机端 */
@media all and (max-width: 960px) {
  .company-list {
    display: block;
  }
  .company-list li h3 {
    font-size: 3.6vw;
  }
  .company-list li:nth-child(-n+3), .company-list li:nth-child(n+4) {
    width: 100%;
    margin-bottom: 4vw;
  }
  .company-list li:nth-child(-n+3) .img-box, .company-list li:nth-child(n+4) .img-box {
    width: calc(50% - 1vw);
    height: 15vw;
    margin-right: 2vw;
    margin-bottom: 2vw;
  }
}

/* 新闻列表手机端 */
@media all and (max-width: 960px) {
  .news-list-box li {
    padding: 0;
    margin-bottom: 4vw;
  }
  .news-list-box li > a .img-box {
    width: 38vw;
    min-width: 38vw;
    height: 29vw;
    margin-right: 2vw;
  }
  .news-list-box li > a .content-box {
    padding: 0;
  }
  .news-list-box li > a .content-box .title {
    font-size: 3.8vw;
    margin-bottom: 2vw;
  }
  .news-list-box li > a .content-box .title i {
    display: none;
    width: 8vw;
    height: 5vw;
    line-height: 5vw;
    font-size: 3.2vw;
  }
  .news-list-box li > a .content-box .content {
    height: 4vw;
    font-size: 3.6vw;
    -webkit-line-clamp: 3;
    margin-bottom: 2vw;
  }
}