/* 英雄轮播模块 */
.yzj-hero-banner-carousel * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.yzj-hero-banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  margin-top: 60px;
}

.yzj-hero-carousel-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.yzj-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.yzj-hero-slide.yzj-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.yzj-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.yzj-hero-content {
  flex: 0 0 500px;
}

.yzj-hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 20px 0;
}

.yzj-hero-title-highlight {
  color: #2968ED;
}

.yzj-hero-subtitle {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin: 0 0 36px 0;
}

.yzj-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  padding: 28px 0;
  border-top: 1px solid rgba(41, 104, 237, 0.1);
  border-bottom: 1px solid rgba(41, 104, 237, 0.1);
}

.yzj-stat-item {
  text-align: left;
}

.yzj-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #2968ED;
  margin-bottom: 8px;
  line-height: 1.2;
}

.yzj-stat-label {
  font-size: 13px;
  color: #888888;
  line-height: 1.4;
}

.yzj-hero-cta {
  display: flex;
  gap: 14px;
}

.yzj-btn-primary {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #2968ED 0%, #1e54c7 100%);
  color: #FFFFFF;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.yzj-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.yzj-btn-primary:hover::before {
  left: 100%;
}

.yzj-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 104, 237, 0.3);
}

.yzj-btn-secondary {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  background: #F5F8FF;
  color: #2968ED;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yzj-btn-secondary:hover {
  background: #E8EFFF;
  transform: translateY(-2px);
}

