:root {
    --color-brand-primary: #a86d3f;
    --color-brand-dark: #5c3b1e;
    --color-brand-light: #f6efe7;
    --color-neutral-100: #ffffff;
    --color-neutral-200: #f2eee8;
    --color-neutral-300: #e0d8cf;
    --color-neutral-500: #8a7461;
    --color-text-main: #4a321d;
    --shadow-soft: 0 25px 60px rgba(87, 56, 35, 0.12);
    --shadow-card: 0 16px 40px rgba(122, 79, 48, 0.15);
    --radius-large: 40px;
    --radius-medium: 28px;
    --radius-small: 16px;
    --container-max: 1200px;
}
* , *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--color-text-main);
    /*background: linear-gradient(180deg, #faf8f5, #f0ebe5);*/
}

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

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}
button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}
.image-box {
    opacity: 0; transform: translateY(20px);
}
.img-show { animation: appear 1s forwards; }
@keyframes appear { to { opacity: 1; transform: translateY(0); } }
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: #F3F2F2;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #3498db;
}
.mobile-nav{
    display: none;
}
/* 汉堡菜单按钮 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 21px;
    justify-content: space-between;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #b8743a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.nav-menu {
    display: flex;
    list-style: none;
}

@media (max-width: 768px) {
    .brand img{
        height: 50px;
    }
    /* 显示汉堡菜单，隐藏桌面导航 */
    .hamburger {
        display: flex;
    }
    .nav-header{
        display: none !important;
    }
    .mobile-nav{
        display: flex;
        padding: 15px;
        background: #ffffff;
        align-items: center;
        justify-content: space-between;
        left: 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 9999;

    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }
    .nav-link {
        height: 50px !important;
        line-height: 50px !important;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* 调整下拉菜单为移动端样式 */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #FFFFFF;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-radius: 0;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        color: #000000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.container {
    width: min(var(--container-max), calc(100% - 64px));
    margin-inline: auto;
}

/* 顶部区域 */
.top-hero {
    position: relative;
    overflow: hidden;
}

.top-hero-image {
    width: 100%;
    height: auto;
}

.top-nav-bar {
    background-color: #f7f1e7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 40px;
}

.hero-media {
    position: relative;
    overflow: hidden;
    min-height: 435px;
    padding-block: 32px 120px;
    background-image: url("/assets/image/banner/banner1.jpg");
    background-size: cover;
    background-position: center;
}
.hero-media-brand{
    position: relative;
    overflow: hidden;
    min-height: 435px;
    padding-block: 32px 120px;
    background-image: url("/assets/image/brand.jpg");
    background-size: cover;
    background-position: center;
}
.hero-media-news{
    position: relative;
    overflow: hidden;
    min-height: 435px;
    padding-block: 32px 120px;
    background-image: url("/assets/image/news.jpg");
    background-size: cover;
    background-position: center;
}
.hero-media-server{
    position: relative;
    overflow: hidden;
    min-height: 435px;
    padding-block: 32px 120px;
    background-image: url("/assets/image/server.jpg");
    background-size: cover;
    background-position: center;
}
/* 背景图层 */
.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}
.footer-container{
    width: 80%;
    margin: 0 auto;
}
.site-footer {
    background: #F4F4F4;
    padding-top: 60px;
}
.address{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid #333333;
}

.footer-brand p {
    color: #6f5a4a;
    line-height: 1.7;
}

.footer-tags {
    list-style: none;
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-tags li {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(168, 109, 63, 0.3);
    font-size: 0.85rem;
    color: var(--color-brand-dark);
}

.footer-label {
    font-weight: 600;
    color: var(--color-brand-dark);
    margin-bottom: 10px;
}

.footer-contact p,
.footer-links a {
    color: #6f5a4a;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-qrcodes {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}
.modal {
    display: none;
    position: fixed;
    top: 35%;
    right: 100px;
    width: 200px;
    height: 200px;
    justify-content: center;
    align-items: center;
}
.button-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 5px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button-with-arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #000000;
}
.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
.qr-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 10px;
}

.footer-bottom {
    padding-block: 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #8c7564;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #8c7564;
    font-size: 0.95rem;
}

