/* ===== 全局基础 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "Noto Serif SC", "Source Han Serif SC", "STKaiti", "KaiTi", "FangSong", serif;
    background: #F5EFE0;
    color: #3D2F25;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* 通用容器 */
.hdbox, .bnbox, .sebox, .ftbox { width: 1200px; max-width: 96%; margin: 0 auto; }

/* 通用按钮 */
.btnr {
    display: inline-flex; align-items: center; gap: 6px;
    background: #C9A961; color: #1F4538;
    padding: 10px 22px; border-radius: 28px;
    font-weight: 700; font-size: 15px;
    border: 2px solid #C9A961;
    transition: all 0.3s ease;
}
.btnr:hover { background: #2D5F4E; color: #F5EFE0; border-color: #2D5F4E; }
.btnr i { font-size: 18px; }
.btnline {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; color: #C9A961;
    padding: 10px 22px; border-radius: 28px;
    font-weight: 700; font-size: 15px;
    border: 2px solid #C9A961;
    transition: all 0.3s ease;
}
.btnline:hover { background: #C9A961; color: #1F4538; }

/* ===== 头部 ===== */
.suhd {
    position: sticky; top: 0; z-index: 100;
    background: #2D5F4E;
    border-bottom: 2px solid #C9A961;
}
.hdbox {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 24px;
}
.sulg {
    display: flex; align-items: center; gap: 10px;
    color: #F5EFE0;
}
.sulg img {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid #C9A961;
    background: #FBF7EB;
}
.sulg span {
    font-size: 20px; font-weight: 700;
    display: flex; align-items: baseline; gap: 8px;
    letter-spacing: 1px;
}
.sulg em {
    font-style: normal; font-size: 12px;
    color: #C9A961; font-weight: 400;
    padding: 2px 8px; border: 1px solid #C9A961;
    border-radius: 10px;
}
.sunv { display: flex; gap: 4px; flex: 1; justify-content: center; }
.sunv a {
    padding: 8px 14px; font-size: 15px;
    color: #F5EFE0; border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}
.sunv a::after {
    content: ""; position: absolute; left: 50%; bottom: 2px;
    width: 0; height: 2px; background: #C9A961;
    transition: all 0.3s ease; transform: translateX(-50%);
}
.sunv a:hover { color: #C9A961; }
.sunv a:hover::after { width: 50%; }
.rtcy { display: flex; align-items: center; gap: 12px; }
.mnav-btn {
    display: none; color: #F5EFE0; font-size: 26px;
    padding: 4px;
}
.mnav {
    display: none;
    flex-direction: column; gap: 4px;
    padding: 12px 20px 20px;
    background: #1F4538;
    border-top: 1px solid #C9A961;
}
.mnav a {
    color: #F5EFE0; padding: 10px 12px;
    border-radius: 8px; font-size: 15px;
}
.mnav a:hover { background: #2D5F4E; color: #C9A961; }
.mnav .btnr { color: #1F4538; justify-content: center; margin-top: 8px; }

/* ===== 主视觉 ===== */
.subanner {
    background: linear-gradient(135deg, #1F4538 0%, #2D5F4E 55%, #1F4538 100%);
    position: relative; overflow: hidden;
    padding: 70px 0 80px;
}
.subanner::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(201,169,97,0.10) 0, transparent 40%),
        radial-gradient(circle at 88% 80%, rgba(201,169,97,0.08) 0, transparent 45%);
    pointer-events: none;
}
.bnbox {
    display: flex; align-items: center; gap: 40px;
    position: relative; z-index: 1;
}
.bntext { flex: 1; }
.bn-tag {
    display: inline-flex; align-items: center; gap: 6px;
    color: #C9A961; font-size: 14px;
    padding: 6px 14px; border: 1px solid #C9A961;
    border-radius: 20px; margin-bottom: 22px;
}
.bn-tag i { font-size: 16px; }
.bntext h1 {
    font-size: 64px; color: #F5EFE0;
    letter-spacing: 4px; line-height: 1.1;
    margin-bottom: 14px; font-weight: 700;
}
.bn-sub {
    font-size: 26px; color: #C9A961;
    letter-spacing: 2px; margin-bottom: 22px;
}
.bn-desc {
    color: #E8D9A8; font-size: 15px;
    max-width: 480px; margin-bottom: 32px;
    line-height: 1.9;
}
.bnbtn { display: flex; gap: 16px; margin-bottom: 40px; }
.bnstat {
    display: flex; gap: 36px;
}
.bnstat li { display: flex; flex-direction: column; }
.bnstat b {
    font-size: 24px; color: #C9A961;
    font-weight: 700; letter-spacing: 1px;
}
.bnstat span {
    font-size: 13px; color: #E8D9A8;
    margin-top: 2px;
}

/* 手机 mockup */
.bnmo {
    flex: 0 0 380px; position: relative;
    height: 520px; display: flex; justify-content: center;
}
.moframe {
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 240px; height: 480px;
    border: 3px solid #C9A961;
    border-radius: 36px;
    background: #FBF7EB;
    padding: 10px; overflow: hidden;
}
.moframe .mowall {
    display: block; width: 100%; height: 12px;
    background: #2D5F4E; border-radius: 6px;
    margin-bottom: 6px;
}
.moframe img {
    width: 100%; height: calc(100% - 18px);
    object-fit: cover; border-radius: 14px;
}
.moframe.mtwo {
    width: 200px; height: 400px;
    top: 80px; left: 22%;
    transform: rotate(-8deg);
    border-color: #E8D9A8;
    opacity: 0.85;
    z-index: -1;
}

/* ===== 通用 section ===== */
.susec { padding: 72px 0; }
.sebg { background: #EFE6D2; }
.setitle {
    text-align: center; margin-bottom: 50px;
    position: relative;
}
.stit-orn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%;
    background: #2D5F4E; color: #C9A961;
    font-size: 28px; margin-bottom: 14px;
    border: 2px solid #C9A961;
}
.stit {
    font-size: 32px; color: #2D5F4E;
    letter-spacing: 4px; font-weight: 700;
    margin-bottom: 12px;
}
.stit-line {
    display: block; width: 80px; height: 3px;
    background: #C9A961; margin: 0 auto;
    border-radius: 2px;
    position: relative;
}
.stit-line::before, .stit-line::after {
    content: ""; position: absolute; top: 50%;
    width: 8px; height: 8px; border-radius: 50%;
    background: #C9A961; transform: translateY(-50%);
}
.stit-line::before { left: -16px; }
.stit-line::after { right: -16px; }

/* ===== 产品展示 ===== */
.cpbox {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cpitem {
    background: #FBF7EB; border: 2px solid #2D5F4E;
    border-radius: 18px; overflow: hidden;
    transition: all 0.3s ease;
}
.cpitem:hover { transform: translateY(-6px); border-color: #C9A961; }
.cpimg { width: 100%; height: 240px; overflow: hidden; }
.cpimg img { width: 100%; height: 100%; object-fit: cover; }
.cptxt {
    text-align: center; padding: 14px;
    color: #2D5F4E; font-size: 16px;
    font-weight: 700; letter-spacing: 1px;
    border-top: 1px dashed #C9A961;
    background: #FBF7EB;
}

/* ===== 优势亮点 ===== */
.ysbox {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ysitem {
    background: #FBF7EB; border: 2px solid #C9A961;
    border-radius: 20px; padding: 30px 26px;
    text-align: center; transition: all 0.3s ease;
    position: relative;
}
.ysitem::before {
    content: ""; position: absolute; top: 14px; left: 14px;
    right: 14px; bottom: 14px;
    border: 1px dashed #C9A961;
    border-radius: 14px;
    pointer-events: none; opacity: 0.4;
}
.ysitem:hover { background: #2D5F4E; color: #F5EFE0; transform: translateY(-4px); }
.ysitem:hover .ysico { background: #C9A961; color: #2D5F4E; }
.ysitem:hover .ystt { color: #C9A961; }
.ysitem:hover .ysdc { color: #E8D9A8; }
.ysico {
    width: 64px; height: 64px; border-radius: 50%;
    background: #2D5F4E; color: #C9A961;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 30px; margin: 0 auto 16px;
    border: 2px solid #C9A961;
    position: relative; z-index: 1;
    transition: all 0.3s ease;
}
.ystt {
    font-size: 20px; color: #2D5F4E;
    font-weight: 700; margin-bottom: 10px;
    letter-spacing: 1px; position: relative; z-index: 1;
    transition: all 0.3s ease;
}
.ysdc {
    font-size: 14px; color: #5C4A3A;
    line-height: 1.8; position: relative; z-index: 1;
    transition: all 0.3s ease;
}

/* ===== 下载中心 ===== */
.dlbox {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dlitem {
    background: #FBF7EB; border: 2px solid #2D5F4E;
    border-radius: 18px; padding: 28px 24px;
    text-align: center; transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.dlitem::after {
    content: ""; position: absolute; top: -40px; right: -40px;
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(201,169,97,0.15);
}
.dlitem:hover { transform: translateY(-4px); border-color: #C9A961; }
.dlico {
    width: 60px; height: 60px; border-radius: 16px;
    background: #2D5F4E; color: #C9A961;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 14px;
    border: 2px solid #C9A961;
    position: relative; z-index: 1;
}
.dltt {
    font-size: 19px; color: #2D5F4E; font-weight: 700;
    margin-bottom: 6px; letter-spacing: 1px;
    position: relative; z-index: 1;
}
.dlsub {
    font-size: 13px; color: #5C4A3A;
    margin-bottom: 18px; position: relative; z-index: 1;
}
.dlitem .btnr { position: relative; z-index: 1; }

/* ===== 使用流程 ===== */
.lcbox {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; position: relative;
}
.lcbox::before {
    content: ""; position: absolute; top: 36px; left: 12%;
    right: 12%; height: 2px;
    background: repeating-linear-gradient(90deg, #C9A961 0 8px, transparent 8px 16px);
    z-index: 0;
}
.lcitem {
    text-align: center; position: relative; z-index: 1;
    background: #FBF7EB; border: 2px solid #C9A961;
    border-radius: 18px; padding: 26px 18px 24px;
    transition: all 0.3s ease;
}
.lcitem:hover { transform: translateY(-4px); border-color: #2D5F4E; }
.lcno {
    font-size: 32px; color: #C9A961; font-weight: 700;
    letter-spacing: 2px; margin-bottom: 10px;
}
.lcbub {
    width: 24px; height: 24px; border-radius: 50%;
    background: #2D5F4E; border: 3px solid #C9A961;
    margin: 0 auto 18px;
}
.lctt {
    font-size: 18px; color: #2D5F4E; font-weight: 700;
    margin-bottom: 8px; letter-spacing: 1px;
}
.lcdc { font-size: 13px; color: #5C4A3A; line-height: 1.8; }

/* ===== 常见问题 ===== */
.wtbox {
    max-width: 880px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 14px;
}
.wtitem {
    background: #FBF7EB; border: 2px solid #2D5F4E;
    border-radius: 14px; overflow: hidden;
    transition: all 0.3s ease;
}
.wtitem.active { border-color: #C9A961; background: #FBF7EB; }
.wthead {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; cursor: pointer;
}
.wtq {
    display: flex; align-items: center; gap: 8px;
    font-size: 16px; color: #2D5F4E; font-weight: 700;
    letter-spacing: 1px;
}
.wtq i { color: #C9A961; font-size: 18px; }
.wtico {
    color: #2D5F4E; font-size: 22px;
    transition: transform 0.3s ease;
}
.wtitem.active .wtico { transform: rotate(180deg); color: #C9A961; }
.wtbody {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 22px;
}
.wtitem.active .wtbody { max-height: 200px; padding: 0 22px 18px; }
.wtbody p {
    font-size: 14px; color: #5C4A3A; line-height: 1.9;
    border-top: 1px dashed #C9A961; padding-top: 14px;
}

/* ===== 产品资讯 ===== */
.zxbox {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.zxitem {
    background: #FBF7EB; border: 2px solid #2D5F4E;
    border-radius: 16px; padding: 24px;
    display: flex; gap: 20px; align-items: flex-start;
    transition: all 0.3s ease;
}
.zxitem:hover { transform: translateX(6px); border-color: #C9A961; }
.zximg {
    flex: 0 0 64px; width: 64px; height: 64px;
    border-radius: 14px; background: #2D5F4E;
    color: #C9A961; font-size: 30px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #C9A961;
}
.zxtxt { flex: 1; }
.zxtt {
    font-size: 17px; color: #2D5F4E; font-weight: 700;
    margin-bottom: 4px; letter-spacing: 1px; line-height: 1.5;
}
.zxmt {
    font-size: 12px; color: #C9A961; margin-bottom: 8px;
    letter-spacing: 1px;
}
.zxdc { font-size: 14px; color: #5C4A3A; line-height: 1.8; }

/* ===== 用户评价 ===== */
.pjbox {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; align-items: start;
}
.pjitem {
    background: #FBF7EB; border: 2px solid #C9A961;
    border-radius: 18px; padding: 24px 22px;
    transition: all 0.3s ease;
    position: relative;
}
.pjitem::before {
    content: "\201C"; position: absolute; top: 6px; right: 16px;
    font-size: 60px; color: #C9A961; opacity: 0.25;
    font-family: serif; line-height: 1;
}
.pjitem:hover { transform: translateY(-4px); border-color: #2D5F4E; }
.pjhead {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
}
.pjav {
    width: 44px; height: 44px; border-radius: 50%;
    background: #2D5F4E; color: #C9A961;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; border: 2px solid #C9A961;
}
.pjnm {
    font-size: 16px; color: #2D5F4E; font-weight: 700;
    letter-spacing: 1px;
}
.pjtm { font-size: 12px; color: #C9A961; margin-top: 2px; }
.pjdc { font-size: 14px; color: #5C4A3A; line-height: 1.9; }

/* ===== 页脚 ===== */
.suft {
    background: #1F4538; color: #E8D9A8;
    padding: 50px 0 0; border-top: 3px solid #C9A961;
}
.fttop {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 40px; padding-bottom: 30px;
    border-bottom: 1px dashed rgba(201,169,97,0.4);
}
.ftbrand { flex: 1; max-width: 360px; }
.ftbrand .sulg { margin-bottom: 14px; }
.ftdc { font-size: 14px; color: #E8D9A8; line-height: 1.9; }
.ftnav {
    display: flex; flex-wrap: wrap; gap: 8px 18px;
    flex: 2; justify-content: center;
    align-content: center;
}
.ftnav a {
    color: #E8D9A8; font-size: 14px;
    padding: 4px 8px; border-radius: 6px;
    transition: all 0.3s ease;
}
.ftnav a:hover { color: #C9A961; background: rgba(201,169,97,0.1); }
.ftdl { flex: 0 0 auto; }
.ftbot {
    padding: 18px 0; text-align: center;
    font-size: 13px; color: #C9A961;
    display: flex; flex-direction: column; gap: 4px;
}

/* ===== 返回顶部 ===== */
.backtop {
    position: fixed; right: 28px; bottom: 28px;
    width: 48px; height: 48px; border-radius: 50%;
    background: #2D5F4E; color: #C9A961;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; border: 2px solid #C9A961;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease; z-index: 99;
}
.backtop.show { opacity: 1; visibility: visible; }
.backtop:hover { background: #C9A961; color: #2D5F4E; }

/* ===== 移动端 (767px 断点) ===== */
@media (max-width: 767px) {
    body { font-size: 15px; }
    .sunv, .rtcy .btnr { display: none; }
    .mnav-btn { display: block; }
    .hdbox { height: 60px; gap: 12px; }
    .sulg img { width: 38px; height: 38px; }
    .sulg span { font-size: 17px; }
    .sulg em { font-size: 10px; padding: 1px 6px; }

    .subanner { padding: 40px 0 50px; }
    .bnbox { flex-direction: column; gap: 30px; text-align: center; }
    .bntext { order: 2; }
    .bnmo { flex: 0 0 auto; order: 1; height: 380px; width: 100%; }
    .moframe { width: 180px; height: 360px; }
    .moframe.mtwo { width: 150px; height: 300px; }
    .bntext h1 { font-size: 40px; letter-spacing: 2px; }
    .bn-sub { font-size: 18px; }
    .bn-desc { font-size: 14px; margin: 0 auto 24px; }
    .bnbtn { justify-content: center; }
    .bnstat { justify-content: center; gap: 18px; flex-wrap: wrap; }
    .bnstat b { font-size: 20px; }

    .susec { padding: 50px 0; }
    .stit { font-size: 24px; letter-spacing: 2px; }
    .stit-orn { width: 48px; height: 48px; font-size: 24px; }
    .setitle { margin-bottom: 36px; }

    .cpbox { grid-template-columns: 1fr; gap: 18px; }
    .cpimg { height: 200px; }

    .ysbox { grid-template-columns: 1fr; gap: 18px; }
    .ysitem { padding: 24px 20px; }

    .dlbox { grid-template-columns: 1fr; gap: 18px; }

    .lcbox { grid-template-columns: 1fr; gap: 18px; }
    .lcbox::before { display: none; }

    .wtbox { gap: 12px; }
    .wthead { padding: 14px 16px; }
    .wtq { font-size: 15px; }

    .zxbox { grid-template-columns: 1fr; gap: 18px; }
    .zxitem { padding: 18px; gap: 14px; }
    .zximg { flex: 0 0 52px; width: 52px; height: 52px; font-size: 24px; }

    .pjbox { grid-template-columns: 1fr; gap: 18px; }

    .fttop { flex-direction: column; gap: 24px; padding-bottom: 24px; }
    .ftnav { justify-content: flex-start; }
    .ftdl { align-self: flex-start; }
    .backtop { right: 16px; bottom: 16px; width: 42px; height: 42px; font-size: 20px; }
}
