/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "微软雅黑", Microsoft YaHei, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: #333;
}
ul, li {
    list-style: none;
}
img {
    display: block;
    width: 100%;
}
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 顶部导航 */
.header {
    background: #fff;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}
/* .header div{
    display: none;
} */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    font-size: 26px;
    font-weight: bold;
    color: #222;
}
.nav-list {
    display: flex;
}
.nav-list li {
    margin-left: 35px;
}
.nav-list li a {
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}
/* 原有 hover 样式 */
.nav-list li a:hover {
    color: #c81623;
}
.nav-list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #c81623;
    transition: width 0.3s;
}
.nav-list li a:hover::after {
    width: 100%;
}
/* ✅ 新增：导航激活样式（和 hover 完全一样） */
.nav-list li a.active {
    color: #c81623;
}
.nav-list li a.active::after {
    width: 100%;
}

/* 轮播 Banner */
.banner {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
}
.banner-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* ✅ 新增：关于我们板块（完全按参考图还原） */
.about-section {
    background-color: #0f4738;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}
.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
 .about-icon>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
 }
.about-title {
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 30px;
}
.about-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 2;
    opacity: 0.95;
    text-align: left;
    text-indent: 30px;
}
.about-more {
    font-size: 18px;
    color: #fff;
    display: inline-block;
}
.about-more::after {
    content: "↓";
    display: block;
    margin-top: 8px;
    font-size: 28px;
}

/* 服务板块 */
.service-section {
    padding: 70px 0;
}
.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px dashed #ccc;
}
.service-item:nth-child(odd) .service-text {
    order: 1;
    text-align: left;
    padding-right: 60px;
}
.service-item:nth-child(odd) .service-img-wrap {
    order: 2;
}
.service-item:nth-child(even) {
    flex-direction: row-reverse;
}
.service-item:nth-child(even) .service-text {
    text-align: left;
    padding-left: 60px;
}
.service-text {
    flex: 1;
}
.service-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: normal;
}
.service-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}
.more-btn {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    font-size: 16px;
    color: #333;
}
.more-btn::after {
    content: "↓";
    display: block;
    margin-top: 8px;
    font-size: 24px;
}
.service-img-wrap {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-img-wrap:hover .service-img {
    transform: scale(1.05);
}

/* 景区场地板块 */
.place-section {
    padding: 70px 0;
    background: #f7f7f7;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}
.section-title p {
    font-size: 14px;
    color: #888;
}
.place-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.place-item {
    overflow: hidden;
}
.place-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.place-item:hover .place-img {
    transform: scale(1.05);
}
.place-item h3 {
    font-size: 18px;
    margin: 15px 0 8px;
}
.place-item p {
    font-size: 14px;
    color: #666;
}

/* 新闻动态 */
.news-section {
    padding: 70px 0;
    background: #f2efe7;
}
.news-section .section-title {
    margin-bottom: 30px;
}
.news-section .section-title h2 {
    font-size: 32px;
    font-weight: normal;
}
.news-wrap {
    background: 
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.1)), 
    url('../images/faq/bg.jpg') center center / cover no-repeat;
    position: relative;
}
.news-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}
.news-list {
    position: relative;
    z-index: 1;
    color: #fff;
}
.news-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s;
}
.news-item:hover {
    background: rgba(0,0,0,0.3);
}
.news-date {
    flex: 0 0 25%;
    text-align: center;
}
.news-date .day {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}
.news-date .year {
    font-size: 14px;
    margin-left: 5px;
}
.news-content {
    flex: 1;
    padding-right: 40px;
}
.news-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}
.news-desc {
    font-size: 14px;
    opacity: 0.85;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s;
    margin-right: 20px;
}
.news-item:hover .news-arrow {
    opacity: 1;
}

/* 客户评价 */
.comment-section {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}
.comment-header {
    margin-bottom: 40px;
}
.comment-header .small-title {
    position: relative;
    display: inline-block;
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
}
.comment-header .small-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #333;
}
.comment-header .main-title {
    font-size: 36px;
    color: #222;
    font-weight: normal;
}
.comment-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.comment-slide {
    display: none;
}
.comment-slide.active {
    display: block;
}
.comment-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
}
.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comment-text {
    font-size: 16px;
    color: #333;
    line-height: 2;
    margin-bottom: 20px;
}
.comment-author {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}
.comment-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.comment-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}
.comment-indicator.active {
    background: #222;
}

/* 底部联系 */
.footer {
    background-color: #0f4738;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
.footer a {
    margin: 8px 0;
    font-size: 14px;
    color: #e8f805;
    margin-left: 10px;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .place-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-item {
        flex-direction: column !important;
        text-align: center;
    }
    .service-item .service-text {
        padding: 0 !important;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }
    .nav-list {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-list li {
        margin: 0 15px 10px;
    }
    .banner {
        height: 260px;
    }
    .banner-img {
        height: 260px;
    }
    .place-wrap {
        grid-template-columns: 1fr;
    }
    .comment-header .main-title {
        font-size: 28px;
    }
    .comment-avatar {
        width: 180px;
        height: 180px;
    }
    .news-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    .news-date {
        margin-bottom: 10px;
    }
    .news-content {
        padding-right: 0;
        margin-bottom: 10px;
    }
    .news-arrow {
        display: none;
    }
    .about-title {
        font-size: 28px;
    }
    .about-text {
        font-size: 15px;
        padding: 0 20px;
        text-align: left;
        text-indent: 20px;
    }
    .news-date{
        display: none;
    }
    .news-content{
        text-align: left;
        padding:  0 20px;
    }
}
@media (max-width: 480px) {
    .service-img-wrap {
        width: 180px;
        height: 180px;
    }
    .footer a {
        margin: 8px 0;
        font-size: 14px;
        color: #e8f805;
        display: block;
    }
        .news-date{
        display: none;
    }
    .news-content{
        text-align: left;
        padding:  0 20px;
    }
}


.banner-wrapper {
position: relative;
width: 100%;
height: 60vh;
min-height: 380px;
overflow: hidden;
}

.banner-wrapper .banner-slide {
position: absolute;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.banner-wrapper .banner-slide.active {
opacity: 1;
z-index: 1;
}

.banner-wrapper .banner-slide::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 70%;
height: 100%;
background: linear-gradient(90deg, rgba(34, 49, 68, 0.8) 0%, rgba(0, 86, 179, 0) 100%);
z-index: 1;
}

.banner-wrapper .banner-content {
position: relative;
z-index: 2;
text-align: center;
padding: 0 20px;
max-width: 90%;
}

.banner-wrapper .banner-content h1 {
font-size: 24px;
text-transform: uppercase;
margin-bottom: 15px;
letter-spacing: 1px;
}

.banner-wrapper .banner-content p {
font-size: 14px;
margin-bottom: 25px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.5;
}

.banner-wrapper .banner-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 28px;
cursor: pointer;
z-index: 10;
color: #fff;
}

.banner-wrapper .banner-arrow.left {
left: 15px;
}

.banner-wrapper .banner-arrow.right {
right: 15px;
}

.banner-wrapper .scroll-down {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
width: 30px;
height: 30px;
border: 1px solid #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
}

.banner-wrapper .scroll-down::after {
content: '!';
font-size: 20px;
color: #fff;
}


 