[v-cloak] {
  display: none !important;
}
 /* 地图样式 */
 @media screen and (max-width: 320px) {
  #map_base svg { height: 100px; }
}
@media screen and (max-width: 400px) and (min-width: 321px) {
  #map_base svg { height: 134px; }
}
@media screen and (max-width: 480px) and (min-width: 401px) {
  #map_base svg { height: 170px; }
}
@media screen and (max-width: 568px) and (min-width: 481px) {
  #map_base svg { height: 210px; }
}
@media screen and (max-width: 685px) and (min-width: 569px) {
  #map_base svg { height: 252px; }
}
@media screen and (max-width: 767px) and (min-width: 686px) {
  #map_base svg { height: 310px; }
}
@media screen and (max-width: 979px) and (min-width: 768px) {
  #map_base svg { height: 360px; }
}
@media screen and (max-width: 1024px) and (min-width: 980px) {
  #map_base svg { height: 470px; }
}
@media screen and (max-width: 1280px) and (min-width: 1025px) {
  #map_base svg { height: 470px; }
}
@media screen and (min-width: 1281px) {
  #map_base svg { height: 580px; }
}
#mapwrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
#map_base svg {
  width: 100%;
  height: auto;
}
#map_base path {
  cursor: pointer;
  transition: fill 0.3s ease;
}
#map_base #map_172,#map_33,#map_158,#map_99,#map_56 {
  fill: #ff6b6b !important;
}

/* 地图标记点文字样式 */
#map_points text {
  pointer-events: none;
  user-select: none;
}

@media screen and (max-width: 767px) {
  #map_points text {
      font-size: 10px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #map_points text {
      font-size: 11px !important;
  }
}
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

body::-webkit-scrollbar {
  width: 0;
}

#containerr {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

#containerr .orange {
  color: #F85911;
  font-weight: 700;
}

#containerr .announcement {
  position: fixed;
  z-index: 999;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

#containerr .announcement img {
  height: 760px;
}

#containerr .announcement .close {
  width: 64px;
  height: 64px;
  margin-top: 30px;
  cursor: pointer;
}

#containerr .navBar {
  height: 70px;
  position: relative;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 99;

}

#containerr .navBar .logo {
  top: 10px;
  width: 200px;
  height: 50px;
  position: absolute;
  z-index: 2;
  left: 1%;
}

#containerr .navBar .logo img {
  height: 50px;
  cursor: pointer;
}

#containerr .navBar .logo .title {
  width: 134px;
  height: 50px;
  background: url('../img/logoTxt.png') no-repeat;
  background-size: 100% 100%;
}

#containerr .navBar .background {
  background-color: hsla(0, 0%, 100%, .1);
  -webkit-backdrop-filter: blur(34px) brightness(.8);
  backdrop-filter: blur(34px) brightness(.8);
  position: absolute;
  width: 200%;
  height: 100%;
  /* opacity: 0.6; */
  top: 0;
  left: -50%;
}

#containerr .navBar .navList {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-55%);
  display: flex;
  height: 70px;
  line-height: 70px;
  gap: 28px;
}

#containerr .navBar .navList .clickNav {
  box-sizing: border-box;
  padding: 0 20px;
  color: #fff;
  max-width: 104px;
  min-width: 104px;
  text-align: center;
  font-weight: 700;
  font-family: '微软雅黑';
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#containerr .navBar .navList .clickNav a {
  color: #FFF;
}

#containerr .navBar .navList li.active {
  color: #ff0000;
  border-bottom: 3px solid #ff0000;
}

#containerr .navBar .navList li:hover {
  color: #ff0000;
  border-bottom: 3px solid #ff0000;
}

#containerr .navBar .navList li:hover a {
  color: #ff0000;
}

/* 导航菜单 Popover 样式 */
.nav-item-with-popover {
  position: relative;
}

.nav-item-with-popover .popover {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  margin-top: 5px;
  pointer-events: none;
}

.nav-item-with-popover .popover.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* 为导航项添加悬停区域 - 确保popover区域被包含 */
.nav-item-with-popover::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 25px;
  background: transparent;
  z-index: 999;
}

.nav-item-with-popover .popover::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.nav-item-with-popover .popover::after {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #e0e0e0;
  z-index: -1;
}

.popover-content {
  padding: 8px 0;
}

.popover-item {
  padding: 12px 20px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}

.popover-item:last-child {
  border-bottom: none;
}

.popover-item:hover {
  background: #f8f9fa;
  color: #ff0000;
  padding-left: 25px;
}

#containerr .navBar .login {
  font-family: '微软雅黑';
  position: absolute;
  top: 25px;
  right: 300px;
  width: 60px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
}

#containerr .navBar .register {
  border-left: 1px solid #fff;
  right: 205px;
  width: 90px;
}

#containerr .navBar .login:hover {
  color: #ff0000;
}

#containerr .navBar .upinghui {
  font-size: 18px;
  font-weight: 700;
  color: orange;
  position: absolute;
  z-index: 2;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

#containerr .navBar .language {
  top: 20px;
  right: 10px;
  width: 80px;
  border: 1px solid #FFF;
  padding: 5px;
}

#containerr .navBar .language:hover {
  border: 1px solid #ff0000;
}

#containerr .banner {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 1;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

#containerr .banner video {
  width: 100%;
}

#containerr .banner .banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
}

#containerr .banner .banner-bg {
  width: 100%;
  /* height: calc(100% - 5px); */
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
}

#containerr .banner .banner-content {
  position: absolute;
  font-size: 56px;
  font-weight: 700;
  color: #FFF;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

#containerr .banner .banner-content button {
  background-image: linear-gradient(to right, #FFA895, #FF1148);
  color: #FFF;
  width: 150px;
  height: 50px;
  font-size: 16px;
  border-radius: 15px;
  margin-top: 10px;
  cursor: pointer;
}

#containerr .banner .banner-content button:hover {
  background-image: linear-gradient(to right, #fdaf9e, #f8406b);
}

#containerr .banner img {
  width: 100%;
  height: auto;
}

#containerr .twobanner {
  margin: 0 auto;
  width: 1200px;
  /* background: url(../img/Corebg.png) no-repeat; */

  /* padding: 20px 0; */
  /* padding-bottom: 50px; */
}

#containerr .core-services-tab {
  width: 100%;
  height: 65px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

#containerr .core-services-tab .core-services-tab-title {
  width: 250px;
  height: 65px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
}

#containerr .core-services-tab .core-services-tab-title-active {
  background: #FC2A58;
  color: #fff;
}
.core-services-main-bottom{
  display: flex;
  justify-content: center;
}
#containerr .core-services-main-bottom-btn{
  background-image: linear-gradient(to right, #FFA895, #FF1148);
  color: #FFF;
  width: 150px;
  height: 50px;
  font-size: 16px;
  border-radius: 15px;
  margin-top: 10px;
  cursor: pointer;
}
#containerr .core-services-main {
  width: 100%;
  height: 500px;
  margin-bottom: 10px;
  background: #fafafa;
  display: flex;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
}
#containerr .core-services-main .core-services-main-left{
  width: 468px;
}
#containerr .core-services-main .core-services-main-right .core-services-main-light-item-title{
  font-size: 12px;
}
#containerr .core-services-main .core-services-main-right{
flex: 1;
}
#containerr .core-services-main .core-services-main-left img{
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
#containerr .core-services-main h6 {
  line-height: 25px;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 700;
  color: rgba(0, 0, 0, .85);
  padding-left: 20px;
}

#containerr .core-services-main .core-services-main-right-line {
  width: 100%;
  height: 1px;
  background: #ddd;
}

#containerr .core-services-main .core-services-main-light {
  display: flex;
  justify-content: space-between;
}

#containerr .core-services-main .core-services-main-light .core-services-main-light-item {
  width: 200px;
  height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#containerr .core-services-main .core-services-main-light .core-services-main-light-item .core-services-main-light-item-title {
  text-align: center;
}

#containerr .twobanner .operation {
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

#containerr .twobanner .operation .title,
#containerr .twobanner .operation .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .twobanner .operation .title {
  /* margin-top: 50px; */
}

#containerr .twobanner .operation .english_title {
  font-size: 20px;
  /* margin-bottom: 50px; */
}

#containerr .twobanner .operation .box {
  text-align: center;
  font-size: 20px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #000;
  line-height: 40px;
}


#containerr .twobanner .core-services {
  width: 1200px;
  margin: 0 auto;
}

