/* 修改swiper相关样式 */
.hero {
    width: 100%;
    height: calc(100vh);
    overflow: hidden; /* 防止溢出 */
}
.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.swiper-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 100%;
    text-align: center;
    z-index: 1; /* 确保文字在图片上层 */
}
.swiper-text .title {
    font-family: Alibaba-PuHuiTi-Medium;
    color: #fff;
    margin-bottom: clamp(10px, 1.5vw, 14px);
    line-height: 1.4;
    font-size: var(--font-size-52);
    max-width: min(90%, 1600px);
}
.swiper-text .subtitle {
    font-family: Alibaba-PuHuiTi-Regular;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: min(90%, 1600px);
    font-size: var(--font-size-20);
}
html[lang="en"] .swiper-text .title {
    font-family: Alibaba-PuHuiTi-Regular;
}
html[lang="en"] .swiper-text .subtitle {
    display: none;
}
.swiper-slide-1 {
    background: url('/images/10017.png') no-repeat top center/cover;

}
.swiper-slide-2 {
    
    background: url('/images/10018.png') no-repeat top center/cover;
}

.swiper-slide-3 {
    background: url('/images/10019.png') no-repeat top center/cover;
}

.swiper-slide-4 {
    background: url('/images/10016.png') no-repeat top center/cover;
}


/* 关于安易行 */
.about-section {
    padding: 100px 0;
    background: url('/images/10020.jpg') no-repeat no-repeat center center/cover;
    background-size: cover;
    line-height: 2;
    max-width: 1920px;
    margin: 0 auto;
}
.about-header {
    text-align: left;
    margin-bottom: 70px;
}
.about-header h1 {
    font-weight: 500;
    color: #333;
    font-size: var(--font-size-30);
    line-height: 2;
    color: var( --primary-color);    
}

.about-header h2 {
    color: #666;
    font-size: var( --font-size-22);
    font-weight: 300;
    color: var( --primary-color);   
    font-family: AlibabaPuHuiTiLight;
    position: relative;
    padding-bottom: 24px;
}
.about-header h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 62px;
    background: var(--primary-color);
    height: 4px;
}

.about-content {
    width: 55%; /* 设置宽度为50% */
    max-width: 900px; /* 可选：设置最大宽度 */
}

.about-text {
    width: 100%; /* 让文本内容占满about-content的宽度 */
    min-width: 300px;
    text-align: justify;
}

.about-text p {
    color: var(--text-color);
    line-height: 2;
    margin-bottom: 20px;
    font-size: var(--font-size-18);
    font-family: AlibabaPuHuiTiRegular;
}

.features-grid {
    width: 100%;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}

.feature-item {
    text-align: center;
    display: inline-block;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 50px;
    height: 50px;
    object-fit: contain; /* 保持图片比例，完整显示图片 */
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #333;
    font-size: var(--font-size-16);
    margin-bottom: 10px;
}


/* 数据统计 */
    .statistics {
        position: relative;
    }
  .stat-grid {
    display: grid;
    height: 800px;
    max-width: 1920px;
    margin: 0 auto;
    grid-template-columns: 2fr 1fr;
    position: relative;
  }
  .stat-item-bg {
    background: url('/images/10021.png') no-repeat center;
    background-size: cover;
    color: #fff;
    height: 800px;
  }
  .stat-item-data {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    color: #fff;
  }
  .stat-item-data h3 {
    font-size: var(--font-size-40);
    margin-top: 120px;
    margin-bottom: 20px;
  }
  .stat-item-data .number {
    font-size: var(--font-size-64);
  }
  .stat-item-data span {
    font-size: var(--font-size-46);
  }
  .stat-item-data-column {
    height: 400px;
  }
  .stat-item-column {
    height: 800px;
  }
  .stat-item:first-child {
    background: url('/images/10022.jpg') no-repeat center;
    background-size: cover;
  }
  .stat-item:last-child {
    background: url('/images/10023.png') no-repeat center;
    background-size: cover;
  }
  
  .stat-item {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
    line-height: 2;
  }
  
  .stat-item h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: var(--font-size-34);
  }
  
  .stat-item .number {
    font-size: var(--font-size-46);
    color: #fff;
  }
  
  .stat-item span {
    font-size: var(--font-size-34);
    color: #fff;
    display: line-block;
    margin-left: 4px;
  }
  