.footer-meta {
    width: 80%;
    margin: 0 auto;
    text-align: right;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #333333;
}
.gz-text{
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
}
.e-text{
    font-size: 14px;
    color: #333333;
    line-height: 24px;
}
.floating-nav {
    position: fixed;
    right: 32px;
    top: 40%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.floating-item {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(89, 55, 33, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-brand-dark);
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-item:hover,
.floating-item:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(89, 55, 33, 0.25);
}

.floating-icon {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #d6b28a, #a26438);
    position: relative;
}

.floating-icon.wechat::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid white;
    border-bottom: none;
    top: 5px;
    left: 4px;
}

.floating-icon.visit::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 2px;
    top: 4px;
    left: 5px;
}

.floating-icon.join::after {
    content: "+";
    color: white;
    font-size: 14px;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon.top::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid white;
    top: 4px;
    left: 3px;
}

.floating-label {
    white-space: nowrap;
}



/* 当前显示的背景 */
.bg-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(90deg, rgba(28, 16, 10, 0.75) 0%, rgba(38, 25, 17, 0.15) 80%);*/
}

.footer-nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    padding: 0 10px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    width: 66px;
    height: 45px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fdfaf5, rgba(255, 255, 255, 0.2));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
}

.brand-mark span {
    border-radius: 12px;
}

.brand-mark span:nth-child(1) {
    background: #5b895c;
}

.brand-mark span:nth-child(2) {
    background: #c19b6b;
}

.brand-mark span:nth-child(3) {
    background: #f4c27e;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.primary-nav {
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
}

.nav-link {
    min-width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 999px;
    color: #000000;
    transition: background 0.3s, color 0.3s;
    cursor:pointer;
    position: relative;
    display: inline-block;
    text-align: center;
}
.nav-hide{
    position: absolute;
    top: 90px;
    left: 0;
    background: #ffffff;
    border-radius: 10px;
    width: 121px;
    overflow: hidden;
    z-index: 99;
}
.nav-child{
    text-align: center;
    width: 121px;
    height: 29px;
    line-height: 29px;
    font-size: 15px;
}
.selected{
    background: linear-gradient(90deg, #8F6039, #B98F5F);
    color: #ffffff;
}
.index-nav-text:hover{
    color: #8F6039;
}
.brand-nav-text:hover{
    color: #8F6039;
}
.news-nav-text:hover{
    color: #8F6039;
}
.server-nav-text:hover{
    color: #8F6039;
}
.nav-selected{
    color: #8F6039;
    height: 3px;
    background: linear-gradient(90deg, #8F6039, #B98F5F);
}
.nav-link:hover,
.nav-link:focus-visible {
    /*background: rgba(255, 255, 255, 0.18);*/
    /*color: #8F6039;*/
}

.nav-link.is-active {
    background: rgba(255, 255, 255, 0.25);
    color: black;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.sousuo{
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}
.search{
    border:1px solid #BFBFBF;
    border-radius: 10px;
    background: #FFFFFF;
    padding-left: 5px;
    height: 28px;
    line-height: 28px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.main-nav > li {
    position: relative;
    font-size: 16px;
    color: #444444;
}

.main-nav > li > a {
    padding: 4px 0;
}

.main-nav > li > a.active,
.main-nav > li:hover > a {
    color: #b8743a;
    border-bottom: 2px solid #b8743a;
}

.main-nav li.has-dropdown .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 8px 0;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 20;
}

.main-nav li.has-dropdown .nav-dropdown li {
    list-style: none;
}

.main-nav li.has-dropdown .nav-dropdown a {
    display: block;
    padding: 6px 16px;
    font-size: 14px;
    color: #666666;
    white-space: nowrap;
}

.main-nav li.has-dropdown .nav-dropdown a:hover {
    background-color: #f7f1e7;
    color: #b8743a;
}

.main-nav li.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
}

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

.search-box {
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 4px 12px;
    border: 1px solid #e0d7c7;
    margin-right: 16px;
}

.search-box input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 140px;
}

.btn-reserve {
    padding: 8px 18px;
    border-radius: 20px;
    background-color: #b8743a;
    color: #ffffff;
    font-size: 14px;
}

/* 面包屑 & 二级导航 */
.breadcrumb-bar {
    background-color: #F9F9F9;
    /*border-bottom: 1px solid #eeeeee;*/
}

.breadcrumb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 70px;
    margin: 0 auto;
    font-size: 13px;
    color: #999999;
}

