
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}


.image-column {
    position: relative;
    width: 100%;
}

.gray-box {
    width: 100%;
    overflow: hidden; /* 防止图片溢出 */
}

.image-box {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* 保持比例且不超出容器 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}




.promo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 13px;
    background: #fff;
    flex-wrap: wrap;
    text-align: center;
}

.hot-tag {
    background: #e64a19;
    color: white;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 10px;
    margin-right: 10px;
    font-weight: bold;
}


.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slideLoop 20s infinite;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}


@keyframes slideLoop {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-25%); }
    50%, 70% { transform: translateX(-50%); }
    75%, 95% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}

.hero-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);

    font-size: clamp(14px, 2vw, 16px);
}

.hero-content h1 {
    font-size: 42px;
    margin: 15px 0;
    line-height: 1.2;

    font-size: clamp(24px, 4.5vw, 42px);
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    font-size: clamp(14px, 2.5vw, 20px);
}

.details-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid white;
    border-radius: 30px;
    color: white;
    background: rgba(0,0,0,0.2);
    font-size: 16px;
    transition: all 0.3s ease;

    padding: clamp(8px, 2vw, 12px) clamp(25px, 4vw, 35px);
    font-size: clamp(14px, 2vw, 16px);
}

.details-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}


.main-footer {
    background-color: #fdf5f5;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #d32f2f;
    text-decoration: underline;
}

.brand-column .footer-brand h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.brand-column .footer-brand p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.footer-contact h5,
.footer-social h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.footer-qr {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.qr-item {
    text-align: center;
}

.qr-box {
    width: 100px;
    height: 100px;
    background-color: #000;
    margin-bottom: 8px;
}

.qr-item span {
    display: block;
    font-size: 13px;
    background: #f0f0f0;
    padding: 2px 10px;
    border-radius: 4px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: #3b5998;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social-icons a:nth-child(1) { background-color: #3b5998; }
.social-icons a:nth-child(2) { background-color: #ff0000; }
.social-icons a:nth-child(3) { background-color: #bd081c; }
.social-icons a:nth-child(4) { background-color: #e1306c; }





@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    .main-nav  { display: none; }


    .search-bar { display: none; }


    .contact-info span { display: none; }


    .hero-content {
        width: 90%;
        padding: 0 20px;
    }

    .hero-content h1 {
        line-height: 1.1;
        margin: 10px 0;
    }

    .hero-content .subtitle {
        margin-bottom: 20px;
    }


    @keyframes slideLoop {
        0%, 20% { transform: translateX(0); }
        25%, 45% { transform: translateX(-25%); }
        50%, 70% { transform: translateX(-50%); }
        75%, 95% { transform: translateX(-75%); }
        100% { transform: translateX(0); }
    }
}


@media (max-width: 500px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }


    .hero-slider {
        height: 400px;
    }

    .hero-content {
        width: 95%;
    }
}
.page-container {
    max-width: 1200px;
    margin: 60px auto;
}


.header-section {
    text-align: center;
    margin-bottom: 30px;
}

.header-section h1 {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
}


.main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}


.text-column {
    flex: 1.8;
}

.paragraph {
    margin-bottom: 22px;
    font-size: 16px;
    text-align: justify;
}

.paragraph strong {
    font-weight: bold;
    color: #000;
}


.image-column {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.gray-box {
    width: 100%;
    max-width: 450px;
    height: 300px;
    background-color: #808080;
    border-radius: 12px;
}


@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .header-section h1 {
        font-size: 24px;
    }

    .image-column {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }

    .gray-box {
        max-width: 100%;
        height: 250px;
    }
}

.sale-container {
    max-width: 1200px;
    margin: 40px auto;
    background-color: #f7eded;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


.sale-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box {
    background-color: #b30000;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.percent-icon {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.sale-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #000;
}


.divider {
    border-top: 2px dotted #ddd;
    margin-bottom: 25px;
}


.sale-body {
    display: flex;
    align-items: center;
    gap: 40px;
}


.promo-badge {
    background-color: #fff;
    border-radius: 25px;
    padding: 20px 30px;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.red-text {
    color: #c00;
    font-size: 26px;
    font-weight: 800;
    white-space: nowrap;
}


.promo-details {
    flex: 1;
}

.promo-details p {
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    margin: 0;
}


@media (max-width: 900px) {
    .sale-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-badge {
        width: 100%;
        margin-bottom: 20px;
    }

    .sale-header h2 {
        font-size: 22px;
    }
}

.sale-container {
    width: 100%;
    margin-top: 30px;
    background-color: #f7eded;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: none;
}


.sale-header h2 {
    font-size: 22px;
    font-weight: 800;
}


.sale-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-badge {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    flex-shrink: 0;
}

.red-text {
    font-size: 20px;
    line-height: 1.2;
}

.promo-details p {
    font-size: 14px;
    line-height: 1.4;
}


@media (max-width: 992px) {
    .sale-body {
        flex-direction: column;
        align-items: center;
    }
    .promo-badge {
        width: 100%;
    }
}

.tours-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}


.tours-header {
    text-align: center;
    margin-bottom: 40px;
}

.tours-header h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.tours-intro {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    text-align: left;
}


.tours-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}


.tour-card {
    /*width: calc(33.333% - 14px);*/
    background: #fdfdfd;
    border: 1px solid #eee;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.card-img-wrapper {
    width: 100%;
}

.placeholder-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #e0e0e0;
}


.card-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-info h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}


