* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background: #fff;
            color: #171717;
            font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans", Arial, Helvetica, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        img { display: block; width: 100%; height: 100%; object-fit: cover; }
        button, input, select, textarea { font: inherit; }
        :root {
            --accent: #C9B176;
            --accent-deep: #9b895c;
            --page: min(1440px, calc(100% - 52px));
            --article: min(920px, calc(100% - 52px));
        }
        .hidden { display: none !important; }

        .article-hero {
            color: #1d1d1d;
            background: #fff;
            border-bottom: 1px solid #e7e7e7;
        }
        .article-hero-inner {
            width: var(--article);
            margin: 0 auto;
            padding: 124px 0 42px;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-bottom: 20px;
            color: #777;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .article-meta span + span::before {
            content: "";
            display: inline-block;
            width: 28px;
            height: 1px;
            margin-right: 12px;
            vertical-align: middle;
            background: #b9b9b9;
        }
        .article-hero h1 {
            max-width: 900px;
            font-size: clamp(34px, 4vw, 58px);
            line-height: 1.14;
            letter-spacing: 0.01em;
        }
        .article-lead {
            max-width: 760px;
            margin-top: 18px;
            color: #555;
            font-size: 18px;
            line-height: 1.7;
        }
        .article-main-image {
            width: min(1180px, calc(100% - 52px));
            height: clamp(360px, 46vw, 620px);
            margin: 44px auto 0;
            overflow: hidden;
            background: #f4f4f4;
        }
        .article-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-wrap {
            width: var(--article);
            margin: 44px auto 58px;
        }
        .article-quote {
            margin: 34px 0;
            padding: 18px 22px;
            border-left: 3px solid #c9b176;
            background: #fafafa;
            color: #333;
            font-size: 18px;
            line-height: 1.65;
        }
        .article-image {
            width: var(--article);
            margin: 42px auto 50px;
            overflow: hidden;
            background: #f5f5f5;
        }
        .article-image img {
            height: auto;
            object-fit: cover;
        }
        .related-news {
            width: min(1180px, calc(100% - 52px));
            margin: 8px auto 62px;
            padding-top: 36px;
            border-top: 1px solid rgba(24, 24, 24, 0.16);
        }
        .related-news h2 {
            margin-bottom: 24px;
            color: #1f1f1f;
            font-size: 26px;
            line-height: 1.2;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .related-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }
        .related-card {
            display: block;
            border: 1px solid #e6e6e6;
            background: #fff;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .related-card:hover {
            transform: translateY(-4px);
            border-color: rgba(155, 127, 71, 0.38);
        }
        .related-thumb {
            height: 220px;
            overflow: hidden;
            background: #f4f4f4;
        }
        .related-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }
        .related-card:hover img {
            transform: scale(1.035);
        }
        .related-body {
            padding: 18px 18px 20px;
        }
        .related-meta {
            margin-bottom: 10px;
            color: #8b7a54;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .related-card h3 {
            color: #252525;
            font-size: 18px;
            line-height: 1.35;
            transition: color 0.3s ease;
        }
        .related-card:hover h3 {
            color: #9b7f47;
        }
        .article-nav {
            width: var(--article);
            margin: 0 auto 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-top: 28px;
            border-top: 1px solid rgba(24, 24, 24, 0.16);
        }
        .article-nav a {
            color: #1d1d1d;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .article-nav a:hover {
            color: #9b7f47;
        }

        .fx-reveal {
            opacity: 0;
            transform: translateY(34px);
            transition: opacity 0.78s ease, transform 0.78s ease;
        }
        .fx-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .index-footer-main {
            width: 100%;
            background-color: #1a1a1a;
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/skin/static/image/footer-main-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .footer-banner {
            margin: 0 auto;
            max-width: 1400px;
            width: 100%;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 50px;
            color: #fff;
        }
        .footer-banners {
            margin: 0 auto;
            max-width: 1400px;
            width: 100%;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 50px;
            color: #fff;
        }
        .banner-title {
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 30px;
            width: 100%;
        }
        .banner-button-wrap { width: 100%; text-align: right; }
        .banner-link {
            padding: 12px 25px;
            border: 1px solid #d4b06a;
            background: transparent;
            color: #fff;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            transition: transform 0.35s ease, background 0.35s ease, background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
        }
        .banner-link:hover {
            background-color: #d4b06a;
            color: #1a1a1a;
            text-decoration: none;
            box-shadow: 0 12px 26px rgba(212, 176, 106, 0.24);
            transform: translateY(-3px);
        }
        .banner-link::before,
        .submit-btn button::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.28) 48%, transparent 100%);
            transform: translateX(-120%);
            transition: transform 0.65s ease;
            pointer-events: none;
        }
        .banner-link:hover::before,
        .submit-btn button:hover::before { transform: translateX(120%); }
        .index-footer {
            max-width: 1400px;
            margin: 0 auto;
            color: #fff;
            padding: 40px 50px;
        }
        .index-footer-bg {
            width: 100%;
            background-color: #1a1a1a;
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/skin/static/image/footer-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .inquiry-title {
            font-size: 2rem;
            font-weight: bold;
            text-align: left;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .inquiry-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        .footer-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-form-group label {
            font-size: 0.9rem;
            text-transform: uppercase;
            opacity: 0.9;
        }
        .footer-form-group input,
        .footer-form-group select,
        .footer-form-group textarea {
            font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans", Arial, Helvetica, sans-serif;
            padding: 12px 15px;
            border: none;
            border-radius: 0;
            font-size: 1rem;
            width: 100%;
            background: #fff;
            color: #333;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
        .footer-form-group input:focus,
        .footer-form-group select:focus,
        .footer-form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(212, 176, 106, 0.72), 0 10px 22px rgba(0,0,0,0.16);
            transform: translateY(-1px);
        }
        .footer-form-group.message { grid-column: 1 / 3; }
        .footer-form-group textarea { min-height: 100px; resize: vertical; }
        .submit-btn { grid-column: 2 / 3; text-align: right; }
        .submit-btn button {
            background: #C9B176;
            color: #fff;
            border: none;
            padding: 12px 40px;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: background 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
        }
        .submit-btn button:hover {
            background:#9b895c;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
            transform: translateY(-3px);
        }
        .social-icons {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            align-items: center;
        }
        .social-icons a {
            color: #fff;
            font-size: 1.5rem;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-icons a:hover { color: #ff8c00; transform: translateY(-3px); }
        .copyright { font-size: 0.8rem; opacity: 0.8; text-align: left; }
        .footer-fx {
            opacity: 0;
            transform: translateY(34px);
            transition: opacity 0.78s ease, transform 0.78s ease;
        }
        .footer-fx.is-visible { opacity: 1; transform: translateY(0); }
        @media (max-width: 900px) {.article-image { width: var(--article); }
}
        @media (max-width: 768px) {:root { --page: calc(100% - 32px); --article: calc(100% - 32px); }
            .article-hero-inner { padding: 104px 0 34px; }
            .article-main-image {
                width: var(--article);
                height: 300px;
                margin-top: 30px;
            }
            .related-news {
                width: var(--article);
                margin-bottom: 48px;
            }
            .related-list {
                grid-template-columns: 1fr;
            }
            .related-thumb {
                height: 230px;
            }
            .article-lead { font-size: 16px; }
            .article-quote { padding: 16px 18px; }
            .article-nav { flex-direction: column; align-items: flex-start; }
            .banner-title { font-size: 1.8rem; }
            .banner-button-wrap { text-align: center; }
            .inquiry-form { grid-template-columns: 1fr; }
            .footer-form-group.message, .submit-btn { grid-column: 1 / 2; }
            .submit-btn, .inquiry-title, .copyright { text-align: center; }
            .social-icons { justify-content: center; }
            .footer-banner, .footer-banners, .index-footer {
                padding-left: 24px;
                padding-right: 24px;
            }
}
        @media (prefers-reduced-motion: reduce) {*, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.001ms !important;
            }
            .fx-reveal, .footer-fx { opacity: 1; transform: none; }
}

.article-body-empty { color: #777; }
.related-news.is-hidden { display: none; }
.article-wrap.fx-reveal { opacity: 1; transform: none; }
.article-wrap h1,
.article-wrap h2,
.article-wrap h3,
.article-wrap h4,
.article-wrap h5,
.article-wrap h6 { margin: 34px 0 14px; color: inherit; font: inherit; line-height: inherit; letter-spacing: 0; text-transform: none; }
.article-wrap blockquote,
.article-wrap .nj-number-tip { margin: 22px 0; padding: 18px 24px; border-left: 3px solid #c9b176; background: #fafafa; }
.article-wrap ul,
.article-wrap .nj-bullet-list { margin: 16px 0 22px; padding: 0 0 0 10px; list-style: none; }
.article-wrap ul li,
.article-wrap .nj-bullet-list li { position: relative; margin: 9px 0; padding-left: 20px; color: inherit; font: inherit; line-height: 1.7; }
.article-wrap ul li::before,
.article-wrap .nj-bullet-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 7px; border: 1px solid #c9b176; background: #fff; transform: rotate(45deg); }
.article-wrap img { display: block; width: 100%; max-width: 100%; height: auto; margin-top: 28px; object-fit: contain; }
.article-wrap .nj-word-table { width: 100%; margin: 24px 0; border-collapse: collapse; background: #fff; }
.article-wrap .nj-word-table th,
.article-wrap .nj-word-table td { padding: 12px 14px; border: 1px solid rgba(24, 24, 24, 0.16); color: inherit; font: inherit; line-height: 1.55; vertical-align: top; }
.article-wrap .nj-word-table th { font-weight: 700; background: #fafafa; }