.yzj-hero-visual {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yzj-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.yzj-carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.yzj-indicator-bar {
  width: 50px;
  height: 4px;
  background: rgba(41, 104, 237, 0.2);
  border-radius: 2px;
  cursor: pointer;
}

.yzj-indicator-bar.yzj-active {
  background: #2968ED;
}

/* 英雄轮播模块 - 响应式样式 */
/* 大屏优化 > 1440px */
@media screen and (min-width: 1441px) {
  .yzj-hero-banner-carousel {
    margin-top: 70px;
  }

  .yzj-hero-carousel-wrapper {
    min-height: 600px;
  }

  .yzj-hero-slide {
    padding: 80px 0 100px;
  }

  .yzj-hero-container {
    max-width: 1400px;
    padding: 0 80px;
    gap: 100px;
  }
  
  .yzj-hero-content {
    flex: 0 0 600px;
  }

  .yzj-hero-title {
    font-size: 48px;
    margin-bottom: 24px;
  }

  .yzj-hero-subtitle {
    font-size: 17px;
    margin-bottom: 44px;
  }

  .yzj-hero-stats {
    gap: 32px;
    padding: 36px 0;
    margin-bottom: 44px;
  }

  .yzj-stat-number {
    font-size: 40px;
  }

  .yzj-stat-label {
    font-size: 15px;
  }

  .yzj-btn-primary,
  .yzj-btn-secondary {
    padding: 16px 42px;
    font-size: 17px;
  }

  .yzj-hero-visual {
    max-width: 600px;
  }

  .yzj-carousel-indicators {
    bottom: 50px;
  }

  .yzj-indicator-bar {
    width: 60px;
    height: 5px;
  }
}

/* 超大屏 > 1920px */
@media screen and (min-width: 1921px) {
  .yzj-hero-carousel-wrapper {
    min-height: 700px;
  }

  .yzj-hero-slide {
    padding: 100px 0 120px;
  }

  .yzj-hero-container {
    max-width: 1600px;
    padding: 0 100px;
    gap: 120px;
  }

  .yzj-hero-content {
    flex: 0 0 700px;
  }

  .yzj-hero-title {
    font-size: 56px;
    margin-bottom: 28px;
  }

  .yzj-hero-subtitle {
    font-size: 19px;
    margin-bottom: 48px;
  }

  .yzj-hero-stats {
    gap: 40px;
    padding: 40px 0;
    margin-bottom: 48px;
  }

  .yzj-stat-number {
    font-size: 48px;
  }

  .yzj-stat-label {
    font-size: 16px;
  }

  .yzj-btn-primary,
  .yzj-btn-secondary {
    padding: 18px 48px;
    font-size: 18px;
  }

  .yzj-hero-visual {
    max-width: 700px;
  }
}

/* 平板 768-992px */
@media screen and (max-width: 992px) {
  .yzj-hero-slide {
    padding: 50px 0 70px;
  }

  .yzj-hero-container {
    max-width: 100%;
    padding: 0 40px;
    gap: 50px;
  }

  .yzj-hero-content {
    flex: 0 0 420px;
  }

  .yzj-hero-title {
    font-size: 34px;
  }

  .yzj-hero-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .yzj-hero-stats {
    gap: 20px;
    padding: 24px 0;
    margin-bottom: 32px;
  }

  .yzj-stat-number {
    font-size: 28px;
  }

  .yzj-stat-label {
    font-size: 12px;
  }

  .yzj-hero-visual {
    max-width: 420px;
  }
}

/* 手机 < 768px */
@media screen and (max-width: 768px) {
  .yzj-hero-slide {
    padding: 40px 0 60px;
  }

  .yzj-hero-container {
    flex-direction: column;
    padding: 0 24px;
    gap: 36px;
  }
  
  .yzj-hero-content {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .yzj-hero-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .yzj-hero-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .yzj-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 28px;
  }

  .yzj-stat-number {
    font-size: 26px;
  }

  .yzj-hero-cta {
    justify-content: center;
  }

  .yzj-btn-primary,
  .yzj-btn-secondary {
    padding: 13px 32px;
    font-size: 14px;
  }

  .yzj-hero-visual {
    max-width: 100%;
  }

  .yzj-carousel-indicators {
    bottom: 30px;
  }
}

/* 小手机 < 480px */
@media screen and (max-width: 480px) {
  .yzj-hero-slide {
    padding: 32px 0 50px;
  }

  .yzj-hero-container {
    padding: 0 20px;
    gap: 28px;
  }

  .yzj-hero-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .yzj-hero-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .yzj-hero-stats {
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 24px;
  }

  .yzj-stat-number {
    font-size: 22px;
  }

  .yzj-stat-label {
    font-size: 11px;
  }

  .yzj-hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .yzj-btn-primary,
  .yzj-btn-secondary {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
  }

  .yzj-carousel-indicators {
    bottom: 24px;
  }

  .yzj-indicator-bar {
    width: 40px;
  }
}

/* 产品矩阵模块 */
.yzj-product-matrix {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px ;
}

.yzj-matrix-header {
  text-align: center;
  margin-bottom: 60px;
}

.yzj-matrix-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.yzj-matrix-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

.yzj-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.yzj-product-card {
  background: #F5F8FF;
  border: none;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.yzj-product-card:hover {
  background: #2968ED;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(41, 104, 237, 0.25);
}

.yzj-product-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.yzj-product-card:hover .yzj-product-icon {
  background: rgba(255, 255, 255, 0.2);
}

.yzj-product-icon i {
  font-size: 28px;
  color: #2968ED;
  transition: color 0.3s ease;
}

.yzj-product-card:hover .yzj-product-icon i {
  color: #fff;
}

.yzj-product-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.yzj-product-card:hover .yzj-product-title {
  color: #fff;
}

.yzj-product-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.yzj-product-card:hover .yzj-product-desc {
  color: rgba(255, 255, 255, 0.9);
}

.yzj-product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #2968ED;
  text-decoration: none;
  transition: all 0.3s ease;
}

.yzj-product-card:hover .yzj-product-link {
  color: #fff;
}

.yzj-product-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.yzj-product-card:hover .yzj-product-link i {
  transform: translateX(4px);
}

/* 产品矩阵模块 - 响应式样式 */
/* 大屏优化 > 1440px */
@media screen and (min-width: 1441px) {
  .yzj-product-matrix {
    max-width: 1400px;
    padding: 100px 80px;
  }

  .yzj-matrix-header {
    margin-bottom: 80px;
  }

  .yzj-matrix-title {
    font-size: 48px;
  }

  .yzj-matrix-subtitle {
    font-size: 22px;
  }

  .yzj-products-grid {
    gap: 32px;
  }

  .yzj-product-card {
    padding: 40px 32px;
  }

  .yzj-product-icon {
    width: 64px;
    height: 64px;
  }

  .yzj-product-icon i {
    font-size: 32px;
  }

  .yzj-product-title {
    font-size: 20px;
    min-height: 56px;
  }

  .yzj-product-desc {
    font-size: 16px;
  }

  .yzj-product-link {
    font-size: 16px;
  }
}

/* 超大屏 > 1920px */
@media screen and (min-width: 1921px) {
  .yzj-product-matrix {
    max-width: 1600px;
    padding: 120px 100px;
  }

  .yzj-matrix-header {
    margin-bottom: 90px;
  }

  .yzj-matrix-title {
    font-size: 54px;
  }

  .yzj-matrix-subtitle {
    font-size: 24px;
  }

  .yzj-products-grid {
    gap: 36px;
  }

  .yzj-product-card {
    padding: 44px 36px;
  }

  .yzj-product-icon {
    width: 72px;
    height: 72px;
  }

  .yzj-product-icon i {
    font-size: 36px;
  }

  .yzj-product-title {
    font-size: 22px;
    min-height: 60px;
  }

  .yzj-product-desc {
    font-size: 17px;
  }

  .yzj-product-link {
    font-size: 17px;
  }
}

/* 平板 768-992px */
@media screen and (max-width: 992px) {
  .yzj-product-matrix {
    padding: 60px 40px;
  }

  .yzj-matrix-header {
    margin-bottom: 50px;
  }

  .yzj-matrix-title {
    font-size: 34px;
  }

  .yzj-matrix-subtitle {
    font-size: 16px;
  }

  .yzj-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .yzj-product-card {
    padding: 30px 22px;
  }

  .yzj-product-icon {
    width: 52px;
    height: 52px;
  }

  .yzj-product-icon i {
    font-size: 26px;
  }

  .yzj-product-title {
    font-size: 17px;
    min-height: 48px;
  }

  .yzj-product-desc {
    font-size: 14px;
  }
}

/* 手机 < 768px */
@media screen and (max-width: 768px) {
  .yzj-product-matrix {
    padding: 50px 24px;
  }

  .yzj-matrix-header {
    margin-bottom: 40px;
  }

  .yzj-matrix-title {
    font-size: 28px;
  }

  .yzj-matrix-subtitle {
    font-size: 15px;
  }

  .yzj-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .yzj-product-card {
    padding: 28px 24px;
  }

  .yzj-product-icon {
    width: 48px;
    height: 48px;
  }

  .yzj-product-icon i {
    font-size: 24px;
  }

  .yzj-product-title {
    font-size: 18px;
    min-height: auto;
  }

  .yzj-product-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

/* 小手机 < 480px */
@media screen and (max-width: 480px) {
  .yzj-product-matrix {
    padding: 40px 20px;
  }

  .yzj-matrix-header {
    margin-bottom: 32px;
  }

  .yzj-matrix-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .yzj-matrix-subtitle {
    font-size: 14px;
  }

  .yzj-products-grid {
    gap: 14px;
  }

  .yzj-product-card {
    padding: 24px 20px;
  }

  .yzj-product-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .yzj-product-icon i {
    font-size: 22px;
  }

  .yzj-product-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .yzj-product-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .yzj-product-link {
    font-size: 13px;
  }
}

/* 全球声音模块 */
.yzj-global-voice {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px;
}

.yzj-global-header {
  text-align: center;
  margin-bottom: 60px;
}

.yzj-global-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.yzj-global-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

.yzj-voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.yzj-voice-card {
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.yzj-voice-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.yzj-voice-card:hover::before {
  opacity: 1;
}

.yzj-voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.yzj-voice-card.card-1 {
  background: #F1F0FF;
}

.yzj-voice-card.card-2 {
  background: #F2FFFF;
}

.yzj-voice-card.card-3 {
  background: #F4FCFF;
}

.yzj-voice-card.card-4 {
  background: #FFF6F2;
}

.yzj-voice-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.yzj-voice-card:hover .yzj-voice-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card-1 .yzj-voice-icon i {
  font-size: 28px;
  color: #6B5FED;
}

.card-2 .yzj-voice-icon i {
  font-size: 28px;
  color: #00CCC0;
}

.card-3 .yzj-voice-icon i {
  font-size: 28px;
  color: #2ABEEF;
}

.card-4 .yzj-voice-icon i {
  font-size: 28px;
  color: #FF6726;
}

.yzj-voice-badge {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-1 .yzj-voice-badge {
  color: #6B5FED;
}

.card-2 .yzj-voice-badge {
  color: #00CCC0;
}

.card-3 .yzj-voice-badge {
  color: #2ABEEF;
}

.card-4 .yzj-voice-badge {
  color: #FF6726;
}

.yzj-voice-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yzj-voice-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 70px;
}

.yzj-voice-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.card-1 .yzj-voice-link {
  color: #6B5FED;
}

.card-2 .yzj-voice-link {
  color: #00CCC0;
}

.card-3 .yzj-voice-link {
  color: #2ABEEF;
}

.card-4 .yzj-voice-link {
  color:#FF6726;
}

.yzj-voice-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.yzj-voice-card:hover .yzj-voice-link i {
  transform: translateX(4px);
}

/* 全球声音模块 - 响应式样式 */
/* 大屏优化 > 1440px */
@media screen and (min-width: 1441px) {
  .yzj-global-voice {
    max-width: 1400px;
    padding: 100px 80px;
  }

  .yzj-global-header {
    margin-bottom: 80px;
  }

  .yzj-global-title {
    font-size: 48px;
  }

  .yzj-global-subtitle {
    font-size: 22px;
  }

  .yzj-voice-grid {
    gap: 32px;
  }

  .yzj-voice-card {
    padding: 40px 32px;
  }

  .yzj-voice-icon {
    width: 64px;
    height: 64px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 32px;
  }

  .yzj-voice-badge {
    font-size: 24px;
  }

  .yzj-voice-title {
    font-size: 18px;
    min-height: 50px;
  }

  .yzj-voice-desc {
    font-size: 15px;
    min-height: 80px;
  }

  .yzj-voice-link {
    font-size: 16px;
  }
}

/* 超大屏 > 1920px */
@media screen and (min-width: 1921px) {
  .yzj-global-voice {
    max-width: 1600px;
    padding: 120px 100px;
  }

  .yzj-global-header {
    margin-bottom: 90px;
  }

  .yzj-global-title {
    font-size: 54px;
  }

  .yzj-global-subtitle {
    font-size: 24px;
  }

  .yzj-voice-grid {
    gap: 36px;
  }

  .yzj-voice-card {
    padding: 44px 36px;
  }

  .yzj-voice-icon {
    width: 72px;
    height: 72px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 36px;
  }

  .yzj-voice-badge {
    font-size: 26px;
  }

  .yzj-voice-title {
    font-size: 19px;
    min-height: 54px;
  }

  .yzj-voice-desc {
    font-size: 16px;
    min-height: 85px;
  }

  .yzj-voice-link {
    font-size: 17px;
  }
}

/* 平板 768-992px */
@media screen and (max-width: 992px) {
  .yzj-global-voice {
    padding: 60px 40px;
  }

  .yzj-global-header {
    margin-bottom: 50px;
  }

  .yzj-global-title {
    font-size: 34px;
  }

  .yzj-global-subtitle {
    font-size: 16px;
  }

  .yzj-voice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .yzj-voice-card {
    padding: 30px 22px;
  }

  .yzj-voice-icon {
    width: 52px;
    height: 52px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 26px;
  }

  .yzj-voice-badge {
    font-size: 19px;
  }

  .yzj-voice-title {
    font-size: 15px;
    min-height: 42px;
  }

  .yzj-voice-desc {
    font-size: 13px;
    min-height: 68px;
  }
}

/* 手机 < 768px */
@media screen and (max-width: 768px) {
  .yzj-global-voice {
    padding: 50px 24px;
  }

  .yzj-global-header {
    margin-bottom: 40px;
  }

  .yzj-global-title {
    font-size: 28px;
  }

  .yzj-global-subtitle {
    font-size: 15px;
  }

  .yzj-voice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .yzj-voice-card {
    padding: 28px 24px;
  }

  .yzj-voice-icon {
    width: 48px;
    height: 48px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 24px;
  }

  .yzj-voice-badge {
    font-size: 20px;
  }

  .yzj-voice-title {
    font-size: 16px;
    min-height: auto;
  }

  .yzj-voice-desc {
    font-size: 14px;
    margin-bottom: 18px;
    min-height: auto;
  }
}

/* 小手机 < 480px */
@media screen and (max-width: 480px) {
  .yzj-global-voice {
    padding: 40px 20px;
  }

  .yzj-global-header {
    margin-bottom: 32px;
  }

  .yzj-global-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .yzj-global-subtitle {
    font-size: 14px;
  }

  .yzj-voice-grid {
    gap: 14px;
  }

  .yzj-voice-card {
    padding: 24px 20px;
  }

  .yzj-voice-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 22px;
  }

  .yzj-voice-badge {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .yzj-voice-title {
    font-size: 15px;
  }

  .yzj-voice-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .yzj-voice-link {
    font-size: 13px;
  }
}

/* 信息标签页模块 */
.info-title {
  text-align: center;
  margin: clamp(30px, 4vw, 40px) 0 clamp(40px, 5vw, 50px) 0;
  padding: 0 20px;
}

.info-title h1 {
  font-size: clamp(36px, 3.33vw, 48px);
  font-weight: 800;
  color: #1F2937;
  letter-spacing: -1px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1F2937 0%, #374151 50%, #2563EB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.info-subtitle {
  font-size: clamp(16px, 1.39vw, 20px);
  color: #6B7280;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* 主容器 */
.info-wrapper {
  max-width: min(1540px, 95vw);
  margin: 0 auto;
  padding: 0 clamp(20px, 2vw, 40px) clamp(30px, 3vw, 40px);
}

.info-tabs {
  margin-bottom: clamp(20px, 2vw, 30px);
}

/* TAB导航 */
.tabs-nav-box {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(20px, 2vw, 30px);
  position: relative;
}

.tabs-nav {
  background: #F5FAFF;
  border-radius: 80px;
  padding: clamp(6px, 0.56vw, 8px);
  display: flex;
  gap: 4px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}

.tabs-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
  border-radius: 80px;
  z-index: 1;
}

.tab-btn {
  background: transparent;
  border: none;
  border-radius: 76px;
  padding: clamp(12px, 1.11vw, 16px) clamp(20px, 1.94vw, 28px);
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: clamp(120px, 11.11vw, 160px);
  text-align: center;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn i {
  font-size: clamp(12px, 0.97vw, 14px);
  transition: all 0.3s ease;
}

.tab-btn:hover:not(.active) {
  color: #374151;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: #fff;
  color: #2563EB;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
}

.tab-btn.active i {
  color: #2563EB;
}

/* TAB内容面板 */
.tab-panel {
  background: #F5FAFF;
  border-radius: clamp(16px, 1.67vw, 24px);
  padding: clamp(40px, 4.86vw, 70px);
  min-height: clamp(400px, 34.72vw, 500px);
  display: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
}

.tab-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(147, 51, 234, 0.01) 100%);
  z-index: 1;
  pointer-events: none;
}

.tab-panel.active {
  display: block;
  animation: panelFadeIn 0.6s ease-out;
}

@keyframes panelFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 面板布局 */
.panel-layout {
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  gap: clamp(30px, 3.47vw, 50px);
  position: relative;
  z-index: 2;
}

.panel-left,
.panel-right {
  min-height: clamp(450px, 38.89vw, 560px);
}

/* 案例展示区 */
.case-box {
  background: #fff;
  border-radius: clamp(12px, 1.11vw, 16px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.case-img-link {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-img-link:hover {
  opacity: 0.9;
}

.case-img {
  position: relative;
  height: clamp(280px, 27.78vw, 400px);
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-img-link:hover .case-img img {
  transform: scale(1.05);
}

.case-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: clamp(18px, 1.74vw, 25px);
}

.case-mask h3 {
  font-size: clamp(18px, 1.53vw, 22px);
  margin-bottom: 10px;
  font-weight: 600;
}

.case-mask p {
  font-size: clamp(13px, 1.04vw, 15px);
  opacity: 0.9;
}

.case-info {
  padding: clamp(18px, 1.74vw, 25px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-info h4 {
  font-size: clamp(16px, 1.25vw, 18px);
  color: #1F2937;
  margin-bottom: clamp(14px, 1.25vw, 18px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-info h4 i {
  color: #2563EB;
}

.case-info h4 a {
  color: #1F2937;
  text-decoration: none;
  transition: color 0.3s ease;
}

.case-info h4 a:hover {
  color: #2563EB;
}

.case-desc {
  color: #4B5563;
  font-size: clamp(13px, 1.04vw, 15px);
  line-height: 1.8;
  text-align: justify;
  flex: 1;
}

/* 新闻列表 */
.news-container {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.67vw, 24px);
  height: 100%;
}

.news-card {
  display: flex;
  gap: clamp(12px, 1.11vw, 16px);
  background: #fff;
  border-radius: clamp(10px, 0.83vw, 12px);
  padding: clamp(16px, 1.39vw, 20px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.15);
}

.news-time {
  flex-shrink: 0;
  width: clamp(60px, 4.86vw, 70px);
  height: clamp(60px, 4.86vw, 70px);
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  border-radius: clamp(10px, 0.83vw, 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.time-day {
  font-size: clamp(22px, 1.81vw, 26px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.time-month {
  font-size: clamp(11px, 0.9vw, 13px);
  opacity: 0.9;
  font-weight: 500;
}

.news-text {
  flex: 1;
  min-width: 0;
}

.news-text h4 {
  font-size: clamp(15px, 1.18vw, 17px);
  margin-bottom: clamp(8px, 0.69vw, 10px);
  color: #1F2937;
  font-weight: 600;
  line-height: 1.5;
}

.news-text h4 a {
  color: #1F2937;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-text h4 a:hover {
  color: #2563EB;
}

.news-text p {
  color: #6B7280;
  font-size: clamp(13px, 0.97vw, 14px);
  line-height: 1.6;
  margin-bottom: clamp(10px, 0.83vw, 12px);
}

.news-stats {
  display: flex;
  gap: clamp(12px, 1.11vw, 16px);
  font-size: clamp(12px, 0.9vw, 13px);
  color: #9CA3AF;
}

.news-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-stats i {
  font-size: clamp(11px, 0.83vw, 12px);
}

/* 信息标签页模块 - 响应式样式 */
/* 大屏优化 > 1440px */
@media screen and (min-width: 1441px) {
  .info-wrapper {
    max-width: 1600px;
    padding: 0 80px 60px;
  }

  .info-title {
    margin: 50px 0 60px 0;
  }

  .info-title h1 {
    font-size: 54px;
    margin-bottom: 16px;
  }

  .info-subtitle {
    font-size: 22px;
  }

  .tabs-nav {
    padding: 10px;
    gap: 6px;
  }

  .tab-btn {
    padding: 18px 36px;
    font-size: 17px;
    min-width: 180px;
  }

  .tab-btn i {
    font-size: 15px;
  }

  .tab-panel {
    padding: 80px;
    min-height: 600px;
    border-radius: 28px;
  }

  .panel-layout {
    gap: 60px;
  }

  .panel-left,
  .panel-right {
    min-height: 650px;
  }

  .case-img {
    height: 450px;
  }

  .case-mask {
    padding: 30px;
  }

  .case-mask h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .case-mask p {
    font-size: 16px;
  }

  .case-info {
    padding: 30px;
  }

  .case-info h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .case-desc {
    font-size: 16px;
  }

  .news-card {
    gap: 20px;
    padding: 24px;
  }

  .news-time {
    width: 80px;
    height: 80px;
  }

  .time-day {
    font-size: 30px;
  }

  .time-month {
    font-size: 14px;
  }

  .news-text h4 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .news-text p {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .news-stats {
    gap: 18px;
    font-size: 14px;
  }
}

/* 超大屏 > 1920px */
@media screen and (min-width: 1921px) {
  .info-wrapper {
    /* 原代码此处不完整，保持现有结构 */
  }
}

/* 响应式断点优化 */
@media (max-width: 1200px) {
  .panel-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .panel-left,
  .panel-right {
    min-height: auto;
  }
}

@media (max-width: 992px) {
  .tabs-nav {
    border-radius: 40px;
  }
  
  .tab-btn {
    min-width: calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .info-title h1 {
    font-size: 32px;
  }
  
  .info-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .tabs-nav {
    border-radius: 20px;
    padding: 6px;
  }
  
  .tab-btn {
    min-width: calc(50% - 4px);
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .tab-panel {
    padding: 25px 16px;
    min-height: 350px;
  }
  
  .case-img {
    height: 220px;
  }
  
  .news-card {
    flex-direction: column;
    gap: 12px;
  }
  
  .news-time {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .info-title h1 {
    font-size: 28px;
  }
  
  .tab-btn {
    min-width: 100%;
    margin: 2px 0;
  }
  
  .tabs-nav {
    flex-direction: column;
    border-radius: 16px;
  }
}


.my-scenario-container {
    max-width: 1520px;
    margin:80px auto ;
}
.my-tab-wrapper { margin-bottom: 30px; }
.my-tab-nav-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}
.my-tab-nav {
    background: #F5FAFF;
    border-radius: 80px;
    padding: 8px;
    display: flex;
    gap: 4px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.my-tab-nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    border-radius: 80px;
    z-index: 1;
}
.my-tab-item {
    background: transparent;
    border: none;
    border-radius: 76px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
    text-align: center;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}
.my-tab-item:hover:not(.active) {
    color: #374151;
    transform: translateY(-2px);
}
.my-tab-item.active {
    background: #fff;
    color: #2968ED;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}
/* 适配1440px及以上分辨率 */
@media screen and (min-width: 1440px) {
  .my-tab-wrapper {
    margin-bottom: 40px; /* 增大底部间距 */
  }
  
  .my-tab-nav-container {
    margin-bottom: 40px; /* 增大导航容器底部间距 */
  }
  
  .my-tab-nav {
    padding: 10px; /* 增大导航容器内边距 */
    gap: 6px; /* 增大标签之间的间距 */
  }
  
  .my-tab-item {
    padding: 18px 32px; /* 增大标签内边距 */
    font-size: 18px; /* 增大字体尺寸 */
    min-width: 180px; /* 增大最小宽度 */
    letter-spacing: 0.6px; /* 微调字间距 */
  }
}
/* TAB鍐呭鍖?- 鑳屾櫙#EFF5FD */
.my-tab-content {
    background: #EFF5FD;
    border-radius: 24px;
    padding: 0;
    min-height: 500px;
    display: none;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
    position: relative;
}
.my-tab-content.active {
    display: block;
    animation: tabFadeIn 0.6s ease-out;
}
@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 鍐呭甯冨眬 */
.my-content-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 100%;
    min-height: 500px;
    position: relative;
}

/* 娓愬彉鍒嗗壊绾?*/
.my-content-layout::after {
    content: '';
    position: absolute;
    left: 200px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(26,131,255,0.1) 0%, 
        rgba(26,131,255,0.3) 30%, 
        rgba(26,131,255,0.5) 50%, 
        rgba(26,131,255,0.3) 70%, 
        rgba(26,131,255,0.1) 100%);
    z-index: 2;
}

/* 宸﹀鑸尯 */
.my-side-nav {
    position: relative;
    background: linear-gradient(to right, #DFECFD 0%, #EFF5FD 100%);
    border-radius: 24px 0 0 24px;
    display: flex;
    flex-direction: column;
}
.my-side-nav button {
    width: 100%;
    height: 140px;
    background: #EFF5FD;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #4B5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.2;
}

/* 鏈€変腑鎸夐挳涔嬮棿鐨勫垎鍓茬嚎 */
.my-side-nav button:not(:last-child):not(.active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(75, 85, 99, 0.2) 50%, 
        transparent 100%);
}

/* 閫変腑鐘舵€佷笅闅愯棌鍒嗗壊绾?*/
.my-side-nav button.active::after,
.my-side-nav button.active + button::before {
    display: none;
}

/* 閫変腑鐘舵€佺殑涓婁竴涓寜閽篃闅愯棌涓嬪垎鍓茬嚎 */
.my-side-nav button:has(+ button.active)::after {
    display: none;
}

/* 閫変腑鐘舵€?- 娓愬彉鑳屾櫙 + 5px绾挎潯 */
.my-side-nav button.active {
    background: linear-gradient(to right, #DFECFD 0%, #EFF5FD 100%);
    color: #2968ED;
}
.my-side-nav button.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #2968ED;
    z-index: 1;
}

/* 鎮仠鐘舵€?- 鏄剧ず宸﹁竟绾挎潯 */
.my-side-nav button:hover:not(.active) {
    background: #EFF5FD;
    color: #2968ED;
    transform: translateX(3px);
}
.my-side-nav button:hover:not(.active)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #2968ED;
    z-index: 1;
}

/* 鍙充晶鍐呭鍖?- 璺濈鍒嗗壊绾?5px */
.my-content-area {
    padding: 40px 40px 40px 115px;
    background: #EFF5FD;
    border-radius: 0 24px 24px 0;
    position: relative;
    overflow: hidden;
}

/* 鑳屾櫙鍥剧墖 - 閰掑簵鏂规 */
.my-content-area.hotel-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
    opacity: 0.15;
    z-index: 1;
}

/* 鑳屾櫙鍥剧墖 - 璺ㄥ閫氫俊 */
.my-content-area.cross-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1526628953301-3e589a6a8b74?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
    opacity: 0.15;
    z-index: 1;
}

/* 鑳屾櫙鍥剧墖 - 浼佷笟閫氫俊 */
.my-content-area.enterprise-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
    opacity: 0.15;
    z-index: 1;
}

/* 鍙宠嚦宸﹂€忔槑婊ら暅 */
.my-content-area::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background: linear-gradient(to left, 
        rgba(239,245,253,0) 0%, 
        rgba(239,245,253,0.3) 30%, 
        rgba(239,245,253,0.7) 70%, 
        rgba(239,245,253,1) 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 0 24px 0 0;
}

.my-content-panel { 
    display: none; 
    position: relative;
    z-index: 3;
}
.my-content-panel.active { display: block; }

/* ICON + 鏍囬 - 缂╃煭闂磋窛 */
.my-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    margin-top: 50px;
}
.my-title-icon {
    width: 80px;
    height: 80px;
    background-color: #F36249;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(243,98,73,0.3);
}
.my-title-text {
    font-size: 38px;
    font-weight: 700;
    color: #1F2937;
}

/* 鏍囬瓒呴摼鎺?*/
.my-title-link {
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
}
.my-title-link:hover {
    color: #2968ED;
}

/* 鎻忚堪鍖?- 鍘绘帀搴曡壊鍜屽乏杈圭嚎 */
.my-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    padding: 0;
    margin-bottom: 20px;
    margin-right: 260px;
}

/* 浜嗚В鏇村閾炬帴 */
.my-learn-more {
    margin-top: 15px;
}
.my-learn-more a {
    color: #2968ED;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.my-learn-more a:hover {
    color: #0066CC;
    transform: translateX(3px);
}

/* 鍒嗗尯璁捐 - 缁熶竴瀹藉害瀹瑰櫒 */
.my-section {
    margin-bottom: 40px;
    width: 100%;
    max-width: 900px; /* 澧炲姞瀹藉害 */
}
.my-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 0;
}
.my-section-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2968ED, #3B82F6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
.my-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

/* 鍦烘櫙鑱斿姩 - 澧炲姞瀹藉害閫傞厤3寮犲崱鐗囦竴鎺掓樉绀?*/
.my-scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: rgba(255,255,255,0.4);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}
.my-scenario-card {
    padding: 24px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    min-width: 0; /* 闃叉鍐呭婧㈠嚭 */
}
.my-scenario-card:hover {
    background: rgba(26,131,255,0.08);
    transform: translateY(-3px);
}
.my-scenario-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2968ED, #3B82F6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.my-scenario-card:hover .my-scenario-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(26,131,255,0.3);
}
.my-scenario-content {
    flex: 1;
    min-width: 0; /* 闃叉鍐呭婧㈠嚭 */
}
.my-scenario-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    transition: color 0.4s ease;
    word-wrap: break-word;
}
.my-scenario-card:hover .my-scenario-title {
    color: #2968ED;
}
.my-scenario-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
}

/* 瀵规帴鍏煎 - 澧炲姞瀹藉害閫傞厤5寮犲崱鐗囦竴鎺掓樉绀?*/
.my-compat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: rgba(255,255,255,0.4);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}
.my-compat-card {
    padding: 20px 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #4B5563;
    border: 1px solid #F3F4F6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 0; /* 闃叉鍐呭婧㈠嚭 */
}
.my-compat-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2968ED, #3B82F6);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.my-compat-text {
    transition: all 0.4s ease;
    font-size: 15px;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.3;
}
.my-compat-card:hover {
    transform: translateY(-4px);
    border-color: #E5E7EB;
    box-shadow: 0 8px 20px rgba(26,131,255,0.15);
    background: rgba(26,131,255,0.03);
}
.my-compat-card:hover .my-compat-icon {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(26,131,255,0.25);
}
.my-compat-card:hover .my-compat-text {
    color: #2968ED;
}

/* 鍝嶅簲寮?- 涓ユ牸鑷€傚簲 */
@media (max-width: 1400px) {
    .my-scenario-container {
        max-width: 1200px;
    }
    .my-content-area {
        padding: 35px 35px 35px 90px;
    }
    .my-desc {
        margin-right: 200px;
    }
    .my-section {
        max-width: 800px;
    }
}

@media (max-width: 1200px) {
    .my-scenario-container {
        max-width: 100%;
        padding: 0 15px 40px 15px;
    }
    .my-content-area {
        padding: 35px 35px 35px 90px;
    }
    .my-desc {
        margin-right: 180px;
    }
    .my-section {
        max-width: 750px;
    }
    .my-side-nav button {
        font-size: 16px;
        height: 130px;
    }
    /* 鍦烘櫙鑱斿姩淇濇寔3鍒?*/
    .my-scenario-grid {
        gap: 20px;
        padding: 20px;
    }
    .my-scenario-card {
        padding: 20px;
        gap: 16px;
    }
    /* 瀵规帴鍏煎淇濇寔5鍒?*/
    .my-compat-grid {
        gap: 16px;
        padding: 20px;
    }
    .my-compat-card {
        padding: 16px 12px;
        gap: 10px;
    }
    .my-compat-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .my-compat-text {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .my-content-layout {
        grid-template-columns: 180px 1fr;
    }
    .my-content-area {
        padding: 30px 30px 30px 80px;
    }
    .my-title-text {
        font-size: 32px;
    }
    .my-section-title {
        font-size: 22px;
    }
    .my-desc {
        margin-right: 150px;
    }
    .my-section {
        max-width: 650px;
    }
    .my-side-nav button {
        font-size: 15px;
        height: 120px;
    }
    /* 鍦烘櫙鑱斿姩鍙樹负2鍒?*/
    .my-scenario-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    /* 瀵规帴鍏煎淇濇寔5鍒椾絾缂╁皬 */
    .my-compat-card {
        padding: 14px 10px;
        gap: 8px;
    }
    .my-compat-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .my-compat-text {
        font-size: 13px;
    }
}


/* ==================== 手机端完整CSS ==================== */

/* 768px以下 - 平板和大屏手机 */
@media (max-width: 768px) {
    /* 容器 */
    .my-scenario-container {
        max-width: 100%;
        margin: 20px auto;
        padding: 0 12px;
    }

    /* Tab导航 */
    .my-tab-wrapper {
        margin-bottom: 15px;
    }

    .my-tab-nav-container {
        margin-bottom: 15px;
        padding: 0;
    }

    .my-tab-nav {
        padding: 4px;
        gap: 4px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .my-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .my-tab-item {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 90px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    /* Tab内容 */
    .my-tab-content {
        border-radius: 12px;
        min-height: auto;
        border: none;
    }

    /* 布局改为垂直 */
    .my-content-layout {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        min-height: auto;
    }

    .my-content-layout::after {
        display: none;
    }

    /* 侧边导航改为顶部横向 */
    .my-side-nav {
        width: 100%;
        flex-direction: row;
        border-radius: 12px 12px 0 0;
        background: #EFF5FD;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        display: flex;
        flex-wrap: nowrap;
    }

    .my-side-nav::-webkit-scrollbar {
        display: none;
    }

    .my-side-nav button {
        width: auto;
        height: 50px;
        min-width: 100px;
        flex-shrink: 0;
        padding: 12px 16px;
        font-size: 13px;
        background: #EFF5FD;
        white-space: nowrap;
        border-radius: 0;
    }

    /* 移除垂直分割线 */
    .my-side-nav button::after {
        display: none !important;
    }

    .my-side-nav button:has(+ button.active)::after {
        display: none !important;
    }

    /* 选中状态 - 底部蓝条 */
    .my-side-nav button.active {
        background: #EFF5FD;
        color: #2968ED;
    }

    .my-side-nav button.active::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: #2968ED;
        z-index: 1;
        top: auto;
    }

    /* 悬停状态 */
    .my-side-nav button:hover:not(.active) {
        transform: none;
        background: #EFF5FD;
    }

    .my-side-nav button:hover:not(.active)::before {
        display: none;
    }

    /* 内容区域 */
    .my-content-area {
        width: 100%;
        padding: 20px 15px;
        border-radius: 0 0 12px 12px;
        background: #EFF5FD;
    }

    /* 隐藏背景图 */
    .my-content-area::before,
    .my-content-area::after {
        display: none !important;
    }

    .my-content-area.hotel-bg::before,
    .my-content-area.cross-bg::before,
    .my-content-area.enterprise-bg::before {
        display: none !important;
    }

    /* 标题区域 */
    .my-title-block {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .my-title-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 10px;
        border-radius: 6px;
    }

    .my-title-text {
        font-size: 22px;
        line-height: 1.3;
    }

    /* 描述 */
    .my-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-right: 0;
        margin-bottom: 15px;
        padding: 0;
    }

    .my-learn-more {
        margin-top: 10px;
    }

    .my-learn-more a {
        font-size: 14px;
        gap: 5px;
    }

    /* 分区 */
    .my-section {
        margin-bottom: 25px;
        width: 100%;
        max-width: 100%;
    }

    .my-section-header {
        gap: 8px;
        margin-bottom: 12px;
        padding: 10px 0;
    }

    .my-section-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 6px;
    }

    .my-section-title {
        font-size: 17px;
    }

    /* 场景网格 - 单列 */
    .my-scenario-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        gap: 12px;
        padding: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 10px;
    }

    .my-scenario-card {
        padding: 15px;
        gap: 12px;
        border-radius: 10px;
        background: white;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-scenario-card:hover {
        background: white;
        transform: none;
    }

    .my-scenario-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .my-scenario-card:hover .my-scenario-icon {
        transform: none;
    }

    .my-scenario-content {
        flex: 1;
        min-width: 0;
    }

    .my-scenario-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .my-scenario-desc {
        font-size: 13px;
        line-height: 1.5;
        color: #6B7280;
    }

    /* 兼容网格 - 2列 */
    .my-compat-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 10px;
    }

    .my-compat-card {
        padding: 12px 8px;
        gap: 8px;
        border-radius: 8px;
        background: white;
        border: 1px solid #F3F4F6;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-compat-card:hover {
        transform: none;
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-compat-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
        border-radius: 5px;
    }

    .my-compat-card:hover .my-compat-icon {
        transform: none;
    }

    .my-compat-text {
        font-size: 12px;
        line-height: 1.3;
    }
}