.breadcrumb-inner a {
    color: #333333;
    font-size: 16px;
}

.breadcrumb-inner span.current {
    color: #b8743a;
    font-size: 16px;
}

.subnav-bar {
    background-color: #F9F9F9;
}
.service-visit-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
.visit-tip{
    font-size: 15px;
}
.section-vt-title-en {
    display: flex;
    align-items: center;
    font-size: 29px;
    letter-spacing: 2px;
    color: #c3a67f;
}
.subnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.subnav-link {
    height: 70px;
    font-size: 14px;
    color: #666666;
    padding: 0 25px;
    border-right: 1px solid  #D6C8BB;

}

.subnav-link.active {
    color: #FFFFFF;
    background: #b8743a;
}

/* 通用主内容区域 */
.main-wrapper {
    max-width: 1200px;
    margin: 32px auto 64px;
    /*padding: 0 16px;*/
}
.flex{
    display: flex;
    align-items: center;
}
.brand-desc{
    margin-left: 15px;
    display: flex;
    align-items: center;
    color: #986A41;
}
.brand-desc img{
    width: 19px;
    height: 19px;
    margin-left: 10px;
}
.section-title-en {
    display: flex;
    align-items: center;

    font-size: 29px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c3a67f;
    margin-bottom: 54px;
}

.section-title-cn {
    font-size: 20px;
    font-weight: 600;
    color: #90613A;
    margin-bottom: 16px;
}

.section-title-cn span.highlight {
    color: #b8743a;
}

/* 品牌理念页布局 */
.brand-hero {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 48px;

}
.brand-wx-hero{
    position: relative;
    /*height: 530px;*/
}
.brand-text-img img{
    max-width: 589px;
    /*height: 168px;*/
    margin-top: 100px;
    margin-bottom: 80px;
}
.brand-logo-block {
    flex: 1;
}

.brand-logo {
    margin-bottom: 24px;
}

.brand-logo img {
    height: 60px;
}

.brand-text p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
}

