@charset "UTF-8";
/* 颜色变量 */
/* 首页栏目标题 */
.title-box {
  margin: 0 auto;
  padding: 70px 0 40px;
  text-align: center;
}

.title-box > h3 {
  font-size: 24px;
  font-weight: bold;
}

.title-box img {
  width: 293px;
  margin: 8px auto;
}

.title-box p {
  font-size: 16px;
}

/* 新闻动态 */
.news-box {
  background-color: #FAFAFB;
  padding-bottom: 47px;
  overflow: hidden;
  margin-top: 20px;
  opacity: 0;
}
.news-box .more{
  display: block;
  width: 136px;
  height: 34px;
  margin: 45px auto 0;
  border-radius: 34px;
  border: 1px solid #00A67D;
  color: #00A67D;
  font-size: 14px;
  text-align: center;
  line-height: 34px;
  background-color: transparent;
}
.news-box .more:hover {
  background-color: #00A67D;
  color: #fff;
}
.news-box .news-content {
  position: relative;
  display: flex;
}

.news-box .news-content .swiper-pagination {
  position: absolute;
  right: 40px;
  bottom: 20px;
}

.news-box .news-content .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background-color: rgba(38, 32, 35, 0.2);
}

.news-box .news-content .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #262023;
}

.news-box .news-swiper {
  position: relative;
}

.news-box .news-swiper .swiper-container {
  width: 600px;
  height: 450px;
}

.news-box .news-swiper .swiper-container .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s linear;
}

.news-box .news-swiper .swiper-container .swiper-slide:hover > img {
  transform: scale(1.2);
}

.news-box .news-right {
  position: relative;
  flex: 1;
  padding: 20px 30px 20px 40px;
  background-color: #fff;
  overflow: hidden;
}
.news-box .news-right  .news-right-content{
  position: static;
  display: block;

}
.news-box .news-right li .news-right-content h3 {
  font-size: 35px;
  line-height: 1.5;
  font-weight: normal;
  margin: 20px 0;
  animation: newsTop  both .8s;
  color:#333;
}

.news-box .news-right li .news-right-content p {
  font-size: 14px;
  color: #666;
  -webkit-line-clamp: 3;
  line-height: 2;
  animation: newsTop both .8s;
}

.news-box .news-right li >a {
  position: absolute;
  bottom: 20px;
  left: 40px;
  color: #00A67D;
  font-size: 14px;
}


/* 产品服务 */
.product-service{
  opacity: 0;
}
.product-content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 47px;
  background-color: #fff;
  overflow: hidden;
}

.product-content .product-tab {
  margin-right: 10px;
  overflow: hidden;
}

.product-content .product-tab > li {
  width: 225px;
  min-width: 225px;
  height: 155px;
  padding: 26px 0 16px;
  margin-bottom: 1px;
  text-align: center;
  color: #333;
  background-color: #F5F5F5;
  box-sizing: border-box;
  transition: all .6s;
}

.product-content .product-tab > li:last-child {
  margin-bottom: 0;
}

.product-content .product-tab > li img {
  margin: 0 auto;
  width: 54px;
}

.product-content .product-tab > li img:nth-of-type(2) {
  display: none;
}

.product-content .product-tab > li h4 {
  font-size: 18px;
}

.product-content .product-tab > li p {
  font-size: 16px;
}

.product-content .product-tab > li:hover, .product-content .product-tab > li.active {
  color: #fff;
  background-color: #00A67D;
}

.product-content .product-tab > li:hover img:nth-of-type(1), .product-content .product-tab > li.active img:nth-of-type(1) {
  display: none;
}

.product-content .product-tab > li:hover img:nth-of-type(2), .product-content .product-tab > li.active img:nth-of-type(2) {
  display: block;
}

.product-content .product-tab-content {
  flex: 1;
  overflow: hidden;
}

.product-content .product-tab-content .item {
  position: relative;
  display: none;
}

.product-content .product-tab-content .item::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

.product-content .product-tab-content .item .item-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 652px;
  padding: 28px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  animation: myTop .6s;
}

.product-content .product-tab-content .item .item-content h3 {
  display: inline-block;
  position: relative;
  width: 300px;
  font-size: 34px;
}

.product-content .product-tab-content .item .item-content h3::before {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  content: '';
  width: 100%;
  height: 2px;
  background-color: #fff;
  animation: myWidth linear 1.5s;
}

