/* 公司简介部分与轮播图的间距 */
.company-info {
    margin-top: 10px;
}

/* 新闻资讯标题样式 - 独立样式，匹配合作客户样式 */
.news-section .tabs-section-head .title h1 {
    font-size: 40px;
    color: #000;
    margin: 0;
    font-weight: bold;
}

.news-section .tabs-section-head .title p {
    font-size: 18px;
    margin: 0;
    line-height: 1.8;
}

/* 轮播图加载状态样式 */
.carousel-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 18px;
}

.carousel-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 轮播图错误状态样式 */
.carousel-error {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.carousel-error .error-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.carousel-error .error-message {
    font-size: 18px;
    margin-bottom: 10px;
}

.carousel-error .error-description {
    font-size: 14px;
    opacity: 0.8;
}

/* Swiper分页器样式 - 小横条按钮 */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 30px; /* 横条宽度 */
    height: 4px; /* 横条高度 */
    display: inline-block;
    border-radius: 2px; /* 圆角 */
    background: rgba(255, 255, 255, 0.3); /* 非激活状态颜色 */
    opacity: 1;
    margin: 0 4px; /* 横条间距 */
    transition: all 0.3s ease;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0 4px;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet:only-child {
    display: none !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: rgba(255, 255, 255, 1); /* 激活状态颜色 */
    transform: scale(1.2); /* 激活时稍微放大 */
}

/* PC端轮播图分页器样式 */
.index-swiper-pc .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.index-swiper-pc .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    
}

/* H5端轮播图分页器样式 */
.index-swiper-h5 .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.index-swiper-h5 .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
}

