/* 全局样式 */
body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.section {
    padding: 50px 0;
}

/* 页面标题 */
.page-title {
    margin-top: 30px;
    color: #2E8B57;
    font-weight: bold;
    font-size: 2.5em;
}

.line {
    height: 3px;
    width: 80px;
    background: #2E8B57;
    margin: 20px auto;
}

.lead {
    color: #666;
    margin-bottom: 30px;
}



/* 简介部分 */
.intro-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.intro-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.intro-image {
    margin-bottom: 15px;
}

/* 历史文化部分 */
.history-item {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 200px;
    transition: transform 0.3s ease;
}

.history-item:hover {
    transform: translateY(-5px);
}

.history-item h4 {
    color: #2E8B57;
    margin-bottom: 15px;
}

/* 景点部分 */
.scenic-item {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.scenic-item:hover {
    transform: translateY(-5px);
}

.scenic-img {
    height: 200px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.scenic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.scenic-item:hover .scenic-img img {
    transform: scale(1.05);
}

.scenic-item h4 {
    color: #2E8B57;
    padding: 15px 15px 5px;
}

.scenic-item p {
    padding: 0 15px 15px;
}

/* 美食部分 */
.food-item {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.food-item:hover {
    transform: translateY(-5px);
}

.food-img {
    height: 200px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.food-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.food-item:hover .food-img img {
    transform: scale(1.05);
}

.food-item h4 {
    color: #2E8B57;
    padding: 15px 15px 5px;
}

.food-item p {
    padding: 0 15px 15px;
}

/* 民族风情部分 */
.culture-content {
    margin-bottom: 30px;
}

.culture-content h3 {
    color: #2E8B57;
    margin-bottom: 15px;
}

.culture-image {
    margin-bottom: 30px;
}

.image-caption {
    margin-top: 10px;
    color: #666;
    font-style: italic;
}

/* 视频部分 */
.video-container {
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.video-caption {
    margin-top: 10px;
    color: #666;
    font-style: italic;
}

/* 音乐部分 */
.music-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.music-container h4 {
    color: #2E8B57;
    margin-bottom: 15px;
}

.music-container audio {
    width: 100%;
    margin-bottom: 10px;
}

/* 底部链接部分 */
.footer-section {
    background-color: #2E8B57;
    padding: 50px 0;
    margin-top: 50px;
}

.text-white {
    color: #fff;
}

/* 通用背景样式 */
.bg-light {
    background-color: #f8f9fa;
}

.bg-primary {
    background-color: #2E8B57;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-img {
        height: 300px;
    }

    .history-item {
        height: auto;
    }

    .scenic-img,
    .food-img {
        height: 150px;
    }

    .section {
        padding: 30px 0;
    }

    .page-title {
        font-size: 2em;
    }
}

/* 图片缩略图样式 */
.img-thumbnail {
    border-color: #2E8B57;
}

/* 按钮样式 */
.btn-default {
    background-color: #fff;
    color: #2E8B57;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-default:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* 标题样式 */
h2 {
    color: #2E8B57;
    margin-bottom: 30px;
    font-weight: bold;
}

h3, h4 {
    color: #2E8B57;
}

.gushi{
  text-align: center;
}

.gushi p {
    font-size: 1.1rem; /* 基础大小 */
    line-height: 1.6; /* 增加行高提升可读性 */
}

/* 在移动设备上调整大小 */
@media (max-width: 768px) {
    .gushi p {
        font-size: 1rem;
    }
}

/* 在大屏幕上增大字体 */
@media (min-width: 1200px) {
    .gushi p {
        font-size: 1.2rem;
    }
}