.product-content .product-tab-content .item .item-content p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 2;
}

.product-content .product-tab-content .item .item-content .link-box {
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: #fff;
  font-size: 16px;
  animation: myLeft .8s ;
}

.product-content .product-tab-content .item .item-content .link-box a {
  display: block;
  width: 76px;
  height: 76px;
  padding: 18px;
  margin: 0 auto 5px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  box-sizing: border-box;
  transition: all .3s;
  animation: myOpt .8s both .3s;
  perspective: 200px;
}

.product-content .product-tab-content .item .item-content .link-box a > img {
  display: block;
  width: 40px;
  transition: all .3s;
}

.product-content .product-tab-content .item .item-content .link-box a:hover {
  background-color: #00A67D;
  transform: translateY(-6px);
}
.product-content .product-tab-content .item .item-content .link-box a:hover >img{
  transform: scale(1.2);
}

.product-content .product-tab-content .item.active {
  display: block;
}

.product-content .product-tab-content .item.active .item-content {
  top: 50%;
}

@keyframes newsTop {
  0% {
    transform: translateY(-200%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes myWidth {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes myTop {
  0% {
    opacity: 0;
    margin: 10px;
  }
  100% {
    opacity: 1;
    margin: 0;
  }
}
@keyframes ccInDown {
  0% { opacity: 0; -webkit-opacity: 0; -moz-opacity: 0; -webkit-transform: translateY(-20px); -moz-transform: translateY(-20px); transform: translateY(-20px); -webkit-animation-timing-function: ease-in-out; -moz-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; }
  25% { opacity: 0.3; -webkit-transform: translateY(10px); -moz-transform: translateY(10px); transform: translateY(10px); -webkit-animation-timing-function: ease-in-out; -moz-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; }
  50% { opacity: 0.6; -webkit-transform: translateY(-10px); -moz-transform: translateY(-10px); transform: translateY(-10px); -webkit-animation-timing-function: ease-in-out; -moz-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; }
  75% { opacity: 1; -webkit-opacity: 1; -moz-opacity: 1; -webkit-transform: translateY(10px); -moz-transform: translateY(10px); transform: translateY(10px); -webkit-animation-timing-function: ease-in-out; -moz-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; }
  100% { -webkit-transform: translateY(0); -moz-transform: translateY(0); transform: translateY(0); }
}
@keyframes myOpt{
  0%{
    opacity: 0;
  }

  100%{
    opacity: 1;
  }
}
@keyframes myLeft{
  0%{
    opacity: 0;
    transform: translateX(-100%);
  }
  100%{
    opacity: 1;
    transform: translateX(0%);
  }
}
/* 解决方案 */
.solution-box {
  background: url("../images/solution-bg.png") no-repeat center;
  background-size: cover;
  padding-bottom: 47px;
  overflow: hidden;

}
.solution-box .title-box{
  margin-left: 1500px;
}
.solution-box .solution-list {
  display: flex;
  margin-left: 1500px;
}

.solution-box .solution-list > li {
  width:106px;
  height: 405px;
  margin-right: 4px;
  transition: all .6s;
  overflow: hidden;
}

.solution-box .solution-list > li > a {
  position: relative;
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  background-position:cetner;
  background-size: cover;
}
.solution-box .solution-list > li > a::before{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.3);
}
.solution-box .solution-list > li > a .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
  color: #fff;
  box-sizing: border-box;
  /*background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);*/
  background-color: #000;
}

.solution-box .solution-list > li > a .bottom h3 {
  font-size: 16px;
  text-align: center;
}

.solution-box .solution-list > li > a .bottom p {
  width:0;
  height: 0;
  font-size: 16px;
  padding-top: 3px;
  transition: all .8s;
}

.solution-box .solution-list > li:last-child {
  margin-right: 0;
}

.solution-box .solution-list > li.active {
  width: 540px;
}
.solution-box .solution-list > li.active >a::before{
  background-color:rgba(0,0,0,0)
}
.solution-box .solution-list > li.active >a .bottom{
  background-color: rgba(7,194,101,.8);
}
.solution-box .solution-list > li.active >a .bottom h3{
  font-size: 20px;
  text-align: left;
}
.solution-box .solution-list > li.active > a .bottom p {
  width: 100%;
  height: 24px;
}

/* 经典案例 */
.case-box {
  padding-bottom: 147px;
  background-color: #fff;
  overflow: hidden;
  opacity: 0;
  margin-top: 30px;
}

.case-box .case-list {
  position: relative;
}

.case-box .case-list .case-item {
  display: inline-block;
  position: relative;
  width: 231px;
  height: 134px;
  margin-right: 5px;
  margin-top: 70px;
  background-color: #f5f6f7;
  transition: all .3s;
}

.case-box .case-list .case-item:nth-of-type(1) {
  margin-left: 121px;
}

.case-box .case-list .case-item:nth-of-type(4) {
  margin-right: 121px;
}
.case-box .case-list .case-item:nth-child(even) {
  animation: ccInDown 2s forwards .3s;
}

.case-box .case-list .case-item:nth-child(odd) {
  animation: ccInDown 3s forwards .3s;
}
.case-box .case-list .case-item:last-child {
  margin-right: 0;
}

.case-box .case-list .case-item::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  transform: rotate(60deg);
  background-color: #f5f6f7;
  transition: all .3s;
}

.case-box .case-list .case-item::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  transform: rotate(120deg);
  background-color: #f5f6f7;
  transition: all .3s;
}