/*妗堜緥LDO*/

.partners-section {
    padding: 0px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.partners-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.partners-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.partners-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.partners-scroll-wrapper {
    position: relative;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.partners-mask-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.1) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
}

.partners-mask-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.1) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
}

.partners-scroll-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.partners-logos-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: scrollUpContinuous 50s linear infinite;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: nowrap;
    min-height: 65px;
}

.partners-row img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(50%) opacity(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    transform: scale(0.98);
    cursor: pointer;
}

.partners-row img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.02);
}

/* 鏃犵紳寰幆鍔ㄧ敾 */
@keyframes scrollUpContinuous {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* 鏍囬鍔ㄧ敾 */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 榧犳爣鎮仠鏆傚仠鍔ㄧ敾 */
.partners-scroll-wrapper:hover .partners-logos-track {
    animation-play-state: paused;
}

/* 瀹藉睆閫傞厤 */
@media (min-width: 1400px) {
    .partners-container {
        max-width: 1800px;
        padding: 0 60px;
    }
    
    .partners-scroll-wrapper {
        height: 650px;
    }
    
    .partners-scroll-container {
        padding: 130px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 130px;
    }
    
    .partners-row {
        gap: 45px;
    }
    
    .partners-row img {
        max-width: 160px;
        max-height: 80px;
    }
}

/* 涓瓑灞忓箷閫傞厤 */
@media (max-width: 1200px) {
    .partners-container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .partners-scroll-wrapper {
        height: 550px;
    }
    
    .partners-scroll-container {
        padding: 110px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 110px;
    }
    
    .partners-row {
        gap: 30px;
    }
    
    .partners-row img {
        max-width: 120px;
        max-height: 60px;
    }
}

/* 骞虫澘閫傞厤 */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-container {
        padding: 0 20px;
    }
    
    .partners-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .partners-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .partners-scroll-wrapper {
        height: 450px;
    }
    
    .partners-scroll-container {
        padding: 100px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 100px;
    }
    
    .partners-logos-track {
        gap: 15px;
        animation-duration: 40s;
    }
    
    .partners-row {
        gap: 20px;
        min-height: 55px;
    }
    
    .partners-row img {
        max-width: 100px;
        max-height: 50px;
        padding: 6px;
    }
}

