/* Hero鍖哄煙 */
.hero {
    height: 250px;
    background: linear-gradient(rgba(17, 33, 49, 0.5), rgba(17, 33, 49, 0.7)), 
                url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* 甯歌闂鍖哄煙 */
.faq-section {
    padding: 60px;
    background-color: #f8fafc;
}
.faq-section a{ text-decoration: none;}
.faq-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 宸︿晶锛氬甫鍥剧墖鐨勬柊闂诲垪琛� */
.faq-left {
    width: 70%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.section-title {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 18px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
}

.faq-left .news-list {
    padding: 30px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* .news-content div{ display: flex; justify-content: space-between; align-items: center; } */
.read-more{ color: #999; font-size: 12px;}
.news-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background-color: #fafafa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.news-item:hover {
    background-color: #f1f5f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-image {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: #112131;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 12px;
    color: #999999;
}



/* 鍙充晶锛氫繚鍏荤煡璇� */
.faq-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;;
}

/* 渚ц竟鏍忓尯鍧� */
.faq-right .sidebar-section {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* 渚ц竟鏍忔爣棰� */
.sidebar-title {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #112131;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.sidebar-title a{
    color: #fff;
    flex: 1;
    text-align: center;
    margin: 0 10px;
}

.icon-circle {
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.care-list {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.care-item {
    padding: 10px 0px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #112131;
    display: block;
}

.care-item.featured {
    padding: 0 0 15px 0;
}

.care-image {
    width: 100%;
    height: 150px;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 6px;
     display: flex;
    
}

.care-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 0;
}

.care-item h3 {
    font-size: 14px;
    font-weight: 500;
    color: #112131;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.care-item span {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: right;
    
}
.care-item-flex{ display: flex; justify-content: space-between;}
.care-item-flex span{ width: 70px; text-align: right;}
.care-date {
    font-size: 11px;
    color: #666666;
}

/* 鍝嶅簲寮忚璁� */
@media (max-width: 1024px) {
    .faq-section {
        padding: 40px 30px;
    }

    .faq-container {
        flex-direction: column;
    }

    .faq-left,
    .faq-right {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 200px;
    }

    .hero h1 {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .hero p {
        font-size: 14px;
    }

    .faq-section {
        padding: 30px 20px;
    }

    .faq-left .news-list {
        padding: 20px;
    }

    .news-item {
        flex-direction: column;
        gap: 15px;
    }

    .news-image {
        width: 100%;
        height: 150px;
    }

    .news-content h3 {
        font-size: 15px;
    }

    .news-content p {
        font-size: 13px;
    }

    .care-list {
        padding: 15px;
    }

    .care-item {
        padding: 12px;
    }

    .care-item h3 {
        font-size: 13px;
    }

    .care-item p {
        font-size: 12px;
    }

    
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 20px;
    }

    .section-title {
        font-size: 16px;
        padding: 15px;
    }

    .news-image {
        height: 120px;
    }

    .news-content h3 {
        font-size: 14px;
    }

    .care-item {
        padding: 10px;
    }
}