@charset "utf-8";
/* DaiMa.css - 三明代妈页面专用样式 */

/******************************

[Table of Contents]

1. 栏目引言区域
2. 服务展示区域布局
3. 左侧边栏样式
4. 服务卡片样式
5. 响应式设计

******************************/

/***********
1. 栏目引言区域
***********/

.intro-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/***********
2. 服务展示区域布局
***********/

.services-section {
    padding: 60px 0;
    background-color: #fff;
}

.services-grid {
    padding-left: 30px;
}

/***********
3. 左侧边栏样式
***********/

.sidebar_left_custom {
    position: sticky;
    top: 100px;
}

.sidebar_section_custom {
    width: 100%;
    border: solid 1px #e0e3e4;
    margin-bottom: 30px;
    transition: all 200ms ease;
}

.sidebar_section_custom:last-child {
    margin-bottom: 0;
}

.sidebar_title_custom {
    height: 52px;
    background: #e0e3e4;
    line-height: 52px;
    font-family: 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    color: #232323;
    padding-left: 22px;
    font-weight: 600;
    transition: all 200ms ease;
}

.sidebar_section_custom:hover {
    border-color: #937c6f;
}

.sidebar_section_custom:hover .sidebar_title_custom {
    background: #937c6f;
    color: #fff;
}

.sidebar_content_custom {
    padding: 20px;
}

.sidebar_content_custom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar_content_custom ul li {
    padding: 10px 0;
    border-bottom: solid 1px #e0e3e4;
    font-size: 14px;
    color: #555;
}

.sidebar_content_custom ul li:last-child {
    border-bottom: none;
}

.sidebar_content_custom ul li a {
    color: #333;
    transition: color 200ms ease;
}

.sidebar_content_custom ul li a:hover {
    color: #937c6f;
}

.sidebar_content_custom.contact-content p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.sidebar_content_custom.contact-content p i {
    color: #937c6f;
    margin-right: 8px;
    width: 16px;
}

.sidebar_content_custom p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/***********
4. 服务卡片样式
***********/

.service-card {
    background: #fff;
    border: solid 1px #e0e3e4;
    border-radius: 4px;
    margin-bottom: 40px;
    padding: 40px;
    transition: all 300ms ease;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #937c6f;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #937c6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: #fff;
}

.service-body h3 {
    font-size: 22px;
    color: #232323;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-body > p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.service-list-custom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item-custom {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    border-left: 3px solid #937c6f;
    transition: all 200ms ease;
}

.service-item-custom:hover {
    background: #f0f0f0;
    transform: translateX(3px);
}

.service-item-custom h4 {
    font-size: 16px;
    color: #232323;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item-custom h4 i {
    color: #937c6f;
    margin-right: 8px;
}

.service-item-custom p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/***********
5. 响应式设计
***********/

@media (max-width: 992px) {
    .services-grid {
        padding-left: 0;
        margin-top: 40px;
    }

    .sidebar_left_custom {
        position: static;
    }

    .service-list-custom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 40px 0;
    }

    .services-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 25px;
    }

    .service-body h3 {
        font-size: 18px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 20px;
    }

    .service-body h3 {
        font-size: 16px;
    }

    .service-item-custom {
        padding: 15px;
    }

    .service-item-custom h4 {
        font-size: 14px;
    }

    .service-item-custom p {
        font-size: 13px;
    }
}