#containerr .twobanner .twobanner-swiper-button-prev,
#containerr .twobanner .twobanner-swiper-button-next {
  color: #000;
  background: #D2D2D2;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.twobanner-swiper-button-prev,
.twobanner-swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  background: #F3F4F6 !important;
  border-radius: 50%;
  --swiper-navigation-size: 25px;
  color: #FD1513 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#containerr .twobanner:hover .twobanner-swiper-button-prev,
#containerr .twobanner:hover .twobanner-swiper-button-next {
  opacity: 1;
  visibility: visible;
}

.twobanner-swiper-button-prev:after,
.twobanner-swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 25px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.twobanner-swiper-button-prev:after {
  content: 'prev';
}

.twobanner-swiper-button-next:after {
  content: 'next';
}

#containerr .twobanner .swiper-pagination {
  position: static;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

#containerr .twobanner .swiper-pagination .swiper-pagination-bullet {
  margin: 0 50px;
  color: #000 !important;
  width: auto;
  font-size: 20px;
  background: #fff;
  border-radius: 0;
  height: 32px;
  opacity: 1;
  outline: none;
}

#containerr .twobanner .swiper-pagination .swiper-pagination-bullet-active {
  border-bottom: 4px solid #FC2A58;
}

#containerr .twobanner .service .service-contetnt {
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

#containerr .twobanner .service .service-contetnt .service-img {
  border-radius: 15px;
  overflow: hidden;
}

#containerr .twobanner .service .service-contetnt .service-right {
  /* margin-left: 100px; */
  color: #000;
}

#containerr .twobanner .service .service-contetnt .service-right .service-title {
  font-size: 24px;
  line-height: 45px;
}

#containerr .twobanner .service .service-contetnt .service-right .service-english {
  color: #626262;
  margin-bottom: 20px;
}

#containerr .twobanner .service .service-contetnt .service-right .introduction {
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
}

#containerr .twobanner .service .service-contetnt .service-right .more-info {
  background-image: linear-gradient(to right, #FFA895, #FF1148);
  color: #FFF;
  width: 150px;
  height: 50px;
  font-size: 16px;
  border-radius: 15px;
  margin-top: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#containerr .twobanner .service .service-contetnt .service-right .introduction .redDot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  margin-right: 20px;
}

#containerr .twobanner .service .service-contetnt .service-right button {
  background-image: linear-gradient(to right, #FFA895, #FF1148);
  color: #000;
  width: 150px;
  height: 50px;
  font-size: 16px;
  border-radius: 15px;
  margin-top: 40px;
  cursor: pointer;
}

#containerr .twobanner .service .service-contetnt .service-right button:hover {
  background-image: linear-gradient(to right, #fdaf9e, #f8406b);
}

#containerr .photographs {
  margin-top: 50px;
}

#containerr .photographs .title,
#containerr .photographs .english_title {
  text-align: center;
  color: #000;
  font-size: 40px;
  font-weight: 700;
}

#containerr .photographs .english_title {
  font-size: 26px;
  margin-bottom: 70px;
}

#containerr .photographs .photographs_box img {
  width: 100%;
}

#containerr .case-showcase {
  /* height: 800px; */
  background: no-repeat;
  background-size: cover;
  padding-top: 120px;
  position: relative;
}

#containerr .case-showcase .case-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  /* opacity: 0.3; */
  z-index: 1;
}

#containerr .case-showcase .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .case-showcase .case-content-s .case-swiper-pagination {
  position: static;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

#containerr .case-showcase .case-content-s .case-swiper-pagination .swiper-pagination-bullet {
  margin: 0 50px;
  color: #000 !important;
  width: auto;
  font-size: 20px;
  background: #fff;
  border-radius: 0;
  height: 32px;
  opacity: 1;
  outline: none;
  display: inline-block;
  min-width: 80px;
}

#containerr .case-showcase .case-content-s .case-swiper-pagination .swiper-pagination-bullet-active {
  border-bottom: 4px solid #FC2A58;
}

#containerr .case-showcase .case-content-s {
  position: relative;
  z-index: 9;
}

#containerr .case-showcase .title,
#containerr .case-showcase .english_title {
  text-align: center;
  color: black;
  font-size: 32px;
  font-weight: 700;
}

#containerr .case-showcase .english_title {
  font-size: 20px;

}

#containerr .case-showcase .case-showcase_box .case-title {
  display: flex;
  justify-content: center;
}

#containerr .case-showcase .case-showcase_box .case-title .case-title-item {
  font-size: 20px;
  padding: 15px;
  color: black;
  border-bottom: 4px solid #FFF;
  cursor: pointer;
  margin: 0 25px;
}

#containerr .case-showcase .case-showcase_box .case-title .current-case {
  border-color: #F4257F;
}

#containerr .case-showcase .case-showcase_box .case-title .case-title-item:hover {
  border-color: #F4257F;
}

#containerr .case-showcase .case-showcase_box .case-video {
  text-align: center;
  position: relative;
}

#containerr .case-showcase .case-showcase_box .case-video video {
  width: 800px;
  margin: 50px auto;
  border-radius: 40px;
}

#containerr .case-showcase .case-showcase_box .case-video .case-content {
  text-align: left;
  width: 1200px;
  background: #FFF;
  position: relative;
  margin: 50px auto;
  height: 430px;
  display: flex;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, ); */
  border-radius: 20px;
  /* padding: 20px; */
  line-height: 25px;
  margin-bottom: 0px;
  /* box-shadow: 0 0 10px 1px #919191; */
}

#containerr .case-showcase .case-showcase_box .case-video .case-content .tooglebtn {

  width: 50px;
  position: absolute;
  /* right: 800px; */
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D2D2D2;
  border-radius: 100%;
  cursor: pointer;
}

#containerr .case-showcase .case-showcase_box .case-video .case-content .case-content-rg {
  width: 740px;
  height: 380px;
  /* margin-left: 40px; */
  background-color: #f8f8f8;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;

  /* justify-content: space-between; */
}

#containerr .case-showcase .case-showcase_box .case-video .case-content .case-content-rg .case-content-rg-top {
  border-bottom: 2px solid #CECECE;
  /* height: 300px; */
  color: #666;
  /* padding-top: 20px; */
  flex: 3;

}

#containerr .case-showcase .case-showcase_box .case-video .case-content .case-content-rg .case-content-rg-bottom {
  display: flex;
  width: 100%;
  justify-content: space-around;
  flex: 2;
  align-items: center;
  /* padding: 40px 0; */
}

#containerr .case-showcase .case-showcase_box .case-video .case-content .case-content-rg .case-content-rg-bottom .info_data {
  color: #FC1A19;
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 12px;
}

#containerr .case-showcase .case-showcase_box .case-video .case-content .case-content-lf {
  /* margin-left: 100px; */
  width: 420px;
  height: 420px;
}

#containerr .case-showcase .case-showcase_box .case-video .case-content .case-content-lf img {
  width: 100%;
  height: 100%;
}

#containerr .case-showcase .case-showcase_box .case-video .case-content h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

#containerr .case-showcase .case-showcase_box .case-video .case-content a {
  display: block;
  position: relative;
  color: #FF6665;
  text-align: right;
  margin-top: 5px;
}

#containerr .our-advantage {
  /* height: 800px; */
  background: no-repeat;
  background-size: cover;
  padding-top: 120px;

}

#containerr .our-advantage .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .our-advantage .title-box .title-box-content {
  font-size: 40px;
  font-weight: 700;

}

#containerr .our-advantage .title-box .title-box-content .title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .our-advantage .title-box .title-box-content .english_title {
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

#containerr .our-advantage .our-advantage-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  flex-direction: column;
  width: 1000px;
  margin: 0 auto;
}

#containerr .our-advantage .our-advantage-box .side {
  width: 90px;
  height: 8px;
  border-radius: 4px;
  background-color: #fd0807;
  /* margin-bottom: 20px; */
  /* margin-left: 40px; */
}

#containerr .our-advantage .our-advantage-box .text {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  /* margin-left: 40px; */
  /* margin-bottom: 20px; */
}

#containerr .our-advantage .our-advantage-box .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  justify-content: flex-start;
}

#containerr .our-advantage .our-advantage-box .content .content-item {
  width: calc((100% - 80px) / 3);
}

#containerr .our-advantage .our-advantage-box .content .content-item {
  text-align: center;
}

