main .section.top_head {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: block;
  position: relative;
  height: auto;
  padding: 0;
  padding-top: 4.375rem;
  background: none;

  .top_content {
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    padding: 0 3.125rem;
    padding-top: 4.375rem;
    z-index: 2;
    pointer-events: none;
    box-sizing: border-box;
    
    .mainbox {
        pointer-events: none;
        width: 100%;
        max-width: 75rem;
        margin: 0 auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
    }
  }

  form {
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    margin-right: 0;
    background: white;
    padding: 1.55rem;
    border-radius: 8px;
    box-shadow: 0 0 1.0625rem .0625rem #52525229;
    width: 24rem;
    flex-shrink: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    transform: translateY(-18px);

    > * {
      margin-bottom: .625rem !important;
    }

    h2 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .625rem;
      text-align: left;
      color: #252E46;
    }

    input {
      background: #F7F9FC;
      padding: .625rem;
      margin: 0;
      border: 1px solid #ccc;
      border-radius: .1875rem;
      
      &:focus-visible, &:focus {
        border: 1px solid #d4d4d4;
        outline: 0;
      }
      
      &::placeholder {
        color: #999999;
        font-size: .875rem;
      }
    }
    
    label {
      padding: 0;
      display: flex;
      align-items: center;
      input[type="checkbox"] {
        width: 14px;
        height: 14px;
        margin: 0;
        margin-right: 10px;
        padding: 0;
        flex-shrink: 0;
        border: 1px solid #ccc;
        accent-color: #FF5B1A;
      }
    }
    
    span.policy {
      font-size: .875rem;
      display: inline-flex;
      align-items: center;
      .btn {
        color: #FF5B1A !important;
        font-weight: normal;
        padding: 0;
        line-height: 1;
        vertical-align: baseline;
      }
    }
    
    > button {
      padding: .625rem;
      margin: 0 !important;
      background-color: #FF5B1A;
      color: white;
      cursor: pointer;
      border: 0;
      border-radius: .1875rem;
      
      &:hover {
        background-color: #e75116;
      }
    }
    
    // input-group 布局修正（与 customerReach 保持一致）
    .input-group {
      display: flex;
      align-items: stretch;
      flex-wrap: nowrap;
      
      input {
        margin: 0;
        flex: 1;
        min-width: 0;
      }
      
      .CheckCode {
        height: auto;
        margin-left: 0.5rem;
        cursor: pointer;
      }
      
      // 获取验证码按钮样式
      .get-mobile-code {
        background: #FF5B1A;
        color: #fff;
        border: none;
        border-radius: 0.1875rem;
        padding: 0 1rem;
        font-size: 0.875rem;
        cursor: pointer;
        white-space: nowrap;
        margin: 0;
        
        &:hover {
          opacity: 0.9;
        }
      }
    }
  }
}

