/* 轮播图区域-----开始*/

.banner-wrapper {
    position: relative;
    height: auto;
    margin-top: 95px;
    width: 100%;
    overflow: hidden;
    /* background: #000; */
    cursor: pointer;
}

.banner-swiper {
    width: 100%;
    perspective: 1200px;
}

.banner-slide {
    position: relative;
    width: 100%;
}

.banner-slide img {
    width: 100%;
    /* object-fit: cover; */
}


/* Swiper导航按钮样式 */
.swiper-button-prev,
.swiper-button-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

/* Swiper分页器样式 */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 50px;
}

/* 移除原来的小圆点样式 */
.submenu-list li::before {
    display: none;
}


/* 数据统计区域样式-----开始*/
.stats-wrapper {
    background: #f9f9f9;
    padding: 30px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 183px;
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #C02025;

}

.number {
    margin-right: 5px;
}

.plus {
    font-size: 24px;
}

.stat-label {
    font-size: 16px;
    line-height: 1.6;
    color: #333;

}

/* 数据统计区域样式------结束*/

/* 主营业务区域样式-----开始*/
.services-section {
    padding: 60px 0;
    background: #fff;
}

.services-container {
    max-width: 1440px;
    margin: 0 auto;
    
}

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

.services-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.services-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0066FF 30%, #FF3366 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-left: 15px;
    flex-shrink: 0;
}

.service-content {
    width: 70%;
    position: relative;
}

.service-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-link {
    display: inline-block;
    padding: 6px 16px;
    background: #0066FF;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    background: #0052cc;
}

/* 添加描述文本在hover时的效果 */
.service-card:hover .service-description {
    margin-bottom: 20px;
}

/* 主营业务区域样式------结束*/




/* 核心优势区域样式-----开始 */
.core-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    
}

.advantage-item {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1s;
    transform-style: preserve-3d;
}

.advantage-item:hover .advantage-icon img {
    transform: rotateY(180deg);
}

.advantage-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.advantage-item:hover .advantage-title {
    color: #FF6633;
    cursor: pointer;
}

.advantage-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 核心优势区域样式-----结束 */