#containerr .our-advantage .our-advantage-box .content .content-item .content-item-title {
  color: #FC1A19;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 5px;
}

#containerr .our-advantage .our-advantage-box .content-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  justify-content: flex-start;
}

#containerr .our-advantage .our-advantage-box .content-brand .content-brand-item {
  /* width: calc((100% - 150px) / 2); */
  width: 260px;
  background-color: #f8f8f8;
  padding: 10px 0px;
  border-radius: 10px;
  height: auto;
  /* min-height: 80px; */
  text-align: center;
}

#containerr .our-advantage .our-advantage-box .content-brand .content-brand-item img {
  width: 100%;
  height: 35px;
  flex-shrink: 0;
  object-fit: contain;
}

#containerr .our-advantage .our-advantage-box .content-brand .content-brand-item div {
  flex: 1;
  font-size: 14px;
  color: #333;
  /* line-height: 1.5; */
}

#containerr .our-advantage .our-advantage-box .content .content-item .content-item-text {
  font-size: 16px;
  color: rgb(102, 102, 102);
}

#containerr .our-advantage .our-advantage-box .our-advantage-box-top {
  height: 268px;
  display: flex;
  gap: 40px;
  width: 100%;

  /* width: 1200px; */
}

#containerr .our-advantage .our-advantage-box .our-advantage-box-top .our-advantage-box-top-lf {
  flex: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */

}

#containerr .our-advantage .our-advantage-box .our-advantage-box-top .our-advantage-box-top-rg {
  flex: 2;
  /* height: 100%; */
}

#containerr .our-advantage .our-advantage-box .our-advantage-box-top .our-advantage-box-top-rg img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

#containerr .team-size {
  /* height: 800px; */
  background: no-repeat;
  background-size: cover;
  padding-top: 120px;

}

#containerr .team-size .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .team-size .title-box .title-box-content {
  font-size: 40px;
  font-weight: 700;

}

#containerr .team-size .title-box .title-box-content .title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .team-size .title-box .title-box-content .english_title {
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

#containerr .team-size .team-size-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#containerr .employees {
  margin-top: 120px;
  /* padding: 80px 0; */
  /* margin-bottom: 30px; */
  /* background-image: url(../img/home/fangwei.png); */
}
/* 假设你的目标元素的 ID 是 employees */
#employees {
  scroll-margin-top: 200px; /* 调整这个值，使其等于你顶部导航栏的高度 */
}
#containerr .employees .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 50px; */
}

#containerr .employees .title,
#containerr .employees .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
  /* color: #fff; */
}

#containerr .employees .english_title {
  font-size: 20px;
  /* margin-bottom: 50px; */
  /* color: #fff; */
}

#containerr .employees .employees_box {
  margin: 0 auto;
  width: 1000px;
}

#containerr .employees .employees_box .kol-input {
  height: 50px;
  border: 1px solid #CCC;
  border-radius: 25px;
  display: flex;
  overflow: hidden;
  align-items: center;
  background: white;
  margin-top: 50px;
}

#containerr .employees .employees_box .kol-input img {
  margin-left: 20px;
  width: 32px;
  height: 32px;
}

#containerr .employees .employees_box .kol-input input {
  margin-left: 10px;
  flex: 1;
  font-size: 18px;
}

#containerr .employees .employees_box .kol-input button {
  background: #ff0000;
  height: 50px;
  color: #FFF;
  width: 100px;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
}

/* #containerr .employees .employees_box .kol-input button:hover {
  background: #ff9169;
} */

#containerr .employees .search_result {
  margin-top: 20px;
}

#containerr .employees .search_result.error {
  color: red;
}

#containerr .employees .search_result.success {
  color: #27bb27;
}

#containerr .cooperative {
  /* margin-top: 80px; */
  /* padding: 80px 0; */
  padding: 80px 0;
  /* margin-bottom: 30px; */
  background-color: #fafafa;
}

#containerr .cooperative .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  /* margin-bottom: 50px; */
}

#containerr .cooperative .marquee {
  width: 1200px;
  margin: 0 auto;
  --duration: 80s;
  --gap: 12px;
  overflow: hidden;
  position: relative;

}

#containerr .cooperative .marquee .logo {
  width: 145px;
  height: 70px;
  border-radius: 10px;
}

#containerr .cooperative .marquee .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#containerr .cooperative .coop-part .marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fafafa, transparent);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

#containerr .cooperative .coop-part .marquee:after {
  right: 0;
  background: linear-gradient(270deg, #fafafa, transparent);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}



#containerr .cooperative .coop-part .marquee .track {
  display: flex;
  /* width: -moz-max-content; */
  width: max-content;
  animation: track1 30s linear infinite;
  padding: 1rem 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}



#containerr .cooperative .coop-part .marquee .track .logo {
  flex-shrink: 0;
  margin: 0 12px;
  transition: transform .3s;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .2));
}

#containerr .cooperative .coop-part .marquee .track .logo:hover {
  animation: wave-2573f8aa 1s ease infinite;
}

#containerr .cooperative .coop-part .track:nth-of-type(2) {
  animation-delay: .2s;
}

#containerr .cooperative .coop-part .row2 {
  animation-direction: reverse !important;
}

@keyframes track1 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes track2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

@keyframes wave-2573f8aa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cooperative .title-box {
  margin-bottom: 50px;
}

#containerr .cooperative .title,
#containerr .cooperative .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .cooperative .english_title {
  font-size: 20px;
  /* margin-bottom: 50px; */
}

#containerr .cooperative .cooperative_box {
  position: relative;
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%,-50%); */
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.5);
    /* 指定放大到1.5倍 */
  }
}

/* 将动画应用于图片元素 */
#containerr .cooperative .cooperative_box div {
  /* height: 800px; */
}

#containerr .cooperative .cooperative_box .cooperative_box_small_bg {
  /* height: 800px; */

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.activeImg {
  opacity: 1;
  transform: 'scale(1)';
  transition: all 2s ease-in-out;
  /* animation: forwards 1s img-action; */
}

#containerr .cooperative .cooperative_box .cooperative_box_big_bg {

  opacity: 0;
  transform: scale(0);
  transition: all 2s ease-in-out;
  /* 自定义过渡时间 */
}

/* #containerr .cooperative .cooperative_box .cooperative_box_big_bg.active {
  opacity: 1;
  transform: scale(1); 
} */
/* #containerr .cooperative .cooperative_box img{
  transition: transform 0.5s ease;

} */
#containerr .cooperative .cooperative_box .items {
  display: flex;
  flex-wrap: wrap;
}

#containerr .cooperative .cooperative_box .items .item {
  width: 180px;
  margin: 0 10px;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 20px;
}

#containerr .cooperative .cooperative_box .items .item img {
  width: 100%;
}

#containerr .cooperative .cooperative_box:hover .boxs {
  display: block;
}

#containerr .contact {
  margin-top: 50px;
}

#containerr .contact .title,
#containerr .contact .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .contact .english_title {
  font-size: 20px;
  margin-bottom: 50px;
}

#containerr .contact .box .top {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 30px 0;
}

#containerr .contact .box .top .left {
  margin-right: 30px;
}

#containerr .contact .box .top .left img {
  width: 175px;
  height: 175px;
}

#containerr .contact .box .top .right h1 a {
  color: #2FD0B5;
  font-size: 35px;
}

#containerr .contact .box .top .right p {
  font-size: 14px;
  line-height: 24px;
}

#containerr .contact .box .bottom {
  font-size: 14px;
  margin-top: 30px;
  text-align: center;
}

#containerr .contact .box .bottom a {
  color: #337ab7;
}

#containerr .about {
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
}

#containerr .about .title,
#containerr .about .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .about .english_title {
  font-size: 20px;

}

#containerr .about .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .about .about-content {
  margin: 0 auto;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  height: 340px;
}

#containerr .about .about-content .about-content-lf {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

#containerr .about .about-content .about-content-lf-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  /* margin-bottom: 40px; */
}

#containerr .about .about-content .about-content-lf-text {
  display: flex;
  /* align-items: center; */
  font-size: 16px;
  color: #000;
  line-height: 30px;
  flex-direction: column;
  /* font-weight: 600; */
}

#containerr .about .about-content .about-content-lf-text .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 40%,
      /* 中间透明 */
      #ff4b69 60%,
      /* 深红色环边 */
      #ffa3a3 100%);
  margin-right: 10px;
}