.case-box .case-list .case-item .img-box {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  cursor:pointer;
}

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

.case-box .case-list .case-item p {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  text-align: center;
  padding: 0 10px;
  font-size: 15px;
  font-weight: bold;
  z-index: 2;
}

.case-box .case-list .case-item:hover {
  /*background-color: #00A67D;*/
  background: linear-gradient(146deg, #00A67D 0%, #0ACC5E 100%);
  color: #fff;
}

.case-box .case-list .case-item:hover::before {
  /*background-color:#00A67D;*/
  background: linear-gradient(98deg, #00A67D 0%, #0ACC5E 100%);
}

.case-box .case-list .case-item:hover::after {
  /*background-color:#00A67D;*/
  background: linear-gradient(21deg, #00A67D 0%, #0ACC5E 100%);
}

.case-box .case-list .case-item:hover .img-box > img {
  transform: scale(1.2);
}

/* 体验平台 */
.platform {
  position: fixed;
  bottom: 50px;
  left: 0;
  z-index: 9999;
}

.platform img {
  width: 137px;
}


/* 标题手机端*/
@media all and (max-width: 960px) {
  .title-box {
    padding: 6vw 0 6vw;
  }
  .title-box > h3 {
    font-size: 5.2vw;
  }
  .title-box img {
    width: 56vw;
    margin: 3px auto;
  }
  .title-box p {
    font-size: 3.6vw;
    color: #666;
  }
}

/* 新闻动态手机端 */
@media all and (max-width: 960px) {
  .news-box {
    background-color: #fff;
    margin-top: 0;
    padding-bottom: 4vw;
    opacity: 1;
    
  }
  .news-box .news-content{
    display: block;
  }
  .news-box .news-content .swiper-pagination {
    right: 0;
    bottom: 0;
  }
  .news-box .news-content .swiper-pagination .swiper-pagination-bullet {
    width: 2vw;
    height: 2vw;
    margin-left: 2vw;
    background-color: rgba(38, 32, 35, 0.2);
  }
  .news-box .news-content .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #262023;
  }
  .news-box .news-swiper .swiper-container {
    width: 100%;
    height: 50vw;
    margin-right: 2vw;
  }
  .news-box .news-swiper .swiper-container .swiper-slide:hover > img {
    transform: scale(1);
  }
  .news-box .news-right {
    padding: 2vw 0 4vw;
  }
  .news-box .news-right li .news-right-content h3 {
    font-size: 4.4vw;
    font-weight: bold;
    margin: 0 0 1vw;
    /*white-space: nowrap;*/
    /*text-overflow: ellipsis;*/
  }
  .news-box .news-right li .news-right-content p {
    display: none;
    font-size: 3.6vw;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }
  .news-box .news-right li a {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 3.6vw;
  }
  .news-box .more {
    margin: 4vw auto 0;
    width: 24vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 3.6vw;
  }
}

/* 产品服务手机端 */
@media all and (max-width: 960px) {
  .product-service {
    opacity: 1;
  }
  .product-service .wid-1200 {
    padding: 0 !important;
  }
  .product-content {
    display: block;
    padding-bottom: 4vw;
  }
  .product-content .product-tab {
    width: 100%;
    display: flex;
  }
  .product-content .product-tab > li {
    display: flex;
    align-content: center;
    justify-content: center;
    flex: 1;
    min-width: auto;
    height: auto;
    padding: 2vw 0;
    margin-right: 2px;
  }
  .product-content .product-tab > li:last-child {
    margin-right: 0;
  }
  .product-content .product-tab > li img {
    width: 6vw;
    height: 6vw;
    margin: 0 2vw 0 0;
  }
  .product-content .product-tab > li h4 {
    font-size: 4.2vw;
  }
  .product-content .product-tab > li p {
    display: none;
  }
  .product-content .product-tab-content {
    width: 100%;
    height: 48.6vw;
    box-sizing: border-box;
  }
  .product-content .product-tab-content .item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-content .product-tab-content .item .item-content {
    width: 92vw;
    height: 44.6vw;
    padding: 0;
  }
  .product-content .product-tab-content .item .item-content h3 {
    display: none;
  }
  .product-content .product-tab-content .item .item-content p {
    display: none;
  }
  .product-content .product-tab-content .item .item-content .link-box {
    font-size: 3.6vw;
  }
  .product-content .product-tab-content .item .item-content .link-box li a {
    width: 16vw;
    height: 16vw;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .product-content .product-tab-content .item .item-content .link-box li a > img {
    width: 10vw;
    height: 10vw;
    margin: 3vw;
  }
}

/* 解决方案手机端 */
@media all and (max-width: 960px) {
  .solution-box {
    background: #fff;
    padding-bottom: 4vw;
    padding: 0 1.8vw;
  }
  .solution-box .title-box {
    margin-left: 0;
  }
  .solution-box .solution-list {
    flex-wrap: wrap;
    margin-left: 0;
  }
  .solution-box .solution-list li {
    width: 42vw;
    height: 34vw;
    border-radius: 4px;
    margin: 0;
    margin-bottom: 4vw;
    margin-right: 4vw;
    overflow: hidden;
  }
  .solution-box .solution-list li:nth-of-type(2n) {
    margin-right: 0;
  }
  .solution-box .solution-list li > a .bottom {
    padding: 1vw;
    background-color: rgba(0,0,0,.3);
  }
  .solution-box .solution-list li > a .bottom h3 {
    font-size: 3.8vw;
  }
  .solution-box .solution-list li > a .bottom p {
    /*height: 11vw;*/
    font-size: 3.6vw;
    -webkit-line-clamp: 2;
    white-space: normal;
    transition: all 0.3s;
  }
  .solution-box .solution-list li.active {
    width: 42vw;
  }
  .solution-box .solution-list li.active >a .bottom{
    background-color: rgba(0,0,0,.3);
  }
  .solution-box .solution-list li.active >a .bottom h3{
    font-size:3.8vw;
  }
  .solution-box .solution-list li.active >a .bottom p{
    height: 11vw;
  }
}

/* 经典案例手机端 */
@media all and (max-width: 960px) {
  .case-box {
    opacity: 1;
    padding-bottom: 4vw;
  }
  .case-box .case-list {
    display: flex;
    flex-wrap: wrap;
  }
  .case-box .case-list .case-item {
    position: relative;
    display: block;
    width: 28vw;
    height: 28vw;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
    margin-bottom: 4vw;
    margin-right: 4vw;
    background-color: #fff;
  }
  .case-box .case-list .case-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .case-box .case-list .case-item:nth-of-type(1) {
    margin-left: 0;
  }
  .case-box .case-list .case-item:nth-of-type(4) {
    margin-right: 4vw;
  }
  .case-box .case-list .case-item:nth-child(even) {
    animation: normal;
  }
  .case-box .case-list .case-item:nth-child(odd) {
    animation: normal;
  }
  .case-box .case-list .case-item::before {
    display: none;
  }
  .case-box .case-list .case-item::after {
    display: none;
  }
  .case-box .case-list .case-item .img-box {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .case-box .case-list .case-item .img-box::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width:100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
  }
  .case-box .case-list .case-item p {
    top: 50%;
    left: 0;
    text-align: center;
    width: 100%;
    padding: 0 2vw;
    line-height: 2;
    transform: translate(0,-50%);
    font-weight: normal;
    font-size: 3.6vw;
    color: #fff;
    height: 8vw;
    white-space: normal;
  }
}

/* 体验平台手机端 */
@media all and (max-width: 960px) {
  .platform {
    display: none;
  }
}
