/*----------------------------------------------------*/
/* banner */
/*----------------------------------------------------*/
.cross-border-banner {
  background-image: url("../img/CrossBorderTrade/banner.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  height: 750px;
  position: relative;
}

.cross-border-banner .container {
  position: relative;
  height: 100%;
}

.cross-border-banner .inner {
  width: 100%;
  z-index: 1;
}

.cross-border-banner .slide-content {
  position: absolute;
  top: 35%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 2;
  padding-bottom: 40px;
}

.cross-border-banner .banner-title {
  font-size: 3.9rem;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
  padding: 0px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cross-border-banner .banner-subtitle {
  font-size: 1.5rem;
  text-align: right;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-btn {
  text-align: right;
}

.cross-border-banner .slide-btn a {
  display: inline-block;
  background: #7ae8ac;
  color: #1a1a1a;
  padding: 5px 50px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cross-border-banner .slide-btn a:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

/* 左下角数据框 */
.banner-data-boxes {
  position: absolute;
  bottom: 120px;
  left: -100px;
  z-index: 3;
  display: flex;
  gap: 20px;
}

.data-box {
  background: rgba(122, 232, 172, 0.8);
  padding: 14px 45px;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 89, 196, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.data-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 89, 196, 0.4);
}

.data-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.data-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* 右下角图片 */
.banner-bottom-image {
  position: absolute;
  bottom: 160px;
  right: 5px;
  z-index: 3;
}

.banner-bottom-image img {
  max-width: 245px;
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.banner-bottom-image img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* 右下角行业图标 */
.banner-industry-icons {
  position: absolute;
  bottom: 80px;
  right: 0px;
  z-index: 3;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.industry-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-icon img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.industry-icon:hover img {
  transform: rotate(360deg);
}

.industry-icon span {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 笔记本端样式 (1024px - 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .cross-border-banner {
    height: 700px;
    background-position: center center;
  }

  .cross-border-banner .banner-title {
    font-size: 3.2rem;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .cross-border-banner .banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 28px;
    line-height: 1.45;
  }

  .cross-border-banner .slide-content {
    top: 38%;
    right: 30px;
    transform: translateY(-50%);
    max-width: 55%;
  }

  .cross-border-banner .slide-btn a {
    padding: 10px 45px;
    font-size: 1.05rem;
  }

  /* 左下角数据框 */
  .banner-data-boxes {
    bottom: 110px;
    left: 0px;
    gap: 18px;
  }

  .data-box {
    padding: 13px 40px;
    border-radius: 11px;
  }

  .data-number {
    font-size: 2.2rem;
    margin-bottom: 7px;
  }

  .data-label {
    font-size: 0.95rem;
  }

  /* 右下角图片 */
  .banner-bottom-image {
    bottom: 155px;
    right: 9px;
  }

  .banner-bottom-image img {
    max-width: 220px;
  }

  /* 右下角行业图标 */
  .banner-industry-icons {
    bottom: 75px;
    right: 0px;
    gap: 8px;
  }

  /* .industry-icon img {
    width: 48px;
    margin-bottom: 9px;
  } */

  .industry-icon span {
    font-size: 0.85rem;
  }
}
/* 平板端样式 (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .cross-border-banner {
    height: 600px;
    background-position: center center;
  }

  .cross-border-banner .banner-title {
    font-size: 2.8rem;
    line-height: 1.3;
  }

  .cross-border-banner .banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .cross-border-banner .slide-content {
    top: 35%;
    right: 0px;
  }

  .cross-border-banner .slide-btn a {
    padding: 8px 40px;
    font-size: 1rem;
  }

  /* 左下角数据框 */
  .banner-data-boxes {
    bottom: 100px;
    left: 0px;
    gap: 15px;
  }

  .data-box {
    padding: 12px 35px;
    border-radius: 10px;
  }

  .data-number {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .data-label {
    font-size: 0.9rem;
  }

  /* 右下角图片 */
  .banner-bottom-image {
    bottom: 135px;
    right: 10px;
  }

  .banner-bottom-image img {
    max-width: 200px;
  }

  /* 右下角行业图标 */
  .banner-industry-icons {
    bottom: 65px;
    right: 0px;
    gap: 6px;
  }

  .industry-icon img {
    width: 45px;
    margin-bottom: 4px;
  }

  .industry-icon span {
    font-size: 0.8rem;
  }
}

/* Surface Duo 双屏设备 (540px) */
@media (max-width: 767px) {
  .cross-border-banner {
    height: 600px;
    background-position: center center;
  }

  .cross-border-banner .banner-title {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .cross-border-banner .banner-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .cross-border-banner .slide-content {
    top: 35%;
    right: 0px;
    transform: translateY(-50%);
    max-width: 100%;
    padding: 0 20px;
  }

  .cross-border-banner .slide-btn a {
    padding: 8px 35px;
    font-size: 0.95rem;
  }

  /* 左下角数据框 */
  .banner-data-boxes {
    bottom: 80px;
    left: 15px;
    gap: 12px;
  }

  .data-box {
    padding: 10px 30px;
    border-radius: 9px;
  }

  .data-number {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .data-label {
    font-size: 0.7rem;
  }

  /* 右下角图片 */
  .banner-bottom-image {
    bottom: 135px;
    right: 13px;
  }

  .banner-bottom-image img {
    max-width: 180px;
  }

  /* 右下角行业图标 */
  .banner-industry-icons {
    bottom: 75px;
    right: 5px;
    gap: 6px;
  }

  .industry-icon img {
    width: 38px;
    margin-bottom: 0px;
  }

  .industry-icon span {
    font-size: 0.7rem;
  }
}

/* 特小屏幕设备 */
@media (max-width: 480px) {
  .banner-bottom-image img {
    max-width: 150px;
  }
  /* .banner-bottom-image {
    position: absolute;
    bottom: 130px;
  } */

  .cross-border-banner {
    height: 500px;
    background-position: center;
    padding: 15px 10px;
  }

  .cross-border-banner .banner-title {
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: right;
  }

  .cross-border-banner .banner-subtitle {
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-align: right;
    line-height: 1.3;
  }

  .cross-border-banner .slide-content {
    top: 30%;
    right: 0px;
    left: auto;
    transform: translateY(-50%);
    text-align: right;
    padding: 10px;
    max-width: calc(100% - 30px);
    width: auto;
  }

  .banner-data-boxes {
    left: 0px;
    bottom: 100px;
    flex-direction: row;
    gap: 6px;
  }

  /* .banner-industry-icons {
    right: 0px;
    bottom: 80px;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
  } */

  .data-box {
    padding: 6px 12px;
    border-radius: 4px;
  }

  .data-number {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .data-label {
    font-size: 0.8rem;
  }

  /* .industry-icon img {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
  } */

  .industry-icon span {
    font-size: 0.6rem;
  }
}

@media (max-width: 375px) {
  .cross-border-banner .banner-title {
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: right;
  }

  .banner-bottom-image img {
    max-width: 140px;
  }

  .banner-bottom-image {
    bottom: 135px;
    right: 12px;
  }

  .cross-border-banner .banner-subtitle {
    font-size: 0.7rem;
    margin-bottom: 15px;
    text-align: right;
    line-height: 1.3;
  }

  .cross-border-banner .slide-content {
    top: 30%;
    right: 0px;
    left: auto;
    transform: translateY(-50%);
    text-align: right;
    padding: 10px;
    max-width: calc(100% - 30px);
    width: auto;
  }

  .banner-industry-icons {
    bottom: 86px;
    right: 5px;
    gap: 0px;
  }

  .data-box {
    padding: 6px 12px;
    border-radius: 4px;
  }

  .data-number {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .data-label {
    font-size: 0.8rem;
  }

  .industry-icon img {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
  }

  .industry-icon span {
    font-size: 0.6rem;
  }
}

/* Galaxy Z Fold 5 折叠屏 (344px) */
@media (max-width: 344px) {
  .cross-border-banner {
    height: 500px;
    background-position: center center;
  }

  .cross-border-banner .banner-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .cross-border-banner .banner-subtitle {
    font-size: 0.7rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .cross-border-banner .slide-content {
    top: 30%;
    right: 0px;
    transform: translateY(-50%);
    max-width: 100%;
    padding: 0 15px;
  }

  .cross-border-banner .slide-btn a {
    padding: 6px 25px;
    font-size: 0.85rem;
  }

  /* 左下角数据框 */
  .banner-data-boxes {
    bottom: 100px;
    left: 0px;
    gap: 8px;
  }

  .data-box {
    padding: 8px 10px;
  }

  .data-number {
    font-size: 0.9rem;
    margin-bottom: 0px;
  }

  .data-label {
    font-size: 0.7rem;
  }

  /* 右下角图片 */
  .banner-bottom-image {
    bottom: 120px;
    right: 5px;
  }

  .banner-bottom-image img {
    max-width: 140px;
  }

  /* 右下角行业图标 */
  .banner-industry-icons {
    bottom: 58px;
    right: 0px;
    gap: 0px;
  }

  .industry-icon {
    margin-bottom: 8px;
  }

  .industry-icon img {
    width: 30px;
    margin-bottom: 4px;
  }

  .industry-icon span {
    font-size: 0.6rem;
  }
}

/*---------------------------------------------------- */
/* 跨境外贸+产业带主区域 */
/*----------------------------------------------------*/
.cross-border-trade-section {
  background-color: #f2f2f2;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cross-border-trade-container {
  position: relative;
  z-index: 2;
}

/* 左侧地图区域 */
.cross-border-map-section {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cross-border-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.cross-border-map-section:hover .cross-border-map-img {
  transform: scale(1.02);
}

/* 右侧内容区域 */
.cross-border-content-section {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
}

.cross-border-content-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 50px;
}

.cross-border-content-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #464545;
  text-align: justify;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .cross-border-content-section {
    padding-left: 40px;
  }

  .cross-border-content-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .cross-border-trade-section {
    padding: 60px 0;
  }

  .cross-border-map-section {
    height: 500px;
    margin-bottom: 40px;
  }

  .cross-border-content-section {
    padding-left: 0;
    height: auto;
  }

  .cross-border-content-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .cross-border-trade-section {
    padding: 40px 0;
  }

  .cross-border-map-section {
    height: 400px;
    border-radius: 15px;
  }

  .cross-border-map-overlay {
    padding: 20px;
  }

  .cross-border-map-title {
    font-size: 2rem;
  }

  .cross-border-map-subtitle {
    font-size: 1rem;
  }

  .cross-border-content-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .cross-border-content-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .cross-border-map-section {
    height: 350px;
  }

  .cross-border-map-title {
    font-size: 1.6rem;
  }

  .cross-border-content-title {
    font-size: 1.6rem;
  }
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cross-border-map-section {
  animation: fadeInLeft 0.8s ease-out;
}

.cross-border-content-section {
  animation: fadeInRight 0.8s ease-out;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .cross-border-content-section {
    padding-left: 30px;
  }

  .cross-border-content-title {
    font-size: 1.6rem;
  }

  .cross-border-content-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 991px) {
  .cross-border-trade-section {
    padding: 60px 0;
  }

  .cross-border-map-section {
    height: 400px;
    margin-bottom: 30px;
  }

  .cross-border-content-section {
    padding-left: 0;
    height: auto;
    align-items: center;
    text-align: center;
  }

  .cross-border-content-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .cross-border-content-text {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .cross-border-trade-section {
    padding: 40px 0;
  }

  .cross-border-map-section {
    height: 300px;
    margin-bottom: 25px;
  }

  .cross-border-content-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .cross-border-content-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .cross-border-trade-section {
    padding: 30px 0;
  }

  .cross-border-map-section {
    height: 250px;
    margin-bottom: 20px;
  }

  .cross-border-content-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .cross-border-content-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
  .cross-border-trade-container {
    padding: 0 15px;
  }

  .cross-border-map-section {
    height: 200px;
    margin-bottom: 15px;
  }

  .cross-border-content-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .cross-border-content-text {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/*---------------------------------------------------- */
/* 展示一张大图 */
/*----------------------------------------------------*/
.big-image-section {
  background-image: url("../img/CrossBorderTrade/big-image.webp") !important;
}

/*---------------------------------------------------- */
/* 数字对应的图片轮播区域 */
/*----------------------------------------------------*/
.creative-services {
  padding: 100px 0px;
}

/* .creative-services .container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 20px;
 } */

.services-menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.creative-services .service-item {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.creative-services .service-item.active .service-info .service-desc,
.creative-services .service-item.active .service-info .service-name {
  color: #1a1a1a;
}

.creative-services .progress-indicator {
  height: 64px;
  position: relative;
  width: 64px;
  flex-shrink: 0;
}

.creative-services .progress-ring {
  background: conic-gradient(#0059c4 0, #0059c4 0, #eee 0, #eee 100%);
  border-radius: 50%;
  height: 64px;
  -webkit-mask: radial-gradient(transparent 25px, #000 26px);
  mask: radial-gradient(transparent 25px, #000 26px);
  position: relative;
  transition: background 0.05s linear;
  width: 64px;
}

.creative-services .service-number {
  font-size: 34px;
  font-weight: 600;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #464545;
}

.creative-services .service-info {
  margin-left: 30px;
  flex: 1;
}

.creative-services .service-name {
  color: #b2b2b2;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 32px;
  padding: 5px 0 18px;
}

.creative-services .service-desc {
  color: #b2b2b2;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 26px;
  max-width: 275px;
}

.creative-services .services-right {
  position: relative;
  height: 500px;
  background-image: url("../img/CrossBorderTrade/carousel-bag.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.creative-services .services-right .image-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creative-services .services-right .image-container img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.creative-services .services-right .image-container img:hover {
  transform: scale(1.05);
}

.creative-services .services-right .image-container .active {
  display: block;
}

/* 响应式设计 */

/* 大屏幕 (1200px-1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .creative-services {
    padding: 6rem 0;
  }

  .creative-services .service-name {
    font-size: 1.8rem;
  }

  .creative-services .service-desc {
    font-size: 0.95rem;
  }

  .creative-services .services-right {
    height: 32rem;
  }
}

/* 中等屏幕 (平板端 992px-1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .creative-services {
    padding: 5rem 0;
  }

  .creative-services .col-xl-5,
  .creative-services .col-xl-7 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .creative-services .row {
    flex-direction: column;
    gap: 2rem;
  }

  .creative-services .services-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 0;
    padding: 0 1rem;
  }

  .creative-services .service-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 1rem;
    transition: all 0.3s ease;
    min-height: 14rem;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    padding: 1.5rem 1rem;
  }

  .creative-services .service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0059c4, #00a8cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .creative-services .progress-indicator {
    height: 4.5rem;
    width: 4.5rem;
    flex-shrink: 0;
    margin-bottom: 1.25rem;
  }

  .creative-services .progress-ring {
    height: 4.5rem;
    width: 4.5rem;
    -webkit-mask: radial-gradient(transparent 1.75rem, #000 1.8rem);
    mask: radial-gradient(transparent 1.75rem, #000 1.8rem);
  }

  .creative-services .service-number {
    font-size: 2rem;
    font-weight: 700;
  }

  .creative-services .service-info {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
  }

  .creative-services .service-name {
    font-size: 1.25rem;
    padding: 0.625rem 0 0.9375rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
  }

  .creative-services .service-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    max-width: 100%;
    color: #5a6c7d;
    font-weight: 400;
  }

  .creative-services .services-right {
    width: 100%;
    margin-top: 0;
    position: relative;
    overflow: hidden;
  }

  .creative-services .services-right .image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .creative-services .services-right .image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
  }

  .creative-services .services-right .image-container img:hover {
    transform: scale(1.05);
  }
}

/* 小屏幕 (手机端 768px-991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .creative-services {
    padding: 3rem 0;
  }

  .creative-services .col-xl-5,
  .creative-services .col-xl-7 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .creative-services .row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .creative-services .services-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
    padding: 0 0.5rem;
  }

  .creative-services .service-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    min-height: 12rem;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    padding: 1.25rem 0.75rem;
  }

  .creative-services .progress-indicator {
    height: 3.5rem;
    width: 3.5rem;
    flex-shrink: 0;
    margin-bottom: 1rem;
  }

  .creative-services .progress-ring {
    height: 3.5rem;
    width: 3.5rem;
    -webkit-mask: radial-gradient(transparent 1.375rem, #000 1.4rem);
    mask: radial-gradient(transparent 1.375rem, #000 1.4rem);
  }

  .creative-services .service-number {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .creative-services .service-info {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
  }

  .creative-services .service-name {
    font-size: 1.125rem;
    padding: 0.5rem 0 0.75rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
  }

  .creative-services .service-desc {
    font-size: 0.875rem;
    line-height: 1.4;
    max-width: 100%;
    color: #5a6c7d;
    font-weight: 400;
  }

  .creative-services .services-right {
    width: 100%;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    height: 550px;
  }

  .creative-services .services-right .image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .creative-services .services-right .image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
  }

  .creative-services .services-right .image-container img:hover {
    transform: scale(1.05);
  }
}

/* 小屏幕 (手机端 320px-767px) */
@media (max-width: 767px) {
  .creative-services {
    padding: 20px 15px;
  }

  .creative-services .container {
    padding: 0 1rem;
  }

  .creative-services .row {
    flex-direction: column;
    align-items: center;
  }

  .creative-services .col-xl-5,
  .creative-services .col-xl-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .creative-services .services-right {
    margin-top: 1.875rem;
  }

  .creative-services .services-menu {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
  }

  .creative-services .service-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0.9375rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    align-items: center;
    width: 100%;
  }

  .creative-services .service-item:hover {
    background: #e9ecef;
  }

  .creative-services .service-item.active {
    background: #e6f2ff;
  }

  .creative-services .progress-indicator {
    height: 3.125rem;
    width: 3.125rem;
    flex-shrink: 0;
  }

  .creative-services .progress-ring {
    height: 3.125rem;
    width: 3.125rem;
    -webkit-mask: radial-gradient(transparent 1.25rem, #000 1.3rem);
    mask: radial-gradient(transparent 1.25rem, #000 1.3rem);
  }

  .creative-services .service-number {
    font-size: 1.5rem;
  }

  .creative-services .service-info {
    margin-left: 1.25rem;
    flex: 1;
  }

  .creative-services .service-name {
    font-size: 1.125rem;
    line-height: 1.5;
    padding: 0.3125rem 0 0.5rem;
  }

  .creative-services .service-desc {
    font-size: 0.8125rem;
    line-height: 1.25;
    max-width: 100%;
  }

  .creative-services .services-right {
    width: 100%;
    margin-top: 1.875rem;
    position: relative;
    overflow: hidden;
    height: 300px;
  }

  .creative-services .services-right .image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .creative-services .services-right .image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
  }

  .creative-services .services-right .image-container img:hover {
    transform: scale(1.05);
  }

  .creative-services .services-right .image-container .active {
    display: flex !important;
  }
}

/* 大手机 (480px-767px) */
@media (max-width: 767px) and (min-width: 480px) {
  .creative-services .services-right {
    height: 400px;
  }

  .creative-services .service-item {
    width: 100%;
    padding: 1.25rem 0.9375rem;
  }

  .creative-services .progress-indicator {
    height: 3.4375rem;
    width: 3.4375rem;
  }

  .creative-services .progress-ring {
    height: 3.4375rem;
    width: 3.4375rem;
    -webkit-mask: radial-gradient(transparent 1.375rem, #000 1.4375rem);
    mask: radial-gradient(transparent 1.375rem, #000 1.4375rem);
  }

  .creative-services .service-number {
    font-size: 1.625rem;
  }
}

/*----------------------------------------------------*/
/* 项目案例区域样式 */
/*----------------------------------------------------*/
.project-cases-section {
  padding: 80px 0;
  background-color: #fff;
}

.project-cases-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 60px;
  position: relative;
}

.project-case-item {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: all 0.3s ease;
  height: 100%;
}

.project-case-item:hover .project-case-image {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-case-image {
  position: relative;
  overflow: hidden;
  height: 300px;
  padding: 8px;
  transition: all 0.3s ease;
}

.project-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.project-case-image:hover img {
  transform: scale(1.1);
}

.project-case-title {
  padding: 5px 0;
  text-align: center;
  background: transparent;
}

.project-case-title h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #131313;
  margin: 0;
  transition: color 0.3s ease;
}

.project-case-item:hover .project-case-title h4 {
  color: #0059c4;
}

/* 中等屏幕 (平板端 992px-1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .project-case-image {
    height: auto;
  }

  .project-cases-title {
    font-size: 2.2rem;
  }

  .project-case-title h4 {
    font-size: 1.2rem;
  }
}
/* 平板端 (768px-991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .project-cases-section {
    padding: 70px 0;
  }

  .project-cases-title {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }

  .project-case-title {
    padding: 12px 0;
  }

  .project-case-image {
    height: auto;
  }

  .project-case-title h4 {
    font-size: 1.125rem;
  }
}

/* 手机端 (576px-767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .project-cases-section {
    padding: 60px 0;
  }

  .project-cases-title {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  .project-case-image {
    height: auto;
  }

  .project-case-title {
    padding: 15px 0;
  }

  .project-case-title h4 {
    font-size: 1rem;
  }
}

/* 小手机端 (320px-575px) */
@media (max-width: 575px) {
  .project-cases-section {
    padding: 50px 0;
  }

  .project-cases-title {
    font-size: 1.2rem;
    margin-bottom: 35px;
  }

  .project-case-image {
    height: auto;
  }

  .project-case-title {
    padding: 10px 0;
  }

  .project-case-title h4 {
    font-size: 0.9rem;
  }
}

/*----------------------------------------------------*/
/* 合作伙伴 */
/*----------------------------------------------------*/
.partners-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.partners-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/CrossBorderTrade/cooperation-bag.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.partners-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.partners-section .container {
  position: relative;
  z-index: 3;
}

.partners-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 60px;
  position: relative;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

/* 第一排：4个logo */
.partners-grid .partner-item:nth-child(1),
.partners-grid .partner-item:nth-child(2),
.partners-grid .partner-item:nth-child(3),
.partners-grid .partner-item:nth-child(4) {
  grid-column: span 1;
}

/* 第二排：3个logo，居中显示 */
.partners-grid .partner-item:nth-child(5),
.partners-grid .partner-item:nth-child(6),
.partners-grid .partner-item:nth-child(7) {
  grid-column: span 1;
}

/* 第三排：2个logo，居中显示 */
.partners-grid .partner-item:nth-child(8),
.partners-grid .partner-item:nth-child(9) {
  grid-column: span 1;
}

/* 调整第二排和第三排的居中 */
.partners-grid .partner-item:nth-child(5) {
  grid-column: 1;
}

.partners-grid .partner-item:nth-child(6) {
  grid-column: 2;
}

.partners-grid .partner-item:nth-child(7) {
  grid-column: 3;
}

.partners-grid .partner-item:nth-child(8) {
  grid-column: 2;
}

.partners-grid .partner-item:nth-child(9) {
  grid-column: 3;
}

.partner-item {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-item:hover .partner-logo {
  transform: scale(1.05);
}