#containerr .about .about-content .about-content-lf-btn {
  background-image: linear-gradient(to right, #FFA895, #FF1148);
  color: #FFF;
  width: 150px;
  height: 50px;
  font-size: 16px;
  border-radius: 15px;
  margin-top: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 40px; */

}



#containerr .sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
  background: #FFF;
  width: 220px;
  border-radius: 10px 0 0 10px;
  border-left: 1px solid #dfdede;
  /* overflow: hidden; */
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-1 {
  position: relative;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #FFF;
  border-bottom-color: #FF3D00;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}

#containerr .sidebar.sidebarimg {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 30px;
  z-index: 50;
}

@keyframes breathe {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.icon {
  font-size: 4em;
  background-color: red;
  animation: breathe 3s infinite;
  /* 应用呼吸效果动画 */
}

#containerr .sidebar .sidebar-title {
  background: #FF6665;
  height: 40px;
  line-height: 40px;
  color: #FFF;
  padding: 0 20px;
  border-radius: 10px 0 0 0px;
}

#containerr .sidebar .sidebar-list {
  padding: 0 10px;
}

#containerr .sidebar .sidebar-list .sidebar-item {
  display: flex;
  line-height: 40px;
  border-bottom: 1px solid #dfdede;
  align-items: center;
}

#containerr .sidebar .sidebar-list .sidebar-item img {
  width: 20px;
  height: 20px;
}

#containerr .sidebar .sidebar-list .sidebar-item .link {
  font-size: 14px;
  color: #999898;
  display: block;
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#containerr .sidebar .sidebar-list .sidebar-item .open {
  font-size: 14px;
  margin-left: 15px;
  color: #FF7A16;
}

#containerr .bottomSidebar {
  background: #000;
  color: #FFF;
  padding: 50px;
  margin-top: 50px;
}

#containerr .bottomSidebar .bottomSidebar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #FFF;
  width: 1220px;
  padding: 30px 0;
  margin-bottom: 30px;
}

#containerr .bottomSidebar .bottomSidebar-top .top-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

#containerr .bottomSidebar .bottomSidebar-top .top-item img {
  width: 40px;
}

#containerr .bottomSidebar .bottomSidebar-flex {
  width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#containerr .bottomSidebar .bottomSidebar-flex .logo .logo-img {
  width: 200px;
}

#containerr .bottomSidebar .bottomSidebar-flex .logo .logo-box {
  display: flex;
}

#containerr .bottomSidebar .bottomSidebar-flex .logo .logo-box img {
  margin-right: 10px;
  margin-top: 10px;
}

#containerr .bottomSidebar .bottomSidebar-flex .util-list {
  color: #FFF;
  line-height: 40px;
  margin-left: 40px;
}

#containerr .bottomSidebar .bottomSidebar-flex .util-list h1 {
  font-weight: 700;
}

#containerr .bottomSidebar .bottomSidebar-flex .info {
  margin-left: 40px;
  line-height: 40px;
}

#containerr .bottomSidebar .bottomSidebar-flex .info h1 {
  font-weight: 700;
}

#containerr .bottomSidebar .bottomSidebar-flex .info p {
  display: flex;
  align-items: center;
}

#containerr .bottomSidebar .bottomSidebar-flex .info p img {
  width: 30px;
  margin-right: 5px;
}

#containerr .bottomSidebar .bottomSidebar-flex .info .qrcode {
  display: flex;
  text-align: center;
  margin-top: 9px;
}

#containerr .bottomSidebar .bottomSidebar-flex .info .qrcode .qrcode-item {
  text-align: center;
  /* width: 80px;
  height: 80px; */
  margin-right: 40px;
}

#containerr .bottomSidebar .bottomSidebar-flex .info .qrcode .qrcode-item img {
  width: 90px;
}

#containerr .bottomSidebar .bottomSidebar-flex .info .qrcode .qrcode-item div {
  margin-top: -12px;
}

#containerr .bottomSidebar .copyright {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
}

.case-banner {
  min-height: 750px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: url(../img/案例精选//case/banner00.jpg) no-repeat right; */
  /* background-size: contain; */
}

.case-banner .ziti {
  margin-left: calc((100% - 1200px) / 2 - 130px);
  /* position: absolute; */
  height: 100%;
  height: 400px;
  /* width: 400px; */
  top: 50%;
  left: 10%;


}

.case-banner .case-banner-img {
  /* width: 800px; */
  height: 750px;

  animation: homeImgMove 3s ease-in-out infinite alternate;
  will-change: transform;
  z-index: -11;

}

.case-banner .case-banner-img img {
  /* width: 100%; */
  height: 100%;
}

@keyframes homeImgMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(20px, 20px);
  }
}

.case-banner .ziti h1 {
  font-size: 52px;
  line-height: 70px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 25px;
}

.case-banner .ziti p {
  font-size: 18px;
  line-height: 90px;
  color: #686868;
}

.case-banner .ziti .sea {
  background-image: linear-gradient(to left, #FF1247, #FEA897);
  text-align: center;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  width: 150px;
  border: none;
  color: aliceblue;
  border-radius: 14px;
  cursor: pointer;
}

.case-content {
  padding-top: 120px;
  background: #F9F9F9;
}

.case-content .title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.case-content .title,
.case-content .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

.case-content .english_title {
  font-size: 20px;
  /* margin-bottom: 50px; */
}

.case-content .case-list {
  width: 1200px;
  margin: 0 auto;

}

.case-content .case-list .case-title-item {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-content .case-list .case-item {
  padding: 0 10px;
  /* width: 100px; */
  height: 40px;
  border: 1px solid #dadada;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.case-content .case-list .case-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 27, 27, 0.1), transparent);
  transition: left 0.5s ease;
}

.case-content .case-list .case-item:hover {
  transform: scale(1.05);
  border-color: #ff6b6b;
  box-shadow: 0 4px 12px rgba(240, 27, 27, 0.3);
  color: #ff6b6b;
}

.case-content .case-list .case-item:hover::before {
  left: 100%;
}

.case-content .case-list .case-item-active {
  border-color: #f01b1b;
  color: #f01b1b;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(240, 27, 27, 0.4);
  background: linear-gradient(135deg, rgba(240, 27, 27, 0.05), rgba(240, 27, 27, 0.1));
  font-weight: 600;
}

.case-content .case-info-list {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  width: 100%;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  gap: 70px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-content .case-info-list>* {
  /* flex: 0 0 calc(33.333% - 20px); */
}

.case-content .case-info-item {
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 450px;
  width: 350px;
  /* width: calc(33.333% - 20px); */
  opacity: 0;
  transform: translateY(20px);
  animation: slideInCard 0.5s ease-out forwards;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.case-content .case-info-item:nth-child(1) {
  animation-delay: 0.1s;
}

.case-content .case-info-item:nth-child(2) {
  animation-delay: 0.2s;
}

.case-content .case-info-item:nth-child(3) {
  animation-delay: 0.3s;
}

.case-content .case-info-item:nth-child(4) {
  animation-delay: 0.4s;
}

.case-content .case-info-item:nth-child(5) {
  animation-delay: 0.5s;
}

.case-content .case-info-item:nth-child(6) {
  animation-delay: 0.6s;
}

.case-content .case-info-item:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
}

@keyframes slideInCard {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-content .case-info-item-img {
  height: 186px;
  border-radius: 10px;
}

.case-content .case-info-item-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.case-content .case-info-item-content {
  height: 100%;
  /* width: 100%; */
  padding: 0px 20px;
  display: flex;
  /* justify-content: space-around; */
  flex-direction: column;

}

.case-content .case-info-item-content .case-info-item-title {
  font-size: 20px;
  font-weight: 700;
}

.case-content .case-info-item-content .case-info-item-desc {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  height: 104px;
}

.case-content .case-info-item-content .case-info-item-btn {
  height: 40px;
  color: #FF395C;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #FF395C;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 34px;
}

.case-content .case-info-item-content .case-info-item-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 57, 92, 0.2), transparent);
  transition: left 0.5s ease;
}

.case-content .case-info-item-content .case-info-item-btn:hover {
  background-color: #FF395C;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 57, 92, 0.3);
}

.case-content .case-info-item-content .case-info-item-btn:hover::before {
  left: 100%;
}

.case-content .case-info-item-content .case-info-item-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 57, 92, 0.3);
}


.to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFF;
  text-align: center;
  z-index: 999;
  line-height: 45px;
  cursor: pointer;
  box-shadow: 0 0 10px 1px #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.to-top img {
  width: 12px;
  height: 10px;
}