/* 鎵嬫満閫傞厤 */
@media (max-width: 480px) {
    .partners-title {
        font-size: 28px;
    }
    
    .partners-subtitle {
        font-size: 14px;
    }
    
    .partners-scroll-wrapper {
        height: 380px;
    }
    
    .partners-scroll-container {
        padding: 90px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 90px;
    }
    
    .partners-logos-track {
        gap: 12px;
        animation-duration: 35s;
    }
    
    .partners-row {
        gap: 15px;
        min-height: 45px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partners-row img {
        max-width: 75px;
        max-height: 38px;
        padding: 4px;
    }
}

/* 楂樻竻灞忓箷浼樺寲 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .partners-row img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 鍑忓急鍔ㄧ敾鏁堟灉锛堥拡瀵圭敤鎴峰亸濂借缃級 */
@media (prefers-reduced-motion: reduce) {
    .partners-logos-track {
        animation-duration: 80s;
    }
    
    .partners-title,
    .partners-subtitle {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* 瓒呭灞忓箷閫傞厤 */
@media (min-width: 1920px) {
    .partners-container {
        max-width: 2000px;
    }
    
    .partners-scroll-wrapper {
        height: 700px;
    }
    
    .partners-scroll-container {
        padding: 140px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 140px;
    }
    
    .partners-row {
        gap: 55px;
    }
    
    .partners-row img {
        max-width: 180px;
        max-height: 90px;
    }
}

/* 4K灞忓箷閫傞厤 */
@media (min-width: 2560px) {
    .partners-scroll-wrapper {
        height: 800px;
    }
    
    .partners-scroll-container {
        padding: 160px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 160px;
    }
    
    .partners-row {
        gap: 70px;
    }
    
    .partners-row img {
        max-width: 200px;
        max-height: 100px;
    }
}

/* 鍔ㄧ敾鎬ц兘浼樺寲 */
.partners-logos-track {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.partners-row img {
    will-change: transform, filter;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* 鎵撳嵃鏍峰紡 */
@media print {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-scroll-wrapper {
        height: auto;
        overflow: visible;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        display: none;
    }
    
    .partners-logos-track {
        animation: none;
    }
    
    .partners-row img {
        filter: none;
        transform: none;
    }
}

/* 鎵撳嵃鏍峰紡 */
 .vs-wrap {
            width: 100%;
            box-sizing: border-box;
            padding: 0px 40px 80px 0px;
            background: transparent;
        }

        .vs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .vs-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .vs-card {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 24px;
            background: #F5F9FE;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .vs-link:hover .vs-card {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(74, 112, 255, 0.12);
        }

        .vs-icon-box {
            flex-shrink: 0;
        }

        .vs-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        /* 鍥炬爣棰滆壊鏂规 */
        .vs-link:nth-child(1) .vs-icon {
            background: #E8EDFF;
        }

        .vs-link:nth-child(1) .vs-icon i {
            color: #4A70FF;
        }

        .vs-link:nth-child(2) .vs-icon {
            background: #EBEAFF;
        }

        .vs-link:nth-child(2) .vs-icon i {
            color: #6A4BFF;
        }

        .vs-link:nth-child(3) .vs-icon {
            background: #E4F9F9;
        }

        .vs-link:nth-child(3) .vs-icon i {
            color: #00C7A9;
        }

        .vs-link:nth-child(4) .vs-icon {
            background: #EBF6FF;
        }

        .vs-link:nth-child(4) .vs-icon i {
            color: #29A3FA;
        }

        .vs-link:hover .vs-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .vs-icon i {
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .vs-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .vs-title {
            font-size: 20px;
            font-weight: 600;
            color: #394F81;
            margin: 0;
            letter-spacing: 0.2px;
            transition: color 0.3s ease;
        }

        .vs-link:hover .vs-title {
            color: #4A70FF;
        }

        .vs-desc {
            font-size: 14px;
            line-height: 1.8;
            color: #7B889C;
            margin: 0;
        }

        /* 骞虫澘閫傞厤 */
        @media screen and (max-width: 1024px) and (min-width: 768px) {
            .vs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .vs-card {
                padding: 20px;
            }
        }

        /* 鎵嬫満閫傞厤 */
        @media screen and (max-width: 767px) {
            .vs-wrap {
                padding: 40px 16px;
            }

            .vs-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .vs-card {
                gap: 12px;
                padding: 20px;
                border-radius: 10px;
            }

            .vs-icon {
                width: 32px;
                height: 32px;
            }

            .vs-icon i {
                font-size: 14px;
            }

            .vs-title {
                font-size: 18px;
            }

            .vs-desc {
                font-size: 13px;
            }
        }
/* 1440px 鍒嗚鲸鐜囧叏闈㈤€傞厤 - 瀹屾暣淇鐗� */
@media (max-width: 1600px) {
  /* ========== 鏍稿績瀹瑰櫒绫� - 鏈€楂樹紭鍏堢骇 ========== */
  /* 淇℃伅瀹瑰櫒 */
  .info-wrapper {
    max-width: 1200px ;
    margin:  auto ;
    padding: 0 0px ;
  }
  
  /* 閫氱敤瀹瑰櫒璋冩暣 */
  .comm-wrapper {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* Banner瀹瑰櫒璋冩暣 - 涓嶉檺鍒堕珮搴︼紝璁╁唴瀹硅嚜鐒舵拺寮€ */
  .banner-container {
    max-width: 1300px ;
    margin: 0 auto ;
    padding: 0 ;
  }
  
  /* MY鍦烘櫙瀹瑰櫒 */
  .my-scenario-container {
    max-width: 1200px ;
    padding: 0 0px ;
  }
  
  /* 閰掑簵鍦烘櫙瀹瑰櫒 */
  .hotel-scenario-container {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px 28px 20px ;
  }
  
  /* ET鍥藉瀹瑰櫒 */
  .et-countries {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* ========== Banner鐩稿叧 - 绉婚櫎楂樺害闄愬埗锛屼慨澶嶉噸鍙� ========== */
  
  /* ========== 閫氱敤鍥剧墖澶勭悊 ========== */
  /* 鎵€鏈夊浘鐗囧鍣� */
  .image-container,
  .img-container,
  .picture-container {
    width: 100% ;
    height: 190px ;
    overflow: hidden ;
    border-radius: 10px ;
    margin-bottom: 14px ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    background: #f5f5f5 ;
  }
  
  /* 鎵€鏈夊浘鐗� */
  .image-container img,
  .img-container img,
  .picture-container img,
  .comm-card img,
  .vs-card img,
  .my-scenario-card img,
  .hotel-card img {
    max-width: 100% ;
    max-height: 100% ;
    width: auto ;
    height: auto ;
    object-fit: contain ;
    display: block ;
  }
  
  /* 鍦烘櫙鍗＄墖鍥剧墖鐗规畩澶勭悊 */
  .my-scenario-card .image-container,
  .hotel-card .image-container {
    height: 160px ;
  }
  
  /* VS鍗＄墖鍥剧墖 */
  .vs-card .image-container {
    height: 140px ;
  }
  
  /* 閫氱敤鍗＄墖鍥剧墖 */
  .comm-card .image-container {
    height: 180px ;
  }
  
  /* content-right鍥剧墖瀹瑰櫒 - 澧炲姞楂樺害 */
  .content-right .image-container,
  .content-right .img-container,
  .content-right .picture-container,
  .content-right .image-placeholder {
    height: 100% ;
    min-height: 400px ;
    margin-bottom: 0 ;
  }
  
  /* content-right鍥剧墖 */
  .content-right img {
    max-width: 100% ;
    max-height: 100% ;
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    display: block ;
    margin: 0 ;
  }
  
  /* image-placeholder鐗规畩澶勭悊 */
  .image-placeholder {
    width: 100% ;
    height: 100% ;
    min-height: 400px ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    overflow: hidden ;
  }
  
  .image-placeholder img {
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
  }
  
  /* ========== 閫氱敤缃戞牸鍜屽崱鐗� - 淇涓轰竴鎺�4涓� ========== */
  /* 閫氱敤缃戞牸甯冨眬 - 寮哄埗4鍒� */
  .comm-wrapper .comm-grid,
  .comm-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 18px ;
    padding: 0 20px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* 閫氱敤鍗＄墖鍐呰竟璺� */
  .comm-card {
    padding: 20px 16px ;
    border-radius: 12px ;
    display: flex ;
    flex-direction: column ;
  }
  
  /* 閫氱敤鏍囬瀛椾綋 */
  .comm-title {
    font-size: 16px ;
    margin-bottom: 10px ;
  }
  
  /* 閫氱敤鎻忚堪 */
  .comm-desc {
    font-size: 13px ;
    height: 70px ;
    margin-bottom: 14px ;
    overflow: hidden ;
  }
  
  /* ========== 涓绘爣棰樺尯鍩� ========== */
  /* 涓绘爣棰樺鍣� */
  .main-title {
    margin: 50px auto 30px auto ;
    padding: 0 20px ;
    max-width: 1200px ;
  }
  
  /* 涓绘爣棰榟1 */
  .main-title h1 {
    font-size: 36px ;
    line-height: 1.3 ;
  }
  
  /* 涓绘爣棰樺壇鏍囬 */
  .main-title .subtitle {
    font-size: 15px ;
  }
  
  /* ========== Tab鍐呭鍖哄煙 - 淇瀹瑰櫒鍜岄棿璺� ========== */
  /* Tab鍐呭瀹瑰櫒 - 纭繚姝ｇ‘鐨勫搴﹀拰灞呬腑 */
  .tab-content {
    max-width: 1200px ;
    width: 100% ;
    margin: 0 auto ;
    padding: 40px 20px ;
    box-sizing: border-box ;
  }
  
  /* Tab鍐呭鍐呴儴瀹瑰櫒 */
  .tab-content > div,
  .tab-content > section {
    max-width: 100% ;
    width: 100% ;
  }
  
  /* 鍐呭甯冨眬缃戞牸 - 澧炲姞鍐呭闂磋窛 */
  .content-layout {
    display: grid ;
    grid-template-columns: 1fr 1fr ;
    gap: 40px ;
    max-width: 100% ;
    margin: 0 ;
    padding: 30px ;
    box-sizing: border-box ;
  }
  
  /* 宸︿晶鍐呭 */
  .content-left {
    width: 100% ;
    padding-right: 20px ;
  }
  
  /* 鍙充晶鍐呭 */
  .content-right {
    width: 100% ;
    display: flex ;
    flex-direction: column ;
    min-height: 400px ;
  }
  
  /* 宸︿晶鍐呭鏍囬 */
  .content-left h2 {
    font-size: 24px ;
    margin-bottom: 16px ;
  }
  
  /* 鍓爣棰樺浘鏍囧鍣� */
  .subtitle-icons {
    display: flex ;
    gap: 14px ;
    margin-bottom: 22px ;
    flex-wrap: wrap ;
  }
  
  /* 鍓爣棰橀」 */
  .subtitle-item {
    font-size: 13px ;
    padding: 6px 11px ;
    display: flex ;
    align-items: center ;
    gap: 6px ;
  }
  
  /* 鍓爣棰樺浘鏍� */
  .subtitle-item i,
  .subtitle-item .icon {
    font-size: 14px ;
    width: 16px ;
    height: 16px ;
    display: inline-flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  /* Tab鍐呭涓殑鎵€鏈夊浘鏍� */
  .tab-content i,
  .tab-content .icon,
  .tab-content .fa,
  .tab-content .fas,
  .tab-content .far,
  .tab-content .fab {
    font-size: 14px ;
    display: inline-flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  /* Tab鍐呭涓殑鍥炬爣瀹瑰櫒 */
  .tab-content .icon-container,
  .tab-content .icon-wrapper {
    width: auto ;
    height: auto ;
    display: inline-flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  /* 鏈嶅姟椤逛腑鐨勫浘鏍� */
  .service-item i,
  .service-item .icon {
    font-size: 16px ;
    width: 20px ;
    height: 20px ;
    margin-right: 8px ;
    flex-shrink: 0 ;
  }
  
  /* 浜у搧椤逛腑鐨勫浘鏍� */
  .product-item i,
  .product-item .icon {
    font-size: 12px ;
    width: 16px ;
    height: 16px ;
    margin-right: 6px ;
  }
  
  /* ========== 鏈嶅姟鍜屼骇鍝� - 淇P鍐呭婧㈠嚭 ========== */
  /* 鏈嶅姟椤瑰鍣� */
  .service-item {
    margin-bottom: 16px ;
    padding: 14px 12px ;
    display: block ;
    width: 100% ;
    box-sizing: border-box ;
  }
  
  /* 鏈嶅姟椤笻4 */
  .service-item h4 {
    font-size: 16px ;
    margin-bottom: 8px ;
    word-wrap: break-word ;
    word-break: break-word ;
    white-space: normal ;
    width: 100% ;
    display: flex ;
    align-items: center ;
    gap: 8px ;
  }
  
  /* 鏈嶅姟椤笻4涓殑閾炬帴 */
  .service-item h4 a {
    flex: 1 ;
    word-wrap: break-word ;
    word-break: break-word ;
    white-space: normal ;
  }
  
  /* 鏈嶅姟椤筆 - 淇婧㈠嚭 */
  .service-item p {
    font-size: 14px ;
    line-height: 1.6 ;
    margin: 0 ;
    padding: 0 ;
    word-wrap: break-word ;
    word-break: break-word ;
    white-space: normal ;
    overflow: visible ;
    max-height: none ;
    height: auto ;
    width: 100% ;
    box-sizing: border-box ;
  }
  
  /* 鏈嶅姟鍒楄〃瀹瑰櫒 */
  .services-list,
  .service-list {
    width: 100% ;
    overflow: visible ;
  }
  
  /* 浜у搧椤� */
  .product-item {
    font-size: 12px ;
    padding: 6px 9px ;
    display: inline-flex ;
    align-items: center ;
  }
  
  /* 浜у搧鍒楄〃 */
  .products-list,
  .product-list {
    display: flex ;
    flex-wrap: wrap ;
    gap: 8px ;
    margin-top: 12px ;
  }
  
  /* ========== ET鏁版嵁灞曠ず - 淇婧㈠嚭 ========== */
  /* ET鏁版嵁灞曠ず瀹瑰櫒 */
  .et-data-showcase {
    max-width: 1200px ;
    width: 100% ;
    margin: 0 auto ;
    padding: 40px 20px ;
    box-sizing: border-box ;
  }
  
  /* ET鏁版嵁缃戞牸 */
  .et-data-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 18px ;
    max-width: 100% ;
  }
  
  /* ET鏁版嵁鍗＄墖 */
  .et-data-card {
    padding: 20px 14px ;
    border-radius: 12px ;
    text-align: center ;
    display: flex ;
    flex-direction: column ;
    align-items: center ;
    justify-content: center ;
    min-height: 140px ;
  }
  
  /* ET鏁版嵁鍥炬爣 */
  .et-data-icon {
    width: 45px ;
    height: 45px ;
    font-size: 18px ;
    margin-bottom: 12px ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    flex-shrink: 0 ;
  }
  
  .et-data-icon i {
    font-size: 18px ;
  }
  
  /* ET鏁版嵁鏁板瓧 */
  .et-data-number {
    font-size: 28px ;
    font-weight: 700 ;
    margin-bottom: 6px ;
    line-height: 1.2 ;
    white-space: nowrap ;
  }
  
  /* ET鏁版嵁鏍囩 */
  .et-data-label {
    font-size: 13px ;
    line-height: 1.3 ;
    word-wrap: break-word ;
    word-break: keep-all ;
    white-space: nowrap ;
    overflow: hidden ;
    text-overflow: ellipsis ;
    max-width: 100% ;
  }
  
  /* ET鏁版嵁鏍囬 */
  .et-data-showcase h2,
  .et-data-showcase .section-title {
    font-size: 30px ;
    margin-bottom: 28px ;
    text-align: center ;
  }
  
  /* ========== VS瀵规瘮閮ㄥ垎 ========== */
  /* VS瀹瑰櫒 */
  .vs-wrap {
    padding: 35px 20px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* VS缃戞牸 */
  .vs-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 18px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* VS鍗＄墖 */
  .vs-card {
    padding: 16px ;
    display: flex ;
    flex-direction: column ;
  }
  
  /* VS閾炬帴 */
  .vs-link {
    gap: 11px ;
    display: flex ;
    align-items: center ;
  }
  
  /* VS鍥炬爣 */
  .vs-icon {
    width: 38px ;
    height: 38px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .vs-icon i {
    font-size: 14px ;
  }
  
  /* VS鏍囬 */
  .vs-title {
    font-size: 15px ;
  }
  
  /* VS鎻忚堪 */
  .vs-desc {
    font-size: 12px ;
  }
  
  /* ========== MY绯诲垪鏍峰紡 ========== */
  /* MY鍐呭甯冨眬 */
  .my-content-layout {
    border-radius: 14px ;
    max-width: 1200px ;
    margin: 0 auto ;
    display: flex ;
  }
  
  /* MY渚ц竟瀵艰埅 */
  .my-side-nav {
    width: 170px ;
    flex-shrink: 0 ;
  }
  
  .my-side-nav button {
    height: 100px ;
    font-size: 14px ;
    padding: 12px ;
    width: 100% ;
  }
  
  /* MY鍐呭鍖哄煙 */
  .my-content-area {
    padding: 25px 32px 25px 60px ;
    flex: 1 ;
  }
  
  /* MY鏍囬鏂囧瓧 */
  .my-title-text {
    font-size: 28px ;
  }
  
  /* MY鎻忚堪 */
  .my-desc {
    margin-right: 180px ;
    font-size: 14px ;
  }
  
  /* MY绔犺妭鏍囬 */
  .my-section-title {
    font-size: 18px ;
  }
  
  /* MY鍦烘櫙鍗＄墖 */
  .my-scenario-card {
    padding: 16px ;
    gap: 12px ;
    display: flex ;
    flex-direction: column ;
  }
  
  /* MY鍦烘櫙缃戞牸 */
  .my-scenario-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 16px ;
    padding: 16px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* MY鍏煎鎬у崱鐗� */
  .my-compat-card {
    padding: 11px 9px ;
    gap: 6px ;
    display: flex ;
    align-items: center ;
  }
  
  /* MY鍏煎鎬у浘鏍� */
  .my-compat-icon {
    width: 22px ;
    height: 22px ;
    font-size: 10px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .my-compat-icon i {
    font-size: 10px ;
  }
  
  /* MY鍏煎鎬ф枃瀛� */
  .my-compat-text {
    font-size: 12px ;
  }
  
  /* MY鏍囬鍥炬爣 */
  .my-title-icon {
    width: 60px ;
    height: 60px ;
    font-size: 24px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .my-title-icon i {
    font-size: 24px ;
  }
  
  /* MY绔犺妭鍥炬爣 */
  .my-section-icon {
    width: 32px ;
    height: 32px ;
    font-size: 14px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .my-section-icon i {
    font-size: 14px ;
  }
  
  /* MY Tab鍐呭 */
  .my-tab-content {
    min-height: 400px ;
  }
  
  /* MY绔犺妭 */
  .my-section {
    max-width: 700px ;
  }
  
  /* ========== 鍥藉閫夋嫨鐩稿叧 ========== */
  /* 鍥藉缃戞牸 */
  .all-countries-grid {
    grid-template-columns: repeat(3, 1fr) ;
    gap: 10px ;
  }
  
  /* 鍥藉閾炬帴 */
  .country-link {
    padding: 8px 11px ;
    display: flex ;
    align-items: center ;
    gap: 8px ;
  }
  
  /* 鍥藉鏃楀笢 */
  .country-link-flag {
    width: 24px ;
    height: 17px ;
    flex-shrink: 0 ;
    object-fit: cover ;
  }
  
  /* 鍥藉鍚嶇О */
  .country-link-name {
    font-size: 13px ;
  }
  
  /* 鍥藉浠ｇ爜 */
  .country-code {
    font-size: 12px ;
  }
  
  /* ET鍥藉瀹瑰櫒 */
  .et-country-container {
    gap: 9px ;
    padding: 13px ;
  }
  
  /* ET鍥藉鍦嗗湀 */
  .et-country-circle {
    width: 52px ;
    height: 52px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  /* ET鍥藉鏃楀笢 */
  .et-country-flag {
    width: 28px ;
    height: 17px ;
    object-fit: cover ;
  }
  
  /* 鍏ㄧ悆鍥炬爣 */
  .global-icon {
    width: 24px ;
    height: 24px ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .global-icon i {
    font-size: 16px ;
  }
  
  /* ET鍥藉鍚嶇О */
  .et-country-name {
    font-size: 13px ;
  }
  
  /* ========== 妯℃€佹 ========== */
  /* 妯℃€佹鍐呭 */
  .modal-content {
    max-width: 800px ;
    border-radius: 14px ;
  }
  
  /* 妯℃€佹澶撮儴 */
  .modal-header {
    padding: 16px 24px ;
  }
  
  .modal-header h2 {
    font-size: 19px ;
  }
  
  /* 妯℃€佹涓讳綋 */
  .modal-body {
    padding: 18px ;
  }
  
  /* ========== 鎸夐挳 ========== */
  /* 涓绘寜閽� */
  .btn-primary {
    padding: 10px 20px ;
    font-size: 14px ;
  }
  
  /* 娆¤鎸夐挳 */
  .btn-secondary,
  .btn-link {
    padding: 10px 20px ;
    font-size: 14px ;
  }
  
  /* 鎸夐挳鍥炬爣 */
  .btn-primary i,
  .btn-secondary i,
  .btn-link i {
    font-size: 14px ;
    margin-right: 6px ;
  }
  
  /* ========== 鍏朵粬鍙兘鐨勫鍣� ========== */
  /* 椤甸潰涓诲鍣� */
  .page-container {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* 鍐呭瀹瑰櫒 */
  .content-container {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* 鍖哄潡瀹瑰櫒 */
  .section-container {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* 閰掑簵缃戞牸 */
  .hotel-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 18px ;
    padding: 18px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* 閰掑簵鍗＄墖 */
  .hotel-card {
    padding: 16px ;
    max-width: 100% ;
    display: flex ;
    flex-direction: column ;
  }
  
  /* 閰掑簵鍗＄墖鍥剧墖瀹瑰櫒 */
  .hotel-card .image-container {
    height: 160px ;
    margin-bottom: 12px ;
  }
  
  /* ========== 娴姩鍥炬爣 ========== */
  /* Banner娴姩鍥炬爣 */

}


@media (width: 1440px) {
    
    
    .info-title h1 {
        font-size: 42px ;
    }
    
    .info-subtitle {
        font-size: 18px ;
    }
    
    .tab-panel {
        padding: 55px ;
        min-height: 460px ;
    }
    
    .panel-layout {
        gap: 40px ;
    }
    
    .panel-left,
    .panel-right {
        min-height: 500px ;
    }
    
    .case-img {
        height: 340px ;
    }
    
    .case-mask {
        padding: 20px ;
    }
    
    .case-mask h3 {
        font-size: 19px ;
    }
    
    .case-info {
        padding: 20px ;
    }
    
    .case-info h4 {
        font-size: 16px ;
        margin-bottom: 15px ;
    }
    
    .news-container {
        gap: 20px ;
    }
    
    .news-card {
        padding: 17px ;
    }
    
    .news-time {
        width: 62px ;
        height: 62px ;
    }
    
    .time-day {
        font-size: 23px ;
    }
    
    .news-text h4 {
        font-size: 14px ;
    }
    
    .news-text p {
        font-size: 13px ;
    }
}


/* 1440分辨率缩小适配 */
@media (min-width: 1440px) {
    .my-tab-wrapper {
        margin-bottom: 24px; /* 缩小底部间距 */
    }
    
    .my-tab-nav-container {
        margin-bottom: 24px; /* 缩小导航容器底部间距 */
    }
    
    .my-tab-nav,.tabs-nav {
        padding: 6px; /* 缩小导航内边距 */
        gap: 3px; /* 缩小选项间隙 */
    }
    
    .my-tab-item,.tab-btn {
        font-size: 14px; /* 缩小字体 */
        padding: 14px 24px; /* 缩小内边距 */
        min-width: 140px; /* 缩小选项最小宽度 */
        letter-spacing: 0.4px; /* 缩小字间距 */
    }
    .yzj-global-header {
  margin-bottom: 40px;
}
    .my-tab-item.active {
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.18); /* 缩小阴影范围 */
    }
}


/*宽屏*/
        .section-wrapper {
            width: 100%;
            padding: 80px 0;
            position: relative;
        }

        .section-wrapper.white-bg {
            background: #fff;
        }

        .section-wrapper.blue-bg {
            background: #F5F8FF;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 38px;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            color: #1a1a1a;
        }

        .section-header p {
            font-size: 16px;
            color: #666;
            font-weight: 400;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .card {
            background: #fff;
            border-radius: 20px;
            padding: 36px 28px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

         .card {
            background: #F6F7FA;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #2968ED;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(41, 104, 237, 0.15);
        }

        .card:hover::before {
            opacity: 1;
        }

        .card > * {
            position: relative;
            z-index: 1;
        }

        .card-icon {
            width: 64px;
            height: 64px;
            background: #EBF3FF;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.5s ease;
        }

        .card-icon i {
            font-size: 28px;
            color: #2968ED;
            transition: all 0.5s ease;
        }

        .card:hover .card-icon {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .card:hover .card-icon i {
            color: #fff;
        }

        .card-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
            transition: color 0.5s ease;
        }

        .card-subtitle {
            font-size: 13px;
            font-weight: 500;
            display: block;
            margin-bottom: 16px;
            transition: all 0.5s ease;
        }

        .card:hover .card-title,
        .card:hover .card-subtitle {
            color: #fff;
        }

        .card-description {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 24px;
            transition: color 0.5s ease;
            min-height: 72px;
        }

        .card:hover .card-description {
            color: rgba(255, 255, 255, 0.95);
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            color: #2968ED;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.5s ease;
        }

        .card-link i {
            margin-left: 6px;
            transition: transform 0.5s ease;
            font-size: 12px;
        }

        .card:hover .card-link {
            color: #fff;
        }

        .card:hover .card-link i {
            transform: translateX(4px);
        }

        .card-number {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 56px;
            font-weight: 900;
            color: rgba(41, 104, 237, 0.03);
            line-height: 1;
            transition: all 0.5s ease;
        }

        .card:hover .card-number {
            color: rgba(255, 255, 255, 0.1);
            transform: scale(1.2);
        }

        @media (max-width: 1024px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 640px) {
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .section-header p {
                font-size: 15px;
            }

            .card {
                padding: 32px 24px;
            }

            .card-title {
                font-size: 18px;
            }

            .card-number {
                font-size: 48px;
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card {
            animation: slideInUp 0.8s ease-out backwards;
        }

        .card:nth-child(1) { animation-delay: 0.1s; }
        .card:nth-child(2) { animation-delay: 0.2s; }
        .card:nth-child(3) { animation-delay: 0.3s; }
        .card:nth-child(4) { animation-delay: 0.4s; }
        
        
        
        
        /* ==================== 手机端完整CSS ==================== */

/* 基础重置 */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        overflow-x: hidden;
    }

    /* 容器 */
    .my-scenario-container {
        max-width: 100%;
        margin: 20px auto;
        padding: 0 12px;
    }

    /* 全局标题 */
    .yzj-global-header {
        margin-bottom: 25px;
        text-align: center;
    }

    .yzj-global-title {
        font-size: 24px;
        font-weight: 700;
        color: #1F2937;
    }

    /* Tab导航区域 */
    .my-tab-wrapper {
        margin-bottom: 15px;
    }

    .my-tab-nav-container {
        margin-bottom: 15px;
        padding: 0;
    }

    .my-tab-nav {
        background: #F5FAFF;
        border-radius: 80px;
        padding: 4px;
        display: flex;
        gap: 4px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .my-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .my-tab-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
        border-radius: 80px;
        z-index: 1;
    }

    .my-tab-item {
        background: transparent;
        border: none;
        border-radius: 76px;
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 600;
        color: #6B7280;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        min-width: 90px;
        flex-shrink: 0;
        text-align: center;
        position: relative;
        z-index: 2;
        letter-spacing: 0.3px;
    }

    .my-tab-item:hover:not(.active) {
        color: #374151;
        transform: none;
    }

    .my-tab-item.active {
        background: #fff;
        color: #2968ED;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        transform: none;
    }

    /* Tab内容区域 */
    .my-tab-content {
        background: #EFF5FD;
        border-radius: 12px;
        padding: 0;
        min-height: auto;
        display: none;
        border: 1px solid rgba(255,255,255,0.3);
        overflow: hidden;
        position: relative;
    }

    .my-tab-content.active {
        display: block;
        animation: tabFadeIn 0.6s ease-out;
    }

    @keyframes tabFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 内容布局 - 改为垂直 */
    .my-content-layout {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
        position: relative;
    }

    .my-content-layout::after {
        display: none;
    }

    /* 侧边导航 - 改为顶部横向 */
    .my-side-nav {
        width: 100%;
        position: relative;
        background: #EFF5FD;
        border-radius: 12px 12px 0 0;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .my-side-nav::-webkit-scrollbar {
        display: none;
    }

    .my-side-nav button {
        width: auto;
        height: 50px;
        min-width: 100px;
        flex-shrink: 0;
        background: #EFF5FD;
        border: none;
        font-size: 13px;
        font-weight: 600;
        color: #4B5563;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        transition: all 0.3s ease;
        position: relative;
        line-height: 1.2;
        white-space: nowrap;
    }

    /* 移除所有分割线 */
    .my-side-nav button::after {
        display: none !important;
    }

    .my-side-nav button:has(+ button.active)::after {
        display: none !important;
    }

    /* 选中状态 - 底部蓝条 */
    .my-side-nav button.active {
        background: #EFF5FD;
        color: #2968ED;
    }

    .my-side-nav button.active::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        height: 3px;
        background: #2968ED;
        z-index: 1;
    }

    /* 悬停状态 */
    .my-side-nav button:hover:not(.active) {
        background: #EFF5FD;
        color: #2968ED;
        transform: none;
    }

    .my-side-nav button:hover:not(.active)::before {
        display: none;
    }

    /* 内容区域 */
    .my-content-area {
        width: 100%;
        padding: 20px 15px;
        background: #EFF5FD;
        border-radius: 0 0 12px 12px;
        position: relative;
        overflow: hidden;
    }

    /* 隐藏所有背景图 */
    .my-content-area::before,
    .my-content-area::after {
        display: none !important;
    }

    .my-content-area.hotel-bg::before,
    .my-content-area.cross-bg::before,
    .my-content-area.enterprise-bg::before {
        display: none !important;
    }

    /* 内容面板 */
    .my-content-panel {
        display: none;
        position: relative;
        z-index: 3;
    }

    .my-content-panel.active {
        display: block;
    }

    /* 标题区域 */
    .my-title-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .my-title-icon {
        width: 50px;
        height: 50px;
        background-color: #F36249;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        font-size: 22px;
        color: white;
        margin-bottom: 10px;
        box-shadow: 0 4px 12px rgba(243,98,73,0.3);
    }

    .my-title-text {
        font-size: 22px;
        font-weight: 700;
        color: #1F2937;
        line-height: 1.3;
    }

    .my-title-link {
        color: #1F2937;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .my-title-link:hover {
        color: #2968ED;
    }

    /* 描述区域 */
    .my-desc {
        font-size: 14px;
        line-height: 1.6;
        color: #374151;
        padding: 0;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .my-learn-more {
        margin-top: 10px;
    }

    .my-learn-more a {
        color: #2968ED;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }

    .my-learn-more a:hover {
        color: #0066CC;
        transform: none;
    }

    /* 分区设计 */
    .my-section {
        margin-bottom: 25px;
        width: 100%;
        max-width: 100%;
    }

    .my-section-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        padding: 10px 0;
    }

    .my-section-icon {
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, #2968ED, #3B82F6);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
    }

    .my-section-title {
        font-size: 17px;
        font-weight: 700;
        color: #1F2937;
        margin: 0;
    }

    /* 场景网格 - 单列 */
    .my-scenario-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 10px;
        padding: 12px;
        width: 100%;
    }

    .my-scenario-card {
        padding: 15px;
        border-radius: 10px;
        background: white;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        transition: none;
        cursor: pointer;
        min-width: 0;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-scenario-card:hover {
        background: white;
        transform: none;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-scenario-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #2968ED, #3B82F6);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        flex-shrink: 0;
        transition: none;
    }

    .my-scenario-card:hover .my-scenario-icon {
        transform: none;
        box-shadow: none;
    }

    .my-scenario-content {
        flex: 1;
        min-width: 0;
    }

    .my-scenario-title {
        font-size: 15px;
        font-weight: 700;
        color: #1F2937;
        margin: 0 0 5px 0;
        transition: none;
        word-wrap: break-word;
    }

    .my-scenario-card:hover .my-scenario-title {
        color: #1F2937;
    }

    .my-scenario-desc {
        font-size: 13px;
        color: #6B7280;
        line-height: 1.5;
        margin: 0;
        word-wrap: break-word;
    }

    /* 兼容网格 - 2列 */
    .my-compat-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        background: rgba(255,255,255,0.5);
        border-radius: 10px;
        padding: 12px;
        width: 100%;
    }

    .my-compat-card {
        padding: 12px 8px;
        border-radius: 8px;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        color: #4B5563;
        border: 1px solid #F3F4F6;
        transition: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        min-width: 0;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-compat-card:hover {
        transform: none;
        border-color: #F3F4F6;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        background: white;
    }

    .my-compat-icon {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #2968ED, #3B82F6);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 12px;
        transition: none;
        flex-shrink: 0;
    }

    .my-compat-card:hover .my-compat-icon {
        transform: none;
        box-shadow: none;
    }

    .my-compat-text {
        transition: none;
        font-size: 12px;
        word-wrap: break-word;
        text-align: center;
        line-height: 1.3;
        color: #4B5563;
    }

    .my-compat-card:hover .my-compat-text {
        color: #4B5563;
    }

    /* VS卡片区域 */
    .vs-wrap {
        width: 100%;
        box-sizing: border-box;
        padding: 0 0 40px 0;
        background: transparent;
    }

    .vs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        margin: 0 auto;
    }

    .vs-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .vs-card {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
        background: #F5F9FE;
        border-radius: 10px;
        transition: none;
    }

    .vs-link:hover .vs-card {
        transform: none;
        box-shadow: none;
    }

    .vs-icon-box {
        flex-shrink: 0;
    }

    .vs-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: none;
    }

    .vs-link:nth-child(1) .vs-icon {
        background: #E8EDFF;
    }

    .vs-link:nth-child(1) .vs-icon i {
        color: #4A70FF;
    }

    .vs-link:nth-child(2) .vs-icon {
        background: #EBEAFF;
    }

    .vs-link:nth-child(2) .vs-icon i {
        color: #6A4BFF;
    }

    .vs-link:nth-child(3) .vs-icon {
        background: #E4F9F9;
    }

    .vs-link:nth-child(3) .vs-icon i {
        color: #00C7A9;
    }

    .vs-link:nth-child(4) .vs-icon {
        background: #EBF6FF;
    }

    .vs-link:nth-child(4) .vs-icon i {
        color: #29A3FA;
    }

    .vs-link:hover .vs-icon {
        transform: none;
    }

    .vs-icon i {
        font-size: 14px;
        transition: none;
    }

    .vs-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .vs-title {
        font-size: 16px;
        font-weight: 600;
        color: #394F81;
        margin: 0;
        letter-spacing: 0.2px;
        transition: none;
    }

    .vs-link:hover .vs-title {
        color: #394F81;
    }

    .vs-desc {
        font-size: 13px;
        line-height: 1.6;
        color: #7B889C;
        margin: 0;
    }
}

/* 576px以下 - 小屏手机 */
@media (max-width: 576px) {
    .my-scenario-container {
        margin: 15px auto;
        padding: 0 10px;
    }

    .yzj-global-title {
        font-size: 20px;
    }

    .my-tab-nav {
        padding: 3px;
        gap: 3px;
    }

    .my-tab-item {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
    }

    .my-side-nav button {
        height: 45px;
        min-width: 85px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .my-content-area {
        padding: 15px 12px;
    }

    .my-title-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .my-title-text {
        font-size: 20px;
    }

    .my-desc {
        font-size: 13px;
    }

    .my-section {
        margin-bottom: 20px;
    }

    .my-section-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .my-section-title {
        font-size: 16px;
    }

    .my-scenario-grid {
        gap: 10px;
        padding: 10px;
    }

    .my-scenario-card {
        padding: 12px;
        gap: 10px;
    }

    .my-scenario-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .my-scenario-title {
        font-size: 14px;
    }

    .my-scenario-desc {
        font-size: 12px;
    }

    .my-compat-grid {
        gap: 8px;
        padding: 10px;
    }

    .my-compat-card {
        padding: 10px 6px;
        gap: 6px;
    }

    .my-compat-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .my-compat-text {
        font-size: 11px;
    }

    .vs-card {
        padding: 12px;
        gap: 10px;
    }

    .vs-title {
        font-size: 15px;
    }

    .vs-desc {
        font-size: 12px;
    }
}

/* 375px以下 - 超小屏 */
@media (max-width: 375px) {
    .yzj-global-title {
        font-size: 18px;
    }

    .my-tab-item {
        padding: 7px 10px;
        font-size: 11px;
        min-width: 70px;
    }

    .my-side-nav button {
        min-width: 75px;
        font-size: 11px;
        padding: 8px 10px;
    }

    .my-title-text {
        font-size: 18px;
    }

    .my-section-title {
        font-size: 15px;
    }

    .my-scenario-title {
        font-size: 13px;
    }

    .my-scenario-desc {
        font-size: 11px;
    }

    .my-compat-text {
        font-size: 10px;
    }

    .vs-title {
        font-size: 14px;
    }

    .vs-desc {
        font-size: 11px;
    }
}

.section-wrapper1 {

    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    animation: containerPulse 15s infinite ease-in-out;
}

/* 容器整体脉动动画 */
@keyframes containerPulse {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 50px rgba(58, 158, 254, 0.05) inset;
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 60px rgba(58, 158, 254, 0.1) inset;
    }
    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 50px rgba(58, 158, 254, 0.05) inset;
    }
}
/* 动态背景效果 - 增强容器氛围 */
.section-wrapper1::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(58, 158, 254, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatLarge 25s infinite ease-in-out;
}

.section-wrapper1::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(58, 158, 254, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatMedium 20s infinite ease-in-out;
    animation-delay: 3s;
}

/* 背景浮动动画 */
@keyframes floatLarge {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-40px) translateX(20px); }
    50% { transform: translateY(0) translateX(40px); }
    75% { transform: translateY(40px) translateX(20px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes floatMedium {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(30px) translateX(-20px); }
    50% { transform: translateY(0) translateX(-40px); }
    75% { transform: translateY(-30px) translateX(-20px); }
    100% { transform: translateY(0) translateX(0); }
}
        