
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-main-red: #B31E23;
    --color-sauce-brown: #4A2E2B;
    --color-dark-black: #1A1A1A;
    --color-gold: #D4AF37;
    --color-bg-white: #FDFBF7;
}

.site-header {
    background-color: var(--color-dark-black);
    border-bottom: 2px solid var(--color-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    margin-top: 0 !important;
    top: 0;
    z-index: 999;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.site-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.site-logo img:hover {
    transform: scale(1.02);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-main-link {
    color: var(--color-bg-white);
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 0 24px;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-main-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--color-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-main-link:hover, 
.nav-main-link.active {
    color: var(--color-gold);
    background-color: var(--color-sauce-brown);
}

.nav-main-link:hover::after,
.nav-main-link.active::after {
    width: 100%;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-sauce-brown);
    border: 1px solid var(--color-gold);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-sub-link {
    display: block;
    color: var(--color-bg-white);
    font-size: 14px;
    padding: 12px 20px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.2s ease;
}

.nav-sub-link:last-child {
    border-bottom: none;
}

.nav-sub-link:hover, 
.nav-sub-link.active {
    background-color: var(--color-main-red);
    color: #FFFFFF;
}

.site-footer {
    background-color: #1A1A1A; 
    padding: 40px 0 30px 0;
    width: 100%;
    border-top: 3px double #D4AF37;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-text-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    
    font-family: "SimSun", "宋体", "Noto Serif CJK SC", serif;
    color: #FDFBF7;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.footer-text-row .copyright {
    opacity: 0.85;
}

.footer-text-row .icp-text, 
.footer-text-row .gongan-text {
    color: #D4AF37;
    background: linear-gradient(135deg, #FFEAA7 0%, #D4AF37 50%, #AA7C11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.footer-text-row .split-icon {
    font-size: 10px;
    color: #B31E23;
    margin: 0 16px;
    vertical-align: middle;
    display: inline-block;
    -webkit-text-fill-color: initial;
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }
    .site-logo img {
        height: 35px;
    }
    .nav-main-link {
        padding: 0 12px;
        font-size: 14px;
    }
    .nav-dropdown {
        min-width: 110px;
    }
    .footer-text-row {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    .footer-text-row .split-icon {
        margin: 0 6px;
    }
    .footer-logo img {
        height: 45px;
    }
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-main-red: #B31E23;
    --color-sauce-brown: #4A2E2B;
    --color-dark-black: #1A1A1A;
    --color-gold: #D4AF37;
    --color-bg-white: #FDFBF7;
}

.site-header {
    background-color: var(--color-dark-black);
    border-bottom: 2px solid var(--color-gold); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    margin-top: 0 !important; 
    top: 0;
    z-index: 999;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px; 
    position: relative;
}

.site-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-toggle-checkbox, .nav-toggle-button {
    display: none;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-main-link {
    color: var(--color-bg-white);
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 0 24px;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-main-link::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%; width: 0; height: 3px;
    background-color: var(--color-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-main-link:hover, .nav-main-link.active {
    color: var(--color-gold);
    background-color: var(--color-sauce-brown);
}

.nav-main-link:hover::after, .nav-main-link.active::after {
    width: 100%; 
}

.nav-dropdown {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-sauce-brown);
    border: 1px solid var(--color-gold);
    min-width: 150px;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}

.nav-item:hover .nav-dropdown {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-sub-link {
    display: block;
    color: var(--color-bg-white);
    font-size: 14px;
    padding: 12px 20px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15); 
    transition: all 0.2s ease;
}

.nav-sub-link:last-child { border-bottom: none; }
.nav-sub-link:hover, .nav-sub-link.active { background-color: var(--color-main-red); color: #FFFFFF; }


@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }

    .site-logo img {
        height: 38px;
    }

    .nav-toggle-button {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 22px;
        height: 16px;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--color-gold);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-wrapper {
        position: fixed;
        top: 61px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 61px);
        background-color: #161616;
        border-left: 1px solid var(--color-gold);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 20px 0;
    }

    .nav-item {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }

    .nav-main-link {
        width: 100%;
        height: 50px;
        padding: 0 25px;
        justify-content: space-between;
        font-size: 15px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    }
    
    .nav-main-link::after { display: none; }

    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        background-color: rgba(74, 46, 43, 0.2);
        border: none;
        box-shadow: none;
        display: block;
        padding: 4px 0;
    }

    .nav-sub-link {
        text-align: left;
        padding: 12px 40px;
        font-size: 13px;
        color: rgba(253, 251, 247, 0.7);
        border-bottom: none;
    }
    
    .nav-sub-link:hover, .nav-sub-link.active {
        background-color: transparent;
        color: var(--color-gold);
    }

    .nav-toggle-checkbox:checked ~ .nav-wrapper {
        right: 0;
    }

    .nav-toggle-checkbox:checked ~ .nav-toggle-button .burger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle-checkbox:checked ~ .nav-toggle-button .burger-line:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle-checkbox:checked ~ .nav-toggle-button .burger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer { background-color: #1A1A1A; padding: 40px 0 30px 0; width: 100%; border-top: 3px double #D4AF37; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.footer-logo img { height: 55px; width: auto; object-fit: contain; }
.footer-text-row { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; white-space: nowrap; font-family: "SimSun", "宋体", "Noto Serif CJK SC", serif; color: #FDFBF7; font-size: 14px; letter-spacing: 1.5px; }
.footer-text-row .copyright { opacity: 0.85; }
.footer-text-row .icp-text, .footer-text-row .gongan-text { color: #D4AF37; background: linear-gradient(135deg, #FFEAA7 0%, #D4AF37 50%, #AA7C11 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 500; }
.footer-text-row .split-icon { font-size: 10px; color: #B31E23; margin: 0 16px; vertical-align: middle; display: inline-block; -webkit-text-fill-color: initial; }

@media (max-width: 768px) {
    .footer-container { gap: 16px; padding: 30px 15px; }
    .footer-logo img { height: 45px; }
    .footer-text-row { flex-direction: column; white-space: normal; gap: 10px; font-size: 12px; width: 100%; }
    .footer-text-row .split-icon { margin: 2px 0; transform: rotate(90deg); font-size: 8px; }
    .footer-text-row .icp-text, .footer-text-row .gongan-text { background: none; -webkit-background-clip: initial; -webkit-text-fill-color: initial; color: #D4AF37; }
}

.footer-contact-row .contact-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-row .contact-item::before {
    font-family: "SimSun", "宋体", sans-serif;
    color: var(--color-main-red, #B31E23);
    font-size: 14px;
    font-weight: bold;
    margin-right: 6px;
    display: inline-block;
    font-style: normal;
}

.footer-contact-row .tel-item::before {
    content: "☎";
}

.footer-contact-row .mail-item::before {
    content: "✉";
}

.footer-contact-row .dz-item::before {
    content: "◆";
}

@media (max-width: 768px) {
    .footer-contact-row .contact-item {
        justify-content: center;
        width: 100%;
    }
    .footer-contact-row .contact-item::before {
        font-size: 12px;
        margin-right: 4px;
    }
}









.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 960px;
    margin: 12px auto 0 auto;
    color: #FDFBF7 !important;
}

.footer-contact-row .contact-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FDFBF7 !important;
    font-family: "SimSun", "宋体", "Noto Serif CJK SC", serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-contact-row .contact-item::before {
    font-family: "SimSun", "宋体", sans-serif;
    color: #B31E23 !important;
    font-size: 15px;
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
    font-style: normal;
    -webkit-text-fill-color: initial !important;
}

.footer-contact-row .tel-item::before { content: "☎" !important; }
.footer-contact-row .mail-item::before { content: "✉" !important; }
.footer-contact-row .dz-item::before { content: "❖" !important; }

.footer-contact-row .split-icon {
    font-size: 14px;
    color: #B31E23 !important;
    margin: 0 20px;
    font-weight: 500;
    vertical-align: middle;
    display: inline-block;
    -webkit-text-fill-color: initial !important;
}

.footer-contact-row img, 
.footer-contact-row i, 
.footer-contact-row svg {
    display: none !important;
}

@media (max-width: 768px) {
    .footer-contact-row {
        flex-direction: column;
        white-space: normal;
        gap: 12px;
        margin-top: 15px;
    }
    .footer-contact-row .contact-item {
        font-size: 12px;
        justify-content: center;
        width: 100%;
    }
    .footer-contact-row .split-icon {
        display: none !important;
    }
}





















.home-hero-stage {
    width: 100% !important;
    max-width: 100% !important;
    height: 600px;
    margin: 0 auto !important;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 2px solid #D4AF37 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.home-hero-stage::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 26, 26, 0.65);
    pointer-events: none;
    z-index: 1;
}

.hero-text-manifesto {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifesto-text-link {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    animation: ptTextFade 12s infinite ease-in-out;
}

.manifesto-text-link:nth-child(1) { animation-delay: 0s; }
.manifesto-text-link:nth-child(2) { animation-delay: 4s; }
.manifesto-text-link:nth-child(3) { animation-delay: 8s; }

@keyframes ptTextFade {
    0%, 4% { opacity: 0; visibility: hidden; transform: translateY(calc(-50% + 20px)); }
    10%, 33% { opacity: 1; visibility: visible; transform: translateY(-50%); }
    38%, 100% { opacity: 0; visibility: hidden; transform: translateY(calc(-50% - 20px)); }
}

.manifesto-title {
    font-weight: 900 !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
}

.manifesto-content {
    font-weight: 600;
    line-height: 1.7;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

.manifesto-text-link, 
.manifesto-text-link *, 
.manifesto-title, 
.manifesto-content {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.manifesto-text-link::after {
    display: none !important;
}

/* --- 第一条广告：盛唐崇高流 --- */
.manifesto-text-link:nth-child(1) {
    width: 100% !important;
    max-width: 1100px !important;
    align-items: center;
    justify-content: center;
}
.manifesto-text-link:nth-child(1) .manifesto-title {
    color: #FFFFFF !important;
    font-size: 64px !important;
    letter-spacing: 8px !important;
    margin: 0 0 24px 0 !important;
    text-align: center;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.7), 0 4px 15px rgba(0, 0, 0, 0.95);
}
.manifesto-text-link:nth-child(1) .manifesto-content {
    color: #D4AF37 !important;
    font-size: 26px !important;
    letter-spacing: 3px !important;
    text-align: center;
}

/* --- 第二条广告：大秦玄黑流（极致横向铺开，黄金安全避让印章） --- */
.manifesto-text-link:nth-child(2) {
    left: 20px !important;
    right: auto !important;
    width: 75% !important;
    max-width: 920px !important;
    align-items: flex-start !important;
    justify-content: center !important;
}
.manifesto-text-link:nth-child(2) .manifesto-title {
    color: #FFFFFF !important;
    font-size: 54px !important;
    letter-spacing: 6px !important;
    margin: 0 0 20px 0 !important;
    text-align: left !important;
}
.manifesto-text-link:nth-child(2) .manifesto-content {
    color: #D4AF37 !important;
    font-size: 22px !important;
    letter-spacing: 1.5px !important;
    white-space: normal !important;
    text-align: left !important;
}

/* --- 第三条广告：大汉天青流 --- */
.manifesto-text-link:nth-child(3) {
    width: 100% !important;
    max-width: 1100px !important;
    align-items: center;
    justify-content: center;
}
.manifesto-text-link:nth-child(3) .manifesto-title {
    color: #FFFFFF !important;
    font-size: 58px !important;
    letter-spacing: 12px !important;
    margin: 0 0 22px 0 !important;
    text-align: center;
    text-shadow: 0 0 20px rgba(253, 251, 247, 0.2), 0 4px 12px rgba(0, 0, 0, 0.9);
}
.manifesto-text-link:nth-child(3) .manifesto-content {
    color: #D4AF37 !important;
    font-size: 23px !important;
    letter-spacing: 2px !important;
    text-align: center;
}

.manifesto-text-link:hover .manifesto-title {
    color: #FFFFFF !important;
}

/* --- 响应式断点与手机端降级自适应 --- */
@media (max-width: 1240px) {
    .manifesto-text-link:nth-child(2) {
        width: 70% !important;
        max-width: none !important;
    }
}

@media (max-width: 768px) {
    .home-hero-stage { height: 360px; }
    .hero-text-manifesto { height: 160px; }
    .manifesto-text-link { padding: 10px 15px; top: 50% !important; transform: translateY(-50%) !important; }
    
    .manifesto-text-link:nth-child(1) .manifesto-title { font-size: 34px !important; margin-bottom: 12px !important; letter-spacing: 3px !important; }
    .manifesto-text-link:nth-child(1) .manifesto-content { font-size: 15px !important; }
    
    .manifesto-text-link:nth-child(2) { left: 50% !important; transform: translate(-50%, -50%) !important; align-items: center !important; width: 95% !important; }
    .manifesto-text-link:nth-child(2) .manifesto-title { font-size: 30px !important; margin-bottom: 10px !important; letter-spacing: 3px !important; text-align: center !important; }
    .manifesto-text-link:nth-child(2) .manifesto-content { font-size: 14px !important; text-align: center !important; }
    
    .manifesto-text-link:nth-child(3) .manifesto-title { font-size: 28px !important; margin-bottom: 10px !important; letter-spacing: 4px !important; }
    .manifesto-text-link:nth-child(3) .manifesto-content { font-size: 14px !important; }
}














.list-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.list-breadcrumb {
    font-family: "SimSun", "宋体", "Noto Serif CJK SC", serif;
    font-size: 14px;
    color: #333333 !important;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.list-breadcrumb a, 
.list-breadcrumb span, 
.list-breadcrumb .crumb-link {
    color: #333333 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.list-breadcrumb .crumb-root {
    color: #D4AF37 !important;
    font-weight: 600 !important;
}

.list-breadcrumb .crumb-split {
    color: #B31E23 !important;
    margin: 0 10px !important;
    font-size: 12px;
}

.list-breadcrumb .crumb-link:hover {
    color: #B31E23 !important;
}

.article-list-axis {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.article-card-item {
    background-color: #1A1A1A;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid #D4AF37 !important;
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.article-card-item:hover {
    border-color: #D4AF37 !important;
    background-color: #1F1F1F;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.article-title-row {
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.category-badge-tag {
    background-color: #B31E23 !important;
    color: #FFFFFF !important;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.article-main-title {
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    color: #FDFBF7 !important;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
    transition: color 0.2s ease;
}

.article-card-item:hover .article-main-title {
    color: #D4AF37 !important;
}

.article-info-bar {
    font-family: "SimSun", "宋体", serif;
    font-size: 13px;
    color: #D4AF37 !important;
    display: flex;
    gap: 24px;
    margin-bottom: 14px;
    opacity: 0.85;
}

.article-summary-text {
    font-family: "SimSun", "宋体", "Noto Serif CJK SC", serif;
    color: #FDFBF7 !important;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .list-page-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    .article-card-item {
        padding: 18px 20px;
    }
    .article-title-row {
        gap: 10px;
        margin-bottom: 10px;
    }
    .article-main-title {
        font-size: 17px;
    }
    .article-info-bar {
        font-size: 11px;
        gap: 15px;
    }
}















.contact-page-stage {
    width: 100% !important;
    max-width: 100% !important;
    min-height: calc(100vh - 160px);
    background-color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 50px 20px;
}

.contact-three-dimensional-grid {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    gap: 45px;
    align-items: stretch;
}

.contact-hero-scroll {
    position: relative;
    background-image: url('https://unsplash.com');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 3px double #D4AF37 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    min-height: 620px;
}

.scroll-overlay-mask {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.2) 0%, rgba(26, 26, 26, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.scroll-slogan-title {
    writing-mode: vertical-rl;
    font-family: "SimSun", "宋体", "Noto Serif CJK SC", serif;
    color: #FDFBF7 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: 12px !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
    line-height: 1.8;
}

.scroll-slogan-title span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #B31E23;
    margin: 15px 0;
    transform: rotate(45deg);
}

.contact-right-composite-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.contact-manifesto-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-stage-title {
    font-family: "SimSun", "宋体", "Noto Serif CJK SC", serif;
    color: #D4AF37 !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    letter-spacing: 4px !important;
    margin: 0 0 25px 0 !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
    position: relative;
}

.contact-stage-title::after {
    content: "";
    position: absolute;
    bottom: -8px; left: 0; width: 60px; height: 2px;
    background: linear-gradient(90deg, #B31E23, transparent);
}

.contact-card-axis {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 3px double #D4AF37 !important;
    padding: 30px;
    box-sizing: border-box;
}

.contact-card-axis .contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: "SimSun", "宋体", "Noto Serif CJK SC", serif;
    color: #FDFBF7 !important;
    font-size: 15px;
    letter-spacing: 1px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(253, 251, 247, 0.05);
    padding-bottom: 12px;
}

.contact-card-axis .contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-card-axis .contact-item::before {
    font-family: "SimSun", "宋体", sans-serif;
    color: #B31E23 !important;
    font-size: 18px;
    font-weight: bold;
    margin-right: 14px;
    display: inline-block;
    font-style: normal;
    -webkit-text-fill-color: initial !important;
}

.contact-card-axis .tel-item::before { content: "☎" !important; }
.contact-card-axis .mail-item::before { content: "✉" !important; }
.contact-card-axis .dz-item::before { content: "⌂" !important; }

.contact-value {
    color: #FDFBF7 !important;
}

.contact-map-frame-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#map-container {
    width: 100% !important;
    height: 230px !important;
    background-color: #222;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    pointer-events: auto !important;
}

.map-loading {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(253, 251, 247, 0.6);
    font-family: "SimSun", serif;
    font-size: 13px;
    letter-spacing: 1px;
}

.nav-btn-wrapper {
    width: 100%;
    text-align: right;
}

.nav-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #B31E23 !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-family: "SimSun", "宋体", serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: 2px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #4A2E2B !important;
    color: #D4AF37 !important;
    transform: translateY(-1px);
}

#map-container .amap-maps {
    filter: grayscale(85%) brightness(80%) contrast(110%);
    transition: filter 0.5s ease;
}

#map-container:hover .amap-maps {
    filter: grayscale(0%) brightness(100%);
}

.contact-card-axis .tel-item,
.contact-card-axis .tel-item *,
.contact-card-axis a[href^="tel"],
.contact-card-axis a[href^="tel"] *,
.tel-dial-link,
.tel-dial-link * {
    color: #FDFBF7 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.tel-dial-link:hover,
.tel-dial-link:hover * {
    color: #D4AF37 !important;
}

@media (max-width: 992px) {
    .contact-three-dimensional-grid { grid-template-columns: 1fr; gap: 35px; }
    .contact-hero-scroll { min-height: 260px; height: 260px; }
    .scroll-slogan-title { writing-mode: horizontal-tb; font-size: 20px !important; letter-spacing: 4px !important; text-align: center; }
    .scroll-slogan-title span { margin: 0 10px; vertical-align: middle; }
    .contact-manifesto-box { align-items: center; }
    .contact-stage-title::after { left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, transparent, #B31E23 50%, transparent); }
}

@media (max-width: 768px) {
    .contact-page-stage { min-height: calc(100vh - 120px); padding: 25px 15px; }
    .contact-card-axis { padding: 20px; }
    .contact-card-axis .contact-item { white-space: normal !important; word-break: break-all; }
    #map-container {
        height: 180px !important;
        background-image: url('https://amap.com') !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }
    .nav-btn { width: 100%; text-align: center; box-sizing: border-box; padding: 12px; }
    #map-container .amap-maps { filter: none !important; }
    .contact-card-axis a[href^="tel"],
    .contact-card-axis a[href^="tel"] * {
        color: #FDFBF7 !important;
    }
}
.contact-card-axis,
.contact-card-axis *,
.contact-item,
.contact-item *,
.tel-item,
.tel-item a,
.tel-item span {
    color: #FDFBF7 !important;
    -webkit-text-fill-color: #FDFBF7 !important; /* 强制填充苹果iOS和微信内核的文本颜色 */
}

.contact-card-axis a,
.contact-card-axis a:link,
.contact-card-axis a:visited,
.contact-card-axis a:hover,
.contact-card-axis a:active {
    color: #FDFBF7 !important;
    -webkit-text-fill-color: #FDFBF7 !important;
    text-decoration: none !important;
}










.footer-contact-row a,
.footer-contact-row a:link,
.footer-contact-row a:visited,
.footer-contact-row a:hover,
.footer-contact-row a:active,
.footer-contact-row a *,
.footer-contact-row [href^="tel"],
.footer-contact-row [href^="mailto"],
.footer-contact-row [onclick*="openFooterMapApp"] {
    color: #FDFBF7 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background: transparent !important;
    cursor: pointer;
    -webkit-text-fill-color: #FDFBF7 !important;
}

.footer-contact-row a:hover,
.footer-contact-row a:hover * {
    color: #D4AF37 !important;
    -webkit-text-fill-color: #D4AF37 !important;
}

@media (max-width: 768px) {
    .footer-contact-row a,
    .footer-contact-row a * {
        color: #FDFBF7 !important;
        -webkit-text-fill-color: #FDFBF7 !important;
        white-space: normal !important;
        word-break: break-all !important;
    }
}