#containerr .customer-voice {
  /* height: 800px; */
  background: no-repeat;
  background-size: cover;
  padding-top: 120px;
  position: relative;
}

#containerr .customer-voice .title-box {
  display: flex;
  justify-content: center;
  align-items: center;
}


#containerr .customer-voice .case-content-s {
  position: relative;
  z-index: 9;
}

#containerr .customer-voice .title,
#containerr .customer-voice .english_title {
  text-align: center;
  color: black;
  font-size: 32px;
  font-weight: 700;
}

#containerr .customer-voice .english_title {
  font-size: 20px;
  /* margin-bottom: 50px; */
}

#containerr .customer-voice .customer-voice_box .case-title {
  display: flex;
  justify-content: center;
}

#containerr .customer-voice .customer-voice_box .case-video {
  text-align: center;
  position: relative;
}

#containerr .customer-voice .customer-voice_box .case-video video {
  width: 800px;
  margin: 50px auto;
  border-radius: 40px;
}

#containerr .customer-voice .customer-voice_box .case-video .case-content {
  text-align: left;
  width: 1000px;
  background: #FFF;
  position: relative;
  margin: 50px auto;
  height: 250px;
  display: flex;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, ); */
  border-radius: 20px;
  padding: 20px;
  line-height: 25px;
  opacity: 1;
  box-shadow:
    /* 左侧阴影 */
    -10px 0 10px 0 #F2F2F2,
    /* 右侧阴影 */
    10px 0 10px 0 #FBFBFB,
    /* 上方阴影 */
    0 -10px 10px 0 #FDFDFD,
    /* 下方阴影 */
    0 10px 10px 0 #F4F4F4;
  ;
  /* box-shadow: 0 0 10px 1px #919191; */
}

#containerr .customer-voice .customer-voice_box .case-video .case-content .case-content-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  font-size: 20px;
  font-weight: 700;

  border-radius: 20px;
}

#containerr .customer-voice .customer-voice_box .case-video .case-content .tooglebtn {

  width: 50px;
  position: absolute;
  /* right: 800px; */
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D2D2D2;
  border-radius: 100%;
  cursor: pointer;
}

#containerr .customer-voice .customer-voice_box .case-video .circle-progress-bar {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    /* 左侧阴影 */
    -10px 0 10px 0 #F2F2F2,
    /* 右侧阴影 */
    10px 0 10px 0 #FBFBFB,
    /* 上方阴影 */
    0 -10px 10px 0 #FDFDFD,
    /* 下方阴影 */
    0 10px 10px 0 #F4F4F4;
  ;

}

#containerr .customer-voice .customer-voice_box .case-video .circle-progress-bar .wrapper {
  position: absolute;
  top: 0;
  width: 45px;
  height: 90px;
  overflow: hidden;
}

#containerr .customer-voice .customer-voice_box .case-video .circle-progress-bar .wrapper.left-wrapper {
  left: 0;
}

#containerr .customer-voice .customer-voice_box .case-video .circle-progress-bar .wrapper.right-wrapper {
  right: 0;
}

#containerr .customer-voice .customer-voice_box .case-video .circle-progress-bar div {
  box-sizing: border-box;
}

#containerr .customer-voice .customer-voice_box .case-video .circle-progress-bar .wrapper .circle-bar {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 8px solid transparent;
  border-radius: 100%;

  transform: rotate(-135deg);

}

#containerr .customer-voice .customer-voice_box .case-video .circle-progress-bar .left-wrapper .circle-bar {
  left: 0;
  border-bottom-color: #FF0000;
  border-left-color: #FF0000;
}

#containerr .customer-voice .customer-voice_box .case-video .circle-progress-bar .right-wrapper .circle-bar {
  right: 0;
  border-top-color: #FF0000;
  border-right-color: #FF0000;
}

#containerr .customer-voice .swiper-pagination {
  position: static;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

#containerr .customer-voice .swiper-pagination .swiper-pagination-bullet {
  margin: 50px 20px;
  color: #000 !important;
  width: auto;
  font-size: 20px;
  background: #fff;
  border-radius: 0;
  height: 90px;
  width: 90px;
  opacity: 1;
  outline: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    /* 左侧阴影 */
    -10px 0 10px 0 #F2F2F2,
    /* 右侧阴影 */
    10px 0 10px 0 #FBFBFB,
    /* 上方阴影 */
    0 -10px 10px 0 #FDFDFD,
    /* 下方阴影 */
    0 10px 10px 0 #F4F4F4;
  ;
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  background: #F3F4F6 !important;
  border-radius: 50%;
  --swiper-navigation-size: 25px;
  color: #FD1513 !important;

}

.case-swiper-button-prev,
.case-swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  background: #F3F4F6 !important;
  border-radius: 50%;
  --swiper-navigation-size: 25px;
  color: #FD1513 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#containerr .case-showcase:hover .case-swiper-button-prev,
#containerr .case-showcase:hover .case-swiper-button-next {
  opacity: 1;
  visibility: visible;
}

.case-swiper-button-prev:after,
.case-swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 25px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.case-swiper-button-prev:after {
  content: 'prev';
}

.case-swiper-button-next:after {
  content: 'next';
}


/* 海外网红营销 */
#containerr .overseasInternetCelebrityMarketing {
  margin-top: 50px;
  background-image: url(../img/海外网红营销/banner.png);
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-align: center;
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#containerr .overseasInternetCelebrityMarketing-info {
  padding-top: 120px;
  margin: 0 auto;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#containerr .overseasInternetCelebrityMarketing-info .info-lf {
  width: 50%;
  height: 100%;
}

#containerr .overseasInternetCelebrityMarketing-info .info-lf .info-lf-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

#containerr .overseasInternetCelebrityMarketing-info .info-lf .info-lf-text {
  font-size: 16px;
  color: #000;
  line-height: 30px;
  /* font-weight: 550; */
  margin-bottom: 20px;
}

#containerr .overseasInternetCelebrityMarketing-info .info-lf .info-lf-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#containerr .overseasInternetCelebrityMarketing-info .info-lf .info-lf-brand .info-lf-brand-item {
  border: 1px solid #D0D0D0;
  width: 298px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  /* justify-content: ; */
}

#containerr .overseasInternetCelebrityMarketing-info .info-lf .info-lf-brand .info-lf-brand-item .barnd {
  height: 30px;
  margin-right: 10px;
}

#containerr .overseasInternetCelebrityMarketing-info .info-lf .info-lf-brand .info-lf-brand-item .barnd img {
  height: 100%;

}

#containerr .cooperation {
  margin-top: 80px;
}

#containerr .cooperation .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .cooperation .title,
#containerr .cooperation .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .cooperation .english_title {
  font-size: 20px;

}

#containerr .cooperation .cooperation-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 524px;
}

#containerr .cooperation .cooperation-content .cooperation-content-lf {
  width: 370px;
  height: 100%;
  background-color: #fff5f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#containerr .cooperation .cooperation-content .cooperation-content-lf .menu {
  height: 150px;
  width: 282px;
  display: flex
;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  color: #000000;
  padding-left: 80px;
}
#containerr .cooperation .cooperation-content .cooperation-content-lf .menu-item {
  /* width: 100%;
  padding-left: 80px; */
}
#containerr .cooperation .cooperation-content .cooperation-content-lf .menu .menu-item-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

#containerr .cooperation .cooperation-content .cooperation-content-lf .menu .menu-item-content {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
}

#containerr .cooperation .cooperation-content .cooperation-content-lf .menu .menu-item-content img {
  height: 25px;
}

#containerr .cooperation .cooperation-content .cooperation-content-lf .menu-active {
  background-image: linear-gradient(to right, #fdaf9e, #f8406b);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#containerr .cooperation .cooperation-content .cooperation-content-lf .menu-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #fdaf9e, #f8406b);
  animation: slideInFromLeft 0.2s ease-out forwards;
  z-index: -1;
}

@keyframes slideInFromLeft {
  0% {
    left: -100%;
  }

  100% {
    left: 0;
  }
}

#containerr .cooperation .cooperation-content .cooperation-content-rg {
  width: 788px;
  padding: 0 40px;
  height: 100%;
  display: flex;
  gap: 50px;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  animation: fadeInRight 0.8s ease-out 0.8s forwards;
  border: 1px solid #E4E4E4;
  border-left: none;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#containerr .cooperation .cooperation-content .cooperation-content-rg .side {
  width: 200px;
  height: 8px;
  border-radius: 4px;
  background-color: #fd0807;
  margin-bottom: 20px;

}

