/* 加载状态样式 */
.loading-container {
    text-align: center;
    padding: 60px 0;
  }
  
  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1890ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .error-container {
    text-align: center;
    padding: 60px 0;
    color: #666;
  }
  
  /* 静态轮播图样式 */
  .hero-static {
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  
  .static-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .static-slide:first-child {
    opacity: 1;
  }
  
  /* 成为合作伙伴，获得专业支持 */
  /* 重构后的关于我们区域样式 */
  .about-content-wrapper {
    /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
    border-radius: 20px;
    padding: 5px 40px 0px 40px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    position: relative;
    overflow: hidden;
  }
  
  /* .about-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3AB0C8 0%, #18AA99 50%, #EBA62B 100%);
  } */
  
  
  .about-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }
  
  .about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3AB0C8 0%, #18AA99 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .about-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  
  .services-cards {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }
  
  .service-card {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
  }
  .service-card:last-child{
      margin-bottom: 0;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 176, 200, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #3AB0C8;
  }
  
  .service-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #3AB0C8 0%, #18AA99 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  .service-icon img{
      width: 30px;
  }
  .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .service-content {
    position: relative;
    z-index: 2;
  }
  .service-content h5 {
    font-size: 18px!important;
    font-weight: 600!important;
    color: #333!important;
    margin-bottom: 12px!important;
    margin-top: 0;
    transition: color 0.3s ease;
  }
  .service-card:hover .service-content h5 {
    color: #3AB0C8!important;
  }
  .service-content p {
    color: #666!important;
    line-height: 1.6!important;
    margin: 0!important;
    font-size: 14px!important;
  }
  
  .about-actions {
    position: relative;
    text-align: center;
    margin-top: 30px;
  }
  
  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3AB0C8 0%, #18AA99 100%);
    border: none;
    padding: 12px 38px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(58, 176, 200, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .contact-btn:hover::before {
    left: 100%;
  }
  
  .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 176, 200, 0.4);
    color: white;
    text-decoration: none;
  }
  /* end */
  
  .tooltips {
      position: absolute;
      background-color: #333;
      color: #fff;
      padding: 5px 10px;
      border-radius: 4px;
      display: none;
      z-index: 1000;
      white-space: nowrap;
      top: -42px;
      left: 50%;
      transform: translateX(-50%);
  }
  .tooltips::before {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent;
      border-top-color: #333;
  }
  .join-spread {
      margin-top: 20px;
  }
  .pal-item{
      padding: 0 10px;
  }
  .join-spread img {
      width: 77%;
  }
  
  
  .flow-list {
      overflow: hidden
  }
  
  .flow-list li {
      width: 25%;
      float: left;
      display: block;
      height: 100%;
      text-align: center;
  }
  
  .flow-list li img {
      width: 63%;
      margin: 0 auto;
  }
  
  .flow-info {
      padding-top: 30px;
      font-size: 16px;
      line-height: 26px;
  }
  .pal-img-box{
      box-shadow: 1px 4px 20px -2px rgb(0 0 0 / 20%);
      background: #fff;
      height: 66px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px auto;
      position: relative;
      overflow: hidden;
  }
  .pal-img-box:hover .pal-name{
      opacity: 1;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1000;
      transition: all 0.5s ease;
      color: #ffffff;
  }
  .pal-name{
      opacity: 0;
      text-align: center;
      width: 100%;
      position: absolute;
      padding: 0 10px;
      top: 0;
      left: 0;
      height: 100%;
      line-height: 1.2;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      word-wrap: break-word;
      word-break: break-all;
      font-size: 14px;
  }
  @media (max-width: 768px) {
      .flow-info{
          font-size: 14px;
          padding-top: 10px;
      }
      .pal-img-box{
          margin: 0 auto 12px auto;
      }
      .default-padding{
          padding-top: 34px;
          padding-bottom: 30px;
      }
      .mobile-hide{
          display: none;
      }
      .site-heading{
          margin-bottom: 18px;
      }
      .join-spread img{
          width: 100%;
      }
      .join-spread.row{
          margin-right: -10px;
          margin-left: -10px;
      }
      .pal-item{
          padding: 0 10px;
      }
      .flow-list li img{
          width:80%
      }
      .about-content-wrapper{
          padding: 5px 0px 0px 0px;
      }
      .about-header h2{
          font-size: 22px;
      }
      .service-card{
          padding: 16px;
      }
      .service-content p{
          font-size: 12px!important;
      }
  }