/* 苏豪通轮播图自定义样式 */

/* 苏豪通标题样式 */
.hero-slider .slide-content .soho-title {
    color: #136e68;
    font-size: 2.8rem;
    font-weight: bold;
}

/* 主标题样式 */
.hero-slider .slide-content .main-title {
    color: #136e68;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    border-radius: 8px;
    display: inline-block;
}

/* 服务列表容器 */
.hero-slider .service-list-container {
    color: #666666;
    font-size: 1.2rem;
    /* 设置三列布局 */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    text-align: left;
    margin-top: 30px;
}

/* 服务项样式 */
.hero-slider .service-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    white-space: nowrap;
}

/* 服务项前的圆点 */
.hero-slider .service-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #666;
    margin-right: 10px;
    flex-shrink: 0;
}
/* 响应式调整 */
@media (max-width: 991px) {
    .hero-slider .service-list-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-slider .slide-content .soho-title {
        font-size: 32px;
    }
    
    .hero-slider .slide-content .main-title {
        font-size: 36px;
        padding: 10px;
    }
    
    .hero-slider .service-list-container {
        font-size: 16px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-slider .slide-content .soho-title {
        font-size: 28px;
    }
    
    .hero-slider .slide-content .main-title {
        font-size: 32px;
        padding: 8px;
    }
} 