/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0));
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 5%;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    margin-right: 30px;
}

.main-nav > li {
    position: relative;
    margin-left: 30px;
}

.main-nav > li > a {
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav > li > a:hover {
    color: #f8b195;
}

.main-nav > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f8b195;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav > li > a:hover::after {
    width: 100%;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 200px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.main-nav > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 8px 20px;
}

.submenu li a {
    color: white;
    display: block;
    transition: all 0.3s ease;
}

.submenu li a:hover {
    color: #f8b195;
    padding-left: 5px;
}

.contact-btn {
    background: #1aafef;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.contact-btn:hover {
    background: #e67e7e;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Video Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
    font-weight: 300;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Featured Destinations Section */
.featured {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-subtitle {
    font-size: 16px;
    color: #f8b195;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #4a4a4a;
    font-size: 1.125rem;
    line-height: 1.75;
}

.destinations-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.destinations-slider {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
    user-select: none;
}

.destination-item {
    width: 33.33%;
    padding: 0 15px;
    position: relative;
}

.destination-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 500px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-date {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
}

.destination-info {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: all 0.5s ease;
    z-index: 1;
}

.destination-description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

.destination-item:hover .destination-info {
    transform: translateY(-20px);
}

.destination-item:hover .destination-description {
    opacity: 1;
    max-height: 100px;
}

.destination-item:hover .destination-image img {
    transform: scale(1.05);
}

.destination-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: white;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: white;
    max-width: 1300px;
    margin: 0 auto;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.feature-item {
    width: 25%;
    padding: 0 20px;
    margin-bottom: 40px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #f8b195;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #e67e7e;
    transform: translateY(-5px);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Core Layout System */
.mubb-module {
    --mubb-module-max-width: 100%;
    --mubb-module-padding-x: 2rem;
    --mubb-module-padding-y: 4rem;
    --mubb-content-max-width: 800px;
    
    width: 100%;
    display: flex;
    justify-content: center;
    padding: var(--mubb-module-padding-y) var(--mubb-module-padding-x);
}

.mubb-module--wide-centered {
    --mubb-module-max-width: 1600px;
    --mubb-content-max-width: 1000px;
}

.mubb-module__inner {
    width: 100%;
    max-width: var(--mubb-module-max-width);
    position: relative;
}

.mubb-module__inner--constrained {
    max-width: var(--mubb-content-max-width);
}

/* Content Alignment */
.mubb-module__content--text-centered {
    text-align: center;
}

.mubb-module__paragraph-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mubb-module__cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Typography System */
.mubb-typography--section-heading {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--mubb-color-text-primary, #1a1a1a);
}

.mubb-typography--section-heading p {
    margin-top: 0.5rem;
}

.mubb-typography--body-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--mubb-color-text-secondary, #4a4a4a);
}

/* Button System */
.mubb-button {
    --mubb-button-height: 3.25rem;
    --mubb-button-padding-x: 2.5rem;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--mubb-button-height);
    padding: 0 var(--mubb-button-padding-x);
    border: 1px solid;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mubb-button--primary-ghost {
    color: var(--mubb-color-primary, #1a1a1a);
    border-color: currentColor;
    background-color: transparent;
}

.mubb-button--with-icon {
    gap: 0.75rem;
}

.mubb-button:hover {
    color: white;
    background-color: var(--mubb-color-primary, #1a1a1a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mubb-button__icon {
    transition: transform 0.3s ease;
}

.mubb-button:hover .mubb-button__icon {
    transform: translateX(4px);
}

/* 列表页英雄区域 */
.mb88_hero_section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.mb88_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.mb88_hero_bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.mb88_hero_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
}

.mb88_hero_subtitle {
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
    font-weight: 300;
}

.mb88_hero_title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mb88_scroll_down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    animation: mb88_bounce 2s infinite;
}

@keyframes mb88_bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* 旅游风采列表区域 */
.mubanbaba_gallery_section {
    padding: 100px 0;
    background: #f9f9f9;
}

.mb88_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.mb88_section_subtitle {
    font-size: 16px;
    color: #f8b195;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.mb88_section_title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.mb88_section_description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.mbbb_gallery_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mb88_product_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.mb88_product_item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mb88_product_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mb88_product_image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.mb88_product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mb88_product_item:hover .mb88_product_image img {
    transform: scale(1.05);
}

.mb88_product_date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
}

.mb88_product_info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: all 0.5s ease;
    z-index: 1;
}

.mb88_product_description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

.mb88_product_item:hover .mb88_product_description {
    opacity: 1;
    max-height: 100px;
}

.mb88_product_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.mb88_read_more {
    display: inline-block;
    margin-top: 15px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.mb88_read_more::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: white;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.mb88_read_more:hover::after {
    width: 100%;
}

/* 新闻列表容器 */
.news_list-container {
    max-width: 1200px;
    margin: 160px auto;
}

.news_list-header {
    margin-bottom: 30px;
    text-align: center;
}

.news_list-title {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.news_list-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.news_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    list-style-type: none;
}

.news_list-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news_list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news_list-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.news_list-link:hover .news_list-item-title {
    color: #ff7e5f;
}

.news_list-image-container {
    height: 200px;
    overflow: hidden;
}

.news_list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news_list-link:hover .news_list-image {
    transform: scale(1.05);
}

.news_list-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news_list-category {
    display: inline-block;
    background-color: #e6f7ff;
    color: #1a5f7a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news_list-item-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s;
}

.news_list-excerpt {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news_list-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}

.news_list-date {
    display: flex;
    align-items: center;
}

.news_list-date::before {
    content: "📅";
    margin-right: 5px;
}

.news_list-readmore {
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.news_list-readmore:hover {
    color: #ff7e5f;
    text-decoration: underline;
}

/* 新闻内容容器 */
.news_content-container {
    max-width: 1400px;
    margin: 160px auto;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.news_content-header {
    padding: 40px 40px 20px;
    color: #000;
}

.news_content-category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news_content-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.news_content-excerpt {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
    width: 100%;
}

.news_content-meta {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.news_content-date {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.news_content-date::before {
    content: "📅";
    margin-right: 8px;
}

.news_content-author {
    display: flex;
    align-items: center;
}

.news_content-author::before {
    content: "✍️";
    margin-right: 8px;
}

.news_content-body {
    padding: 40px;
}

.news_content-featured-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.news_content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.news_content-text p {
    margin-bottom: 20px;
}

.news_content-text h3 {
    font-size: 1.6rem;
    color: #1a5f7a;
    margin: 30px 0 15px;
}

.news_content-text ul, .news_content-text ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.news_content-text li {
    margin-bottom: 10px;
}

.news_content-quote {
    background-color: #f0f7ff;
    border-left: 4px solid #1a5f7a;
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #2c3e50;
}

.news_content-navigation {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.news_content-nav-item {
    flex: 1;
    max-width: 45%;
}

.news_content-nav-prev {
    text-align: left;
}

.news_content-nav-next {
    text-align: right;
}

.news_content-nav-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.news_content-nav-title {
    font-size: 1.1rem;
    color: #1a5f7a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.news_content-nav-title:hover {
    color: #ff7e5f;
    text-decoration: underline;
}

.news_content-related {
    padding: 40px;
}

.news_content-related-title {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 25px;
    text-align: center;
}

.news_content-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.news_content-related-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news_content-related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.news_content-related-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.news_content-related-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news_content-related-content {
    padding: 20px;
}

.news_content-related-category {
    display: inline-block;
    background-color: #e6f7ff;
    color: #1a5f7a;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news_content-related-item-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.news_content-related-link:hover .news_content-related-item-title {
    color: #ff7e5f;
}

.news_content-related-date {
    font-size: 0.85rem;
    color: #777;
}

.news_content-back {
    margin-bottom: 20px;
}

.news_content-back-link {
    display: inline-flex;
    align-items: center;
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.news_content-back-link:hover {
    color: #ff7e5f;
    text-decoration: underline;
}

.news_content-back-link::before {
    content: "←";
    margin-right: 8px;
}

/* 视频列表容器 */
.video_list-container {
    max-width: 1400px;
    margin: 160px auto;
}

.video_list-header {
    margin-bottom: 40px;
    text-align: center;
}

.video_list-title {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.video_list-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 25px;
}

.video_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    list-style-type: none;
}

.video_list-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video_list-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.video_list-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.video_list-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video_list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video_list-link:hover .video_list-image {
    transform: scale(1.05);
}

.video_list-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video_list-play::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid #1a5f7a;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video_list-link:hover .video_list-play {
    background-color: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video_list-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.video_list-item-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s;
    flex-grow: 1;
}

.video_list-link:hover .video_list-item-title {
    color: #ff7e5f;
}

.video_list-excerpt {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.video_list-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}

.video_list-date {
    display: flex;
    align-items: center;
}

.video_list-date::before {
    content: "📅";
    margin-right: 5px;
}

.video_list-views {
    display: flex;
    align-items: center;
}

.video_list-views::before {
    content: "👁️";
    margin-right: 5px;
}

/* 尾部基础样式 */
.mubanbaba-footer-container {
    background-color: #000;
    color: #fff;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.mubanbaba-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mubanbaba-footer-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.mubanbb-footer-section {
    padding: 15px;
}

.mubanbaba-contact-info-left {
    display: flex;
    flex-direction: column;
}

.mubanbb-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mubanbaba-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mubanbb-contact-icon {
    margin-right: 10px;
    font-size: 16px;
}

.mubanbaba-contact-detail {
    color: #ccc;
    font-size: 14px;
    flex: 1;
}

.mubanbaba-nav-links-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mubanbb-footer-nav-column {
    margin-bottom: 15px;
}

.mubanbaba-footer-column-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.mubanbb-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mubanbaba-footer-nav-item {
    margin-bottom: 12px;
}

.mubanbb-footer-nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.mubanbb-footer-nav-link:hover {
    color: #fff;
}

.mubanbaba-social-media-block {
    width: 100%;
}

.mubanbaba-social-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.mubanbb-footer-social-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.mubanbb-footer-social-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.mubanbaba-social-detail-text {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.mubanbb-footer-qr-container {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: #fff;
    padding: 5px;
}

.mubanbaba-footer-qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mubanbaba-footer-copyright-bar {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
}

.mubanbb-copyright-text {
    color: #999;
    font-size: 12px;
    margin: 0;
}

/* 在线留言页面 */
.contact-container {
    display: flex;
    max-width: 1350px;
    margin: 0 auto;
    padding: 30px 20px;
    gap: 30px;
    flex-wrap: wrap;
}

.left-section {
    width: 67%;
    margin-top: 90px;
}

.right-section {
    width: 30%;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    height: fit-content;
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
}

.form-section {
    margin-bottom: 30px;
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #e74c3c;
}

.form-row {
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.full-width {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

label.required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
}

select, input, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: #fff;
}

select:focus, input:focus, textarea:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.range-container {
    margin-top: 15px;
}

.range-slider {
    width: 100%;
    position: relative;
    height: 40px;
    margin-bottom: 15px;
}

.slider-track {
    width: 100%;
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
    position: absolute;
    top: 15px;
}

.slider-range {
    height: 6px;
    background-color: #e74c3c;
    border-radius: 3px;
    position: absolute;
    top: 15px;
}

.slider-thumb {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thumb-price {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #333;
    background-color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    padding: 5px 0;
}

.social-media-dropdown {
    margin-bottom: 15px;
}

.same-as-social {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.same-as-social input {
    width: auto;
    margin-right: 10px;
}

.newsletter-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.toggle-container {
    display: flex;
    margin-right: 15px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ddd;
    height: 36px;
}

.toggle-option {
    padding: 8px 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.toggle-no {
    background-color: #ddd;
    color: #777;
}

.toggle-yes {
    background-color: #333;
    color: #fff;
}

.toggle-no.active {
    background-color: #bbb;
}

.toggle-yes.active {
    background-color: #e74c3c;
}

.newsletter-text {
    font-size: 12px;
    color: #666;
    flex: 1;
    line-height: 1.4;
    min-width: 200px;
}

.submit-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: #c0392b;
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

/* 悬浮咨询按钮 */
.luxe-enquire-widget__container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 28px 14px;
    background: linear-gradient(135deg, #1aafef 0%, #0f93cb 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px 0 0 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2:hover {
    background: linear-gradient(135deg, #5B7FB5 0%, #4A5D7B 100%);
    padding-right: 20px;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.2));
}

.luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2:active {
    transform: scale(0.96);
}

.luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 2px;
    height: 0;
    background: #FFFFFF;
    transform: translateY(-50%);
    transition: height 0.3s ease;
}

.luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2:hover::after {
    height: 60%;
}

/* 响应式设计 */
@media (min-width: 1600px) {
    .mubb-module--wide-centered {
        --mubb-module-padding-x: 4rem;
    }
}

@media (max-width: 1200px) {
    .destination-item {
        min-width: 50%;
    }
    
    .feature-item {
        width: 33.33%;
    }
}

@media (max-width: 992px) {
    .mubanbaba-nav-links-block {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mubanbaba-social-flex-container {
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav.active .main-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        padding: 20px 0;
    }
    
    .main-nav > li {
        margin: 0;
        padding: 10px 5%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .submenu {
        position: static;
        width: 100%;
        background: transparent;
        padding: 10px 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .main-nav > li.active .submenu {
        display: block;
    }
    
    .contact-btn {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .mb88_product_list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
    }
    
    .left-section, .right-section {
        width: 100%;
        position: static;
    }
    
    .right-section {
        margin-top: 0;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-toggle {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .toggle-container {
        margin-bottom: 10px;
    }
    
    .mubanbaba-footer-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .mubanbaba-nav-links-block {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mubanbaba-social-flex-container {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .destination-item {
        min-width: 100%;
    }
    
    .feature-item {
        width: 50%;
    }
    
    .mubb-module {
        --mubb-module-padding-x: 1.5rem;
        --mubb-module-padding-y: 3rem;
    }
    
    .mubb-typography--body-lead {
        font-size: 1rem;
    }
    
    .mubb-button {
        --mubb-button-height: 2.75rem;
        --mubb-button-padding-x: 2rem;
    }
    
    .mb88_hero_title {
        font-size: 48px;
    }
    
    .mb88_hero_subtitle {
        font-size: 14px;
    }
    
    .mb88_section_title {
        font-size: 36px;
    }
    
    .mb88_product_list {
        grid-template-columns: 1fr;
    }
    
    .luxe-enquire-widget__container {
        top: auto;
        bottom: 30px;
        right: 15px;
        transform: none;
    }
    
    .luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2 {
        writing-mode: horizontal-tb;
        padding: 14px 28px;
        border-radius: 6px;
    }
    
    .luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2:hover {
        padding-right: 28px;
        padding-bottom: 16px;
    }
    
    .luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2::after {
        right: auto;
        left: 50%;
        bottom: 8px;
        top: auto;
        width: 0;
        height: 2px;
        transform: translateX(-50%);
    }
    
    .luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2:hover::after {
        width: 60%;
        height: 2px;
    }
}

@media (max-width: 576px) {
    select {
        font-size: 14px !important;
    }
    
    .mubanbaba-nav-links-block {
        grid-template-columns: 1fr;
    }
    
    .mubanbaba-social-flex-container {
        flex-direction: column;
        align-items: center;
    }
    
    .mubanbb-footer-social-item {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-links a {
        margin: 5px 0;
    }
    
    .mb88_hero_title {
        font-size: 36px;
    }
    
    .mb88_section_title {
        font-size: 30px;
    }
    
    .luxe-enquire-widget__trigger.luxe-enquire-widget__trigger--v2 {
        padding: 12px 22px;
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .luxe-enquire-widget__container {
        bottom: 20px;
        right: 10px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.news_list-item {
    animation: fadeIn 0.5s ease forwards;
}

.news_list-item:nth-child(1) { animation-delay: 0.1s; }
.news_list-item:nth-child(2) { animation-delay: 0.2s; }
.news_list-item:nth-child(3) { animation-delay: 0.3s; }
.news_list-item:nth-child(4) { animation-delay: 0.4s; }
.news_list-item:nth-child(5) { animation-delay: 0.5s; }
.news_list-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.video_list-item {
    animation: fadeInUp 0.5s ease forwards;
}

.video_list-item:nth-child(1) { animation-delay: 0.1s; }
.video_list-item:nth-child(2) { animation-delay: 0.2s; }
.video_list-item:nth-child(3) { animation-delay: 0.3s; }
.video_list-item:nth-child(4) { animation-delay: 0.4s; }
.video_list-item:nth-child(5) { animation-delay: 0.5s; }
.video_list-item:nth-child(6) { animation-delay: 0.6s; }
.video_list-item:nth-child(7) { animation-delay: 0.7s; }
.video_list-item:nth-child(8) { animation-delay: 0.8s; }

/* 加载Montserrat字体 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');