.bannerSwiper {
  cursor: pointer;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  
  .swiper-slide {
    height: auto;
    background: none !important;

    img {
        width: 100%;
        height: auto;
        display: block;
        pointer-events: none;
        -webkit-user-drag: none;
        user-select: none;
    }

    .slide-inner {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      max-width: 75rem;
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      padding: 0 3.125rem;
      pointer-events: none;
      
      .top_intro {
        display: flex;
        flex-direction: column;
        font-size: 1.75rem;
        gap: .9375rem;
        font-weight: 700;
        margin-left: 0;
        transform: translateY(-100px);
        letter-spacing: .1875rem;
        width: 50%; 
        z-index: 2;
        pointer-events: auto;
        em {
          font-size: 2rem;
          font-style: normal;
          margin-top: .375rem;
          display: inline-block;
        }
        strong {
          color: #FF5B1A;
        }
        .banner_btn {
          background: linear-gradient(90deg, #F28E26 0%, #FD644F 100%);
          color: white;
          border: none;
          padding: 0.75rem 2rem;
          border-radius: 8px;
          font-size: 1rem;
          font-weight: 500;
          cursor: pointer;
          transition: all 0.3s ease;
          width: fit-content;
          
          &:hover {
            background: linear-gradient(90deg, #E54E15 0%, #FF7A3C 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 91, 26, 0.3);
            color: white;
          }
        }
      }
    }
  }
  
  .swiper-pagination {
    bottom: 20px;
    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: #fff;
      opacity: 0.6;
      &-active {
        opacity: 1;
        background: #FF5B1A;
      }
    }
  }
}

// 数据统计栏样式
.data_stats {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 2.25rem 3rem;
  background: #fff;
  border: 2px solid #FF5B1A;
  border-radius: 1rem;
  box-shadow: 0 4px 20px #FFF6F0;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -4.5rem;
  position: relative;
  z-index: 5;
  .stats_divider {
    width: 1px;
    height: 2rem;
    background: #CFCCCB;
    flex-shrink: 0;
  }
  .stats_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    .num_wrap {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      .underline {
        height: 3px;
        width: 100%;
        border-radius: 0;
        margin-top: 4px;
      }
    }
    .number {
      font-size: 2.2rem;
      font-weight: 700;
      color: #333;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
      .count {
        display: inline-block;
      }
      em {
        font-style: normal;
        font-size: 1rem;
        color: #666;
        margin-left: 2px;
        position: relative;
      }
      .arrow {
        width: 0.75rem;
        height: auto;
        position: absolute;
        top: -1rem;
        left: 50%;
        transform: translateX(-50%);
      }
    }
    .label {
      font-size: 1rem;
      color: #666;
      margin-left: 0.5rem;
      white-space: nowrap;
    }
    // 颜色变体 - 数字黑色，下划线和箭头彩色
    &.orange {
      .arrow { color: #FF5B1A; }
      .underline { background: #FF5B1A; }
    }
    &.blue {
      .arrow { color: #FF7F00; }
      .underline { background: #FF7F00; }
    }
    &.purple {
      .arrow { color: #FFC200; }
      .underline { background: #FFC200; }
    }
    &.yellow {
      .underline { background: #9B59B6; }
    }
  }
}

// 响应式适配
@media (max-width: 992px) {
  .section.top_head .top_content {
    justify-content: center;
  }
  
  .data_stats {
    width: 90%;
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
    gap: 1rem;
    
    .stats_divider {
      display: none;
    }
    .stats_item {
      width: 45%;
      justify-content: center;
      border: none;
      
      .number {
        font-size: 1.8rem;
      }
      
      .label {
        font-size: 0.875rem;
      }
    }
  }
  
  .section.topease_ad_new {
    .ad_card_new {
      flex-direction: column !important;
      
      .ad_card_img {
        max-width: 100%;
      }
      
      .ad_card_content {
        align-items: center;
        text-align: center;
        
        .ad_card_desc {
          border-left: none;
          border-top: 3px solid #FF5B1A;
          padding-left: 0;
          padding-top: 1rem;
        }
      }
    }
  }
}
.section.which_data {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 0%;
  position: relative;
  width: 100%;
  margin-top:2.5rem;
  padding-left: 0;
  padding-right: 0;
  h2 {
    position: relative;
    z-index: 4;
    color: #3A434F;
    font-weight: 700;
    margin-bottom: 2.5rem;
  }
  > img {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 3;
  }
  .card_list {
    position: relative;
    z-index: 4;
    width: 70%;
    display: flex;
    flex-direction: column;
    margin: 1.875rem auto 0;
    text-align: center;
    line-height: 2rem;
    color: #5A697E;
    font-weight: 400;
    span{
      color:#FF5B1A ;
      display: contents;
    }
  }
  .search_country_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, #fcfcfc, #ffffff);
    .continent_wrap {
      position: relative;
      animation: appear linear;
      animation-timeline: view();
      animation-range: entry 0% cover 20%;
      width: 77%;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
      background: white;
      border-radius: .9375rem;
      box-shadow: 0 0 1.0625rem 1px rgba(82,82,82,0.16);
      margin: 3rem auto 0;
      padding: 1.25rem;
      z-index: 3;
      .search_country {
        padding: 0;
        padding-right: 1.25rem;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .nav-item {
          border-radius: .625rem;
          overflow: hidden;
          width: 100%;
          margin-bottom: .9375rem;
          &:last-of-type {
            margin-bottom: 0;
          }
        }
        .continent {
          color: #333333;
          position: relative;
          padding: .9375rem 1.25rem;
          text-wrap: nowrap;
        }
        .active {
          background: #FF5B1A;
          color: white;
          position: relative;
          &::before {
            content: "";
            width: .1875rem;
            height: 50%;
            background-color: white;
            position: absolute;
            left: .5125rem;
            top: 50%;
            transform: translateY(-50%);
          }
        }
      }
    }
  }
  .flags_section {
    width: 85%;
    margin: 3rem auto 0;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.08);
    padding: 2rem;
    position: relative;
    z-index: 3;
    border: 1.5px solid #FF5B1A;
    
    .continent_row {
      display: flex;
      align-items: flex-start;
      padding: 0.5rem 0;
      border-bottom: none;
      
      &:last-of-type {
        border-bottom: none;
      }
      
      &:first-child .continent_label::before {
        background: #1A9BFF;
      }
      
      &:nth-child(2) .continent_label::before {
        background: #00923F;
      }
      
      &:nth-child(3) .continent_label::before {
        background: #E30A17;
      }
      
      &:nth-child(4) .continent_label::before {
        background: #FF5B1A;
      }
      
      &:nth-child(5) .continent_label::before {
        background: #FFD200;
      }
      
      &:nth-child(6) .continent_label::before {
        background: #6CB2DD;
      }
      
      .continent_label {
        width: 7.5rem;
        margin-left: 1.5rem;
        margin-top: 1rem;
        flex-shrink: 0;
        padding-left: 0.75rem;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        
        &::before {
          content: "";
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 4px;
          height: 24px;
          background: #FF5B1A;
        }
        
        .zh {
          display: block;
          font-size: 12px;
          font-weight: 500;
          color: #5A697E;
          line-height: 1.2;
        }
        
        .en {
          display: block;
          font-size: 10px;
          color: #5A697E;
          white-space: nowrap;
          line-height: 1.2;
        }
      }
      
      .flags_list {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-left: 0;
        padding-top: 0.8rem;
        height: 3.3rem;
        overflow: hidden;
        
        .flag_item {
          display: flex;
          flex-direction: column;
          align-items: center;
          width: 3.5rem;
          flex-shrink: 0;
          position: relative;
          
          img:not(.hot_icon) {
            width: 2.5rem;
            height: 1.5rem;
            object-fit: cover;
            border: none;
            border-radius: 2px;
          }

          .hot_icon {
            position: absolute;
            top: -0.6rem;
            right: 0.1rem;
            width: 1.4rem;
            height: auto;
            z-index: 1;
          }
          
          span {
            font-size: 0.625rem;
            color: #666;
            margin-top: 0.25rem;
            text-align: center;
            white-space: nowrap;
          }
        }
      }
    }
    
    .flags_note {
      display: block;
      text-align: right;
      color: #B6B6B6;
      font-size: 0.75rem;
      margin-top: 1rem;
    }
  }
  > span {
    position: absolute;
    bottom: -1.55rem;
    right: 1.25rem;
    color: #666666d0;
  }
}
.section.search_data {
  width: 65%;
  position: relative;
  padding: 0;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
  #search_data {
    position: relative;
    top: -15vh;
    display: block;
    height: 0;
    overflow: hidden;
  }
  h2 {
    margin: 2.875rem;
  }
  .input-group {
    display: flex;
    align-items: center;
    background: white;
    padding: .625rem 1.25rem;
    border-radius: .3125rem;
    box-shadow: 0px 0px .5rem 1px rgba(218,218,218,0.4);
    .select-menu {
      cursor: pointer;
      position: relative;
    }
    input {
      border: 0;
      &:focus {
        border: 0;
        box-shadow: none;
      }
    }
    .btn {
      font-size: 1rem;
      font-weight: 700;
    }
    .bi-search {
      margin-left: 1rem !important;
      padding-left: 0.7rem !important;
      border-left: 1px solid #A5A5A5;
    }
    .form-control {
      background: white;
      border: 0;
      &:focus {
        border: 0;
        box-shadow: none;
      }
    }
    .select {
      background-color: #FF5B1A;
      padding: .625rem;
      color: #fff;
      font-weight: 500;
      border-radius: .425rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      span {
        padding-right: .625rem;
      }
    }
    .options-list {
      position: absolute;
      width: 100%;
      background-color: white;
      border-radius: .375rem;
      margin-top: .375rem;
      padding: 0 1.25rem;
      overflow-y: auto;
      transition: 0.3s ease;
      height: 0;
      z-index: 3;
      overflow: hidden;
      box-shadow: 0px 0px .5rem .125rem rgba(218,218,218,0.4);
    }
    .option{
      color: #666666;
      padding: 8px 0;
      font-weight: 500;
      font-size: 14px;
      transition: 0.2s ease;
    }
    .option:hover,
    .option.selected{
      color: #FF5B1A;
    }
    .options-list.active{
      height: 115px;
    }
  }
  .tabel_box {
    position: relative;
    padding: 1.25rem;
    background: white;
    border-radius: .625rem;
    box-shadow: 0px 0px .5rem .125rem rgba(218, 218, 218, 0.4);
    .table_wrap {
      position: relative;
      overflow-x: auto;
      overflow-y: hidden;
      .table {
        .table-light {
          --bs-table-bg: #FF5B1A;
          --bs-table-color: white;
        }
        td {
          white-space: nowrap;
          color: #828282;
        }
        .buyer {
          color: #FF5B1A;
          cursor: pointer;
        }
        .supplier {
          color: #007EDF;
          cursor: pointer;
        }
        .prodesc {
          strong {
            color: #FF5B1A;
          }
        }
      }
    }
    .apply_btn_wrap {
      position: absolute;
      bottom: -8.525rem;
      height: 8.125rem;
      width: 100%;
      align-content: center;
      left: 50%;
      background: #ffffff8c;
      backdrop-filter: blur(5px);
      transform: translateX(-50%);
      .btn {
        margin: 0 auto;
        display: block;
      }
    }
  }
  .opacity_1 {
    opacity: 0.1;
  }
}
.section.customsData_why_topease {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 0%;
  margin-top: 0;
  background: #fff;
  width: 100%;
  padding: 1.5rem 0 3rem 0;
  h2 {
    margin-bottom: 4rem;
    color: #3A434F;
    font-weight: 700;
  }
  .card_list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    .card {
      border: 0;
      display: flex;
      flex-direction: column;
      width: 24%;
      background: transparent;
      overflow: visible;
      align-items: flex-start;
      
      .card_header {
        background: linear-gradient(90deg, #f38e27 0%, #fd664d 100%);
        color: white;
        font-weight: 500;
        font-size: 1.425rem;
        padding: 0.9rem 1.5rem;
        margin: 0;
        width: 75%;
        border-radius: 0.5rem 0.5rem 0 0;
        position: relative;
        z-index: 2;
      }
      
      &.quality .card_header {
        background: linear-gradient(90deg, #ff961f 0%, #ffd1a9 100%);
      }

      .card_body {
        background: #ffead4;
        width: 100%;
        border-radius: 0 0.5rem 0.5rem 0.5rem;
        padding: 2rem 1.5rem 2rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        height: 100%;
        text-align: left;
        
        img {
            width: 7rem;
            height: 7rem;
            display: block;
            background: transparent;
            border-radius: 0;
            padding: 0;
            object-fit: contain;
            flex-shrink: 0;
            box-shadow: none;
        }
        
        .reason_wrap {
          display: flex;
          flex-direction: column;
          justify-content: center;
          p {
            color: #5A697E;
            font-size: 1rem;
            line-height: 1.8;
            margin: 0;
            strong {
              color: #FF5B1A;
              font-size: 1.25rem;
              margin-right: 0.5rem;
            }
          }
        }
      }
    }
  }
  .btn {
    display: block;
    margin: 2.5rem auto 0;
    text-align: center;
    padding: 0.6rem 2rem;
    border-radius: 8px;
    background: linear-gradient(90deg, #F28E26 0%, #FD644F 100%) !important;
    transition: all 0.3s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 10px rgba(253, 100, 79, 0.3);
    }
  } 
}
.section.topease_ad {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 0%;
  .ad_list {
    .ad_item {
      animation: appear linear;
      animation-timeline: view();
      animation-range: entry 0% cover 20%;
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      .imgs {
        > img {
          width: 100%;
        }
        .scale_4_2, .scale_5_1, .scale_5_2, .scale_5_3 {
          width: unset;
        }
      }
      .imgs.scale {
        position: relative;
        transition: transform .3s;
        &:hover {
          transform: scale(1.05);
          transition: transform .3s;
        }
        .scale_6_2 {
          position: absolute;
          top: 2.85rem;
          left: -1.875rem;
        }
      }
      .imgs.scale_2 {
        transition: transform .3s;
        &:hover {
          img {
            &:nth-of-type(1) {
              transform: translate3d(2.5rem, -0.625rem, 0) scale(1.05);
              transition: transform .3s;
            }
            &:nth-of-type(2) {
              transform: translate3d(-2.5rem, 0.625rem, 0) scale(1.05);
              transition: transform .3s;
            }
          }
        }
        img {
          transition: transform .3s;
        }
      }
      .imgs.scale_3 {
        position: relative;
        .scale_3_1 {
          transition: all .3s;
        }
        .scale_3_2 {
          transition: all .3s;
          position: absolute;
          top: 2.85rem;
          left: -3.125rem;
        }
        &:hover {
          .scale_3_1 {
            transition: transform .3s;
            transform: translate3d(1.25rem, -1.25rem, 0);
          }
          .scale_3_2 {
            transition: transform .3s;
            transform: translateX(-1.25rem);
          }
        }
      }
      .imgs.scale_4 {
        transition: transform .3s;
        position: relative;
        height: 600px;
        .scale_4_2 {
          position: absolute;
          top: 2.85rem;
          left: 0;
        }
        .scale_4_3 {
          position: absolute;
          top: 9.5625rem;
          left: 16.0625rem;
        }
        &:hover {
          .scale_4_2 {
            transform: translate3d(2.5rem, -0.625rem, 0) scale(1.05);
            transition: transform .3s;
          }
          .scale_4_3 {
            transform: translate3d(-2.5rem, 0.625rem, 0) scale(1.05);
            transition: transform .3s;
          }
        }
        img {
          transition: transform .3s;
        }
      }
      .imgs.scale_5 {
        display: flex;
        align-items: center;
        position: relative;
        height: 600px;
        z-index: 1;
        &:hover {
          .scale_5_1 {
            transform: translate3d(-1.875rem, 13.875rem, 0) scale(1.05);
            transition: transform .3s;
          }
          .scale_5_2 {
            transform: translate3d(-1.875rem, -1.875rem, 0) scale(1.05);
            transition: transform .3s;
          }
          .scale_5_3 {
            transform: translate3d(1.875rem, -1.875rem, 0) scale(1.05);
            transition: transform .3s;
          }
          .scale_5_4 {
            transform: translate3d(1.875rem, 13.875rem, 0) scale(1.05);
            transition: transform .3s;
          }
        }
        .scale_5_1 {
          z-index: 1;
          width: 31.25rem;
          transform: translateY(8.25rem);
        }
        .scale_5_2 {
          position: absolute;
          top: 2.85rem;
          left: 0;
          z-index: 0;
        }
        .scale_5_3 {
          position: absolute;
          top: 2.5rem;
          left: 10.1625rem;
          z-index: 0;
        }
        .scale_5_4 {
          z-index: 1;
          width: 26.9375rem;
          transform: translateY(8.25rem);
        }
        img {
          transition: transform .3s;
        }
      }
      .vanilla_imgs {
        perspective: 2000px;
        position: relative;
      }
      .vanilla_imgs_2 {
        .vanilla_imgs_2_1 {
          position: absolute;
          top: 2.1875rem;
          display: block;
          left: 6.25rem;
          z-index: 1;
          transform: translateZ(100px);
        }
        .vanilla_imgs_2_2 {
          transform: translateZ(50px);
          /* position: absolute;
          top: 0;
          display: block;
          left: 0; */
        }
      }
      .desc {
        width: 35%;
        span {
          font-weight: 600;
          font-size: 1.55vw;
          display: block;
          margin-bottom: 1.25rem;
          strong {
            color: #FF5B1A;
          }
        }
        p {
          line-height: 1.6;
          display: block;
          letter-spacing: 1px;
          font-size: 1vw;
          margin-bottom: 1.25rem;
        }
      }
    }
  }
}
.ellipsis{
  white-space: nowrap;         /* 不换行 */
  overflow: hidden;            /* 超出部分隐藏 */
  text-overflow: ellipsis;     /* 超出部分显示省略号 */
  max-width: 4.5rem;  /* 设置最大宽度 */
}

// 新版"基于数据，不止于数据，特易还能"版块样式
.section.topease_ad_new {
  padding: 4rem 0;
  background: transparent;
  
  h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #3A434F;
    margin-bottom: 2.5rem;
  }
  
  .ad_list_new {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  
  .ad_card_new {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 0.5rem;
    
    &.reverse {
      flex-direction: row-reverse;
      
      .ad_card_content {
        align-items: flex-start;
      }
      
      .ad_card_desc {
        padding-left: 1rem;
      }
    }
    
    .ad_card_img {
      flex: 1;
      display: flex;
      justify-content: center;
      position: relative;
      transition: transform 0.3s;
      
      &:hover {
        transform: scale(1.05);
      }
      
      img {
        width: 100%;
        max-width: 100%;
        height: auto;
      }
    }
    
    .ad_card_content {
      width: 40%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      
      .ad_card_number {
        font-size: 1.5rem;
        font-weight: 500;
        color: #3A434F;
        margin-bottom: 0.5rem;
      }
      
      .ad_card_title {
        font-size: 1.5rem;
        font-weight: 500;
        color: #3A434F;
        margin-bottom: 1.5rem;
      }
      
      .ad_card_desc {
        position: relative;
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(90deg, rgba(255, 200, 170, 0.5) 0%, rgba(255, 200, 170, 0.1) 50%, transparent 100%);
        border-radius: 0 0.5rem 0.5rem 0;
        
        &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          width: 3px;
          height: 100%;
          background: linear-gradient(180deg, #F28E27 0%, #FD644F 100%);
          border-radius: 3px 0 0 3px;
        }
        
        p {
          color: #666;
          font-size: 0.95rem;
          line-height: 1.8;
          margin: 0;
        }
      }
      
      .ad_card_btn {
        background: linear-gradient(90deg, #F28E26 0%, #FD644F 100%);
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        
        &:hover {
          transform: translateY(-5px);
          box-shadow: 0 5px 10px rgba(253, 100, 79, 0.3);
        }
      }
    }
  }
  
  .ad_card_new.theme-purple {
    .ad_card_content {
      .ad_card_number {
        color: #3A434F;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        
        .ai_icon {
          width: 28px;
          height: 28px;
          object-fit: contain;
        }
      }
      
      .ad_card_title {
        color: #3A434F;
      }
      
      .ad_card_desc {
        background: linear-gradient(90deg, rgba(107, 78, 230, 0.15) 0%, rgba(107, 78, 230, 0.05) 50%, transparent 100%);
        
        &::before {
          background: linear-gradient(180deg, #516CDE 0%, #9C3CEE 100%);
        }
      }
      
      .ad_card_btn {
        background: linear-gradient(90deg, #516CDE 0%, #9C3CEE 100%);
        border-radius: 8px;
        
        &:hover {
          transform: translateY(-5px);
          box-shadow: 0 5px 10px rgba(81, 108, 222, 0.3);
        }
      }
    }
  }
}

// 响应式适配
@media (max-width: 992px) {
  .section.topease_ad_new {
    .ad_card_new {
      flex-direction: column !important;
      
      .ad_card_img {
        max-width: 100%;
      }
      
      .ad_card_content {
        align-items: center;
        text-align: center;
        
        .ad_card_desc {
          border-left: none;
          border-top: 3px solid #FF5B1A;
          padding-left: 0;
          padding-top: 1rem;
        }
      }
    }
  }
}

.ad_card_new.theme-purple .ad_card_img {
  flex: 1.4;
  max-width: 70%;
  
  img {
    width: 100%;
    height: auto;
  }
}