.brand-hero-image {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.brand-features {
    width: 100%;
    height: 550px;
    background: url("/assets/image/brand/bg.png");
    background-size: cover; /* 保持宽高比，完全覆盖容器 */
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    text-align: center;
}
.brand-features-wx{
    width: 100%;
    height: 580px;
    background: url("/assets/image/brand/wx-bg.png");
    background-size: cover; /* 保持宽高比，完全覆盖容器 */
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.brand-wx-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
}
.brand-wx-img{
    max-width: 252px;
}
.wx-title{
    font-size: 35px;
    color: #3F6953;
    font-weight: bold;
    text-align: center;
}
.brand-wy-img{
    max-width: 231px;
}
.wx-desc-img{
    width: 435px;
    margin: 20px auto;
}
.brand-features-img{
    width: 145px;
    height: 145px;
}
.brand-features-flex-cn{
    display: flex;
    margin: 80px 0 60px;
    justify-content: center;
    text-align: center;
}
.brand-features-flex{
    width: 821px;
    margin: 50px auto 20px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.brand-features-logo{
    width: 367px;
    height: 87px;
}
.brand-features-text-img{
    width: 821px;
    height: 23px;
}
.brand-features-content{
    max-width: 1200px;
    margin: 32px auto 64px;
    text-align: center;
}
.brand-hero-sh{
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.server-carousel{
    width: 100%;
}
.app-item {
    border-left: 1px solid #D6C8BB;
    font-size: 16px;
    padding: 0 10px;
    cursor: pointer;
    font-weight: 400;
}
.app-item:first-child{
    border: none;
}
.app-item-active{
    font-weight: bold;
}
.sh-img{
    width: 100%;
}
.sh-img img{
    width: 100%;
    height: 460px;
    border-radius: 5px;
}
.app-item-img{
    width: 100%;
    height: 460px;
}
.section-title-ll{
    font-size: 35px;
    font-weight: bold;
    color: #3F6953;
    display: flex;
    justify-content: space-between;
}
.feature-item {
    flex: 1;
    text-align: center;
}

.feature-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
}

.feature-label-cn {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

.feature-label-en {
    font-size: 12px;
    color: #999999;
}
.brand-wy-cards {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin:0 auto 30px;
}
.brand-cards {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin:0 auto 120px;
}

.brand-card {
    width: 262px;
    height: 332px;
}
.brand-card img{
    width: 262px;
    height: 332px;
}

.brand-card-title-cn {
    font-size: 15px;
    font-weight: 600;
    color: #b8743a;
    margin-bottom: 6px;
}

.brand-card-title-en {
    font-size: 12px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 16px;
}

.brand-card-more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f3e6d5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8743a;
    font-size: 18px;
    margin-bottom: 12px;
}

.brand-card p {
    font-size: 13px;
    color: #666666;
}

/* 品牌介绍页布局 */
.brand-intro-top {
    display: flex;
    gap: 40px;
    margin-bottom: 56px;
    align-items: flex-start;
}

.brand-intro-text {
    flex: 1;
}

.brand-intro-text p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
    text-indent: 2em;
}

.brand-intro-image {
    flex: 1;
    max-width: 430px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.brand-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.brand-banner-bg img {
    width: 100%;
    height: auto;
}

.brand-banner-panel {
    position: absolute;
    left: 8%;
    top: 18%;
    background-color: rgba(255, 255, 255, 0.96);
    padding: 24px;
    max-width: 420px;
    border-radius: 8px;
}

.brand-banner-panel h3 {
    font-size: 18px;
    color: #0f6b4a;
    margin-bottom: 10px;
}

.brand-banner-panel p {
    font-size: 13px;
    color: #555555;
}

/* 新闻列表页 */
.news-layout {
    max-width: 1200px;
    margin: 32px auto 64px;
}
.news-lists{
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.news-featured {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 24px;
}
.news-top{
    display: none;
    justify-content: space-between;
}
.news-top.active{
    display: flex;
}
.news-featured-image {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
    width: 640px;
    height: 450px;
}
.news-featured-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination .active{
    color: #ffffff;
    background: #DE001F;
}
.pagination>li{
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}
.news-featured-content {
    padding: 24px;
    flex: 1.1;
    display: flex;
    flex-direction: column;
}

.news-featured-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
}

.news-featured-meta {
    font-size: 12px;
    color: #999999;
    margin-bottom: 16px;
}

.news-featured-desc {
    font-size: 13px;
    color: #666666;
    flex: 1;
    margin-bottom: 30px;
}

.news-featured-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.circle-arrow img {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.news-card {
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-card-image {
    height: 260px;
    overflow: hidden;
}
.news-card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size:22px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #8F5D39;
}

.news-card-desc {
    font-size: 13px;
    color: #666666;
    margin-bottom: 12px;
    flex: 1;
}

.news-card-meta {
    font-size: 12px;
    color: #999999;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination a {
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination a.current {
    background-color: #e74c3c;
    color: #ffffff;
    border-color: #e74c3c;
}

/* 新闻详情页 */
.article-layout {
    width: min(var(--container-max), calc(100% - 64px));
    margin-inline: auto;
    padding: 30px 16px 64px;
    display: flex;
    gap: 40px;
}

.article-main {
    flex: 1;
}

.article-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}

.article-meta {
    font-size: 12px;
    color: #999999;
    text-align: center;
    margin-bottom: 24px;
}

.article-cover {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.article-content p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 12px;
    text-indent: 2em;
}

.article-sidebar {
    width: 220px;
    font-size: 13px;
    color: #666666;
}

.article-sidebar h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #333333;
}

.article-sidebar a {
    display: block;
    margin-bottom: 6px;
}
.article-sidebar .next-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 34px;
    color: #8F5D39;
}

.article-sidebar a span.label {
    color: #999999;
    margin-right: 4px;
    font-size: 15px;
}
.news-line{
    border: 1px solid #D6C8BB;
    margin-bottom: 10px;
}
.news-back{
    display: flex;
    justify-content: start;
    background: #F9F9F9;
    height: 51px;
    line-height: 51px;
    align-items: center;
    font-size: 18px;
    color: #8F5D39;
    padding: 0 21px;
}
/* 服务 - 项目简介 */
.service-project-top {
    display: flex;
    max-width: 1200px;
    margin: 60px auto 0;
}

.service-project-text {
    flex: 1;
}

.service-project-subtitle {
    font-size: 35px;
    color: #3F6953;
    margin-bottom: 16px;
    font-weight: bold;
}

.service-project-text p {
    font-size: 18px;
    color: #333333;
    line-height: 36px;
}
.brand-wx-image{
    position: absolute;
    right: 0;
    top: 0;

}
.brand-wx-image img{
    max-width: 849px;
    /*height: 530px;*/
}
.service-project-image {
    max-width: 500px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    margin-left: 20px;
}
.service-project{
    max-width: 1200px;
    margin: 60px auto;
    padding: 0;
}
.service-project-bottom {
    background: url("/assets/image/server/project-bg.png");
    background-size: cover; /* 保持宽高比，完全覆盖容器 */
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 757px;
}

.service-project-bg img {
    width: 100%;
    border-radius: 16px;
}

.service-project-overlay {
    max-width: 1200px;
    margin:0 auto;
}

.service-project-title-green {
    font-size: 35px;
    color: #3F6953;
    margin-bottom: 12px;
}

.service-project-overlay p {
    max-width: 800px;
    font-size: 18px;
    color: #333333;
    line-height: 36px;
    margin-bottom: 24px;
}
.lines{
    width: 100%;
    height: 120px;
    margin-top: 120px
}
.service-project-icons {
    display: flex;
    justify-content: space-between;
    max-width: 12000px;
    margin-top: 60px;
}

.service-project-card {
    width: 232px;
    height: 302px;
}

.sp-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f3e6d5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8743a;
    margin: 0 auto 10px;
}