#containerr .cooperation .cooperation-content .cooperation-content-rg .detail {
  font-size: 20px;
  font-weight: 500;
  color: #101010;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.5s ease-out;
}

.cooperation-content-rg .detail.animate-out {
  opacity: 0;
  transform: translateX(-30px);
}

.cooperation-content-rg .detail.animate-in {
  opacity: 1;
  transform: translateX(0);
}

#containerr .cooperation .cooperation-content .cooperation-content-rg .description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease-out;
}

.cooperation-content-rg .description.animate-out {
  opacity: 0;
  transform: translateX(-40px);
}

.cooperation-content-rg .description.animate-in {
  opacity: 1;
  transform: translateX(0);
}

#containerr .cooperation .cooperation-content .cooperation-content-rg .description .description-item {
  font-size: 17px;
  font-weight: 500;
  color: #101010;
  display: flex;
  align-items: center;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.4s ease-out;
}

.cooperation-content-rg .description .description-item.animate-out {
  opacity: 0;
  transform: translateX(-20px);
}

.cooperation-content-rg .description .description-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

#containerr .cooperation .cooperation-content .cooperation-content-rg .description .description-item .strong {
  color: #010101;
  font-weight: 550;
}

#containerr .cooperation .cooperation-content .cooperation-content-rg .description .description-item .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle,
      transparent 40%,
      /* 中间透明 */
      #ff4b69 60%,
      /* 深红色环边 */
      #ffa3a3 100%);
  /* 外部淡粉色 */
  margin-right: 10px;
}

#containerr .process {
  padding-top: 120px;
  padding-bottom: 50px;
}

#containerr .process .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

#containerr .process .title,
#containerr .process .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .process .english_title {
  font-size: 20px;

}

#containerr .process .process-content {
  width: 1200px;
  height: 420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#containerr .process .process-content .process-content-active-item {
  height: 100%;
  width: 355px;
  border-radius: 10px;
  position: relative;
  border: 1px solid #FE413F;
}

#containerr .process .process-content .process-content-active-item .process-content-active-item-title {
  height: 56px;
  color: white;
  font-size: 24px;
  font-weight: 550;
  background-image: linear-gradient(to left, #fdaf9e, #f8406b);
  padding: 0 20px;
  display: flex;
  align-items: center;
  border-radius: 10px 10px 0 0;
}

#containerr .process .process-content .process-content-active-item .process-content-active-item-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 420px;

}

#containerr .process .process-content .process-content-active-item .process-content-active-item-content .title {
  font-size: 16px;
  font-weight: 550;
  color: red;
  text-align: left;
  margin-bottom: 10px;
}

#containerr .process .process-content .process-content-active-item .process-content-active-item-content .des {
  font-size: 18px;
  font-weight: 500;
  color: #101010;
  text-align: left;
}

#containerr .process .process-content .process-content-active-item .process-content-active-item-content .process-content-active-item-title\=img {
  flex: 1;
}

#containerr .process .process-content .process-content-active-item .process-content-active-item-content .process-content-active-item-title\=img img {
  /* width: 100%; */
  height: 100%;
}

#containerr .process .process-content .process-content-active-item .process-content-active-item-content .process-content-active-item-active-num {
  font-size: 128px;
  font-weight: 500;
  color: #FFE2E6;
  text-align: right;
  margin-top: 20px;
  position: absolute;
  right: -10px;
  bottom: -10px;
}

#containerr .process .process-content .process-content-item {
  display: flex;
  flex-direction: column;
}

#containerr .process .process-content .process-content-item .process-content-item-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: white;
  background-image: linear-gradient(to top, #fdaf9e, #f8406b);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  top: -32px;
  left: 50%;

  transform: translateX(-50%);

}

#containerr .process .process-content .process-content-item .process-content-item-title {
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 550;
  color: #000;
  text-align: center;
}

#containerr .process .process-content .process-content-item {
  height: 100%;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #D3D3D3 !important;
  outline: none !important;
  box-shadow: none !important;
  transform: scale(1);

}

/* 鼠标悬停时拉伸效果 */
#containerr .process .process-content .process-content-item:hover {
  width: 355px;
  border: none !important;
  transform: scale(1.02);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 为原始内容添加缩小过渡效果 */
#containerr .process .process-content .process-content-item .process-content-item-num {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

#containerr .process .process-content .process-content-item .process-content-item-title,
#containerr .process .process-content .process-content-item .process-content-item-title\=img {
  flex: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

#containerr .process .process-content .process-content-item .process-content-item-title\=img img {
  height: 100%;
}

/* 鼠标悬停时缩小并隐藏原始内容 */
#containerr .process .process-content .process-content-item:hover .process-content-item-num {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) scale(0.8);
}

#containerr .process .process-content .process-content-item:hover .process-content-item-title,
#containerr .process .process-content .process-content-item:hover .process-content-item-title\=img {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

/* 悬停内容初始状态 - 隐藏并准备拉伸 */
#containerr .process .process-content .process-content-item .process-content-item-hover-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: white;
  border-radius: 10px;
  border: 0px solid #FE413F;
  width: 0;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.6s ease 0.2s, visibility 0.6s ease 0.2s, width 0.6s ease 0.2s, transform 0.6s ease 0.2s, border-width 0.6s ease 0.2s;
}

/* 鼠标悬停时显示详细内容 - 拉伸展开 */
#containerr .process .process-content .process-content-item:hover .process-content-item-hover-content {
  opacity: 1;
  visibility: visible;
  width: 100%;
  transform: scaleX(1);
  border-width: 1px;
}

#containerr .process .process-content .process-content-item .process-content-item-hover-content .hover-title {
  height: 56px;
  color: white;
  font-size: 24px;
  font-weight: 550;
  background-image: linear-gradient(to left, #fdaf9e, #f8406b);
  padding: 0 20px;
  display: flex;
  align-items: center;
  border-radius: 10px 10px 0 0;
}

#containerr .process .process-content .process-content-item .process-content-item-hover-content .hover-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 324px;
  background: white;
  border-radius: 0 0 10px 10px;
  position: relative;
}

#containerr .process .process-content .process-content-item .process-content-item-hover-content .hover-content .hover-time {
  font-size: 16px;
  font-weight: 550;
  color: red;
  text-align: left;
  margin-bottom: 10px;
}

#containerr .process .process-content .process-content-item .process-content-item-hover-content .hover-content .hover-description {
  font-size: 18px;
  font-weight: 500;
  color: #101010;
  text-align: left;
}

#containerr .process .process-content .process-content-item .process-content-item-hover-content .hover-content .hover-num {
  font-size: 128px;
  font-weight: 800;
  color: #FFE2E6;
  text-align: right;
  margin-top: 20px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/* 文字拉伸渐现动画 */
#containerr .process .process-content .process-content-item .process-content-item-hover-content .hover-title,
#containerr .process .process-content .process-content-item .process-content-item-hover-content .hover-content .hover-time,
#containerr .process .process-content .process-content-item .process-content-item-hover-content .hover-content .hover-description,
#containerr .process .process-content .process-content-item .process-content-item-hover-content .hover-content .hover-num {
  opacity: 0;
  transform: translateX(-20px) scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 悬停时文字拉伸渐现 */
#containerr .process .process-content .process-content-item:hover .process-content-item-hover-content .hover-title {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.4s;
}

#containerr .process .process-content .process-content-item:hover .process-content-item-hover-content .hover-content .hover-time {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.5s;
}

#containerr .process .process-content .process-content-item:hover .process-content-item-hover-content .hover-content .hover-description {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.6s;
}

#containerr .process .process-content .process-content-item:hover .process-content-item-hover-content .hover-content .hover-num {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.7s;
}

#containerr .selected-cases {
  padding-top: 120px;
}

#containerr .selected-cases .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .selected-cases .title,
#containerr .selected-cases .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .selected-cases .english_title {
  font-size: 20px;

}

#containerr .selected-cases .selected-cases-content {
  width: 1200px;
  margin: 0 auto;

}

#containerr .selected-cases .selected-cases-content .case-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.2s forwards;
}

#containerr .selected-cases .selected-cases-content .case-title {
  width: 164px;
  height: 64px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

