/* 首页特有样式 */
.banner {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-title {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 特色景点 */
.features {
    padding: 50px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-img {
    height: 200px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.feature-item:hover .feature-img img {
    transform: scale(1.1);
}

.feature-content {
    padding: 20px;
}

.feature-title {
    font-size: 20px;
    color: #8B0000;
    margin-bottom: 10px;
}

.feature-desc {
    color: #666;
    line-height: 1.6;
}

/* 旅游攻略 */
.guides {
    padding: 50px 0;
    background: #f9f9f9;
}

.guide-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.guide-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-img {
    width: 200px;
    flex-shrink: 0;
}

.guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-content {
    padding: 20px;
    flex-grow: 1;
}

.guide-title {
    font-size: 18px;
    color: #8B0000;
    margin-bottom: 10px;
}

.guide-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guide-more {
    color: #8B0000;
    font-size: 14px;
}

.guide-more:hover {
    text-decoration: underline;
} 