.sp-card-cn {
    font-size: 15px;
    font-weight: 600;
    color: #b8743a;
}

.sp-card-en {
    font-size: 12px;
    color: #999999;
    margin-bottom: 8px;
}

.service-project-card p {
    font-size: 12px;
    color: #666666;
}

/* 服务 - 联系我们 */
.service-contact-header {
    margin-bottom: 16px;
}

.service-contact-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.service-contact-left {
    flex: 1;
}

.contact-phone {
    font-size: 26px;
    color: #8F5D39;
    margin-bottom: 16px;
    font-weight: bold;
}

.contact-address-label {
    font-size: 13px;
    color: #5B5B5B;
    margin-bottom: 4px;
}

.contact-address {
    font-size: 20px;
    color: #8F5D39;
    font-weight: bold;
}

.service-contact-right {
    flex: 0 0 auto;
}

.service-contact-logo {
    max-height: 86px;
}

.service-contact-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* 服务 - 服务体系 */
.service-system-wrapper {
    max-width: 1200px;
    margin: 32px auto 64px;
}

.system-section {
    margin-bottom: 56px;
    position: relative;
}
.system-nursing{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.system-title-vertical {
    font-size: 35px;
    color: #3F6953;
    text-align: center;
    font-weight: bold;
}
.wy-text{
    width: 35px;
    height: 203px;
}
.wy-desc{
    width: 67px;
    height: 296px;
    margin-left: 32px;
}
.system-title-vertical.right {
    left: auto;
    right: 0;
}

/* 无忧医养：左文右四图 */
.system-medical-layout {
    display: flex;
    justify-content: space-between;
}

.system-medical-text {
   display: flex;
    margin-top: 32px;
    position: relative;
}

.system-heading {
    font-size: 18px;
    color: #0f6b4a;
    margin-bottom: 8px;
}

.system-subtext {
    font-size: 13px;
    color: #666666;
    margin-bottom: 18px;
}

.system-medical-list {
    list-style: disc;
    padding-left: 18px;
    font-size: 13px;
    color: #666666;
}

.system-medical-list li + li {
    margin-top: 6px;
}

.system-medical-gallery {
    width: 1020px;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.xuhao{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 55px;
}
.sy-xuhao{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55px;
    height: 55px;
}
.medical-photo img {
    width: 500px;
    height: 200px;
    border-radius: 5px;
    margin-top: 32px;
}
.system-living{
    width: 100%;
    height: 536px;
    background: #F7F4F1;
}
.system-livings{
    max-width: 1200px;
    margin: 0 auto;
}
/* 舒适居养：上下轮播 */
.system-living-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sy-desc{
    width: 68px;
    height: 421px;
    margin-right: 30px;
}
.system-living-text {
    flex: 1;
}
.ctrl-down{
    width: 33px;
    height: 19px;
    position: absolute;
    top: 20px;
    left: 680px;
}
.ctrl-up{
    width: 33px;
    height: 19px;
    position: absolute;
    bottom: 20px;
    left: 680px;
}

.system-living-text ul {
    list-style: disc;
    padding-left: 18px;
    font-size: 13px;
    color: #666666;
}

.system-living-text li + li {
    margin-top: 6px;
}

.system-carousel {
    position: relative;
}

.system-carousel-track {
    position: relative;
}

.system-slide {
    display: none;
}

.system-slide.active {
    display: block;
}

.system-carousel.vertical {
    width: 1000px;
    height: 536px;
}

.system-carousel.vertical .system-slide img {
    width: 1000px;
    height: 536px;
}
.system-carousel-hy{

}
.hy-img img{
    width: 1030px;
    height: 430px;
    border-radius: 5px;
}
.hy-prev{
    position: absolute;
    left: 20px;
    top: 200px;
}
.hy-desc{
    width: 67px;
    height: 399px;
    margin-left: 20px;
}
.system-medical-hytext{
    display: flex;
    position: relative;
}
.hy-next{
    position: absolute;
    right: 20px;
    top: 200px;
}
.system-carousel-controls.vertical {
    position: absolute;
    right: 12px;
    top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 专业护养 & 乐静文养：左右轮播 */
.system-carousel.horizontal {
    /*margin-left: 80px;*/
    display: flex;
    align-items: center;
    /*gap: 12px;*/
}

.system-carousel.horizontal .system-carousel-track {
    flex: 1;
}
#allmap1{
    height: 350px;
    border-radius: 5px;
    margin-top: 50px;
}
.system-gallery.large {
    background-color: #f8f6f2;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 32px;
    align-items: center;
}

.system-gallery-left {
    flex: 1;
}

.system-gallery-left img {
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.system-gallery-text {
    flex: 1;
}

.system-gallery-text h3 {
    font-size: 18px;
    color: #0f6b4a;
    margin-bottom: 8px;
}

.system-gallery-text p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 10px;
}

.ctrl-btn {
    /*width: 32px;*/
    /*height: 32px;*/
    /*border-radius: 50%;*/
    /*border: 1px solid #dddddd;*/
    /*background-color: #ffffff;*/
    /*cursor: pointer;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*font-size: 14px;*/
}

/* 健康膳养：三列区块 */
.system-health{
    background: url("/assets/image/server/1763530229276.png");
    width: 100%;
    height: 550px;
    background-size: cover; /* 保持宽高比，完全覆盖容器 */
    background-repeat: no-repeat;
    background-position: center;
}
.system-health-bg {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.system-health-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
}
.jk-desc{
    width: 68px;
    height: 229px;
    margin-right: 30px;
}
.jk-text{

}
.jk-xuhao{
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 55px;
    height: 55px;
}
.system-health-column img {
    width: 318px;
    height: 433px;
}

.system-health-column h4 {
    font-size: 16px;
    color: #0f6b4a;
    margin-bottom: 6px;
}

.system-health-column p {
    font-size: 13px;
    color: #666666;
}

/* 服务 - 预约参观 */
.service-visit-content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.visit-photo {
    flex: 0 0 360px;
}

.visit-photo img {
    border-radius: 5px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.visit-form {
    /*flex: 1;*/
    width: 820px;
}
.xiangmu{
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    height: 48px;
    background: #90613A;
    border-radius: 0px 10px 10px 0px;
    text-align: center;
    line-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.xiangmu img{
    width: 33px;
    height: 34px;

}
.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    width: 403px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #D6C8BB;
    align-items: center;
    padding: 0 10px;
    position: relative;
}

.form-field.full {
    flex: 1 0 100%;
}

.form-field label {
    font-size: 20px;
    color: #5B5B5B;
}

.form-field input,
.form-field textarea {
    border-radius: 4px;
    border: none;           /* 完全去除边框 */
    outline: none;
    padding: 8px 10px;
    font-size: 20px;

}
.form-textarea{
    border-radius: 4px;
    border: none;           /* 完全去除边框 */
    outline: none;
    font-size: 20px;
    width: 100%;
}
.form-textarea textarea {
   width: 100%;
    border: 1px solid #D6C8BB;
    border-radius: 4px;
    padding: 10px;
    height: 170px;
    font-size: 20px;
}
.team-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.btn-primary,
.btn-secondary {
    min-width: 120px;
    padding: 10px 18px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.btn-primary {
    color: #ffffff;
    width: 403px;
    height: 48px;
    background: #90613A;
    border-radius: 5px;
}

.btn-secondary {
    color: #D6C8BB;
    width: 403px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #D6C8BB;
}

.form-tip {
    margin-top: 8px;
    font-size: 12px;
    color: #999999;
}


.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav {
    font-size: 13px;
    color: #666666;
}

.footer-center {
    font-size: 13px;
    color: #666666;
}

.footer-center strong {
    font-weight: 600;
}

.footer-qrs {
    display: flex;
    gap: 18px;
}

.footer-qr {
    text-align: center;
    font-size: 12px;
    color: #999999;
}

.footer-qr img {
    width: 88px;
    height: 88px;
    margin-bottom: 4px;
}

.footer-bottom {
    margin-top: 12px;
    font-size: 12px;
    color: #999999;
    text-align: center;
}

/* 右侧浮动栏 */
.floating-contact {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
}

.floating-contact ul {
    list-style: none;
}

.floating-contact li + li {
    margin-top: 4px;
}

.contact-item {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background-color: #c3874a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.contact-item span.icon {
    font-size: 16px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .nav-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
    }

    .main-nav {
        gap: 24px;
    }

    .brand-hero,
    .brand-intro-top,
    .service-project .service-project-top,
    .service-visit-content {
        flex-direction: column;
    }

    .brand-features {
        flex-wrap: wrap;
    }

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

    .news-featured {
        flex-direction: column;
    }

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

    .article-layout {
        flex-direction: column;
    }

    .article-sidebar {
        width: 100%;
    }

    .service-project-overlay {
        margin-top: 24px;
    }

    .service-project-icons,
    .system-health-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .system-medical-layout,
    .system-living-layout,
    .system-carousel.horizontal,
    .system-health-bg {
        margin-left: 60px;
        margin-right: 60px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .brand-features {
        flex-direction: column;
        align-items: stretch;
    }

    .brand-cards {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        right: 10px;
    }

    .service-project-icons,
    .system-health-content {
        grid-template-columns: 1fr;
    }

    .system-medical-layout,
    .system-living-layout,
    .system-carousel.horizontal,
    .system-health-bg {
        margin-left: 40px;
        margin-right: 40px;
    }

    .system-medical-layout,
    .system-living-layout,
    .system-carousel.horizontal,
    .service-contact-main,
    .service-visit-content {
        flex-direction: column;
    }

    .visit-photo {
        flex: 1 0 auto;
    }
}
@media screen and (min-width: 769px) and (max-width: 1740px) {
    
    .footer-links{
        font-size: 12px;
    }
}
@media (max-width: 992px) {
    .site-header {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-track {
        flex-direction: column;
    }

    .service-card {
        min-height: 360px;
        border-radius: 36px;

    }

    .services-track.has-hover .service-card,
    .services-track.has-hover .service-card:hover,
    .services-track.has-hover .service-card:focus-visible {
        flex: 1;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 32px);
    }
    .footer-container{
        width: calc(100% - 12px);
    }
    .hero-media {
        padding-block: 0px 80px;
    }

    .site-header {
        padding: 16px;
    }

    .hero-content {
        gap: 16px;
    }

    .core-grid {
        padding: 24px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-qrcodes {
        padding: 20px;
    }
    .qr-placeholder{
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .core-tile {
        min-height: 160px;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