/* 新闻动态样式 */
    .news {
        padding: 80px 0;
        background: #fff;
        position: relative;
    }
    .news-bg {
        position: absolute;
        bottom: 0;
        right: 0;
        /* 图片尺寸 自适应 */
        width: 800px;
        height: 561px;
        z-index: 1;
        background: url('/images/10024.png') no-repeat center/cover;
    }
      
    .news-title {
        font-size: var(--font-size-36);
        color: var(--light-gray-color);
        margin-bottom: 10px;
        font-family: AlibabaPuHuiTiMedium;
    }
  
    .news-subtitle {
        font-size: var(--font-size-28);
        color: var(--dark-color);
        margin-bottom: 40px;
    }
    
    .news-header {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        height: 140px;
        justify-content: space-between;
    }
    
    .news-more a {
        color: var(--text-color);
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    
    .arrow-icon {
        width: 20px;
        height: 20px;
        margin-left: 5px;
    }
    
    .news-slider-container {
        position: relative;
        z-index: 10;
    }
    .news-grid {
        display: flex;
        gap: 80px;
        overflow-x: scroll;
        word-wrap: normal;
        padding: 20px;
        scroll-behavior: smooth;
        position: relative;
        padding-bottom: 80px;
    }
      
      /* 自定义滚动条样式 */
      .news-grid::-webkit-scrollbar {
        height: 8px;  /* 滚动条高度 */
        background-color: var(--light-gray-color);  /* 滚动条背景 */
      }
      
      .news-grid::-webkit-scrollbar-thumb {
        background-color: var(--primary-color);  /* 滚动条滑块颜色 */
      }
      .news-grid::-webkit-scrollbar-button {
        /* display: none; */
        width: 30px;
        background: #fff;
    }
      .news-item {
        flex: 0 0 439px;  /* 固定宽度，不缩放 */
        background: #fff;
        overflow: hidden;
        box-shadow: 0 5px 16px #f2f2f2;
        transition: transform 0.3s ease;
      }
    
    .news-item:hover {
        transform: translateY(-5px);
        cursor: pointer;
    }
    
    .news-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-date {
        color: var(--primary-color);
        font-size: var(--font-size-14);
        margin-bottom: 10px;
        font-weight: bold;
    }
    
    .news-heading {
        font-size: var(--font-size-18);
        color: var(--dark-color);
        margin-bottom: 10px;
        line-height: 1.4;
        text-align: justify;
        width: 100%;
    }
    
    .news-text {
        color: var(--gray-color-2);
        font-size: 14px;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .news-navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .nav-prev,
    .nav-next {
        position: absolute;
        bottom: -12px;
        background: url('/images/10025.png') no-repeat center;
        background-size: contain;
        width: 33px;
        height: 33px;
        z-index: 999;
        cursor: pointer;
        border: none;
    }
    .nav-prev {
        left: 0px;
    }
    .nav-next  {
        transform: rotate(180deg);
        right: 0px;
    }
  

/* 大屏幕 (1440px 及以上) */
@media screen and (min-width: 1440px) and (max-width: 1919px)  {
    /* 轮播图 */
    .swiper-text .title {
        font-size: var(--font-size-46);
    }
    .swiper-text .subtitle {
        font-size: var(--font-size-18);
    }
    /* 关于安易行 */
    .about-header h1 {
        font-size: var(--font-size-26);
    }
    .about-header h2 {
        font-size: var( --font-size-18);
    }
    .about-text p {
        font-size: var(--font-size-16);
    }
    .feature-item img {
        width: 45px;
        height: 45px;
    }
    .feature-item h3 {
        font-size: var(--font-size-14);
    }

    /* 统计数据 */
    .stat-item-data h3,
    .stat-item-data span{
      font-size: var(--font-size-34);
    }
    .stat-item-data .number {
      font-size: var(--font-size-46);
    }

    .stat-item h3,
    .stat-item span {
        font-size: var(--font-size-30);
    }
    .stat-item .number {
        font-size: var(--font-size-40);
    }

    /* 新闻动态 */
    .news-title {
        font-size: var(--font-size-30);
    }
  
    .news-subtitle {
        font-size: var(--font-size-24);
        color: var(--dark-color);
        margin-bottom: 40px;
    }
    
}


/* 中等屏幕 (1280px - 1439px) */
@media screen and (min-width: 1280px) and (max-width: 1439px) {
    
    /* 轮播图 */
    .swiper-text .title {
        font-size: var(--font-size-40);
    }
    .swiper-text .subtitle {
        font-size: var(--font-size-16);
    }

    /* 关于安易行 */
    .about-header h1 {
        font-size: var(--font-size-20);
    }
    .about-header h2 {
        font-size: var( --font-size-16);
    }
    .about-text p {
        font-size: var(--font-size-16);
    }
    .feature-item img {
        width: 38px;
        height: 38px;
    }
    .feature-item h3 {
        font-size: var(--font-size-14);
    }
    
    /* 统计数据 */
    .stat-item-data h3,
    .stat-item-data span{
      font-size: var(--font-size-30);
    }
    .stat-item-data .number {
      font-size: var(--font-size-42);
    }

    .stat-item h3,
    .stat-item span {
        font-size: var(--font-size-26);
    }
    .stat-item .number {
        font-size: var(--font-size-38);
    }
    /* 新闻动态 */
    .news-title {
        font-size: var(--font-size-26);
    }
    .news-subtitle {
        font-size: var(--font-size-20);
    }
    .news-more a {
        font-size: var(--font-size-12);
    }
    .arrow-icon {
        width: 14px;
        height: 14px;
    }
    .news-heading {
        font-size: var(--font-size-16);
    }
    .news-text {
        font-size: var(--font-size-14);
    }
    /* 新闻动态背景图片 */
    .news-bg {
        width: 700px;
        height: 461px;
    }
}

/* 平板及小屏幕 (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px){
    /* 关于安易行 */
    .feature-item img {
        width: 45px;
        height: 45px;
    }
    .about-header h1 {
        font-size: var(--font-size-20);
    }
    .about-header h2 {
        font-size: var( --font-size-16);
    }
    .about-text p {
        font-size: var(--font-size-14);
    }
    .feature-item img {
        width: 38px;
        height: 38px;
    }
    .feature-item h3 {
        font-size: var(--font-size-12);
    }
    /* 轮播图 */
    .swiper-text .title {
        font-size: var(--font-size-36);
    }
    .swiper-text .subtitle {
        font-size: var(--font-size-14);
    }
    
    .stat-item-data h3,
    .stat-item-data span{
      font-size: var(--font-size-26);
    }
    .stat-item-data .number {
      font-size: var(--font-size-40);
    }

    .stat-item h3,
    .stat-item span {
        font-size: var(--font-size-22);
    }
    .stat-item .number {
        font-size: var(--font-size-34);
    }

    
    /* 新闻动态 */
    .news-title {
        font-size: var(--font-size-24);
    }
    .news-subtitle {
        font-size: var(--font-size-18);
    }
    .news-more a {
        font-size: var(--font-size-12);
    }
    .arrow-icon {
        width: 14px;
        height: 14px;
    }
    .news-heading {
        font-size: var(--font-size-16);
    }
    .news-text {
        font-size: var(--font-size-14);
    }
    /* 新闻动态背景图片 */
    .news-bg {
        width: 600px;
        height: 390px;
    }
}
/* 平板及小屏幕 (1024px - 1279px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    /* 关于安易行 */
    .feature-item img {
        width: 40px;
        height: 40px;
    }
    .about-header h1 {
        font-size: var(--font-size-24);
    }
    .about-header h2,
    .about-text p{
        font-size: var( --font-size-16);
    }
    .feature-item h3 {
        font-size: var(--font-size-14);
    }
    /* 轮播图 */
    .swiper-text .title {
        font-size: var(--font-size-36);
    }
    .swiper-text .subtitle {
        font-size: var(--font-size-14);
    }

    /* 统计数据 */
    .stat-grid {
        display: grid;
        grid-template-columns: 1fr;  /* 改为单列 */
        height: 1200px;
    }
    
    .stat-item-bg {
        height: 400px;
    }
    .stat-item-data h3,
    .stat-item-data span,
    .stat-item h3,
    .stat-item span {
      font-size: var(--font-size-26);
    }
    .stat-item-data .number,
    .stat-item .number {
      font-size: var(--font-size-40);
    }
    .stat-item{
        padding-left: 40px;
    }

    /* 新闻动态 */
    .news-title {
        font-size: var(--font-size-28);
    }
    .news-subtitle {
        font-size: var(--font-size-24);
    }
    .news-more a {
        font-size: var(--font-size-14);
    }
    .arrow-icon {
        width: 14px;
        height: 14px;
    }
    .news-heading {
        font-size: var(--font-size-16);
    }
    .news-text {
        font-size: var(--font-size-14);
    }
    /* 隐藏滚动 */
    .news-grid::-webkit-scrollbar,
    .news-navigation,
    .news-bg {
        display: none;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    /* 关于安易行 */
    .about-content {
        width: 100%; /* 在移动端占满宽度 */
    }
    .about-header h1 {
        font-size: var(--font-size-22);
    }
    .about-header h2 {
        font-size: var( --font-size-18);
    }
    .about-text p {
        font-size: var(--font-size-16);
    }
    .feature-item img {
        width: 38px;
        height: 38px;
    }
    .feature-item h3 {
        font-size: var(--font-size-14);
    }

    /* 轮播图 */
    .swiper-text .title {
        font-size: var(--font-size-34);
    }
    .swiper-text .subtitle {
        font-size: var(--font-size-16);
    }

    /* 统计数据 */
    .stat-grid {
        display: grid;
        grid-template-columns: 1fr;  /* 改为单列 */
        height: 1200px;
    }
    .stat-item-bg {
        height: 400px;
    }
    .stat-item-data h3,
    .stat-item-data span,
    .stat-item h3,
    .stat-item span {
        font-size: var(--font-size-26);
    }
    .stat-item-data .number,
    .stat-item .number {
        font-size: var(--font-size-40);
    }

    /* 新闻动态 */
    
    .news-title {
        font-size: var(--font-size-28);
    }
    .news-subtitle {
        font-size: var(--font-size-24);
    }
    .news-more a {
        font-size: var(--font-size-14);
    }
    .arrow-icon {
        width: 14px;
        height: 14px;
    }
    .news-heading {
        font-size: var(--font-size-16);
    }
    .news-text {
        font-size: var(--font-size-14);
    }
    /* 隐藏滚动 */
    .news-grid::-webkit-scrollbar,
    .news-navigation,
    .news-bg {
        display: none;
    }

}



@media screen and (max-width: 479px) {
    /* 关于安易行 */
    .about-content {
        width: 100%; /* 在移动端占满宽度 */
    }
    .about-header h1 {
        font-size: var(--font-size-22);
    }
    .about-header h2 {
        font-size: var( --font-size-18);
    }
    .about-text p {
        font-size: var(--font-size-16);
    }
    .feature-item img {
        width: 38px;
        height: 38px;
    }
    
    .feature-item h3 {
        font-size: var(--font-size-14);
    }

    /* 轮播图 */
    .swiper-text .title {
        font-size: var(--font-size-38);
    }
    .swiper-text .subtitle {
        font-size: var(--font-size-18);
    }

    /* 统计数据 */
    .stat-grid {
        display: grid;
        grid-template-columns: 1fr;  /* 改为单列 */
        height: 1200px;
    }
    .stat-item-bg {
        height: 400px;
    }
    .stat-item {
        padding-left: 20px;
    }
    
    .stat-item-data h3,
    .stat-item-data span,
    .stat-item h3,
    .stat-item span {
        font-size: var(--font-size-26);
    }
    .stat-item-data .number,
    .stat-item .number {
        font-size: var(--font-size-40);
    }
    
    /* 隐藏滚动 */
    .news-title {
        font-size: var(--font-size-24);
    }
    .news-subtitle {
        font-size: var(--font-size-20);
    }
    .news-more a {
        font-size: var(--font-size-14);
    }
    .arrow-icon {
        width: 14px;
        height: 14px;
    }
    .news-heading {
        font-size: var(--font-size-16);
    }
    .news-text {
        font-size: var(--font-size-14);
    }
    /* 隐藏滚动 */
    .news-grid::-webkit-scrollbar,
    .news-navigation {
        display: none;
    }
    .news-grid {
        flex-direction: column;
        padding-bottom: 20px;
        gap: 30px;
    }
    .news-item {
        width: 100%;
        height: 100%;
    }
    .news-header {
        height: 80px;
    }
    /* 新闻动态背景图片 */
    .news-bg {
        display: none;
    }
}