.card-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tag-label {
    background-color: #e6554d;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

.tag-icon {
    font-size: 12px;
    color: #666;
}

.card-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}


.card-action {
    margin-top: auto;
}

.view-details-btn {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid #e6554d;
    color: #e6554d;
    font-size: 13px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
}


@media (max-width: 992px) {
    .tour-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .tour-card {
        width: 100%;
    }
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f0f0f0;
}


.tag-label.red { background-color: #e6554d; }
.tag-label.orange { background-color: #f39c12; }
.tag-label.red-light { background-color: #f17b7b; }


@media (max-width: 992px) {
    .tour-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .tour-card {
        width: 100%;
    }
}

.why-choose-section {
    background-color: #fce4e4;
    padding: 60px 20px;
    margin-top: 50px;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
}


.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}


.why-card {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 40px 25px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}


.why-icon-wrapper {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    background-color: #f19191;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.circle-icon {
    font-size: 24px;
    color: white;
}

.why-card-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.why-card-content p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}


@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px 20px;
    }

    .why-header h2 {
        font-size: 24px;
    }
}

.reviews-inquiry-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-header h2 {
    font-size: 28px;
    font-weight: 800;
}

.reviews-header p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 900px;
    margin: 10px auto;
}

.reviews-header a {
    color: #444;
    text-decoration: underline;
}


.main-content-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.reviews-list {
    flex: 2;
}


.review-item {
    margin-bottom: 40px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ddd;
}

.user-meta {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: bold;
    font-size: 15px;
}

.user-country {
    font-size: 12px;
    color: #888;
}

.review-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.review-content p {
    font-size: 14.5px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
}

.tour-meta {
    margin-bottom: 15px;
}

.tour-meta p {
    margin-bottom: 3px;
    font-size: 14px;
}

.interested-tour {
    font-weight: bold;
}

.red-link {
    color: #c00;
}


.inquiry-form-wrapper {
    flex: 1;
    position: sticky;
    top: 20px;
}

.inquiry-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.inquiry-card h3 {
    color: #e6554d;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 10px 35px 10px 10px;
    border: 1px solid #ccc;
    background-color: #eee;
    border-radius: 4px;
    font-size: 13px;
}

.input-group textarea {
    height: 120px;
    padding-right: 10px;
}

.form-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #e6554d;
}

.phone-group {
    display: flex;
}

.country-code {
    width: 50px;
    background: #eee;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.phone-group input {
    border-radius: 0 4px 4px 0;
}

.verify-btn {
    width: 100%;
    padding: 8px;
    background: #ddd;
    border: none;
    border-radius: 4px;
    margin-bottom: 15px;
    color: #666;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #c00;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}


.sticky-chat-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #c00;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}


@media (max-width: 992px) {
    .main-content-layout {
        flex-direction: column;
    }
    .inquiry-form-wrapper {
        position: static;
        width: 100%;
    }
}