#containerr .selected-cases .selected-cases-content .case-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(254, 31, 32, 0.1), transparent);
  transition: left 0.5s ease;
}

#containerr .selected-cases .selected-cases-content .case-title:hover {
  transform: scale(1.05);
  border-color: #fe1f20;
  box-shadow: 0 4px 12px rgba(254, 31, 32, 0.3);
  color: #fe1f20;
}

#containerr .selected-cases .selected-cases-content .case-title:hover::before {
  left: 100%;
}

#containerr .selected-cases .selected-cases-content .case-title-active {
  color: #fe1f20;
  border-color: #fe1f20;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(254, 31, 32, 0.4);
  background: linear-gradient(135deg, rgba(254, 31, 32, 0.05), rgba(254, 31, 32, 0.1));
  font-weight: 600;
}

#containerr .selected-cases .selected-cases-content .case-title {
  opacity: 0;
  transform: translateY(-20px) scale(1);
  animation: slideInTitle 0.5s ease-out forwards;
}

#containerr .selected-cases .selected-cases-content .case-title:nth-child(1) {
  animation-delay: 0.1s;
}

#containerr .selected-cases .selected-cases-content .case-title:nth-child(2) {
  animation-delay: 0.2s;
}

#containerr .selected-cases .selected-cases-content .case-title:nth-child(3) {
  animation-delay: 0.3s;
}

#containerr .selected-cases .selected-cases-content .case-title:nth-child(4) {
  animation-delay: 0.4s;
}

#containerr .selected-cases .selected-cases-content .case-title:nth-child(5) {
  animation-delay: 0.5s;
}

#containerr .selected-cases .selected-cases-content .case-title:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes slideInTitle {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#containerr .selected-cases .selected-cases-content .case-content-box {
  width: 100%;
}

#containerr .selected-cases .selected-cases-content .case-content-box .case-content-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

#containerr .selected-cases .selected-cases-content .case-content-box .case-content-item .content-item-lf {
  flex: 2;
}

#containerr .selected-cases .selected-cases-content .case-content-box .case-content-item .content-item-rg {
  flex: 1;
}

#containerr .selected-cases .selected-cases-content .case-content-box .case-content-item .content-item-lf .brand-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#containerr .selected-cases .selected-cases-content .case-content-box .case-content-item .content-item-lf .brand-data .data-item {}

#containerr .selected-cases .selected-cases-content .case-content-box .case-content-item .content-item-lf .brand-data .data-item .data-item-num {

  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

#containerr .selected-cases .selected-cases-content .case-content-box .case-content-item .content-item-lf .brand-data .data-item .data-item-des {
  font-size: 18px;
  font-weight: 500;
  color: #fc1a19;
  text-align: center;
}

#containerr .selfOperatedAccount {
  margin-top: 50px;
  background-image: url(../img/千万自营账号/banner.png);
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-align: center;
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#containerr .selfOperatedAccount-info {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  gap: 40px;
}

#containerr .selfOperatedAccount-info .service-right {

  color: #000;
}

#containerr .selfOperatedAccount-info .service-right .service-title {
  font-size: 24px;
  line-height: 45px;
}

#containerr .selfOperatedAccount-info .service-right .service-english {
  color: #626262;
  margin-bottom: 20px;
}

#containerr .selfOperatedAccount-info .service-right .introduction {
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
}

#containerr .selfOperatedAccount-info .service-right .introduction .redDot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  /* margin-right: 20px; */
}

#containerr .account-honor {
  padding-top: 120px;
}

#containerr .account-honor .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .account-honor .title,
#containerr .account-honor .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .account-honor .english_title {
  font-size: 20px;

}

#containerr .account-honor .account-honor-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


#containerr .promotion-selection {
  padding-top: 120px;
}

#containerr .promotion-selection .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .promotion-selection .title,
#containerr .promotion-selection .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .promotion-selection .english_title {
  font-size: 20px;

}

#containerr .promotion-selection .promotion-selection-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#containerr .promotion-selection .promotion-selection-content-des-title {
  font-size: 24px;
  font-weight: 700;
  color: #202938;
  margin-bottom: 20px;
}

#containerr .promotion-selection .promotion-selection-content-des-text {
  font-size: 18px;
  font-weight: 500;
  color: #202737;
  line-height: 38px;
}

#containerr .promotion-selection .promotion-selection-content-des-text .red {
  color: #FE0000;
  font-size: 24px;
  text-decoration: underline;
}

#containerr .team-banner {
  margin-top: 50px;
  background-image: url(../img/关于我们/banner.png);
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-align: center;
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#containerr .team-info {
  padding-top: 50px;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

#containerr .team-info-lf-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

#containerr .team-info-lf-text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 32px;
  margin-bottom: 20px;
}

#containerr .team-info-lf-text-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #000;
}

#containerr .team-info-lf-text-list .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 40%,
      /* 中间透明 */
      #ff4b69 60%,
      /* 深红色环边 */
      #ffa3a3 100%);
  margin-right: 10px;
}

#containerr .team-info-data {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  border-top: 2px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9;
  padding: 40px 0;
  gap: 40px;
}

#containerr .team-info-data-item {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;


}

#containerr .team-info-data-item-title {
  font-size: 22px;
  font-weight: 700;
  color: red
}

#containerr .team-info-data-item-title .big {
  font-size: 36px;
}

#containerr .team-info-data-item-text {
  font-size: 18px;
  font-weight: 500;
  /* color: #000; */
}

#containerr .our-social-media {
  margin-top: 50px;
}

#containerr .our-social-media .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .our-social-media .title,
#containerr .our-social-media .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .our-social-media .english_title {
  font-size: 20px;

}

#containerr .our-social-media_box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

#containerr .our-social-media .swiper-pagination {
  position: static;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

#containerr .our-social-media .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0% !important;
  /* margin: 0 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 1;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; */
}
#containerr .our-social-media .our-social-media-pagination .swiper-pagination-bullet{
  border-bottom: 4px solid white !important;
}
#containerr .our-social-media .our-social-media-pagination .swiper-pagination-bullet-active {
  /* border: none !important; */
  outline: none !important;
  box-shadow: none !important;
  border-bottom: 4px solid #FC2A58 !important;
    /* box-shadow: inset 0 -4px 0 #FC2A58; */
}

#containerr .our-social-media .swiper-pagination .swiper-pagination-bullet img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

#containerr .our-social-media_box-item  .swiper-pagination-bullet-active{
  /* width: 200px; */
  /* height: 200px; */
  /* background-color: #000; */
  border:none !important;
}


#containerr .team-photo {
  padding-top: 50px;
}

#containerr .team-photo .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#containerr .team-photo .title,
#containerr .team-photo .english_title {
  text-align: center;
  color: #000;
  font-size: 32px;
  font-weight: 700;
}

#containerr .team-photo .english_title {
  font-size: 20px;

}

#containerr .case-info-box {
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  background: url(../img/案例精选/beijing_v1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  /* 提示：background-color 不支持 linear-gradient，应该使用 background 或 background-image */
  /* background: linear-gradient(
    135deg,
    #0000FF 0%,   
    #007FFF 30%,  
    #00AAFF 60%, 
    #00FFFF 85%,  
    #FFFFFF 100%  
  ); */
}

#containerr .case-info-box .case-info-box-content {
  width: 1200px;
  margin: 0 auto;
  padding-top: 20px;

}

.back {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.back-icon {
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FD0100;
}
.back-icon svg{
  background-color: #fff; 
  animation: none !important; 
  font-size: 25px !important;
  border-radius: 100% !important;
}
.case-profile {
  display: flex;
  align-items: center;
  gap: 20PX;
  margin: 20px 0;
  /* justify-content: space-between; */
}

.case-profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.case-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-profile .case-profile-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.case-profile .case-profile-desc {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.case-profile-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 60px 0px;
  margin: 0px 100px;
  background-color: #fff;
  border-radius: 40px;
  margin-bottom: 50px;

}

.case-profile-data .case-profile-data-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.case-profile-detail {
  margin-top: 100px;
  display: flex;
  gap: 100px;
  align-items: center;
}

.case-profile-detail .detail-lf {
  flex: 3;
}

.case-profile-detail .detail-rt {
  flex: 2;
  height: 636px;
  /* height: 100%;
  display: flex;
  align-items: center; */
  /* justify-content: center; */
}

.detail-lf-item {
  margin-bottom: 40px;
}

.detail-lf-item .title {
  color: #FE0000;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-lf-item .title span:first-child {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 40%,
      /* 中间透明 */
      #ff4b69 60%,
      /* 深红色环边 */
      #ffa3a3 100%);
  margin-right: 10px;
}

.detail-lf-item .content {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 32px;
}
.detail-rt{
  height: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
.detail-rt img {
  width: 100%;
  height: 636px;
  object-fit: cover;
  border-radius: 80px 0px 80px 0px;
}

/* Popover 样式 */
.popover {
  position: absolute;
  z-index: 1000;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
  min-width: 200px;
  max-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
}

.popover.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popover::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}

.popover::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #e0e0e0;
  z-index: -1;
}

