/*全局背景*/
#inner {
    background: url('../image/index/bg_dt.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Banner轮播 */
.banner-swiper {
    width: 100%;
    height: auto;
}

.banner-swiper::after {
    content: "";
    background: url('../image/index/banner_bg.png');
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 30px;
    z-index: 2;
}

.banner-swiper .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transition: opacity 0.8s ease;
}

.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 5px;
    border-radius: 5px;
    opacity: 0.5;
    transition: all 0.5s;
}

.banner-swiper .swiper-button-prev:hover,
.banner-swiper .swiper-button-next:hover {
    opacity: 1;
}

.banner-swiper .swiper-button-prev {
    left: 10vw;
}

.banner-swiper .swiper-button-next {
    right: 10vw;
}

.banner-swiper .swiper-button-prev:after,
.banner-swiper .swiper-button-next:after {
    color: #fff;
    font-size: 36px;
}

.banner-swiper .swiper-pagination {
    bottom: 50px;
}

.banner-swiper .swiper-pagination-bullet {
    width: 45px;
    height: 5px;
    background: #fff;
    border-radius: 0;
    opacity: 0.4;
    margin: 0 10px;
}

.banner-swiper .swiper-pagination-bullet-active {
    opacity: 0.7;
}

.banner-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    width: 90%;
    opacity: 0;
    transform: translate(-50%, -30%);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.banner-text.active {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.banner-text p {
    font-size: 68px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 7px;
    background-image: linear-gradient(90deg, #347c34, #7fd739);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.banner-text span {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin: 30px auto 50px;
    font-weight: 500;
    display: block;
    max-width: 600px;
}

.banner-text .btn-orange {
    padding: 10px 24px;
    background-color: #ffaa22;
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    display: block;
    max-width: 100px;
    margin: 0 auto;
    transition: all 0.5s;
}

.banner-text .btn-orange:hover {
    background-color: #ff9500;
}

.swiper-slide .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 1.2s ease, opacity 0.8s ease;
}

.swiper-slide-active .banner-img {
    transform: scale(1.03);
}

/* 关于我们 */

#about {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

#about::before {
    content: "";
    background: url(../image/index/about_bg.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 40px;
    top: 0;
    left: 0;
}

section small {
    font-size: 16px;
    color: #2e8b3e;
    line-height: 1;
    letter-spacing: -1px;
}

section h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    line-height: 1;
    margin: 10px auto 45px;
    letter-spacing: 5px;
}

.section-title p {
    max-width: 600px;
    padding: 20px 0 20px;
    margin: 0 auto;
    font-size: 20px;
    color: #333;
    line-height: 1.5;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
}

.about-desc {
    max-width: 960px;
    font-size: 16px;
    color: #707070;
    line-height: 30px;
    margin: 60px auto 80px;
}

.guidance {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.guidance span {
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.guidance span:first-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed #999;
    animation: about_rotate 10s linear infinite;
}

.guidance span:last-child {
    background: #ff961c;
    width: 50px;
    height: 50px;
    line-height: 58px;
    transition: all 0.5s;
}

.guidance:hover span:last-child {
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes about_rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.search-box {
    max-width: 960px;
    margin: 60px auto 20px;
    display: flex;
    gap: 10px;
    background: #fff;
    flex-wrap: nowrap;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0px 10px #ccc;
    align-items: center;
}

.search-box p {
    width: 80px;
    font-size: 16px;
    color: #333;
}

.search-form {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    justify-content: space-between;
}

.search-form input {
    font-size: 14px;
    padding: 0 10px;
    background: #fafafa;
    border: 1px solid #ccc;
    border-radius: 8px;
    flex: 1;
    transition: all 0.5s;
}

.search-form button {
    width: 140px;
    padding: 10px;
    color: #fff;
    line-height: 25px;
    background-image: linear-gradient(130deg, #ffb020, #ff8c1a);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.5s;
    border: none;
}

.search-form *:hover {
    box-shadow: 1px 1px 5px #ccc;
}

/* 定制服务 */
.custom-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: self-start;
    margin-bottom: 100px;
}

.custom-left>p {
    color: #707070;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    gap: 30px;
    text-align: center;
    max-width: 600px;
}

.service-card span svg {
    width: 35px;
}

.service-card span svg path {
    fill: #fff;
}

.service-card {
    position: relative;
    flex: 1;
    min-height: 190px;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.5s;
    background-image: linear-gradient(30deg, #2e8b3e, #7cc14a);
}

.service-card span {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #ff961c;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
    line-height: 26px;
    opacity: 0.5;
}

.service-card:hover {
    box-shadow: 1px 2px 10px #666;
    transform: scale(1.1);
}

.custom-right img {
    width: 100%;
    border-radius: 30px;
    transition: all 0.5s;
}

.custom-right img:hover {
    box-shadow: 1px 2px 10px #666;
    transform: scale(1.1);
}

.service-card a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    top: 0;
    left: 0;
}

/* 甄选体验 */
#experience {
    background: url(/index/image/index/zx_bg.png);
    background-position: bottom center;
    background-size: 100% 100%;
    padding: 100px 0;
    text-align: center;
}

.experience-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 15px;
}

