/* 首页特定样式 */

/* 轮播图区域 */
.hero-section {
    margin-bottom: 3rem;
}

.slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

/* 简介区域 */
.intro-section {
    text-align: center;
    padding: 3rem 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.intro-section h1 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.intro-section h1::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background-color: var(--primary-gold);
    position: absolute;
    bottom: -10px;
    left: 20%;
}

.intro-content {
    width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
    text-indent: 2em;
    font-size: 20px;
    font-weight: 350;
}

/* 特色卡片区域 */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
}