.popover-header {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.popover-body {
  color: #666;
}

.popover-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.popover-close:hover {
  background: #f0f0f0;
  color: #666;
}

/* Popover 位置变体 */
.popover.top::before {
  bottom: -8px;
  border-top: 8px solid white;
  border-bottom: none;
}

.popover.top::after {
  bottom: -9px;
  border-top: 9px solid #e0e0e0;
  border-bottom: none;
}

.popover.bottom::before {
  top: -8px;
  bottom: auto;
  border-bottom: 8px solid white;
  border-top: none;
}

.popover.bottom::after {
  top: -9px;
  bottom: auto;
  border-bottom: 9px solid #e0e0e0;
  border-top: none;
}

.popover.left::before {
  right: -8px;
  left: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-left: 8px solid white;
  border-right: none;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.popover.left::after {
  right: -9px;
  left: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-left: 9px solid #e0e0e0;
  border-right: none;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.popover.right::before {
  left: -8px;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-right: 8px solid white;
  border-left: none;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.popover.right::after {
  left: -9px;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-right: 9px solid #e0e0e0;
  border-left: none;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.wholeCasePlanning-banner {

  margin-top: 50px;
  background-image: url(../img/品牌全案策划/1.png);
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-align: center;
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wholeCasePlanning {
  margin-top: 80px;
}

.wholeCasePlanning .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.wholeCasePlanning .title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.wholeCasePlanning .english_title {
  font-size: 20px;
  font-weight: 400;
  font-weight: 700;
  color: #000;
}

.wholeCasePlanning .wholeCasePlanning-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.wholeCasePlanning .wholeCasePlanning-content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 80px; */
}

.wholeCasePlanning .wholeCasePlanning-content-right-item-title {
  font-size: 24px;
  font-weight: 700;
  color: #FF0000;
  margin-bottom: 20px;
}

.wholeCasePlanning .wholeCasePlanning-content-right-item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wholeCasePlanning .wholeCasePlanning-content-right-item-text .description-item {
  display: flex;
  align-items: center;
}

.wholeCasePlanning .wholeCasePlanning-content-right-item-text .description-item .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle,
      transparent 40%,
      /* 中间透明 */
      #ff4b69 60%,
      /* 深红色环边 */
      #ffa3a3 100%);
  /* 外部淡粉色 */
  margin-right: 10px;
}

.marketingStrategy {
  padding-top: 120px;
}

.marketingStrategy .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.marketingStrategy .title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.marketingStrategy .english_title {
  font-size: 20px;
  font-weight: 400;
  font-weight: 700;
  color: #000;
}

.marketingStrategy .marketingStrategy-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.marketingStrategy .marketingStrategy-content-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marketingStrategy .marketingStrategy-content-left .marketingStrategy-content-left-item {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

.marketingStrategy .marketingStrategy-content-left .marketingStrategy-content-left-item-title {
  font-size: 24px;
  font-weight: 700;
  color: #FF0000;
  margin-bottom: 20px;
}

.marketingStrategy .marketingStrategy-content-left .marketingStrategy-content-left-item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.marketingStrategy .marketingStrategy-content-right {
  flex: 1;
}

.creativeContentMarketing {
  padding-top: 80px;
}

.creativeContentMarketing .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.creativeContentMarketing .title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.creativeContentMarketing .english_title {
  font-size: 20px;
  font-weight: 400;
  font-weight: 700;
  color: #000;
}

.creativeContentMarketing .creativeContentMarketing-content {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;

}

.creativeContentMarketing .creativeContentMarketing-content-top {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 80px; */
  background-color: #FFF1F1;
  border-radius: 10px;
}

.creativeContentMarketing .creativeContentMarketing-content-top-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creativeContentMarketing .creativeContentMarketing-content-top-right {
  flex: 1;
}

.creativeContentMarketing .creativeContentMarketing-content-top-left-item {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  margin-left: 40px;
  gap: 10px;
}

.creativeContentMarketing .creativeContentMarketing-content-top-left-item .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle,
      transparent 40%,
      /* 中间透明 */
      #ff4b69 60%,
      /* 深红色环边 */
      #ffa3a3 100%);
  /* 外部淡粉色 */
  margin-right: 10px;
}

#map-tip {
  text-align: left;
  font: 14px/16px Trebuchet MS, Helvetica, Arial, sans-serif;
  display: none;
  padding: 3px;
  border: 1px solid #EBECED;
  color: #edeef0;
  z-index: 1000;
  float: left;
  position: absolute;
  background: rgb(73, 73, 73);
  background: -moz-linear-gradient(top, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(73, 73, 73, 1)), color-stop(100%, rgba(101, 101, 101, 1)));
  background: -webkit-linear-gradient(top, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%);
  background: -o-linear-gradient(top, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%);
  background: -ms-linear-gradient(top, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%);
  background: linear-gradient(to bottom, rgba(73, 73, 73, 1) 0%, rgba(101, 101, 101, 1) 100%);
  word-break: keep-all;
  white-space: nowrap;
}

#map-tip p {
  margin: 0 !important;
}

#map-tip img {
  float: left;
  padding: 3px;
}

/* 滚动动画样式 */
@keyframes slideUpFromBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 初始状态 - 隐藏元素 */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

/* 特殊处理 banner-content 的初始状态 - 保持居中但向下偏移 */
#containerr .banner .banner-content.scroll-animate {
    left: 50% !important;
    transform: translate(-50%, calc(-50% + 60px)) !important;
}

/* 动画激活状态 */
.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: slideUpFromBottom 0.8s ease-out forwards;
}

/* 特殊处理 banner-content 的居中定位 */
#containerr .banner .banner-content.scroll-animate.animate-in {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* 为不同元素添加延迟效果 */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate:nth-child(5) { transition-delay: 0.5s; }

/* 针对特定元素的动画优化 */
.banner-content.scroll-animate,
.operation.scroll-animate,
#case-showcase.scroll-animate,
#our-advantage.scroll-animate,
.team-size.scroll-animate,
.employees.scroll-animate,
.cooperative.scroll-animate,
.overseasInternetCelebrityMarketing.scroll-animate,
.overseasInternetCelebrityMarketing-info.scroll-animate,
.selfOperatedAccount.scroll-animate,
.selfOperatedAccount-info.scroll-animate,
.account-honor.scroll-animate,
.promotion-selection.scroll-animate,
.wholeCasePlanning-banner.scroll-animate,
.wholeCasePlanning.scroll-animate,
.marketingStrategy.scroll-animate,
.creativeContentMarketing.scroll-animate,
.core-services-main.scroll-animate,
.core-services-main-bottom.scroll-animate {
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 流程步骤从左到右依次显示动画 */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px);
        visibility: hidden;
    }
    1% {
        visibility: visible;
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

/* 流程容器初始状态 */
.process-content {
    position: relative;
}

/* 流程步骤初始完全隐藏状态 */
.process-content .process-content-item {
    opacity: 0;
    transform: translateX(-80px);
    visibility: hidden;
}

/* 流程步骤动画激活状态 - 使用animation实现依次显示 */
.process-content.animate-process .process-content-item {
    animation: slideInFromLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 为每个步骤设置不同的动画延迟 */
.process-content.animate-process .process-content-item:nth-child(1) {
    animation-delay: 0.1s;
}

.process-content.animate-process .process-content-item:nth-child(2) {
    animation-delay: 0.3s;
}

.process-content.animate-process .process-content-item:nth-child(3) {
    animation-delay: 0.5s;
}

.process-content.animate-process .process-content-item:nth-child(4) {
    animation-delay: 0.7s;
}

.process-content.animate-process .process-content-item:nth-child(5) {
    animation-delay: 0.9s;
}

.process-content.animate-process .process-content-item:nth-child(6) {
    animation-delay: 1.1s;
}