.exp-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    font-size: 0;
}

.exp-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s;
}

.exp-item .exp-name {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.exp-item .exp-name a {
    color: #fff;
    z-index: 2;
    font-size: 18px;
    line-height: 40px;
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    position: relative;
    transition: all 0.5s;
}

.exp-item .exp-name::after {
    content: "";
    background-image: linear-gradient(30deg, #2e8b3e, #7cc14a);
    transition: all 0.3s;
    opacity: 0.8;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    left: 0;
    z-index: 0;
}

.exp-item:hover img {
    transform: scale(1.1);
}

.exp-item:hover .exp-name a {
    padding: 30px 0;
}

.exp-item:hover .exp-name::after {
    height: 100px;
}

/* 文旅资讯 */
#news {
    padding: 80px 0;
    text-align: center;
}

.news-wrap {
    padding-top: 15px;
}

.news-bottom-btn .btn-orange {
    width: 140px;
    padding: 10px;
    color: #fff;
    line-height: 25px;
    display: block;
    margin: 50px auto 0;
    background-image: linear-gradient(130deg, #ffb020, #ff8c1a);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.5s;
    border: none;
}

.news-bottom-btn .btn-orange:hover {
    box-shadow: 1px 1px 5px #ccc;
    transform: scale(1.1);
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 2.5vw;
    text-align: left;
}

.news-card {
    background: rgba(153, 153, 153, 0.1);
    border-radius: 16px;
    overflow: hidden;
    padding: 50px 25px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s;
}

.news-card>* {
    position: relative;
    z-index: 2;
    transition: all 0.5s;
}

.news-card::after {
    content: "";
    transition: all 0.5s;
    background-image: linear-gradient(30deg, #2e8b3e, #7cc14a);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
}

.news-card:hover::after {
    opacity: 0.7;
}

.news-card:hover * {
    color: #fff;
}

.news-card:hover .card-more a {
    color: #ff8c1a !important;
}

.card-date {
    font-size: 14px;
    color: #666;
}

.card-title a {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
    color: #333;
    overflow: hidden;
    margin: 15px 0;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    transition: all 0.5s;
}

.card-desc {
    font-size: 14px;
    line-height: 30px;
    opacity: 0.82;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-more a {
    font-size: 14px;
    margin: 25px 0 40px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    display: inline-block;
    transition: all 0.5s;
}

.card-img {
    width: 100%;
    height: 240px;
    border-radius: 0px;
    object-fit: cover;
    margin-top: 10px;
    transition: all 0.5s;
}

.news-card:hover .card-img {
    transform: scale(1.05);
    border-radius: 10px;
}

.news-right .card-more a {
    margin: 10px 0;
}

.news-right {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5vw;
}




/* 响应式适配 */
@media (max-width:992px) {
    section h2 {
        font-size: 32px;
    }

    .custom-wrap,
    .msg-wrap,
    .news-wrap {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .experience-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .banner-text h1 {
        font-size: 32px;
    }
}

@media (max-width:576px) {
    .swiper-slide .banner-img {
        height: 420px;
    }

    .banner-text p {
        letter-spacing: 0;
        font-size: 24px;
    }

    .banner-text span {
        font-size: 16px;
    }

    .banner-text .btn-orange {
        padding: 5px 12px;
        font-size: 14px;
    }

    section h2 {
        font-size: 24px;
        text-align: center;
        margin: 10px auto 25px;
    }

    .custom-wrap {
        margin-bottom: 40px;
        gap: 20px;
    }
    #news {
        padding: 40px 0;
    }

    .news-wrap {
        margin-bottom: 40px;
    }

    .news-container {
        grid-template-columns: 100%;
    }

    .news-bottom-btn .btn-orange {
        font-size: 14px;
        padding: 0;

        line-height: 32px;

        margin: 20px auto 0;
    }

    .custom-right img {
        border-radius: 8px;
    }

    .custom-left>p {
        line-height: 32px;
    }

    .experience-list {
        gap: 10px;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
    }

    .service-cards {
        flex-direction: column;
        gap: 20px;
    }

    #about {
        padding: 50px 0;
    }

    .section-title p {
        font-size: 12px;
        max-width: 600px;
        padding: 10px 0 10px;
    }

    .about-desc {
        font-size: 14px;
        margin: 30px auto 10px;
    }

    .guidance {
        transform: scale(0.6);
    }

    .search-box {
        margin: 20px auto 20px;
        flex-direction: column;
        padding: 20px;
    }

    .search-box p {
        text-align: left;
        width: 100%;
    }

    .search-form {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    section small {
        margin: 0 auto;
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .search-form input,
    .search-form button {
        font-size: 12px;
        padding: 0 10px;
        line-height: 32px;
        width: 100%;
    }

    #experience {
        padding: 40px 0;
    }
}