﻿@charset "utf-8";

:root {
    --mw-primary: #0076FE;
    --mw-primary-dark: #0062D8;
    --mw-primary-soft: rgba(0, 118, 254, 0.08);
    --mw-text: #0f172a;
    --mw-muted: #64748b;
    --mw-line: #e2e8f0;
    --mw-bg: #f8fafc;
    --mw-card: #fff;
    --mw-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
    --mw-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
    --mw-radius-sm: 6px;
    --mw-radius: 10px;
    --mw-radius-lg: 14px;
}

html {
    min-width: 0;
    scroll-behavior: smooth;
}

body {
    min-width: 0;
    padding-top: 72px;
    color: var(--mw-text);
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    letter-spacing: 0;
}

a {
    transition: color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.item {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease, color .28s ease;
}

.index {
    width: min(1440px, calc(100% - 48px));
}

.head {
    height: 72px;
    line-height: 72px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--mw-line);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.head .index {
    height: 72px;
}

.head .l {
    left: 0;
}

.head .l .logo {
    display: flex;
    align-items: center;
    height: 72px;
}

.head .l .logo img {
    height: 38px;
}

.head .navs {
    width: auto;
    padding: 0 220px;
}

.head .navs a {
    height: auto;
    line-height: 1;
    margin: 0 2px;
    padding: 10px 16px;
    color: #475569;
    border: 0;
    border-radius: 999px;
    font-weight: 500;
}

.head .navs a:hover,
.head .navs a.active {
    color: var(--mw-primary);
    background: var(--mw-primary-soft);
    border: 0;
}

.head .r {
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.head .r>a {
    margin: 0;
    padding: 0 20px;
    border-radius: 10px;
}

.head .r>a.login {
    background: var(--mw-primary);
}

.head .r>a.login:hover {
    background: var(--mw-primary-dark);
}

.head .r>a.register {
    color: var(--mw-text) !important;
    background: #fff;
    border: 1px solid var(--mw-line);
}

.head .r>a.register:hover {
    color: var(--mw-primary) !important;
    border-color: var(--mw-primary);
    background: #fff;
}

.head .r>.news {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 12px;
    color: #475569;
    border-radius: 999px;
    line-height: 1;
}

.head .r>.news:hover {
    color: var(--mw-primary);
    background: var(--mw-primary-soft);
}

.head .r>.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 72px;
    margin: 0;
    padding: 0;
}

.head .r>.avatar>a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.head .r>.avatar:hover>a {
    border-color: rgba(0, 118, 254, .42);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .14);
    transform: translateY(-1px);
}

.head .r>.avatar>a>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.head .r .avatar-mu {
    display: block;
    visibility: hidden;
    top: 62px;
    width: 300px;
    overflow: visible;
    color: var(--mw-text);
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(.98);
    transform-origin: top right;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 1000;
}

.head .r .avatar-mu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: var(--mw-primary);
    transform: rotate(45deg);
    z-index: -1;
}

.head .r>.avatar:hover .avatar-mu,
.head .r>.avatar:focus-within .avatar-mu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.head .r .avatar-mu .edition {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 78px;
    padding: 14px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, var(--mw-primary-dark) 0%, var(--mw-primary) 100%);
    line-height: 1.35;
    text-align: left;
    text-shadow: none;
}

.head .r .avatar-mu .edition .fl {
    float: none;
    display: flex;
    align-items: center;
    min-width: 0;
}

.head .r .avatar-mu .edition .fr {
    float: none;
    flex: 0 0 auto;
    line-height: 1;
}

.head .r .avatar-mu .edition .avatar {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin: 0 10px 0 0;
    border: 2px solid rgba(255, 255, 255, .9);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .16);
}

.head .r .avatar-mu .edition .avatar img {
    object-fit: cover;
}

.head .r .avatar-mu .edition .info {
    min-width: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

.head .r .avatar-mu .edition .ellipsis {
    max-width: 116px;
    margin-bottom: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.head .r .avatar-mu .edition .fr a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 28px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    font-size: 12px;
    line-height: 28px;
}

.head .r .avatar-mu .edition .fr a:hover {
    background: rgba(255, 255, 255, .22);
}

.head .r .avatar-mu i {
    margin-right: 0;
}

.head .r .avatar-mu .btns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
}

.head .r .avatar-mu .btns a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 78px;
    margin: 0;
    padding: 10px;
    color: #334155;
    border: 1px solid rgba(0, 118, 254, .14);
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, rgba(0, 118, 254, .035) 100%);
    line-height: 1.25;
    font-size: 13px;
    font-weight: 600;
}

.head .r .avatar-mu .btns a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    color: var(--mw-primary);
    border-radius: 8px;
    background: var(--mw-primary-soft);
    font-size: 18px;
}

.head .r .avatar-mu .btns a:hover {
    color: var(--mw-primary);
    border-color: rgba(0, 118, 254, .34);
    background: var(--mw-primary-soft);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
    transform: translateY(-1px);
}

.head .r .avatar-mu .foot {
    margin: 0;
    padding: 0 12px 12px;
    border-top: 0;
    line-height: normal;
}

.head .r .avatar-mu .foot a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    color: #64748b;
    border-radius: 10px;
    background: #f8fafc;
    line-height: 38px;
    font-size: 13px;
    font-weight: 600;
}

.head .r .avatar-mu .foot a:hover {
    color: #dc2626;
    background: #fef2f2;
}

.mw-mobile-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 15px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--mw-line);
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    color: var(--mw-text);
    cursor: pointer;
}

.mw-mobile-menu i {
    display: block;
    color: currentColor;
    font-size: 22px;
    line-height: 1;
}

.mw-mobile-menu.active i {
    color: var(--mw-primary);
}

#slide {
    height: auto;
    min-height: 590px;
    color: var(--mw-text);
    background: #f3f8ff;
}

#slide .swiper-slide {
    min-height: 590px;
    padding: 88px 0 70px;
    background: linear-gradient(120deg, #f8fbff 0%, #eef6ff 54%, rgba(0, 118, 254, .14) 100%) !important;
}

#slide .swiper-slide .index {
    display: flex;
    align-items: center;
    gap: 0;
}

#slide .l {
    float: none;
    margin-left: 0;
    padding-left: 100px;
    box-sizing: border-box;
}

#slide .r {
    float: none;
}

#slide h1 {
    max-width: 580px;
    color: var(--mw-text);
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

#slide h1 .system {
    color: var(--mw-primary);
}

#slide ul {
    margin: 22px 0 34px;
    padding: 0;
    color: #334155;
    line-height: 2;
    list-style: none;
}

#slide ul li {
    position: relative;
    padding-left: 22px;
}

#slide ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mw-primary);
}

#slide .version {
    margin-top: 14px;
    padding-left: 0;
    color: #64748b;
}

#slide .r {
    display: flex;
    justify-content: center;
}

#slide .r img {
    width: min(100%, 550px);
    height: auto;
    max-height: 390px;
    border-radius: 10px;
    object-fit: contain;
    filter: drop-shadow(0 30px 58px rgba(15, 23, 42, .18));
}

.swiper-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--mw-primary) !important;
}

.index-box {
    padding: 82px 0;
}

.index-box h2,
.section-title {
    margin-bottom: 12px;
    color: var(--mw-text);
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

.index-box h4 {
    max-width: 620px;
    margin: 0 auto 34px;
    color: var(--mw-muted);
    font-size: 17px;
}

.product,
.choice {
    background: #fff;
}

.service-wrap,
.brand,
.links {
    background: var(--mw-bg);
}

.product .list,
.service .list,
.choice .list {
    display: grid;
    gap: 24px;
}

.product .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product .list .item,
.service .list .item,
.choice .list .item,
.index-page .list .item,
.about-page .l,
.about-page .r,
.update-page .l,
.update-page .r .item,
.ucenter-page .l,
.ucenter-page .r,
.content-page .page-l,
.content-page .page-r-box {
    border: 1px solid var(--mw-line);
    border-radius: var(--mw-radius);
    background: var(--mw-card);
    box-shadow: var(--mw-shadow-soft);
}

.product .list .item {
    float: none;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    width: auto;
    min-height: 292px;
    padding: 36px;
}

.product .list .item:hover,
.service .list .item:hover,
.choice .list .item:hover,
.index-page .list .item:hover {
    border-color: rgba(0, 118, 254, .42);
    box-shadow: var(--mw-shadow);
    transform: translateY(-3px);
}

.product .list .item img,
.index-page .list .item>img {
    width: 180px;
    height: 180px;
    flex: 0 0 300px;
    align-self: flex-start;
    float: none;
    margin: 0;
    object-fit: contain;
    object-position: top center;
}

.product-item-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.product .list .item h3 {
    margin: 0;
    color: var(--mw-text);
    font-weight: 700;
}

.product .list .item p {
    margin: 0;
}

.product .list .item p,
.service .list .item p,
.index-page .list .item>p {
    color: var(--mw-muted);
    line-height: 1.75;
}

.service .list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service .list .item {
    float: none;
    width: auto;
    padding: 34px 24px;
}

.service .list h2>i,
.choice .list h2>i {
    color: var(--mw-primary);
}

.service .list h3 {
    margin: 12px 0 10px;
    font-size: 20px;
    font-weight: 700;
}

.quality {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #0062D8 100%);
}

.quality>.index>h2 {
    color: #fff;
}

.quality>.index>h4 {
    color: rgba(255, 255, 255, .72);
}

.quality::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/static/index/img/pinzhi-bg.jpg") center/cover;
    opacity: .12;
}

.quality .index {
    position: relative;
}

.quality .list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.quality .list .item {
    float: none;
    width: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
}

.quality .list h2 {
    color: #60a5fa;
}

.choice .list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice .list .item {
    float: none;
    width: auto;
    margin: 0;
    padding: 34px 20px;
}

.choice .list h3 {
    font-weight: 700;
}

.brand .list {
    display: block;
    overflow: hidden;
}

.brand .list .item {
    float: left;
    display: block;
    width: 120px;
    height: 120px;
    margin: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand .list .item img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.links .tags {
    margin: 0;
    padding: 42px 0;
}

.tags .tags-item {
    color: var(--mw-muted);
}

.tags .tags-item>span {
    color: var(--mw-text);
    font-weight: 700;
}

.about-banner,
.download-banner,
.buy-banner,
.update-banner,
.ucenter-banner,
.help-banner {
    height: auto;
    min-height: 150px;
    padding: 46px 0;
    background: #0f172a;
    border-bottom: 1px solid var(--mw-line);
    position: relative;
    overflow: hidden;
}

.about-banner::before,
.download-banner::before,
.buy-banner::before,
.update-banner::before,
.ucenter-banner::before,
.help-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.45), transparent 28%);
}

.about-banner {
    background: url("/static/index/img/banner-bg.jpg") center/cover no-repeat !important;
}

.download-banner {
    background: url("/static/index/img/download-banner.jpg") center/cover no-repeat !important;
}

.ucenter-banner {
    background: url("/static/index/img/ucenter-bg.jpg") center/cover no-repeat !important;
}

.help-banner {
    min-height: 240px;
    padding: 58px 0;
}

.about-banner,
.download-banner,
.update-banner,
.ucenter-banner {
    min-height: 95px;
    padding: 0;
}

.about-banner h2,
.download-banner h2,
.buy-banner h2,
.update-banner h2,
.ucenter-banner h2,
.manual-banner h2 {
    padding-left: 0;
    line-height: 1.25;
    text-align: center;
    font-weight: 700;
}

.about-banner h2,
.download-banner h2,
.update-banner h2,
.ucenter-banner h2,
.manual-banner h2 {
    line-height: 95px;
    padding-left: 200px;
    text-align: left;
}

.about-banner h2 span,
.download-banner h2 span,
.buy-banner h2 span,
.update-banner h2 span,
.ucenter-banner h2 span,
.manual-banner h2 span {
    display: block;
    margin: 12px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    font-weight: 400;
}

.about-banner h2 span,
.download-banner h2 span,
.update-banner h2 span,
.ucenter-banner h2 span,
.manual-banner h2 span {
    display: inline;
    margin: 0 0 0 20px;
}

.about-banner .index,
.download-banner .index,
.buy-banner .index,
.update-banner .index,
.ucenter-banner .index,
.help-banner .index {
    position: relative;
    z-index: 1;
}

.help-banner .search-box {
    width: min(640px, 100%);
    height: 54px;
    margin-top: 26px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(15,23,42,.20);
    overflow: hidden;
}

.help-banner .top-search {
    height: 54px;
    color: var(--mw-text);
    border: 0;
    background: transparent;
}

.help-banner .search-box a {
    width: 58px;
    line-height: 54px;
    color: var(--mw-primary);
}

.help-banner .search-box a i {
    color: var(--mw-primary);
}

.help-banner .hot-world {
    margin-top: 16px;
    color: rgba(255,255,255,.68);
}

.help-banner .hot-world a {
    margin: 0 4px;
    color: rgba(255,255,255,.86);
}

.manual-banner {
    height: auto;
    min-height: 95px;
    overflow: hidden;
}

.manual-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.45), transparent 28%);
}

.manual-banner .index {
    position: relative;
    z-index: 1;
}

.index-page,
.about-page,
.help-page,
.update-page,
.ucenter-page,
.content-page {
    margin: 32px auto 56px;
}

.about-page,
.help-page,
.update-page,
.ucenter-page {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
}

.about-page .l,
.about-page .r,
.help-page .l,
.help-page .r,
.update-page .l,
.update-page .r,
.ucenter-page .l,
.ucenter-page .r {
    float: none;
    width: auto;
}

.about-page .l .item,
.help-page .l .list .li a,
.update-page .l .item,
.ucenter-page .l .item {
    background: transparent;
}

.ucenter-page .l .item {
    padding: 15px 30px;
}

.help-page {
    align-items: start;
}

.help-page .l {
    position: sticky;
    top: 96px;
    padding: 15px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.help-page .l .list {
    display: block;
}

.help-page .l .list h3 {
    margin: 0;
    padding: 14px 16px;
    color: var(--mw-text);
    border: 0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 16px;
    font-weight: 700;
}

.help-nav-card {
    padding: 14px;
    border: 1px solid #f1f1f1;
    border-radius: var(--mw-radius);
    box-shadow: none;
}

.help-nav-card + .help-nav-card {
    margin-top: 14px;
}

.help-page .l .list .li {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 22px;
    line-height: normal;
}

.help-page .l .list .li a {
    padding: 9px 12px;
    color: #475569;
    border: 1px solid transparent;
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
}

.help-page .l .list .li a:hover,
.help-page .l .list .li a.active {
    color: var(--mw-primary);
    background: var(--mw-primary-soft);
    border-color: rgba(0, 118, 254, .22);
}

.help-page .r {
    padding: 40px 20px 0;
    border: 1px solid #f1f1f1;
}

.help-page .r ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
}

.help-page .r ol li>span {
    flex: 0 0 auto;
    color: #94a3b8;
}

.update-page .l .item.active,
.about-page .l .item.active,
.ucenter-page .l .item.active {
    border-left-color: var(--mw-primary);
    background: var(--mw-primary-soft);
}

.about-page .l {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.update-page .l,
.ucenter-page .l {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.update-page {
    grid-template-columns: 300px minmax(0, 1fr);
}

.mw-update-select,
.mw-ucenter-select {
    display: none;
}

.update-page .l .item,
.update-page .l .item.active {
    padding: 15px 20px;
}

.page {
    padding: 46px;
}

.page .title h1 {
    font-size: 30px;
    font-weight: 700;
}

.page .content {
    color: #334155;
    line-height: 1.9;
}

.ucenter-page .r>.page-box>.soft-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 14px;
    width: calc(33.333% - 14px);
    min-width: 320px;
    vertical-align: top;
    border: 1px solid rgba(0, 118, 254, .18);
    border-radius: var(--mw-radius);
    background: #fff;
    box-shadow: var(--mw-shadow-soft);
}

.ucenter-page .r>.page-box>.soft-item>img {
    float: none;
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    margin: 0;
    object-fit: contain;
}

.ucenter-page .r>.page-box>.soft-item>div {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--mw-muted);
    font-size: 13px;
    line-height: 1.55;
}

.ucenter-page .r>.page-box>.soft-item>div h3 {
    margin: 0 0 2px;
    color: var(--mw-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.ucenter-page .r>.page-box>.soft-item>div>div {
    margin: 0;
}

.ucenter-page .r>.page-box>.soft-item>div>div span {
    color: var(--mw-primary);
    font-weight: 700;
}

.ucenter-page .r>.page-box>.soft-item>div>div:last-child {
    margin-top: 4px;
}

.ucenter-page .r>.page-box>.soft-item>div>div>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 32px;
    padding: 0 12px;
    color: var(--mw-primary);
    border: 1px solid rgba(0, 118, 254, .22);
    border-radius: 999px;
    background: var(--mw-primary-soft);
    line-height: 32px;
    font-weight: 600;
}

.ucenter-page .r>.page-box>.soft-item>div>div>a:hover {
    color: #fff;
    border-color: var(--mw-primary);
    background: var(--mw-primary);
}

.ucenter-page .r>.page-box>.soft-item>div>div>a i {
    margin-right: 0;
}

.ucenter-page .r>.page-box>.soft-item:hover {
    border-color: rgba(0, 118, 254, .36);
    box-shadow: var(--mw-shadow);
}

.ucenter-page .r>.page-box>.set {
    float: none;
    display: table;
    width: 100% !important;
    padding: 0 !important;
    border-right: 0 !important;
    box-sizing: border-box;
}

.ucenter-page .r>.page-box.ucenter-set-box,
.ucenter-page .r>.page-box:has(>.set) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 36px;
    align-items: start;
}

.ucenter-page .r>.page-box>.set td {
    padding: 10px 0;
    vertical-align: middle;
}

.ucenter-page .r>.page-box>.set td:first-child {
    padding-right: 16px;
    color: var(--mw-muted);
    white-space: nowrap;
}

.ucenter-page .r>.page-box>.set .input,
.ucenter-page .r>.page-box>.set .textarea {
    box-sizing: border-box;
}

.index-page .list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.index-page .list .item {
    float: none;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    width: auto;
    min-height: 250px;
    margin: 0;
    padding: 20px;
}

.download-page .list .item {
    align-items: flex-start;
}

.download-item-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.download-item-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.download-item-content h2>img {
    width: 28px;
    height: 28px;
    margin: 0;
    object-fit: contain;
}

.download-item-content p {
    margin: 0;
}

.manual-page .list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 24px;
}

.manual-page .list .item {
    float: none;
    display: block;
    width: auto;
    margin: 0;
    border: 1px solid var(--mw-line);
    border-radius: var(--mw-radius-lg);
    background: #fff;
    box-shadow: var(--mw-shadow-soft);
}

.manual-page .list .item>a {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 200px;
    border: 0;
    border-radius: inherit;
    background: transparent;
    box-shadow: none;
}

.manual-page .list .item:hover {
    border-color: rgba(0, 118, 254, .42);
    box-shadow: var(--mw-shadow);
    transform: translateY(-3px);
}

.manual-page .list .item>a:hover {
    color: inherit;
    box-shadow: none;
    transform: none;
}

.manual-page .list .item .icon-box {
    flex: 0 0 176px;
    height: 158px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f8fafc;
}

.manual-page .list .item .icon-box>img {
    max-width: 100px;
    max-height: 100px;
    margin: 0;
}

.manual-page .list .item .nr-box {
    min-width: 0;
    padding: 0;
}

.manual-page .list .item .nr-box h2 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
}

.manual-page .list .item .nr-box p {
    margin: 0;
    color: var(--mw-muted);
}

.index-page .list .item h2 {
    font-size: 22px;
    font-weight: 700;
}

.sort {
    margin: 24px 0 18px;
    border-left-color: var(--mw-primary);
    color: var(--mw-text);
    font-weight: 700;
}

.mw-card-round {
    border-radius: var(--mw-radius-lg) !important;
}

.br3,
.panel,
.input,
.textarea,
.pop,
.slide,
.alert,
.qrcode-img {
    border-radius: var(--mw-radius) !important;
}

.footer1 .index {
    max-width: 1200px;
}

.footer1 .list-box .qrcode img {
    border-radius: 0 !important;
}

.footer1 {
    padding: 54px 0 34px;
    background: #0f172a;
}

.footer1 .list-box {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.1fr 1.1fr 1.2fr 140px;
    gap: 30px;
}

.footer2 {
    background: #08111f;
}

.footer1 .list h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.footer1 .list a,
.footer1 .list li,
.footer1 .qrcode p,
.footer2,
.footer2 a {
    color: rgba(255, 255, 255, .62);
}

.footer1 .list a:hover,
.footer2 a:hover {
    color: #fff;
}

@media (max-width: 1440px) {
    #slide .swiper-slide .index {
        width: calc(100% - 96px);
    }
}

@media (max-width: 1100px) {
    .head .navs {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 72px;
        width: auto;
        padding: 14px 16px 18px;
        background: #fff;
        border-bottom: 1px solid var(--mw-line);
        box-shadow: var(--mw-shadow);
    }

    .head .navs.active {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .head .navs a {
        display: block;
        padding: 14px;
        text-align: left;
    }

    .head .r {
        right: 58px !important;
        z-index: 3;
    }

    .head .r>a.register {
        display: none;
    }

    .mw-mobile-menu {
        position: fixed !important;
        display: flex !important;
        top: 15px;
        right: 18px !important;
        z-index: 4;
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 64px;
    }

    .index {
        width: min(100% - 32px, 920px);
    }

    .head,
    .head .index,
    .head .l .logo {
        height: 64px;
        line-height: 64px;
    }

    .head .navs {
        top: 64px;
    }

    .mw-mobile-menu {
        top: 11px;
    }

    #slide .swiper-slide .index {
        gap: 30px;
    }

    #slide .l {
        margin-left: 0;
        padding-left: 0;
    }

    #slide h1 {
        font-size: 38px;
    }

    .service .list,
    .choice .list,
    .brand .list,
    .manual-page .list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product .list .item img,
    .index-page .list .item>img {
        width: 160px;
        height: 160px;
        flex-basis: 160px;
    }

    .about-page,
    .help-page,
    .update-page,
    .ucenter-page {
        grid-template-columns: 1fr;
    }

    .about-banner h2,
    .download-banner h2,
    .update-banner h2,
    .ucenter-banner h2,
    .manual-banner h2 {
        padding-left: 0;
    }

    .help-page .l {
        position: static;
    }
}

@media (max-width: 1020px) {
    .about-page,
    .update-page,
    .ucenter-page {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: stretch;
    }

    .about-page .l,
    .update-page .l,
    .ucenter-page .l,
    .about-page .r,
    .update-page .r,
    .ucenter-page .r {
        float: none;
        width: 100%;
        min-width: 0;
    }

    .about-page .l,
    .update-page .l,
    .ucenter-page .l {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .about-page .l {
        padding: 12px;
    }

    .update-page .l,
    .ucenter-page .l {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .about-page .l .list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 2px;
        white-space: nowrap;
    }

    .update-page .l .list,
    .ucenter-page .l .list {
        display: none;
    }

    .mw-update-select,
    .mw-ucenter-select {
        display: block;
        width: 100%;
        height: 44px;
        padding: 0 14px;
        color: var(--mw-text);
        border: 1px solid var(--mw-line);
        border-radius: 10px;
        background: #fff;
        font-size: 15px;
    }

    .about-page .l .item,
    .update-page .l .item,
    .update-page .l .item.active {
        flex: 0 0 auto;
        padding: 0;
        border: 1px solid transparent;
        border-radius: 999px;
        background: transparent;
    }

    .about-page .l .item a,
    .update-page .l .item a {
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 40px;
        padding: 0 16px;
    }

    .about-page .l .item.active {
        border-color: var(--mw-primary);
        background: var(--mw-primary);
    }

    .about-page .l .item.active a {
        color: #fff;
    }

    .about-page .r,
    .update-page .r,
    .ucenter-page .r {
        display: block;
    }

    .ucenter-page .r>.page-box>.set {
        display: table;
        width: 100% !important;
        padding-left: 0 !important;
        border-right: 0 !important;
        margin-bottom: 24px;
    }

    .ucenter-page .r>.page-box.ucenter-set-box,
    .ucenter-page .r>.page-box:has(>.set) {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ucenter-page .r>.page-box>.soft-item {
        width: calc(50% - 14px);
        min-width: 0;
    }

    .update-page .r .item h2 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 12px;
        line-height: 1.5;
        padding: 18px 20px;
    }

    .update-page .r .item h2>span {
        float: none;
        margin-left: auto;
    }
}

@media (min-width: 721px) and (max-width: 1400px) {
    .product .list .item img,
    .index-page .list .item>img {
        width: clamp(150px, 16vw, 220px);
        height: clamp(150px, 16vw, 220px);
        flex: 0 0 clamp(180px, 22vw, 300px);
    }
}

@media (min-width: 721px) and (max-width: 1199px) {
    .product .list,
    .index-page .list,
    .manual-page .list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product .list .item,
    .index-page .list .item {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 28px;
    }

    .product .list .item img,
    .index-page .list .item>img {
        width: 100%;
        height: clamp(150px, 18vw, 190px);
        flex: 0 0 auto;
        align-self: stretch;
    }

    .manual-page .list .item>a {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        min-height: 0;
    }

    .manual-page .list .item .icon-box {
        width: 100%;
        height: clamp(140px, 18vw, 168px);
        flex: 0 0 auto;
    }
}

@media (max-width: 720px) {
    .index {
        width: calc(100% - 28px);
    }

    .head .r {
        display: none !important;
    }

    .mw-mobile-menu {
        position: fixed !important;
        top: 11px !important;
        right: 18px !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .head .r>.news {
        display: none;
    }

    #slide,
    #slide .swiper-slide {
        min-height: 0;
    }

    #slide .swiper-slide {
        padding: 58px 0 54px;
    }

    #slide .swiper-slide .index {
        display: block;
        width: calc(100% - 28px);
    }

    #slide h1 {
        font-size: 32px;
    }

    #slide ul {
        margin-bottom: 26px;
    }

    #slide .r {
        margin-top: 34px;
    }

    #slide .r img {
        max-height: 260px;
    }

    .index-box {
        padding: 58px 0;
    }

    .index-box h2 {
        font-size: 28px;
    }

    .about-banner h2,
    .download-banner h2,
    .update-banner h2,
    .ucenter-banner h2,
    .manual-banner h2 {
        font-size: 28px;
    }

    .about-banner h2 span,
    .download-banner h2 span,
    .update-banner h2 span,
    .ucenter-banner h2 span,
    .manual-banner h2 span {
        display: block;
        margin: 6px 0 0;
        line-height: 1.4;
    }

    .product .list,
    .service .list,
    .choice .list,
    .brand .list,
    .quality .list,
    .index-page .list,
    .manual-page .list {
        grid-template-columns: 1fr;
    }

    .product .list .item img,
    .index-page .list .item>img {
        float: none;
        display: block;
        width: 100%;
        height: 160px;
        margin: 0 0 18px;
        object-fit: contain;
    }

    .product .list .item,
    .index-page .list .item {
        display: block;
    }

    .manual-page .list .item>a {
        display: block;
    }

    .manual-page .list .item .icon-box {
        width: 100%;
        margin-bottom: 18px;
    }

    .help-page .r {
        padding: 24px;
    }

    .ucenter-page .r>.page-box>.soft-item {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .ucenter-page .r>.page-box>.soft-item>img {
        width: 100%;
        height: 120px;
    }

    .ucenter-page .r>.page-box>.soft-item>div {
        align-items: flex-start;
    }

    .page {
        padding: 28px;
    }

    .footer1 .list-box {
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .footer2 .lico .l,
    .footer2 .lico .r {
        float: none;
        display: block;
        text-align: center;
    }

}

/* Remove decorative English eyebrow labels; Chinese headings carry the meaning. */
.eyebrow,
.help-kicker,
.pricing-kicker,
.mw-portal-heading > span,
.mw-portal-service-copy > span,
.mw-portal-links-heading > span,
.solution-process-heading > span,
.solutions-page-hero .index > span,
.about-hero .index > span,
.download-hero .index > span { display: none !important; }
/* 最终统一：首页宽幅与内容型页面视觉 */
.solutions-page-hero .index, .about-hero .index,
.solutions-page-list .index { width: min(1440px, calc(100% - 48px)) !important; max-width: none !important; }
.mw-query-page .container, .manual-page, .update-page { width: min(1440px, calc(100% - 48px)) !important; max-width: none !important; }

.mw-query-page .container { margin: 0 auto; }

@media (max-width: 720px) {
    .solutions-page-hero .index, .about-hero .index, .solutions-page-list .index,
    .mw-query-page .container, .manual-page, .update-page, .help-page { width: calc(100% - 32px) !important; }
}

/* 首页主视觉扩展 */
.brand-hero { min-height: 590px; color: #fff; background: #0076fe url('/static/index/img/banner1.png') center / cover no-repeat; }
.brand-hero-inner { display: flex; align-items: center; justify-content: space-between; min-height: 590px; gap: 50px; }
.brand-hero-copy { width: 49%; }
.brand-hero-copy .hero-kicker { margin-bottom: 20px; color: rgba(255,255,255,.72); font-size: 13px; letter-spacing: 1.5px; }
.brand-hero-copy h1 { margin: 0; color: #fff; font-size: clamp(42px,5vw,66px); font-weight: 500; line-height: 1.18; }
.brand-hero-copy h1 em { color: #fff; font-style: normal; }
.brand-hero-copy > p { max-width: 490px; margin: 22px 0 30px; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.9; }
.brand-hero-actions { display: flex; align-items: center; gap: 22px; }
.brand-hero-actions .slide-btn { color: #0076fe !important; background: #fff; }
.hero-text-link { color: #fff; border-bottom: 1px solid rgba(255,255,255,.65); font-size: 14px; }
.hero-proof { display: flex; gap: 25px; margin-top: 48px; color: rgba(255,255,255,.7); font-size: 13px; }
.hero-proof span { position: relative; padding-left: 14px; }
.hero-proof span:before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: #fff; }
.brand-hero-art { position: relative; width: 48%; padding: 32px 32px 20px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); box-shadow: 0 24px 70px rgba(0,36,104,.23); }
.brand-hero-art img { display: block; width: 100%; max-height: 350px; object-fit: contain; filter: drop-shadow(0 22px 28px rgba(0,35,100,.25)); }
.hero-art-caption { padding-top: 18px; color: rgba(255,255,255,.72); text-align: center; font-size: 13px; }
.featured-products { border-top: 1px solid #edf3fa; }
.featured-swiper { min-height: 340px; }
.featured-slide { min-height: 340px; }
.solutions-page-list .solution-large-copy p { max-width: 560px; }
.solution-products { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.solution-products a { padding: 6px 10px; border: 1px solid #d6e6f8; border-radius: 2px; color: #52708f; background: #f7fbff; font-size: 12px; }
.solution-products a:hover { color: #0076fe; border-color: #9cc7f3; }
.solution-cta { border-bottom: 1px solid #0076fe; }
.solution-large-art { flex-direction: column; gap: 13px; }
.solution-large-art span { color: inherit; font-size: 13px; opacity: .7; }
.solution-points { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0 0 20px; color: #6d8198; font-size: 12px; }
.solution-points span { position: relative; padding-left: 12px; }
.solution-points span:before { content: ""; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: #0076fe; }
.solution-process { margin-top: 48px; padding: 70px 0 6px; border-top: 1px solid #dce7f0; }
.solution-process-heading { max-width: 680px; margin-bottom: 34px; }
.solution-process-heading > span { color: #0076fe; font-size: 12px; letter-spacing: 2px; }
.solution-process-heading h2 { margin: 10px 0 12px; color: #1a2b40; font-size: 30px; font-weight: 500; }
.solution-process-heading p { margin: 0; color: #718096; font-size: 15px; line-height: 1.85; }
.solution-process-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid #dce7f0; border-left: 1px solid #dce7f0; }
.solution-process-list li { min-height: 142px; padding: 24px 26px; border-right: 1px solid #dce7f0; border-bottom: 1px solid #dce7f0; background: #fff; }
.solution-process-list strong, .solution-process-list b, .solution-process-list span { display: block; }
.solution-process-list strong { margin-bottom: 21px; color: #76a6ca; font-size: 12px; letter-spacing: 1px; }
.solution-process-list b { margin-bottom: 7px; color: #29465c; font-size: 16px; font-weight: 500; }
.solution-process-list span { color: #8295a6; font-size: 12px; line-height: 1.6; }
.about-values-inline { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; margin-top: 38px; border: 1px solid #dce7f0; border-right: 0; border-left: 0; background: linear-gradient(135deg,#f7fbff 0%,#fff 72%); }
.about-values-inline > div { position: relative; min-height: 158px; padding: 30px 32px 28px; border-right: 1px solid #dce7f0; background: transparent; transition: background .22s ease; }
.about-values-inline > div:last-child { border-right: 0; }
.about-values-inline > div:hover { background: #f1f8ff; }
.about-values-inline strong { display: block; margin: 0; color: #0076fe; font-size: 32px; font-weight: 500; line-height: 1; }
.about-values-inline span, .about-values-inline small { display: block; }
.about-values-inline span { margin-top: 21px; color: #1b3853; font-size: 17px; font-weight: 500; }
.about-values-inline small { margin-top: 8px; color: #7890a8; font-size: 13px; line-height: 1.7; }
.mw-pricing-page { padding: 0 0 90px !important; min-height: 80vh; background: #f7faff !important; }
.pricing-top { max-width: none !important; padding: 76px 0 0; }
.pricing-hero { margin-bottom: 34px; text-align: left !important; }
.pricing-hero h1 { color: #1a2b40 !important; font-size: 38px !important; font-weight: 500 !important; letter-spacing: 0 !important; }
.pricing-hero p { max-width: 600px; color: #718096 !important; font-size: 15px !important; }
.cat-pills { justify-content: flex-start !important; padding: 0 !important; }
.cat-pill { padding: 10px 21px !important; border-radius: 3px !important; font-weight: 500 !important; box-shadow: none !important; }
.cat-pill.active { background: #0076fe !important; }
.detail-inner { border-radius: 2px !important; box-shadow: none !important; }
.detail-header { background: #0076fe !important; }
.agent-tip-card { border-radius: 2px !important; border: 1px solid #cfe2f8 !important; background: #eef6ff !important; text-align: left !important; }
.help-banner { height: auto !important; padding: 72px 0 !important; background: #0076fe url('/static/index/img/banner1.png') center / cover !important; }
.help-banner .help-kicker { display: block; margin-bottom: 10px; color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: 2px; }
.help-quick-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 760px; margin-top: 28px; }
.help-quick-links a { display: flex; align-items: center; gap: 11px; min-height: 66px; padding: 10px 14px; color: #fff; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); text-align: left; }
.help-quick-links a > i:first-child { color: #fff; font-size: 20px; }
.help-quick-links a > i:last-child { margin-left: auto; font-size: 11px; opacity: .75; }
.help-quick-links b, .help-quick-links small { display: block; }
.help-quick-links b { font-size: 13px; font-weight: 500; }
.help-quick-links small { margin-top: 3px; color: rgba(255,255,255,.66); font-size: 11px; }
.help-page { width: min(100% - 48px, 1180px); margin-top: 38px !important; }
.help-page .l, .help-page .r { border-radius: 2px !important; box-shadow: none !important; }
.help-page .r { border: 1px solid #e7eef6; }
@media (max-width: 720px) {
    .brand-hero { min-height: 720px; }
    .brand-hero-inner { display: block; min-height: 720px; padding-top: 66px; }
    .brand-hero-copy, .brand-hero-art { width: 100%; box-sizing: border-box; }
    .brand-hero-copy h1 { font-size: 39px; }
    .brand-hero-copy > p { font-size: 15px; }
    .hero-proof { gap: 12px; margin-top: 32px; font-size: 11px; }
    .brand-hero-art { margin-top: 46px; padding: 18px 16px 13px; }
    .brand-hero-art img { max-height: 210px; }
    .featured-swiper, .featured-slide { min-height: 390px; }
    .about-values-inline { grid-template-columns: 1fr; margin-top: 28px; }
    .about-values-inline > div { min-height: 0; padding: 24px 22px; border-right: 0; border-bottom: 1px solid #dce7f0; }
    .about-values-inline > div:last-child { border-bottom: 0; }
    .pricing-top { padding-top: 48px; }
    .help-banner { padding: 52px 0 !important; }
    .help-quick-links { grid-template-columns: 1fr; max-width: 100%; }
}

/* 首页品牌首屏与精选产品轮播 */
#slide h1 em { color: #0076fe; font-style: normal; }
#slide .swiper-slide.two h1 em { color: #fff; }
#slide .swiper-slide.two .hero-kicker, #slide .swiper-slide.two .hero-summary, #slide .swiper-slide.two ul { color: rgba(255,255,255,.84); }
.featured-products { background: #f7faff; }
.featured-products .index-box { padding: 76px 0 88px; }
.featured-swiper { position: relative; min-height: 292px; margin-top: 34px; overflow: hidden; background: #fff; }
.featured-slide { display: flex; align-items: center; justify-content: space-between; gap: 50px; min-height: 292px; padding: 46px 118px 46px 62px; box-sizing: border-box; color: #1a2b40; }
.featured-copy { max-width: 620px; }
.featured-copy .product-meta { margin-bottom: 12px; }
.featured-copy h3 { margin: 0; color: #1a2b40; font-size: 30px; font-weight: 500; }
.featured-copy p { display: -webkit-box; overflow: hidden; max-width: 610px; margin: 15px 0 23px; color: #718096; font-size: 15px; line-height: 1.9; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.featured-more { color: #0076fe; font-size: 14px; }
.featured-more i { margin-left: 5px; font-size: 12px; }
.featured-logo { display: flex; align-items: center; justify-content: center; width: 170px; height: 170px; border: 1px solid #dbeafa; border-radius: 28px; background: #f5f9fe; box-shadow: 0 16px 34px rgba(0,118,254,.1); }
.featured-logo img { width: 120px; height: 120px; object-fit: contain; }
.featured-logo i { color: #0076fe; font-size: 64px; }
.featured-prev, .featured-next { width: 34px; height: 34px; margin-top: -17px; border: 1px solid #cfe0f3; border-radius: 50%; background-color: #fff; background-size: 14px; }
.featured-prev { left: 22px; }
.featured-next { right: 22px; }
.featured-pagination { bottom: 17px !important; }
.featured-pagination .swiper-pagination-bullet { width: 20px; height: 3px; border-radius: 0; background: #c9d9ea; }
.featured-pagination .swiper-pagination-bullet-active { background: #0076fe !important; }
.home-benefits { padding: 78px 0 82px; background: #fff; }
.home-benefits .section-heading { margin-bottom: 34px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #e5edf6; }
.benefit-grid article { position: relative; min-height: 196px; padding: 28px 30px; background: #fff; }
.benefit-grid article > i { display: block; margin: 20px 0 13px; color: #0076fe; font-size: 28px; }
.benefit-no { position: absolute; top: 22px; right: 25px; color: #b6cae2; font-size: 13px; letter-spacing: 1px; }
.benefit-grid h3 { margin: 0 0 9px; color: #1a2b40; font-size: 18px; font-weight: 500; }
.benefit-grid p { margin: 0; color: #718096; font-size: 13px; line-height: 1.8; }
.policy-page { padding: 58px 0 88px; background: #f7faff; }
.policy-inner { display: grid; grid-template-columns: 238px minmax(0,1fr); gap: 36px; width: min(100% - 48px, 1080px); }
.policy-article { padding: 6px 0; color: #60728a; font-size: 15px; line-height: 2; }
.policy-article h2 { margin: 0 0 24px; padding-bottom: 17px; border-bottom: 1px solid #e8eef5; color: #1a2b40; font-size: 28px; font-weight: 500; }
.policy-article h3 { margin: 25px 0 5px; color: #26384c; font-size: 17px; font-weight: 500; }
.policy-article p { margin: 0 0 12px; }
.policy-article a { color: #0076fe; }
@media (max-width: 720px) {
    .featured-products .index-box { padding: 56px 0 66px; }
    .featured-swiper { min-height: 390px; margin-top: 26px; }
    .featured-slide { display: block; min-height: 390px; padding: 34px 42px 50px; }
    .featured-copy h3 { font-size: 25px; }
    .featured-copy p { font-size: 14px; }
    .featured-logo { width: 92px; height: 92px; margin: 25px auto 0; border-radius: 18px; }
    .featured-logo img { width: 65px; height: 65px; }
    .featured-prev { left: 8px; }
    .featured-next { right: 8px; }
    .home-benefits { padding: 56px 0 60px; }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-grid article { min-height: 0; padding: 24px 22px; }
    .policy-page { padding: 35px 0 58px; }
    .policy-inner { grid-template-columns: 1fr; gap: 25px; width: calc(100% - 32px); }
    .policy-article h2 { font-size: 24px; }
    .policy-article { font-size: 14px; }
}

/* 首页产品陈列与首屏升级 */
#slide {
    height: 610px;
    background: #08111f;
}
#slide .swiper-slide {
    overflow: hidden;
    background: linear-gradient(112deg, #08111f 0%, #0c2540 58%, #0c5a78 100%);
}
#slide .swiper-slide.two {
    background: linear-gradient(112deg, #101426 0%, #202858 58%, #3c3470 100%);
}
#slide .swiper-slide:after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -160px;
    top: -120px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
    pointer-events: none;
}
#slide .index { position: relative; z-index: 1; display: flex; align-items: center; height: 100%; }
#slide .l { width: 53%; float: none; }
#slide .r { width: 47%; float: none; display: flex; justify-content: flex-end; align-items: center; }
#slide .r img { width: min(100%, 520px); height: auto; max-height: 440px; object-fit: contain; filter: drop-shadow(0 24px 42px rgba(0,0,0,.32)); }
#slide h1 { font-size: clamp(34px, 4vw, 58px); letter-spacing: 0; line-height: 1.15; }
#slide .hero-kicker { margin-bottom: 18px; color: #72c9ff; font-size: 14px; letter-spacing: 2px; }
#slide .hero-summary { max-width: 470px; margin: 18px 0 0; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.75; }
#slide ul { margin: 22px 0 42px; color: rgba(255,255,255,.78); }
#slide ul li { position: relative; padding-left: 18px; }
#slide ul li:before { content: ""; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: #55c5ff; }
#slide .slide-btn { padding: 14px 28px; border-radius: 10px; color: #07213a !important; font-size: 16px; box-shadow: 0 12px 24px rgba(0,0,0,.18); }

.product { background: #f5f7fb; }
.product .index-box { padding: 92px 0 100px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; text-align: left; }
.section-heading h2 { margin: 8px 0 10px; color: #0d1b2e; font-size: clamp(30px, 3vw, 44px); font-weight: 700; }
.section-heading p { margin: 0; color: #718096; font-size: 16px; }
.section-eyebrow { color: #0877e8; font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.product-count { color: #7b8798; font-size: 14px; white-space: nowrap; }
.product-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; padding: 16px 20px; margin-bottom: 28px; border: 1px solid #e4eaf2; border-radius: 12px; background: #fff; box-shadow: 0 8px 22px rgba(23,43,77,.05); }
.filter-group { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.filter-label { margin-right: 3px; color: #8b97a8; font-size: 13px; }
.filter-chip { min-height: 34px; padding: 5px 13px; border: 1px solid transparent; border-radius: 7px; color: #516174; background: transparent; font: inherit; font-size: 13px; }
.filter-chip:hover { color: #0877e8; background: #eef6ff; }
.filter-chip.is-active { color: #0877e8; border-color: #b9dbff; background: #edf6ff; font-weight: 600; }
.product .list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; padding: 0; }
.product .list .item.product-card { display: flex; flex-direction: column; width: auto; min-width: 0; min-height: 360px; margin: 0; padding: 0; overflow: hidden; border: 1px solid #e6ebf2; border-radius: 14px; background: #fff; box-shadow: 0 10px 26px rgba(23,43,77,.045); }
.product-card[hidden] { display: none !important; }
.product-card:hover { transform: translateY(-5px); border-color: #c8dff8 !important; box-shadow: 0 18px 36px rgba(23,43,77,.12) !important; }
.product-card-media { position: relative; display: flex; align-items: center; justify-content: center; height: 178px; padding: 24px; background: linear-gradient(145deg, #f2f7fd, #e7f0fb); }
.product-card-media img { display: block; width: 100%; height: 100%; margin: 0 !important; object-fit: contain; }
.product-placeholder { display: flex; align-items: center; justify-content: center; width: 82px; height: 82px; border-radius: 22px; color: #1680eb; background: #d8eafe; font-size: 38px; }
.product-type-dot { position: absolute; top: 14px; right: 14px; width: 9px; height: 9px; border: 3px solid #fff; border-radius: 50%; background: #35c58b; box-sizing: content-box; }
.product-item-content { display: flex; flex: 1; flex-direction: column; padding: 22px 22px 18px; text-align: left; }
.product-meta { display: flex; align-items: center; gap: 7px; min-height: 22px; margin-bottom: 9px; }
.product-category, .product-pricing { display: inline-flex; align-items: center; min-height: 22px; padding: 0 8px; border-radius: 5px; font-size: 11px; line-height: 1; }
.product-category { color: #58708b; background: #eef3f8; }
.product-pricing { color: #16805a; background: #e5f7ef; }
.product-pricing.pricing-paid { color: #a06112; background: #fff2dc; }
.product-pricing.pricing-mixed { color: #6e4db0; background: #f0eaff; }
.product-item-content h3 { margin: 0; color: #16283e; font-size: 19px; font-weight: 700; line-height: 1.35; }
.product-item-content p { display: -webkit-box; flex: 1; overflow: hidden; margin: 10px 0 20px; color: #718096; font-size: 13px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid #edf0f4; }
.product-link-label { color: #9aa7b6; font-size: 12px; }
.product .list .item .index-btn { padding: 8px 12px; border: 0; border-radius: 7px; color: #0877e8; background: #edf6ff; font-size: 13px; }
.product .list .item .index-btn:hover { color: #fff; background: #0877e8; }
.product-empty { padding: 48px 0; color: #8793a4; font-size: 14px; }

@media (max-width: 1100px) {
    .product .list { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
    #slide .swiper-slide { min-height: 610px; padding: 58px 0 42px; }
    #slide .index { display: flex; flex-direction: column; align-items: stretch; }
    #slide .hero-kicker { margin-bottom: 14px; font-size: 12px; }
    #slide .hero-summary { margin-top: 14px; font-size: 15px; }
    #slide ul { margin: 18px 0 28px; font-size: 13px; line-height: 28px; }
    #slide .r { justify-content: center; margin-top: 34px; }
    #slide .r img { width: 88%; max-height: 220px; }
    .product .index-box { padding: 60px 0 70px; }
    .section-heading { display: block; margin-bottom: 24px; }
    .section-heading h2 { font-size: 30px; }
    .section-heading p { font-size: 14px; line-height: 1.7; }
    .product-count { display: block; margin-top: 12px; }
    .product-toolbar { display: block; padding: 13px 14px; margin-bottom: 20px; overflow: hidden; }
    .filter-group { flex-wrap: nowrap; overflow-x: auto; padding: 4px 0; scrollbar-width: none; }
    .filter-group::-webkit-scrollbar { display: none; }
    .filter-label { flex: 0 0 auto; min-width: 52px; }
    .filter-chip { flex: 0 0 auto; white-space: nowrap; }
    .product .list { grid-template-columns: 1fr; gap: 14px; }
    .product .list .item.product-card { min-height: 0; }
    .product-card-media { height: 152px; }
    .product-item-content { padding: 18px; }
}

/* 企业软件官网风格：首页最终覆盖 */
.head { height: 74px; line-height: 74px; border-bottom: 1px solid #edf1f7; box-shadow: 0 3px 16px rgba(19,56,96,.05); }
.head .index, .head .l .logo { height: 74px; }
.head .l .logo img { height: 37px; }
.head .navs { padding: 0 190px; }
.head .navs a { padding: 10px 17px; color: #27364a; border-radius: 0; font-size: 15px; }
.head .navs a:hover, .head .navs a.active { color: #0076fe; background: transparent; }
.head .navs a.active:after { content: ""; position: absolute; right: 16px; bottom: 0; left: 16px; height: 2px; background: #0076fe; }
.head .r .nav-btn.nav-btn-agent, .head .r>a.login { border-radius: 4px !important; background: #0076fe !important; box-shadow: none !important; }

#slide { height: 506px; background: #0076fe; }
#slide .swiper-slide, #slide .swiper-slide.two { padding: 0; background: #0076fe url('/static/index/img/banner1.png') center / cover no-repeat; }
#slide .swiper-slide.two { background-color: #0876d7; background-image: url('/static/index/img/banner2.png'); }
#slide .swiper-slide:after { display: none; }
#slide .index { display: flex; align-items: center; justify-content: space-between; height: 506px; }
#slide .l { width: 50%; }
#slide .r { width: 48%; justify-content: center; }
#slide .r img { width: min(100%, 460px); max-height: 360px; filter: drop-shadow(0 20px 24px rgba(0,46,112,.22)); }
#slide h1 { max-width: 600px; margin: 0; font-size: 46px; font-weight: 600; line-height: 1.25; }
#slide .hero-kicker { margin-bottom: 16px; color: rgba(255,255,255,.76); font-size: 14px; letter-spacing: 1px; }
#slide .hero-summary { margin: 16px 0 0; color: rgba(255,255,255,.84); font-size: 16px; line-height: 1.8; }
#slide ul { margin: 18px 0 30px; color: rgba(255,255,255,.92); font-size: 14px; line-height: 29px; }
#slide ul li { padding-left: 14px; }
#slide ul li:before { top: 12px; width: 4px; height: 4px; background: #fff; }
#slide .slide-btn { padding: 12px 25px; border: 1px solid #fff; border-radius: 3px; color: #0076fe !important; background: #fff; box-shadow: none; font-size: 15px; }
#slide .slide-btn:hover { color: #fff !important; background: transparent; box-shadow: none; }
#slide .version { margin-top: 11px; padding: 0; color: rgba(255,255,255,.62); }
#slide .swiper-pagination { bottom: 18px !important; }
#slide .swiper-pagination .swiper-pagination-bullet { width: 24px; height: 3px; border-radius: 0; background: rgba(255,255,255,.52); }
#slide .swiper-pagination .swiper-pagination-bullet-active { background: #fff !important; }
#slide .swiper-slide.one .hero-kicker { color: #5a7190; }
#slide .swiper-slide.one h1 { color: #13233a; }
#slide .swiper-slide.one .system { color: #0076fe; }
#slide .swiper-slide.one .hero-summary,
#slide .swiper-slide.one ul { color: #657891; }
#slide .swiper-slide.one ul li:before { background: #0076fe; }
#slide .swiper-slide.one .version { color: #8a9aad; }

.product { background: #fff; }
.product .index-box { padding: 76px 0 84px; }
.section-heading { display: block; margin-bottom: 31px; text-align: center; }
.section-eyebrow, .eyebrow { display: block; margin-bottom: 10px; color: #0076fe; font-size: 12px; font-weight: 600; letter-spacing: 1px; }
.section-heading h2, .solutions h2, .promise h2, .customer-wall h2 { margin: 0; color: #1a2b40; font-size: 32px; font-weight: 500; line-height: 1.35; }
.section-heading p, .solutions-intro, .customer-wall p { margin: 14px 0 0; color: #7a8798; font-size: 15px; }
.product-count { display: none; }
.product-toolbar { justify-content: center; gap: 14px 30px; padding: 0 0 24px; margin: 0 0 28px; border: 0; border-bottom: 1px solid #edf1f5; border-radius: 0; background: transparent; box-shadow: none; }
.filter-group { gap: 4px; }
.filter-label { margin-right: 8px; color: #516174; font-size: 14px; font-weight: 500; }
.filter-chip { min-height: 30px; padding: 4px 10px; border-radius: 3px; color: #7b8796; font-size: 13px; }
.filter-chip:hover { color: #0076fe; background: #f0f7ff; }
.filter-chip.is-active { color: #fff; border-color: #0076fe; background: #0076fe; font-weight: 400; }
.product .list { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px 18px; }
.product .list .item.product-card { min-height: 0; border: 1px solid #edf0f4; border-radius: 2px; box-shadow: none; }
.product-card:hover { transform: translateY(-3px); border-color: #b9d9fb !important; box-shadow: 0 9px 26px rgba(0,118,254,.10) !important; }
.product-card-media { height: 155px; padding: 18px 28px; background: #f5f9fe; }
.product-card-media img { object-fit: contain; }
.product-type-dot { display: none; }
.product-item-content { padding: 20px 20px 17px; }
.product-meta { margin-bottom: 8px; }
.product-category, .product-pricing { min-height: 20px; padding: 0 7px; border-radius: 2px; font-size: 11px; }
.product-category { color: #4b6683; background: #eef4fa; }
.product-pricing { color: #27966e; background: #edf9f3; }
.product-pricing.pricing-paid { color: #b87a19; background: #fff6e8; }
.product-pricing.pricing-mixed { color: #7a5bad; background: #f4efff; }
.product-item-content h3 { color: #26384c; font-size: 17px; font-weight: 500; }
.product-item-content p { margin: 9px 0 15px; color: #8793a2; font-size: 13px; line-height: 1.65; }
.product-card-bottom { padding-top: 12px; }
.product .list .item .index-btn { padding: 7px 11px; border: 1px solid #0076fe; border-radius: 2px; color: #0076fe; background: #fff; font-size: 12px; }
.product .list .item .index-btn:hover { color: #fff; background: #0076fe; }

.solutions { padding: 78px 0 84px; text-align: center; background: #f5f9ff; }
.solutions-intro { max-width: 560px; margin-right: auto; margin-left: auto; line-height: 1.8; }
.solution-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 38px; text-align: left; }
.solution-item { display: flex; align-items: center; min-height: 132px; padding: 25px 24px; border: 1px solid #e5edf6; background: #fff; color: #26384c; }
.solution-item:hover { border-color: #bcdcff; box-shadow: 0 9px 24px rgba(0,118,254,.09); transform: translateY(-2px); }
.solution-icon { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; margin-right: 17px; color: #0076fe; background: #edf6ff; font-size: 25px; }
.solution-item b, .solution-item small { display: block; }
.solution-item b { margin-bottom: 7px; font-size: 17px; font-weight: 500; }
.solution-item small { color: #8793a2; font-size: 13px; }
.solution-item > i { margin-left: auto; color: #8ea0b5; font-size: 14px; }

.promise { color: #fff; background: #0076fe url('/static/index/img/banner1.png') center / cover no-repeat; }
.promise-inner { display: flex; align-items: center; justify-content: space-between; gap: 70px; padding: 78px 0; }
.promise .eyebrow { color: rgba(255,255,255,.68); }
.promise h2 { color: #fff; font-size: 34px; font-weight: 500; }
.promise p { max-width: 460px; margin: 17px 0 23px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8; }
.promise-link { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.68); color: #fff; font-size: 14px; }
.promise-link i { margin-left: 5px; font-size: 12px; }
.promise-stats { display: grid; min-width: 470px; grid-template-columns: repeat(3,1fr); border-left: 1px solid rgba(255,255,255,.28); }
.promise-stats > div { padding: 8px 26px; border-right: 1px solid rgba(255,255,255,.28); text-align: center; }
.promise-stats strong { display: block; font-size: 36px; font-weight: 400; line-height: 1.2; }
.promise-stats strong span { margin-left: 2px; font-size: 15px; }
.promise-stats small { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: 12px; }

.customer-wall { padding: 74px 0; text-align: center; background: #fff; }
.customer-wall .index-box { padding: 0; }
.brand-list { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 0; margin-top: 37px; border-top: 1px solid #edf0f4; border-left: 1px solid #edf0f4; }
.brand-list img { width: 100%; height: 92px; padding: 22px 30px; border-right: 1px solid #edf0f4; border-bottom: 1px solid #edf0f4; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter .2s ease, opacity .2s ease; }
.brand-list img:hover { filter: grayscale(0); opacity: 1; }

@media (max-width: 1100px) {
    #slide .index { width: min(100% - 48px, 940px); }
    #slide h1 { font-size: 38px; }
    .promise-inner { gap: 38px; }
    .promise-stats { min-width: 400px; }
    .promise-stats > div { padding: 8px 16px; }
}
@media (max-width: 720px) {
    body { padding-top: 64px; }
    .head, .head .index, .head .l .logo { height: 64px; }
    .head .l .logo img { height: 32px; }
    #slide { height: auto; }
    #slide .swiper-slide, #slide .swiper-slide.two { min-height: 600px; padding: 44px 0 36px; }
    #slide .index { display: flex; width: calc(100% - 32px); height: auto; }
    #slide .l, #slide .r { width: 100%; }
    #slide h1 { font-size: 31px; }
    #slide .hero-summary { font-size: 14px; }
    #slide ul { font-size: 13px; }
    #slide .r { margin-top: 28px; }
    #slide .r img { max-height: 205px; }
    .product .index-box, .solutions, .customer-wall { padding: 56px 0; }
    .section-heading h2, .solutions h2, .promise h2, .customer-wall h2 { font-size: 27px; }
    .product-toolbar { display: block; padding-bottom: 14px; margin-bottom: 20px; }
    .filter-group { margin-bottom: 8px; }
    .filter-label { min-width: 58px; }
    .product-card-media { height: 146px; }
    .solution-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
    .solution-item { min-height: 104px; padding: 18px; }
    .promise-inner { display: block; padding: 58px 0; }
    .promise p { font-size: 14px; }
    .promise-stats { min-width: 0; margin-top: 35px; }
    .promise-stats > div { padding: 7px 8px; }
    .promise-stats strong { font-size: 26px; }
    .promise-stats small { font-size: 11px; }
    .brand-list { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 28px; }
    .brand-list img { height: 72px; padding: 17px; }
}

/* 产品中心与首页精选入口 */
.home-products-link { display: block; width: max-content; margin: 34px auto 0; padding-bottom: 6px; border-bottom: 1px solid #0076fe; color: #0076fe; font-size: 14px; }
.home-products-link i { margin-left: 5px; font-size: 12px; }
.home-products-link:hover { color: #005bc4; border-color: #005bc4; }
.download-hero { padding: 72px 0 70px; color: #fff; text-align: center; background: #0076fe url('/static/index/img/banner1.png') center / cover no-repeat; }
.download-hero .index { width: min(100% - 48px, 1440px); }
.download-hero span { color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: 2px; }
.download-hero h1 { margin: 12px 0 8px; font-size: 38px; font-weight: 500; }
.download-hero p { margin: 0; color: rgba(255,255,255,.84); font-size: 15px; }
.download-page { width: min(100% - 48px, 1440px); margin: 0 auto; padding: 54px 0 96px; }
.download-filter { display: grid; gap: 16px; padding: 0 0 28px; margin-bottom: 48px; border-bottom: 1px solid #dfe8f1; }
.download-filter .filter-group { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.download-filter .filter-label { min-width: 90px; margin-right: 8px; color: #314b65; font-size: 15px; font-weight: 600; }
.download-filter .filter-chip { min-height: 40px; padding: 7px 17px; border: 1px solid #d7e3ed; border-radius: 0; color: #637b91; background: #fff; font-size: 14px; }
.download-filter .filter-chip:hover { color: #0076fe; background: #f0f7ff; }
.download-filter .filter-chip.is-active { color: #fff; border-color: #0076fe; background: #0076fe; }
.download-group { margin-bottom: 48px; }
.download-group[hidden], .download-card[hidden] { display: none !important; }
.download-group-title { display: flex; align-items: center; margin-bottom: 18px; color: #1a2b40; font-size: 22px; font-weight: 600; }
.download-group-title i { width: 32px; height: 2px; margin-left: 14px; background: #0076fe; }
.download-page .list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.download-page .list .item.download-card { display: flex; flex-direction: column; width: auto; min-width: 0; min-height: 350px; margin: 0; padding: 0; border: 1px solid #e9eef4; border-radius: 2px; background: #fff; box-shadow: none; }
.download-page .list .item.download-card:hover { border-color: #b9d9fb; box-shadow: 0 9px 26px rgba(0,118,254,.10); transform: translateY(-3px); }
.download-card-media { display: flex; align-items: center; justify-content: center; height: 146px; padding: 18px 28px; background: #f5f9fe; }
.download-card-media img { display: block; width: 100%; height: 100%; object-fit: contain; }
.download-card-media > i { color: #0076fe; font-size: 48px; }
.download-item-content { display: flex; flex: 1; flex-direction: column; padding: 19px 20px 17px; }
.download-tags { display: flex; gap: 6px; margin-bottom: 8px; }
.download-tags span { display: inline-flex; align-items: center; min-height: 20px; padding: 0 7px; border-radius: 2px; color: #4b6683; background: #eef4fa; font-size: 11px; }
.download-tags span[class*="pricing-"] { color: #27966e; background: #edf9f3; }
.download-tags .pricing-paid { color: #b87a19 !important; background: #fff6e8 !important; }
.download-tags .pricing-mixed { color: #7a5bad !important; background: #f4efff !important; }
.download-item-content h2 { margin: 0; color: #26384c; font-size: 17px; font-weight: 500; line-height: 1.4; }
.download-item-content p { display: -webkit-box; flex: 1; overflow: hidden; margin: 9px 0 15px; color: #8793a2; font-size: 13px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.download-item-actions { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid #edf1f5; }
.download-item-actions .index-btn { font-size: 12px; }
.download-item-actions .site-btn { color: #fff; border: 1px solid #0076fe; background: #0076fe; }
.download-empty { padding: 50px 0; color: #8793a2; text-align: center; font-size: 14px; }
@media (max-width: 1000px) { .download-page .list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 720px) {
    .download-hero { padding: 54px 0; }
    .download-hero h1 { font-size: 30px; }
    .download-page { width: calc(100% - 32px); padding: 30px 0 60px; }
    .download-filter { display: block; padding-bottom: 12px; margin-bottom: 30px; overflow: hidden; }
    .download-filter .filter-group { flex-wrap: nowrap; overflow-x: auto; margin-bottom: 8px; padding: 3px 0; scrollbar-width: none; }
    .download-filter .filter-group::-webkit-scrollbar { display: none; }
    .download-filter .filter-label { flex: 0 0 auto; min-width: 58px; }
    .download-filter .filter-chip { flex: 0 0 auto; white-space: nowrap; }
    .download-group { margin-bottom: 35px; }
    .download-group-title { font-size: 20px; }
    .download-page .list { grid-template-columns: 1fr; gap: 13px; }
    .download-page .list .item.download-card { min-height: 0; }
    .download-card-media { height: 138px; }
}

/* 企业官网公共框架、解决方案与关于页 */
.head .navs { padding: 0 148px; white-space: nowrap; }
.head .navs a { padding: 10px 14px; }
.download-page .list .item.download-card { min-height: 252px; }
.download-page .download-item-content { padding: 20px; }
.download-card-heading { display: flex; align-items: center; gap: 13px; }
.download-card-logo { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 52px; height: 52px; border: 1px solid #e6eef7; border-radius: 12px; background: #f7fbff; overflow: hidden; }
.download-card-logo img { display: block; width: 42px; height: 42px; object-fit: contain; }
.download-card-logo i { color: #0076fe; font-size: 27px; }
.download-card-heading .download-tags { margin: 0 0 5px; }
.download-card-heading h2 { margin: 0; }
.download-item-content p { margin-top: 16px; }

.solutions-page-hero, .about-hero { padding: 84px 0 80px; color: #fff; text-align: center; background: #0076fe url('/static/index/img/banner1.png') center / cover no-repeat; }
.solutions-page-hero .index, .about-hero .index { width: min(100% - 48px, 1180px); }
.solutions-page-hero span, .about-hero span { color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: 2px; }
.solutions-page-hero h1, .about-hero h1 { margin: 12px 0 10px; color: #fff; font-size: 40px; font-weight: 500; line-height: 1.3; }
.solutions-page-hero p, .about-hero p { max-width: 680px; margin: 0 auto; color: rgba(255,255,255,.84); font-size: 16px; line-height: 1.8; }
.solutions-page-list { padding: 72px 0 90px; background: #f7faff; }
.solutions-page-list .index { width: min(1440px, calc(100% - 48px)); }
.solution-large { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; min-height: 290px; margin-bottom: 24px; overflow: hidden; background: #fff; }
.solution-large.reverse { grid-template-columns: .9fr 1.1fr; }
.solution-large.reverse .solution-large-copy { order: 2; }
.solution-large.reverse .solution-large-art { order: 1; }
.solution-large-copy { padding: 54px 58px; }
.solution-large-copy .eyebrow { margin-bottom: 10px; }
.solution-large-copy h2 { margin: 0; color: #1a2b40; font-size: 30px; font-weight: 500; }
.solution-large-copy p { max-width: 480px; margin: 16px 0 23px; color: #718096; font-size: 15px; line-height: 1.9; }
.solution-large-copy a { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid #0076fe; color: #0076fe; font-size: 14px; }
.solution-large-copy a i { margin-left: 4px; font-size: 12px; }
.solution-large-art { display: flex; align-items: center; justify-content: center; min-width: 0; min-height: 0; overflow: hidden; background: transparent; }
.solution-large-art img { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; }
.solution-large-art i { font-size: 90px; }
.art-blue { color: #fff; background: #0076fe url('/static/index/img/banner1.png') center / cover no-repeat; }
.art-light { color: #0076fe; background: #eaf4ff; }

.about-intro { padding: 76px 0 74px; background: #fff; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 94px; width: min(100% - 48px, 1080px); }
.about-intro h2, .about-content h2 { margin: 0; color: #1a2b40; font-size: 31px; font-weight: 500; }
.about-intro p { margin: 15px 0 0; color: #718096; font-size: 15px; line-height: 1.9; }
.about-values { display: grid; gap: 1px; background: #eaf0f7; }
.about-values > div { display: grid; grid-template-columns: 54px 1fr; align-items: center; column-gap: 15px; min-height: 86px; padding: 17px 20px; background: #fff; }
.about-values strong { grid-row: span 2; color: #0076fe; font-size: 22px; font-weight: 400; }
.about-values span { color: #26384c; font-size: 16px; font-weight: 500; }
.about-values small { color: #8793a2; font-size: 13px; }
.about-content { padding: 72px 0 90px; text-align: center; background: #f7faff; }
.about-content .index { width: min(100% - 48px, 880px); }
.about-content-text { margin-top: 30px; padding: 42px 52px; color: #60728a; background: #fff; text-align: left; font-size: 15px; line-height: 2; }
.about-content-text p { margin: 0 0 18px; }
.about-content-text strong { color: #1a2b40; }
.about-page-modern { display: grid; grid-template-columns: 238px minmax(0,1fr); gap: 36px; width: min(100% - 48px, 1080px); margin: 56px auto 88px; }
.about-side { height: max-content; background: #f7faff; }
.about-side-title { padding: 22px 20px 17px; color: #1a2b40; font-size: 18px; font-weight: 500; }
.about-side a { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; color: #66788d; font-size: 14px; }
.about-side a i { font-size: 11px; opacity: .65; }
.about-side a:hover, .about-side a.active { color: #0076fe; background: #fff; }
.about-article { min-width: 0; padding: 8px 0; }
.about-article h2 { margin: 0 0 25px; padding-bottom: 17px; border-bottom: 1px solid #e8eef5; color: #1a2b40; font-size: 28px; font-weight: 500; }
.about-article .content { color: #60728a; font-size: 15px; line-height: 2; }
.about-article .content p { margin: 0 0 18px; }

.mw-site-footer { color: rgba(255,255,255,.65); background: #15243a; }
.footer-main { display: grid; grid-template-columns: 1.7fr repeat(3, .78fr) 1fr; gap: 42px; width: min(100% - 48px, 1380px); padding: 58px 0 46px; }
.footer-brand img { width: 132px; height: auto; }
.footer-brand p { max-width: 270px; margin: 18px 0; font-size: 13px; line-height: 1.85; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-contact a { color: rgba(255,255,255,.75); font-size: 13px; }
.footer-contact a:hover, .footer-nav a:hover { color: #fff; }
.footer-contact i { margin-right: 5px; color: #56a8ff; }
.footer-nav h2 { margin: 3px 0 17px; color: #fff; font-size: 15px; font-weight: 500; }
.footer-nav a { display: block; margin: 0 0 12px; color: rgba(255,255,255,.62); font-size: 13px; }
.footer-qrcode { text-align: center; }
.footer-qrcode img { display: block; width: 128px; height: 128px; margin: 0 auto 10px; border-radius: 8px; background: #fff; }
.footer-qrcode span { font-size: 12px; white-space: nowrap; }
.footer-legal { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 16px 36px; width: min(100% - 48px, 1380px); padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.43); font-size: 12px; }
.footer-legal-left, .footer-legal-right { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; }
.footer-legal-right { justify-content: flex-end; text-align: right; }
.footer-legal a { color: inherit; }
.footer-legal a:hover { color: #fff; }
.footer1, .footer2 { display: none; }

/* 公共页尾的品牌化层次 */
.mw-site-footer { position: relative; overflow: hidden; background: #10283d; }
.mw-site-footer:before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, #2ac4c8 0%, #2088d5 52%, #68c8a4 100%); }
.mw-site-footer:after { content: ""; position: absolute; inset: 3px 0 0; pointer-events: none; opacity: .3; background-image: linear-gradient(rgba(110,190,216,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(110,190,216,.045) 1px, transparent 1px); background-size: 46px 46px; }
.mw-site-footer .footer-main, .mw-site-footer .footer-legal { position: relative; z-index: 1; }
.footer-main { grid-template-columns: 2fr repeat(3, .82fr) 1.1fr; gap: 56px; padding: 76px 0 62px; }
.footer-brand img { width: 150px; }
.footer-brand p { max-width: 330px; margin: 22px 0 26px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.9; }
.footer-contact { gap: 20px; }
.footer-contact a { display: inline-flex; align-items: center; padding-bottom: 5px; border-bottom: 1px solid rgba(91,188,222,.45); color: rgba(255,255,255,.82); font-size: 13px; }
.footer-contact a:hover { border-color: #6ad7d0; color: #fff; }
.footer-nav { min-width: 0; }
.footer-nav h2 { position: relative; margin: 2px 0 23px; padding-bottom: 12px; color: #fff; font-size: 15px; font-weight: 600; }
.footer-nav h2:after { content: ""; position: absolute; bottom: 0; left: 0; width: 25px; height: 2px; background: #42c6c2; }
.footer-nav a { margin: 0 0 15px; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.5; transition: color .2s ease, padding-left .2s ease; }
.footer-nav a:hover { padding-left: 5px; color: #fff; }
.footer-qrcode { padding-left: 28px; border-left: 1px solid rgba(145,205,220,.2); }
.footer-qrcode img { width: 140px; height: 140px; margin: 0 auto 13px; padding: 7px; }
.footer-qrcode span { color: rgba(255,255,255,.58); font-size: 12px; }
.footer-legal { min-height: 64px; padding: 18px 0; border-top-color: rgba(155,211,224,.18); color: rgba(255,255,255,.42); }
.footer-legal-left { color: rgba(255,255,255,.58); }
.footer-legal-right { gap: 8px 24px; }

@media (min-width: 721px) and (max-width: 1140px) {
    .head .navs { padding: 0 120px; }
    .head .navs a { padding: 10px 9px; font-size: 14px; }
    .footer-main { grid-template-columns: 1.5fr repeat(3, .8fr); }
    .footer-qrcode { display: none; }
}
@media (max-width: 720px) {
    .head .navs { padding: 12px 18px 18px; white-space: normal; }
    .head .navs a { padding: 13px 0; font-size: 15px; }
    .solutions-page-hero, .about-hero { padding: 58px 0 54px; }
    .solutions-page-hero h1, .about-hero h1 { font-size: 29px; }
    .solutions-page-hero p, .about-hero p { font-size: 14px; }
    .solutions-page-list { padding: 42px 0 56px; }
    .solutions-page-list .index { width: calc(100% - 32px); }
    .solution-large, .solution-large.reverse { grid-template-columns: 1fr; margin-bottom: 14px; }
    .solution-large.reverse .solution-large-copy, .solution-large.reverse .solution-large-art { order: initial; }
    .solution-large-copy { padding: 34px 26px; }
    .solution-large-copy h2 { font-size: 26px; }
    .solution-large-copy p { font-size: 14px; }
    .solution-large-art { min-height: 0; }
    .solution-large-art img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; }
    .solution-large-art i { font-size: 62px; }
    .about-intro { padding: 52px 0; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 32px; width: calc(100% - 32px); }
    .about-intro h2, .about-content h2 { font-size: 27px; }
    .about-intro p { font-size: 14px; }
    .about-content { padding: 52px 0 60px; }
    .about-content .index { width: calc(100% - 32px); }
    .about-content-text { padding: 25px 20px; font-size: 14px; }
    .about-page-modern { grid-template-columns: 1fr; gap: 26px; width: calc(100% - 32px); margin: 36px auto 58px; }
    .about-side { display: grid; grid-template-columns: 1fr 1fr; }
    .about-side-title { grid-column: 1 / -1; }
    .about-side a { padding: 12px 15px; }
    .about-article h2 { font-size: 24px; }
    .about-article .content { font-size: 14px; }
    .footer-main { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px 18px; width: calc(100% - 32px); padding: 44px 0 34px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { max-width: 100%; }
    .footer-legal { grid-template-columns: 1fr; width: calc(100% - 32px); padding: 17px 0 24px; line-height: 1.7; }
    .footer-legal-right { justify-content: flex-start; text-align: left; }
}

/* 官网首页、价格与服务支持的企业级布局 */
.about-page-modern { align-items: start; }
.about-side { position: sticky; top: 72px; max-height: calc(100vh - 92px); overflow-y: auto; }
.about-side::-webkit-scrollbar { width: 4px; }
.about-side::-webkit-scrollbar-thumb { background: #c9dced; }

.mw-home-hero { overflow: hidden; min-height: 618px; color: #fff; background: #0076fe url('/static/index/img/banner1.png') center / cover no-repeat; }
.mw-home-hero-inner { display: flex; align-items: center; justify-content: space-between; min-height: 618px; gap: 66px; }
.mw-home-hero-copy { width: 49%; padding: 55px 0; }
.mw-home-hero-copy > span { display: block; margin-bottom: 20px; color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: 2px; }
.mw-home-hero h1 { margin: 0; color: #fff; font-size: 56px; font-weight: 500; line-height: 1.25; }
.mw-home-hero h1 span { color: #bfe3ff; }
.mw-home-hero-copy > p { max-width: 510px; margin: 22px 0 32px; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.9; }
.mw-home-hero-actions { display: flex; align-items: center; gap: 24px; }
.mw-home-hero-actions a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 15px; }
.mw-home-hero-actions a:first-child { padding: 13px 25px; color: #0076fe; background: #fff; box-shadow: 0 12px 28px rgba(0,54,142,.18); }
.mw-home-hero-actions a:first-child:hover { color: #005fcf; transform: translateY(-2px); }
.mw-home-hero-actions a:last-child { border-bottom: 1px solid rgba(255,255,255,.65); padding-bottom: 4px; }
.mw-home-hero-proof { display: flex; gap: 26px; margin-top: 49px; }
.mw-home-hero-proof b { position: relative; padding-left: 14px; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 400; }
.mw-home-hero-proof b:before { content: ""; position: absolute; top: 7px; left: 0; width: 5px; height: 5px; background: #fff; border-radius: 50%; }
.mw-home-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; width: 49%; min-height: 414px; padding: 34px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.1); box-shadow: 0 30px 76px rgba(0,46,126,.25); box-sizing: border-box; }
.mw-home-hero-visual:before { content: ""; position: absolute; width: 180px; height: 180px; right: -50px; bottom: -78px; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; }
.mw-home-hero-visual img { position: relative; z-index: 1; display: block; width: 100%; max-height: 340px; object-fit: contain; filter: drop-shadow(0 24px 28px rgba(0,45,120,.24)); }
.hero-visual-tag { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 8px 11px; color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.25); background: rgba(0,89,191,.35); font-size: 12px; }
.hero-visual-panel { position: absolute; z-index: 2; right: 20px; bottom: 18px; display: flex; align-items: center; gap: 8px; padding: 10px 13px; color: #fff; background: rgba(0,73,160,.7); font-size: 12px; }
.hero-visual-panel i { font-size: 18px; }
.mw-home-intro { border-bottom: 1px solid #e8eef5; background: #fff; }
.mw-home-intro .index { display: flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 116px; }
.mw-home-intro p { max-width: 840px; margin: 0; color: #526b84; font-size: 17px; line-height: 1.8; }
.mw-home-intro a { flex: 0 0 auto; color: #0076fe; border-bottom: 1px solid #0076fe; padding-bottom: 4px; font-size: 14px; }
.mw-home-intro a i { margin-left: 5px; font-size: 11px; }
.mw-center-heading { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.mw-center-heading > span { display: block; margin-bottom: 10px; color: #0076fe; font-size: 12px; letter-spacing: 2px; }
.mw-center-heading h2 { margin: 0; color: #1a2b40; font-size: 34px; font-weight: 500; line-height: 1.4; }
.mw-center-heading p { margin: 13px 0 0; color: #718096; font-size: 15px; line-height: 1.8; }
.mw-scenario-section { padding: 84px 0 92px; background: #f7faff; }
.mw-scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mw-scenario-grid a { position: relative; display: block; min-height: 300px; padding: 32px 31px; overflow: hidden; color: #1a2b40; border: 1px solid #e5edf5; background: #fff; box-sizing: border-box; }
.mw-scenario-grid a:hover { transform: translateY(-5px); border-color: #bddbfa; box-shadow: 0 18px 36px rgba(0,68,148,.1); }
.mw-scenario-icon { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; margin-bottom: 28px; color: #0076fe; background: #ebf5ff; }
.mw-scenario-icon i { font-size: 27px; }
.mw-scenario-grid small { position: absolute; top: 31px; right: 29px; color: #bad0e7; font-size: 13px; }
.mw-scenario-grid h3 { margin: 0 0 12px; font-size: 21px; font-weight: 500; }
.mw-scenario-grid p { margin: 0; color: #718096; font-size: 14px; line-height: 1.85; }
.mw-scenario-grid a > span { position: absolute; bottom: 30px; left: 31px; color: #0076fe; font-size: 13px; }
.mw-scenario-grid a > span i { margin-left: 5px; font-size: 11px; }
.mw-product-flow { color: #fff; background: #14365f; }
.mw-product-flow-inner { display: flex; align-items: center; justify-content: space-between; gap: 70px; min-height: 350px; }
.mw-product-flow-inner > div { max-width: 450px; }
.mw-product-flow .section-eyebrow { color: #8fc8ff; }
.mw-product-flow h2 { margin: 9px 0 14px; color: #fff; font-size: 34px; font-weight: 500; }
.mw-product-flow p { margin: 0 0 20px; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.9; }
.mw-product-flow a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.75); padding-bottom: 4px; font-size: 13px; }
.mw-product-flow a i { margin-left: 5px; font-size: 11px; }
.mw-product-flow ol { display: grid; grid-template-columns: repeat(3, 1fr); min-width: 520px; margin: 0; padding: 0; list-style: none; border-left: 1px solid rgba(255,255,255,.2); }
.mw-product-flow li { display: grid; gap: 12px; min-height: 118px; padding: 7px 22px; border-right: 1px solid rgba(255,255,255,.2); }
.mw-product-flow li b { color: #6db8ff; font-size: 18px; font-weight: 400; }
.mw-product-flow li strong, .mw-product-flow li small { display: block; }
.mw-product-flow li strong { color: #fff; font-size: 16px; font-weight: 500; }
.mw-product-flow li small { margin-top: 8px; color: rgba(255,255,255,.62); font-size: 12px; }

.mw-pricing-page { padding: 72px 0 90px !important; }
.pricing-top { padding: 0 !important; margin: 0 auto 36px !important; text-align: center; }
.pricing-hero { margin-bottom: 28px !important; text-align: center !important; }
.pricing-hero h1 { font-size: 40px !important; }
.pricing-hero p { margin: 0 auto !important; }
.cat-pills { justify-content: center !important; }
.detail-inner { border: 1px solid #dfe9f4 !important; }
.detail-header { padding: 33px 38px !important; }
.detail-body { padding: 32px 38px !important; }
.agent-tip-card { padding: 29px 36px !important; text-align: center !important; }

.help-banner { text-align: center; }
.help-banner .index { display: flex; flex-direction: column; align-items: center; }
.help-banner .search-box { width: min(100%, 620px); }
.help-banner .hot-world { text-align: center; }
.help-quick-links { width: min(100%, 820px); max-width: none; text-align: left; }
.help-page { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 26px; width: min(100% - 48px, 1120px) !important; margin: 48px auto 84px !important; }
.help-page .l, .help-page .r { float: none !important; width: auto !important; min-width: 0; }
.help-page .l { height: max-content; position: sticky; top: 92px; border: 1px solid #dfe9f4; }
.help-page .r { padding: 26px 34px; background: #fff; }
.help-page .l .list { padding: 5px 0 14px; }
.help-nav-card { padding: 14px 20px 3px; }
.help-page .l .list h3 { margin: 0 0 8px; color: #1a2b40; font-size: 15px; font-weight: 500; }
.help-page .l .list .li a { padding: 10px 12px; }

@media (max-width: 720px) {
    .about-side { position: static; max-height: none; }
    .mw-home-hero { min-height: auto; }
    .mw-home-hero-inner { display: block; min-height: 0; padding: 58px 0 42px; }
    .mw-home-hero-copy, .mw-home-hero-visual { width: 100%; box-sizing: border-box; }
    .mw-home-hero-copy { padding: 0; }
    .mw-home-hero h1 { font-size: 38px; }
    .mw-home-hero-copy > p { font-size: 15px; }
    .mw-home-hero-actions { gap: 17px; }
    .mw-home-hero-actions a { font-size: 13px; }
    .mw-home-hero-proof { gap: 14px; margin-top: 31px; }
    .mw-home-hero-proof b { font-size: 11px; }
    .mw-home-hero-visual { min-height: 250px; margin-top: 42px; padding: 20px; }
    .mw-home-hero-visual img { max-height: 205px; }
    .mw-home-intro .index { display: block; min-height: 0; padding: 31px 0; }
    .mw-home-intro p { font-size: 14px; }
    .mw-home-intro a { display: inline-block; margin-top: 15px; }
    .mw-center-heading h2, .mw-product-flow h2 { font-size: 27px; }
    .mw-center-heading p { font-size: 14px; }
    .mw-scenario-section { padding: 56px 0 60px; }
    .mw-scenario-grid { grid-template-columns: 1fr; gap: 12px; }
    .mw-scenario-grid a { min-height: 254px; }
    .mw-product-flow-inner { display: block; min-height: 0; padding: 58px 0; }
    .mw-product-flow ol { min-width: 0; margin-top: 34px; }
    .mw-product-flow li { padding: 7px 10px; }
    .mw-product-flow li strong { font-size: 14px; }
    .mw-pricing-page { padding: 48px 0 60px !important; }
    .help-page { width: calc(100% - 32px) !important; }
    .pricing-hero h1 { font-size: 29px !important; }
    .cat-pills { gap: 8px !important; }
    .cat-pill { padding: 9px 14px !important; }
    .detail-header, .detail-body { padding: 22px !important; }
    .agent-tip-card { padding: 25px 20px !important; }
    .help-page { grid-template-columns: 1fr; gap: 18px; margin: 34px auto 58px !important; }
    .help-page .l { position: static; }
    .help-page .r { padding: 20px; }
}

/* 二次视觉收敛：以产品内容和留白建立官网层次 */
.mw-home-hero { min-height: 640px; background: #0076fe url('/static/index/img/banner1.png') center / cover no-repeat; }
.mw-home-hero-inner { min-height: 640px; gap: 88px; }
.mw-home-hero-copy { width: 47%; }
.mw-hero-eyebrow { color: rgba(255,255,255,.74) !important; font-size: 12px !important; letter-spacing: 2.2px !important; }
.mw-home-hero h1 { font-size: 58px; letter-spacing: 0; }
.mw-home-hero h1 span { color: #fff; text-shadow: 0 4px 24px rgba(0,54,170,.28); }
.mw-home-hero-copy > p { max-width: 470px; font-size: 16px; }
.mw-home-hero-visual { width: 53%; min-height: 455px; padding: 0; border: 0; background: transparent; box-shadow: none; }
.mw-home-hero-visual:before { display: none; }
.hero-screen { position: absolute; overflow: hidden; border: 8px solid rgba(255,255,255,.96); background: #fff; box-shadow: 0 30px 65px rgba(0,56,145,.32); }
.hero-screen img { width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: top left; filter: none; }
.hero-screen-main { z-index: 2; right: 12px; width: 88%; height: 332px; }
.hero-screen-sub { z-index: 3; bottom: 10px; left: 0; width: 43%; height: 178px; box-shadow: 0 22px 45px rgba(0,51,136,.33); }
.hero-visual-orbit { position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; pointer-events: none; }
.orbit-one { top: -35px; right: -32px; width: 380px; height: 380px; }
.orbit-two { bottom: -80px; left: 56px; width: 280px; height: 280px; }
.hero-visual-tag { top: 25px; left: 75px; z-index: 4; color: #2d6ca9; border: 0; background: #fff; box-shadow: 0 9px 22px rgba(0,57,138,.16); }
.hero-visual-panel { z-index: 4; right: 31px; bottom: 32px; color: #2f6ea9; background: #fff; box-shadow: 0 9px 22px rgba(0,57,138,.16); }
.featured-products { background: #fff; }
.featured-products .index-box { padding: 96px 0 100px; }
.section-heading { align-items: center; margin-bottom: 38px; }
.section-heading h2 { font-size: 36px; font-weight: 500; }
.section-heading p { max-width: 610px; line-height: 1.8; }
.featured-swiper { min-height: 325px; margin-top: 0; border-top: 1px solid #e5edf5; border-bottom: 1px solid #e5edf5; background: #fff; }
.featured-slide { min-height: 325px; padding: 48px 100px 48px 54px; }
.featured-copy h3 { font-size: 31px; }
.featured-logo { width: 156px; height: 156px; border-radius: 0; border: 0; background: #f0f7ff; box-shadow: none; }
.featured-logo img { width: 112px; height: 112px; }
.featured-prev, .featured-next { border-radius: 0; border: 0; background-color: transparent; }
.home-products-link { margin-top: 28px; }
.home-benefits { padding: 92px 0; background: #f5f8fc; }
.benefit-grid { gap: 22px; background: transparent; }
.benefit-grid article { min-height: 220px; padding: 31px 32px; background: #fff; }
.benefit-grid article > i { margin: 24px 0 18px; font-size: 30px; }
.benefit-grid h3 { font-size: 19px; }
.mw-scenario-section { padding: 98px 0 106px; background: #fff; }
.mw-scenario-grid { gap: 0; border: 1px solid #e4ebf3; }
.mw-scenario-grid a { min-height: 334px; border: 0; border-right: 1px solid #e4ebf3; }
.mw-scenario-grid a:last-child { border-right: 0; }
.mw-scenario-grid a:hover { transform: none; border-color: transparent; background: #f7fbff; box-shadow: none; }
.mw-scenario-icon { width: 58px; height: 58px; margin-bottom: 35px; background: transparent; border: 1px solid #bedcff; }
.mw-scenario-grid h3 { font-size: 22px; }
.mw-product-flow { background: #0d3c73 url('/static/index/img/banner-bg.jpg') center / cover no-repeat; }
.mw-product-flow-inner { min-height: 370px; }
.promise { background: #0076fe url('/static/index/img/banner1.png') center / cover no-repeat; }

.mw-pricing-page { background: #f5f8fc !important; padding: 88px 0 100px !important; }
.pricing-top { margin-bottom: 42px !important; }
.pricing-kicker { display: block; margin-bottom: 14px; color: #0076fe; font-size: 12px; letter-spacing: 2px; }
.pricing-hero h1 { margin-bottom: 13px; font-size: 42px !important; font-weight: 500 !important; }
.pricing-hero p { max-width: 620px; }
.cat-pills { padding: 9px !important; gap: 0 !important; border: 1px solid #dce7f1; background: #fff; }
.cat-pill { min-width: 138px; padding: 13px 22px !important; border: 0 !important; background: transparent !important; color: #617289 !important; }
.cat-pill.active { color: #fff !important; background: #0076fe !important; box-shadow: none !important; }
.soft-card { padding: 0 10px; }
.soft-card .soft-link { padding: 12px 13px; border-radius: 0; }
.soft-card.selected .soft-link { border-left: 2px solid #0076fe; background: #eef7ff; }
.soft-card .soft-icon, .soft-card .soft-icon-fallback { border-radius: 4px; }
.detail-inner { min-height: 670px; border: 0 !important; box-shadow: 0 12px 30px rgba(30,76,121,.07) !important; }
.detail-header { position: relative; padding: 38px 42px !important; background: #0076fe url('/static/index/img/banner1.png') center / cover !important; }
.detail-header h2 { font-size: 28px; font-weight: 500; }
.detail-body { padding: 34px 42px !important; }
.level-card { grid-template-columns: minmax(0,1fr) 142px auto; padding: 21px 24px; border: 1px solid #e4ebf3; border-radius: 0; margin-bottom: 12px; }
.level-card:hover { transform: none; }
.level-card.recommend { background: #f6fbff; }
.level-card.recommend::after { top: 0; right: 0; border-radius: 0; }
.level-left .level-name { font-size: 18px; font-weight: 500; }
.level-right .price-now { font-size: 30px; font-weight: 500; }
.btn-buy { border-radius: 0; padding: 12px 22px; box-shadow: none; }
.pricing-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 54px; background: #dfe8f2; }
.pricing-service-grid > div { min-height: 190px; padding: 28px 29px; background: #fff; }
.pricing-service-grid i { display: block; margin-bottom: 20px; color: #0076fe; font-size: 25px; }
.pricing-service-grid h3 { margin: 0 0 9px; color: #1a2b40; font-size: 18px; font-weight: 500; }
.pricing-service-grid p { margin: 0; color: #718096; font-size: 13px; line-height: 1.75; }
.pricing-service-grid a { display: inline-block; margin-top: 13px; color: #0076fe; font-size: 13px; }
.pricing-service-grid a i { display: inline; margin: 0 0 0 5px; font-size: 11px; }

@media (max-width: 720px) {
    .mw-home-hero, .mw-home-hero-inner { min-height: 0; }
    .mw-home-hero-inner { padding: 58px 0 48px; }
    .mw-home-hero h1 { font-size: 39px; }
    .mw-home-hero-visual { min-height: 280px; margin-top: 48px; }
    .hero-screen-main { right: 0; width: 91%; height: 208px; border-width: 5px; }
    .hero-screen-sub { width: 45%; height: 105px; border-width: 4px; }
    .hero-visual-tag { top: 7px; left: 24px; font-size: 10px; }
    .hero-visual-panel { right: 8px; bottom: 11px; padding: 7px 9px; font-size: 10px; }
    .orbit-one { width: 240px; height: 240px; }
    .orbit-two { width: 180px; height: 180px; }
    .featured-products .index-box, .home-benefits, .mw-scenario-section { padding: 58px 0 64px; }
    .section-heading h2 { font-size: 28px; }
    .featured-swiper, .featured-slide { min-height: 360px; }
    .featured-slide { padding: 34px 42px 50px; }
    .benefit-grid { grid-template-columns: 1fr; gap: 12px; }
    .mw-scenario-grid { grid-template-columns: 1fr; gap: 0; }
    .mw-scenario-grid a { min-height: 274px; border-right: 0; border-bottom: 1px solid #e4ebf3; }
    .mw-scenario-grid a:last-child { border-bottom: 0; }
    .mw-pricing-page { padding: 58px 0 68px !important; }
    .pricing-hero h1 { font-size: 30px !important; }
    .cat-pills { justify-content: stretch !important; display: grid !important; grid-template-columns: repeat(2, 1fr); }
    .cat-pill { min-width: 0; width: 100%; }
    .detail-inner { min-height: 0; }
    .detail-header, .detail-body { padding: 24px 20px !important; }
    .level-card { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
    .pricing-service-grid { grid-template-columns: 1fr; gap: 1px; margin-top: 34px; }
    .pricing-service-grid > div { min-height: 0; padding: 23px 20px; }
}

/* 首页产品展示、服务支持与授权页的最终布局 */
.featured-swiper:not(.swiper-container-initialized) .swiper-wrapper { display: block; transform: none !important; }
.featured-swiper:not(.swiper-container-initialized) .featured-slide { display: none; }
.featured-swiper:not(.swiper-container-initialized) .featured-slide:first-child { display: flex; }
.featured-swiper.swiper-container-initialized .swiper-wrapper { display: flex; }
.featured-swiper.swiper-container-initialized .featured-slide { display: flex; }
.featured-swiper { overflow: hidden; }

.mw-product-flow { padding: 72px 0; color: #1a2b40; background: #f0f7ff; }
.mw-product-flow-inner { min-height: 0; padding: 0; }
.mw-product-flow .section-eyebrow { color: #0076fe; }
.mw-product-flow h2 { color: #1a2b40; }
.mw-product-flow p { color: #667b92; }
.mw-product-flow a { color: #0076fe; border-color: #0076fe; }
.mw-product-flow ol { border-color: #c9dfef; }
.mw-product-flow li { border-color: #c9dfef; }
.mw-product-flow li b { color: #0076fe; }
.mw-product-flow li strong { color: #1a2b40; }
.mw-product-flow li small { color: #718096; }
.promise { margin-top: 74px; background: #12345a url('/static/index/img/banner-bg.jpg') center / cover no-repeat; }
.promise-inner { padding: 84px 0; }

.help-page { gap: 0 !important; overflow: hidden; border: 1px solid #dfe8f1; background: #fff; box-shadow: 0 18px 46px rgba(26,64,105,.08); }
.help-page .l { position: static; border: 0 !important; border-right: 1px solid #e4ebf3 !important; background: #f6f9fc; }
.help-page .l .list { padding: 24px 18px; }
.help-nav-card { padding: 0 0 22px; }
.help-page .l .list h3 { padding: 0 13px; margin-bottom: 8px; color: #36516f; font-size: 14px; letter-spacing: .5px; }
.help-page .l .list .li { display: grid; gap: 3px; }
.help-page .l .list .li a { position: relative; padding: 12px 14px; color: #64788e; }
.help-page .l .list .li a:hover, .help-page .l .list .li a.active { color: #0076fe; background: #eaf4ff; }
.help-page .r { padding: 35px 40px 28px; border: 0 !important; background: #fff; }
.help-page .r .sort { display: flex; align-items: center; min-height: 38px; margin-bottom: 13px; border-bottom: 1px solid #e7edf4; color: #1a2b40; font-size: clamp(21px, 2vw, 24px); font-weight: 500; }
.help-page .r ol { margin: 0; }
.help-page .r ol li a { color: #38516b; font-size: 15px; }
.help-page .r ol li:hover a { color: #0076fe; }
.help-page .r ol li > span { color: #9aaaba; font-size: 12px; }

.mw-pricing-page { position: relative; background: #f4f8fc !important; }
.soft-list-scroll { padding: 15px 10px; }
.soft-card .soft-link { margin: 2px 0; padding: 13px 14px; }
.soft-card.selected .soft-link { border-left: 0; box-shadow: inset 3px 0 0 #0076fe; }
.detail-panel, .detail-inner { min-height: 690px; }
.detail-inner { box-shadow: none !important; }
.detail-header { min-height: 144px; padding: 37px 42px !important; box-sizing: border-box; }
.detail-header:after { content: ""; position: absolute; right: 42px; bottom: 26px; width: 88px; height: 1px; background: rgba(255,255,255,.55); }
.detail-header p { max-width: 590px; }
.detail-body { padding: 33px 42px 42px !important; }
.detail-body:before { content: "授权版本"; display: block; margin-bottom: 17px; color: #7890a8; font-size: 13px; }
.level-card { position: relative; grid-template-columns: minmax(0,1fr) 140px auto; min-height: 102px; box-sizing: border-box; }
.level-card.recommend { border-left: 3px solid #0076fe; }
.level-card.recommend::after { top: 17px; right: 18px; padding: 3px 10px; }
.pricing-service-grid { position: relative; gap: 0; margin-top: 62px; border-top: 1px solid #dce6ef; border-bottom: 1px solid #dce6ef; background: #fff; }
.pricing-service-grid > div { position: relative; min-height: 210px; padding: 32px 35px; border-right: 1px solid #e2eaf2; }
.pricing-service-grid > div:last-child { border-right: 0; }
.pricing-service-grid > div:before { content: ""; position: absolute; top: 32px; left: 0; width: 2px; height: 30px; background: #0076fe; opacity: 0; }
.pricing-service-grid > div:hover { background: #f7fbff; }
.pricing-service-grid > div:hover:before { opacity: 1; }
.pricing-service-grid i { width: 40px; height: 40px; margin-bottom: 18px; border: 1px solid #c7e0f8; background: #f1f8ff; text-align: center; line-height: 40px; }
.pricing-service-grid h3 { font-size: 19px; }
.pricing-service-grid p { max-width: 260px; font-size: 14px; }

@media (max-width: 720px) {
    .featured-swiper:not(.swiper-container-initialized) .featured-slide:first-child { display: block; }
    .mw-product-flow { padding: 58px 0; }
    .promise { margin-top: 52px; }
    .help-page { display: block; overflow: visible; box-shadow: none; }
    .help-page .l { border-right: 0 !important; border-bottom: 1px solid #e4ebf3 !important; }
    .help-page .l .list { padding: 20px 14px 8px; }
    .help-nav-card { padding-bottom: 16px; }
    .help-page .r { padding: 25px 20px; }
    /* 标题字号由主规则的 clamp 控制 */
    .detail-header { min-height: 0; padding: 27px 20px !important; }
    .detail-header:after { display: none; }
    .detail-body { padding: 24px 20px 28px !important; }
    .pricing-service-grid { margin-top: 40px; border: 1px solid #dce6ef; }
    .pricing-service-grid > div { padding: 24px 20px; border-right: 0; border-bottom: 1px solid #e2eaf2; }
    .pricing-service-grid > div:last-child { border-bottom: 0; }
}

/* 首页首屏内容扩展与公共图标规范 */
#slide, #slide .swiper-wrapper { height: 620px; }
#slide .swiper-slide, #slide .swiper-slide.two { min-height: 620px; }
#slide .index { height: 620px; }
#slide .l { padding: 25px 0; box-sizing: border-box; }
#slide h1 { font-size: 48px; }
#slide .hero-summary { max-width: 490px; }
#slide ul { margin: 20px 0 24px; }
#slide ul li { display: flex; align-items: center; gap: 9px; padding-left: 0; }
#slide ul li:before { display: none; }
#slide ul li > i { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; color: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 10px; }
#slide .one ul li > i { color: #0076fe; border-color: #9bc9f5; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.hero-link { color: rgba(255,255,255,.92); border-bottom: 1px solid rgba(255,255,255,.64); padding-bottom: 4px; font-size: 14px; }
.hero-link i { margin-left: 4px; font-size: 11px; }
#slide .one .hero-link { color: #466581; border-color: #8daec9; }
.hero-service-points { display: flex; align-items: center; gap: 0; margin-top: 35px; }
.hero-service-points span { display: inline-flex; align-items: center; gap: 7px; min-height: 22px; padding: 0 18px; color: rgba(255,255,255,.76); border-right: 1px solid rgba(255,255,255,.28); font-size: 12px; }
.hero-service-points span:first-child { padding-left: 0; }
.hero-service-points span:last-child { border-right: 0; }
.hero-service-points i { color: #fff; font-size: 14px; }
#slide .one .hero-service-points span { color: #637f99; border-color: #cddcea; }
#slide .one .hero-service-points i { color: #0076fe; }
.footer-nav a i { display: inline-block; width: 17px; margin-right: 6px; color: #56a8ff; font-size: 13px; text-align: center; }
.footer-legal i { margin-right: 5px; color: #56a8ff; font-size: 12px; }

/* 精选产品信息增强，顶部轮播保持原始简洁样式 */
#slide, #slide .swiper-wrapper { height: 506px; }
#slide .swiper-slide, #slide .swiper-slide.two { min-height: 506px; }
#slide .index { height: 506px; }
#slide .l { padding: 0; }
#slide h1 { font-size: 46px; }
#slide ul { margin: 18px 0 30px; }
#slide ul li { display: block; padding-left: 14px; }
#slide ul li:before { display: block; }
#slide ul li > i, .hero-actions, .hero-service-points { display: none; }
.featured-copy .product-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; min-height: 24px; margin-bottom: 14px; }
.featured-copy .product-meta span { display: inline-flex; align-items: center; gap: 5px; min-height: 23px; padding: 0 8px; font-size: 11px; }
.featured-copy .product-meta i { font-size: 11px; }
.featured-copy .product-meta .product-scene { color: #496b8d; background: #edf4fb; }
.featured-feature-list { display: flex; flex-wrap: wrap; gap: 8px 19px; margin: -5px 0 18px; }
.featured-feature-list span { display: inline-flex; align-items: center; gap: 5px; color: #617c97; font-size: 12px; }
.featured-feature-list i { color: #0076fe; font-size: 13px; }
.featured-copy p { margin-bottom: 16px; -webkit-line-clamp: 2; }
.featured-slide { min-height: 350px; }

@media (max-width: 720px) {
    #slide .swiper-slide, #slide .swiper-slide.two { min-height: 600px; }
    #slide ul li { display: block; padding-left: 14px; font-size: 13px; }
    .featured-copy .product-meta { gap: 5px; }
    .featured-copy .product-meta .product-scene { width: max-content; }
    .featured-feature-list { gap: 7px 12px; }
    .featured-feature-list span { font-size: 11px; }
}

/* 妙网官网首页：独立企业门户布局 */
.mw-portal-home { overflow: hidden; color: #172a42; background: #fff; }
.mw-portal-home * { box-sizing: border-box; }
.mw-portal-home h1, .mw-portal-home h2, .mw-portal-home h3, .mw-portal-home p { max-width: 100%; white-space: normal; overflow-wrap: break-word; }
.mw-portal-hero { position: relative; min-height: 650px; overflow: hidden; background: linear-gradient(110deg, #f4f9ff 0%, #eaf4ff 48%, #d9edff 100%); }
.mw-portal-hero:before { content: ""; position: absolute; right: -120px; bottom: -250px; width: 720px; height: 720px; border: 1px solid rgba(0,118,254,.12); border-radius: 50%; box-shadow: 0 0 0 110px rgba(0,118,254,.025), 0 0 0 220px rgba(0,118,254,.018); }
.mw-portal-hero-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; min-height: 650px; gap: 70px; }
.mw-portal-hero-copy { width: 43%; padding: 68px 0; }
.mw-portal-kicker { display: block; margin-bottom: 19px; color: #0076fe; font-size: 13px; font-weight: 600; letter-spacing: 2px; }
.mw-portal-hero h1 { margin: 0; color: #10243d; font-size: 54px; font-weight: 600; line-height: 1.26; }
.mw-portal-hero-copy > p { max-width: 510px; margin: 23px 0 31px; color: #5e7691; font-size: 17px; line-height: 1.9; }
.mw-portal-actions { display: flex; align-items: center; gap: 14px; }
.mw-portal-actions a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px; padding: 0 25px; border: 1px solid #0076fe; font-size: 14px; }
.mw-portal-actions .primary { color: #fff; background: #0076fe; box-shadow: 0 12px 24px rgba(0,118,254,.18); }
.mw-portal-actions .primary:hover { background: #0065dc; transform: translateY(-2px); }
.mw-portal-actions .secondary { color: #0076fe; background: rgba(255,255,255,.58); }
.mw-portal-actions .secondary:hover { background: #fff; }
.mw-portal-actions i { font-size: 12px; }
.mw-portal-trust { display: flex; align-items: center; gap: 24px; margin-top: 39px; color: #6a829c; font-size: 12px; }
.mw-portal-trust span { display: inline-flex; align-items: center; gap: 7px; }
.mw-portal-trust i { color: #0076fe; font-size: 15px; }
.mw-portal-hero-product { position: relative; display: flex; align-items: center; justify-content: center; width: 55%; min-height: 470px; }
.mw-portal-overview-image { display: block; width: auto; height: auto; max-width: 100%; max-height: 470px; object-fit: contain; object-position: center; filter: drop-shadow(0 28px 55px rgba(31,92,151,.2)); }
.mw-portal-window { position: absolute; z-index: 2; top: 58px; right: 0; width: 94%; overflow: hidden; border: 1px solid rgba(122,168,211,.4); border-radius: 7px; background: #fff; box-shadow: 0 32px 70px rgba(31,92,151,.23); transform: perspective(1400px) rotateY(-3deg); }
.mw-portal-float { display: none !important; }
.mw-portal-window-bar { display: flex; align-items: center; gap: 6px; height: 35px; padding: 0 13px; color: #7890a7; background: #f7f9fc; font-size: 11px; }
.mw-portal-window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #c8d5e2; }
.mw-portal-window-bar i:first-child { background: #ff8c80; }
.mw-portal-window-bar i:nth-child(2) { background: #ffc85c; }
.mw-portal-window-bar i:nth-child(3) { background: #56d49a; }
.mw-portal-window-bar span { margin-left: 7px; }
.mw-portal-window > img { display: block; width: 100%; height: 355px; object-fit: cover; object-position: top left; }
.mw-portal-overview-window > img { height: 390px; object-position: center; }
.mw-portal-float { position: absolute; z-index: 3; display: flex; align-items: center; background: rgba(255,255,255,.96); box-shadow: 0 18px 38px rgba(34,85,135,.16); }
.mw-portal-float-top { top: 22px; left: -15px; gap: 13px; min-width: 190px; padding: 14px 17px; }
.mw-portal-float-top > i { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; color: #0076fe; background: #eaf4ff; font-size: 20px; }
.mw-portal-float b, .mw-portal-float small { display: block; }
.mw-portal-float b { margin-bottom: 3px; color: #243b55; font-size: 13px; font-weight: 500; }
.mw-portal-float small { color: #8295a9; font-size: 10px; }
.mw-portal-float-bottom { right: -8px; bottom: 2px; gap: 12px; min-width: 205px; padding: 15px 18px; }
.mw-portal-float-bottom strong { color: #0076fe; font-size: 29px; font-weight: 500; }
.mw-portal-float-bottom span { color: #6d8197; font-size: 11px; line-height: 1.6; }

.mw-portal-category { position: relative; z-index: 5; border-bottom: 1px solid #e7eef5; background: #fff; box-shadow: 0 9px 30px rgba(38,72,105,.05); }
.mw-portal-category .index { display: grid; grid-template-columns: repeat(4, 1fr); }
.mw-portal-category a { display: flex; align-items: center; gap: 16px; min-height: 112px; padding: 23px 28px; border-right: 1px solid #e8eef4; color: #263c54; }
.mw-portal-category a:first-child { border-left: 1px solid #e8eef4; }
.mw-portal-category a:hover { color: #0076fe; background: #f8fbff; }
.mw-portal-category a > i { color: #0076fe; font-size: 29px; }
.mw-portal-category b, .mw-portal-category small { display: block; }
.mw-portal-category b { margin-bottom: 6px; font-size: 16px; font-weight: 500; }
.mw-portal-category small { color: #8a9bae; font-size: 11px; }

.mw-portal-section { padding: 102px 0; }
.mw-portal-heading { max-width: 740px; margin: 0 auto 53px; text-align: center; }
.mw-portal-heading > span { display: block; margin-bottom: 11px; color: #0076fe; font-size: 12px; font-weight: 600; letter-spacing: 2px; }
.mw-portal-heading h2 { margin: 0; color: #172d46; font-size: 36px; font-weight: 500; line-height: 1.4; }
.mw-portal-heading p { margin: 15px 0 0; color: #75899f; font-size: 15px; line-height: 1.8; }
.mw-portal-product-tabs { position: relative; }
.mw-portal-tab-nav { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-bottom: 22px; border: 1px solid #e2ebf4; background: #fff; box-shadow: 0 13px 36px rgba(35,73,112,.07); }
.mw-portal-tab-nav button { position: relative; display: flex; align-items: center; justify-content: center; gap: 9px; min-width: 0; height: 72px; padding: 0 15px; color: #637a91; border: 0; border-right: 1px solid #e8eef5; background: #fff; cursor: pointer; font-family: inherit; font-size: 13px; transition: color .2s ease, background .2s ease; }
.mw-portal-tab-nav button:last-child { border-right: 0; }
.mw-portal-tab-nav button:after { content: ""; position: absolute; right: 22px; bottom: -1px; left: 22px; height: 3px; background: #0076fe; opacity: 0; transform: scaleX(.35); transition: opacity .2s ease, transform .2s ease; }
.mw-portal-tab-nav button:hover { color: #0076fe; background: #f8fbff; }
.mw-portal-tab-nav button.active { color: #0076fe; background: #f4f9ff; font-weight: 500; }
.mw-portal-tab-nav button.active:after { opacity: 1; transform: scaleX(1); }
.mw-portal-tab-nav button:focus-visible { z-index: 1; outline: 2px solid #0076fe; outline-offset: -3px; }
.mw-portal-tab-nav button i { flex: 0 0 auto; font-size: 19px; }
.mw-portal-tab-nav button img { flex: 0 0 auto; width: 34px; height: 34px; object-fit: contain; }
.mw-portal-tab-nav button span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mw-portal-product-panel { display: none; margin-bottom: 0; }
.mw-portal-product-panel.active { display: grid; animation: mwPortalProductIn .32s ease both; }
.mw-portal-product-panel[hidden] { display: none !important; }
@keyframes mwPortalProductIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.mw-portal-media-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; min-height: 360px; padding: 42px; color: #57718d; border: 1px dashed #b8d3ed; background: linear-gradient(135deg, #edf6ff, #f8fbff); text-align: center; }
.mw-portal-media-placeholder i { display: flex; align-items: center; justify-content: center; width: 78px; height: 78px; margin-bottom: 22px; color: #0076fe; background: #fff; box-shadow: 0 14px 30px rgba(0,118,254,.12); font-size: 36px; }
.mw-portal-media-placeholder strong { margin-bottom: 8px; color: #2c4967; font-size: 19px; font-weight: 500; }
.mw-portal-media-placeholder span { color: #8ba0b4; font-size: 12px; }
.mw-portal-showcase { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; min-height: 530px; margin-bottom: 34px; overflow: hidden; background: #f3f8fe; }
.mw-portal-showcase.reverse { grid-template-columns: 1.16fr .84fr; background: #f7f8fb; }
.mw-portal-showcase.reverse .mw-portal-showcase-copy { order: 2; }
.mw-portal-showcase.reverse .mw-portal-showcase-media { order: 1; }
.mw-portal-showcase-copy { padding: 57px 58px; }
.mw-portal-product-mark { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: #0076fe; font-size: 12px; }
.mw-portal-product-mark i { font-size: 19px; }
.mw-portal-showcase h3 { margin: 0; color: #172d46; font-size: 32px; font-weight: 500; }
.mw-portal-showcase-copy > p { margin: 17px 0 25px; color: #667c92; font-size: 14px; line-height: 1.9; }
.mw-portal-showcase ul { display: grid; gap: 13px; margin: 0 0 29px; padding: 0; list-style: none; }
.mw-portal-showcase li { display: flex; align-items: flex-start; gap: 12px; }
.mw-portal-showcase li > i { margin-top: 3px; color: #0076fe; font-size: 16px; }
.mw-portal-showcase li b, .mw-portal-showcase li small { display: block; }
.mw-portal-showcase li b { margin-bottom: 3px; color: #35506c; font-size: 13px; font-weight: 500; }
.mw-portal-showcase li small { color: #8496a9; font-size: 11px; }
.mw-portal-showcase-actions { display: flex; align-items: center; gap: 22px; }
.mw-portal-showcase-actions a { color: #607890; font-size: 13px; }
.mw-portal-showcase-actions a:first-child { padding: 11px 20px; color: #fff; background: #0076fe; }
.mw-portal-showcase-actions i { margin-left: 5px; font-size: 11px; }
.mw-portal-showcase-media { display: flex; align-items: center; justify-content: center; min-width: 0; height: 100%; padding: 48px 35px; }
.mw-portal-showcase-media img { display: block; width: 100%; max-height: 395px; aspect-ratio: 12 / 7; object-fit: contain; filter: drop-shadow(0 24px 34px rgba(34,75,114,.16)); }
.mw-portal-more-products { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-top: 1px solid #e4ebf2; border-left: 1px solid #e4ebf2; }
.mw-portal-more-products a { display: flex; align-items: center; gap: 13px; min-width: 0; min-height: 92px; padding: 17px 19px; border-right: 1px solid #e4ebf2; border-bottom: 1px solid #e4ebf2; color: #304962; }
.mw-portal-more-products a:hover { color: #0076fe; background: #f8fbff; }
.mw-portal-more-icon { display: flex; flex: 0 0 44px; align-items: center; justify-content: center; width: 44px; height: 44px; background: #eef6ff; overflow: hidden; }
.mw-portal-more-icon img { width: 34px; height: 34px; object-fit: contain; }
.mw-portal-more-icon i { color: #0076fe; font-size: 22px; }
.mw-portal-more-products a > span:nth-child(2) { min-width: 0; flex: 1; }
.mw-portal-more-products b, .mw-portal-more-products small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mw-portal-more-products b { margin-bottom: 6px; font-size: 14px; font-weight: 500; }
.mw-portal-more-products small { color: #8b9bad; font-size: 10px; }
.mw-portal-more-products a > i { color: #9db0c2; font-size: 12px; }
.mw-portal-all-products { margin-top: 30px; text-align: center; }
.mw-portal-all-products a { display: inline-flex; align-items: center; gap: 7px; padding-bottom: 5px; color: #0076fe; border-bottom: 1px solid #0076fe; font-size: 13px; }

.mw-portal-solutions { position: relative; padding: 100px 0 108px; overflow: hidden; color: #fff; background-color: #0b3155; background-image: linear-gradient(rgba(89,198,220,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(89,198,220,.08) 1px, transparent 1px); background-size: 42px 42px; }
.mw-portal-solutions:before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(11,49,85,.96) 0%, rgba(11,49,85,.78) 55%, rgba(9,70,80,.72) 100%); }
.mw-portal-solutions > .index { position: relative; z-index: 1; }
.mw-portal-heading.light h2 { color: #fff; }
.mw-portal-heading.light > span { color: #85c4ff; }
.mw-portal-heading.light p { color: rgba(255,255,255,.68); }
.mw-portal-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.2); }
.mw-portal-solution-grid a { position: relative; min-height: 310px; padding: 34px 35px; color: #fff; background: rgba(7,38,68,.76); }
.mw-portal-solution-grid a:nth-child(2), .mw-portal-solution-grid a:nth-child(5) { background: rgba(8,49,76,.8); }
.mw-portal-solution-grid a:hover { background: rgba(16,92,105,.86); }
.mw-portal-solution-grid a > span { position: absolute; top: 31px; right: 32px; color: rgba(255,255,255,.34); font-size: 13px; }
.mw-portal-solution-grid a > i { display: block; margin: 12px 0 34px; color: #84c5ff; font-size: 39px; }
.mw-portal-solution-grid h3 { margin: 0 0 13px; font-size: 22px; font-weight: 500; }
.mw-portal-solution-grid p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.85; }
.mw-portal-solution-grid ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 52px; padding: 0; list-style: none; }
.mw-portal-solution-grid li { padding: 5px 9px; color: #a8f0e4; background: rgba(76,213,183,.1); font-size: 11px; }
.mw-portal-solution-grid b { position: absolute; bottom: 31px; left: 35px; color: #fff; font-size: 12px; font-weight: 400; }
.mw-portal-solution-grid b i { margin-left: 5px; font-size: 10px; }

.mw-portal-service { position: relative; overflow: hidden; padding: 132px 0; background-color: #eef5f8; background-image: linear-gradient(rgba(20,84,116,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(20,84,116,.045) 1px, transparent 1px); background-size: 54px 54px; }
.mw-portal-service-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 110px; }
.mw-portal-service-copy { max-width: 530px; }
.mw-portal-service-copy > span { display: block; margin-bottom: 17px; color: #0076fe; font-size: 12px; letter-spacing: 2px; }
.mw-portal-service h2 { margin: 0; color: #142d43; font-size: 45px; font-weight: 500; line-height: 1.38; }
.mw-portal-service-copy p { margin: 24px 0 32px; color: #617a8e; font-size: 16px; line-height: 2; }
.mw-portal-service-copy a { display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; color: #fff; background: #0b3155; font-size: 13px; }
.mw-portal-service-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); width: min(700px, 52vw); border: 1px solid #d7e3ea; background: #d7e3ea; box-shadow: 0 28px 65px rgba(31,79,107,.12); gap: 1px; }
.mw-portal-service-list > a { display: flex; align-items: center; gap: 20px; min-height: 148px; padding: 31px; border-top: 3px solid #2a9ce2; color: inherit; background: rgba(255,255,255,.94); }
.mw-portal-service-list > a:nth-child(2), .mw-portal-service-list > a:nth-child(3) { border-top-color: #31a88b; }
.mw-portal-service-list > a:hover { background: #fff; }
.mw-portal-service-list > a > i { display: flex; flex: 0 0 58px; align-items: center; justify-content: center; width: 58px; height: 58px; color: #0878cf; background: #e9f5fb; font-size: 27px; }
.mw-portal-service-list b, .mw-portal-service-list small { display: block; }
.mw-portal-service-list b { margin-bottom: 8px; color: #29465c; font-size: 17px; font-weight: 500; }
.mw-portal-service-list small { color: #71899a; font-size: 12px; line-height: 1.6; }

.mw-portal-customers { padding: 92px 0 100px; background: #fff; }
.mw-portal-faq { padding: 92px 0 96px; background: #fff; }
.mw-portal-faq-inner { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); align-items: start; gap: 80px; }
.mw-portal-faq .mw-portal-heading { max-width: none; margin: 0; text-align: left; }
.mw-portal-faq-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 32px 0 0; padding: 0; list-style: none; }
.mw-portal-faq-highlights li { padding: 16px 14px; border-top: 2px solid #2ea9f5; background: linear-gradient(145deg, #f7fbff, #edf5fb); }
.mw-portal-faq-highlights strong, .mw-portal-faq-highlights span { display: block; }
.mw-portal-faq-highlights strong { color: #0878cf; font-size: 22px; line-height: 1.2; }
.mw-portal-faq-highlights span { margin-top: 6px; color: #70869c; font-size: 11px; line-height: 1.5; }
.mw-portal-faq-list { padding: 4px 22px; border: 1px solid #dce6ef; background: #fbfdff; box-shadow: 0 18px 45px rgba(31,92,151,.08); }
.mw-portal-faq-list details { border-bottom: 1px solid #dce6ef; }
.mw-portal-faq-list summary { position: relative; padding: 21px 42px 21px 0; color: #243f59; cursor: pointer; font-size: 15px; font-weight: 500; list-style: none; }
.mw-portal-faq-list summary::-webkit-details-marker { display: none; }
.mw-portal-faq-list summary:after { content: "+"; position: absolute; top: 18px; right: 5px; color: #0076fe; font-size: 22px; font-weight: 300; }
.mw-portal-faq-list details[open] summary:after { content: "−"; }
.mw-portal-faq-list p { margin: -3px 0 22px; padding-right: 44px; color: #70869c; font-size: 13px; line-height: 1.9; }
.mw-portal-links { padding: 86px 0 92px; background: #f5f9fd; }
.mw-portal-links-inner { display: grid; grid-template-columns: minmax(240px, 330px) minmax(0,1fr); align-items: start; gap: 70px; }
.mw-portal-links .mw-portal-heading { max-width: none; margin: 0; text-align: left; }
.mw-portal-links-heading small { display: block; margin-top: 18px; color: #96a7b8; font-size: 11px; line-height: 1.7; }
.mw-portal-link-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-content: start; column-gap: 30px; }
.mw-portal-link-list a { display: block; min-width: 0; padding: 13px 0; color: #47647d; border-bottom: 1px solid #dce6ef; font-size: 13px; transition: color .2s ease, padding-left .2s ease; }
.mw-portal-link-list a:hover { color: #006adf; padding-left: 6px; }
.mw-portal-link-empty { color: #8ba0b4; font-size: 13px; }

@media (max-width: 980px) {
    .mw-portal-hero h1 { font-size: 44px; }
    .mw-portal-category a { padding: 20px 16px; }
    .mw-portal-showcase-copy { padding: 45px 38px; }
    .mw-portal-tab-nav button { height: 66px; padding: 0 8px; font-size: 11px; }
    .mw-portal-service-inner { display: block; }
    .mw-portal-service-copy { max-width: 720px; }
    .mw-portal-service-list { width: 100%; margin-top: 50px; }
}

@media (max-width: 720px) {
    .mw-portal-hero { min-height: auto; }
    .mw-portal-hero-inner { display: block; min-height: 0; padding: 54px 0 43px; }
    .mw-portal-hero-copy, .mw-portal-hero-product { width: 100%; }
    .mw-portal-hero-copy { padding: 0; }
    .mw-portal-kicker { font-size: 11px; }
    .mw-portal-hero h1 { font-size: 36px; }
    .mw-portal-hero-copy > p { margin: 18px 0 25px; font-size: 14px; }
    .mw-portal-actions { align-items: stretch; }
    .mw-portal-actions a { height: 44px; padding: 0 15px; font-size: 12px; }
    .mw-portal-trust { gap: 13px; margin-top: 26px; font-size: 10px; }
    .mw-portal-hero-product { min-height: 0; margin-top: 28px; overflow: visible; }
    .mw-portal-overview-image { width: auto; height: auto; max-width: 100%; max-height: none; }
    .mw-portal-window { top: 40px; right: 0; width: 100%; transform: none; }
    .mw-portal-window > img { height: 205px; }
    .mw-portal-overview-window > img { height: 230px; object-position: center; }
    .mw-portal-float-top { top: 10px; left: -3px; min-width: 158px; padding: 10px; }
    .mw-portal-float-top > i { width: 31px; height: 31px; font-size: 16px; }
    .mw-portal-float-bottom { display: none; }
    .mw-portal-float-bottom strong { font-size: 23px; }
    .mw-portal-category .index { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
    .mw-portal-category a { min-width: 0; min-height: 91px; padding: 15px; border-bottom: 1px solid #e8eef4; }
    .mw-portal-category a > span { min-width: 0; }
    .mw-portal-category a > i { font-size: 23px; }
    .mw-portal-category b { font-size: 14px; }
    .mw-portal-category small { font-size: 9px; }
    .mw-portal-section, .mw-portal-solutions, .mw-portal-service, .mw-portal-customers, .mw-portal-faq, .mw-portal-links { padding: 60px 0 66px; }
    .mw-portal-heading { width: 100%; min-width: 0; margin-bottom: 34px; padding: 0 4px; }
    .mw-portal-heading h2, .mw-portal-service h2 { font-size: 27px; }
    .mw-portal-heading h2, .mw-portal-heading p { overflow-wrap: anywhere; word-break: break-word; }
    .mw-portal-heading p { width: 100%; font-size: 13px; }
    .mw-portal-tab-nav { display: flex; overflow-x: auto; margin-right: -4%; margin-bottom: 15px; padding-right: 4%; border-right: 0; scrollbar-width: none; box-shadow: none; }
    .mw-portal-tab-nav::-webkit-scrollbar { display: none; }
    .mw-portal-tab-nav button { flex: 0 0 auto; width: auto; min-width: 132px; height: 58px; padding: 0 15px; border-bottom: 1px solid #e8eef5; font-size: 11px; }
    .mw-portal-tab-nav button:after { right: 16px; left: 16px; }
    .mw-portal-showcase, .mw-portal-showcase.reverse { display: flex; flex-direction: column; align-items: stretch; width: 100%; min-width: 0; min-height: 0; margin-bottom: 17px; }
    .mw-portal-product-panel.active { display: flex; }
    .mw-portal-showcase.reverse .mw-portal-showcase-copy, .mw-portal-showcase.reverse .mw-portal-showcase-media { order: initial; }
    .mw-portal-showcase-copy { width: 100%; min-width: 0; padding: 35px 24px; }
    .mw-portal-showcase h3 { font-size: 25px; }
    .mw-portal-showcase-media { padding: 25px 18px 34px; }
    .mw-portal-showcase-media img { max-height: 235px; }
    .mw-portal-media-placeholder { min-height: 220px; padding: 28px 18px; }
    .mw-portal-media-placeholder i { width: 58px; height: 58px; margin-bottom: 15px; font-size: 27px; }
    .mw-portal-media-placeholder strong { font-size: 16px; }
    .mw-portal-more-products { grid-template-columns: 1fr; margin-top: 35px; }
    .mw-portal-more-products a { min-height: 81px; }
    .mw-portal-solution-grid { grid-template-columns: 1fr; }
    .mw-portal-solution-grid a { min-height: 265px; }
    .mw-portal-service-inner { display: block; }
    .mw-portal-service-list { grid-template-columns: 1fr; width: 100%; margin-top: 35px; }
    .mw-portal-service-list > a { min-height: 88px; padding: 18px; }
    .mw-portal-faq-highlights { gap: 8px; }
    .mw-portal-faq-highlights li { padding: 12px 10px; }
    .mw-portal-faq-highlights strong { font-size: 18px; }
    .mw-portal-faq-inner, .mw-portal-links-inner { grid-template-columns: 1fr; gap: 32px; }
    .mw-portal-faq .mw-portal-heading, .mw-portal-links .mw-portal-heading { margin-bottom: 0; }
    .mw-portal-faq-list summary { padding-right: 34px; font-size: 14px; }
    .mw-portal-faq-list p { padding-right: 20px; }
    .mw-portal-link-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }
    .mw-portal-link-list a { min-width: 0; padding: 11px 0; font-size: 11px; }
    .mw-portal-link-list a span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* 服务支持、产品中心与价格页统一采用首页的直角信息布局 */
.help-page,
.help-page .l,
.help-page .r,
.help-nav-card,
.help-page .l .list h3 { border-radius: 0 !important; }
.help-page { width: min(1440px, calc(100% - 48px)); border-color: #dce7f0; box-shadow: 0 18px 46px rgba(26,64,105,.08); }
.help-page .l { border: 1px solid #dce7f0 !important; background: #fff; }
.help-page .l .list { padding: 12px 0; }
.help-nav-card { margin: 0 !important; padding: 18px 20px !important; border: 0 !important; border-bottom: 1px solid #e6edf3 !important; }
.help-nav-card:last-child { border-bottom: 0 !important; }
.help-page .l .list h3 { margin: 0 0 8px; padding: 0 12px 10px; color: #29465c; background: transparent; font-size: 15px; font-weight: 600; }
.help-page .l .list .li { display: grid; gap: 0; margin: 0; }
.help-page .l .list .li a { padding: 9px 12px; border: 0; border-left: 2px solid transparent; border-radius: 0; background: transparent; }
.help-page .l .list .li a:hover, .help-page .l .list .li a.active { color: #0076fe; border-left-color: #0076fe; background: #f2f8fd; }
.help-page .r ol li { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 50px; padding: 0 8px; border: 0; border-bottom: 1px solid #edf1f5; border-radius: 0; background: #fff; transition: padding .2s ease, background .2s ease, box-shadow .2s ease; }
.help-page .r ol li:hover { padding-left: 14px; background: #f8fbfe; box-shadow: inset 3px 0 0 #0076fe; }
.mw-pricing-page .pricing-workspace,
.mw-pricing-page .detail-panel,
.mw-pricing-page .detail-inner,
.mw-pricing-page .level-card,
.mw-pricing-page .cat-pill,
.mw-pricing-page .agent-tip-card { border-radius: 0 !important; }
.mw-pricing-page .detail-panel { overflow: hidden; }
.mw-pricing-page .cat-pill { box-shadow: none; }

@media (max-width: 720px) {
    .download-hero .index, .download-page, .help-page { width: calc(100% - 32px); }
    .solution-process { margin-top: 30px; padding-top: 48px; }
    .solution-process-heading h2 { font-size: 25px; }
    .solution-process-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .solution-process-list li { min-height: 125px; padding: 19px 16px; }
    .solution-process-list strong { margin-bottom: 15px; }
    .help-page .r ol li { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; padding-top: 7px; padding-bottom: 7px; }
}

@media (max-width: 720px) {
    #slide, #slide .swiper-wrapper { height: auto; }
    #slide .swiper-slide, #slide .swiper-slide.two { min-height: 700px; }
    #slide .index { height: auto; }
    #slide .l { padding: 0; }
    #slide h1 { font-size: 33px; }
    #slide ul { margin: 18px 0 22px; }
    #slide ul li { font-size: 12px; }
    .hero-actions { gap: 15px; }
    .hero-service-points { margin-top: 25px; }
    .hero-service-points span { padding: 0 9px; font-size: 10px; }
    .hero-service-points span:first-child { padding-left: 0; }
    #slide .r { margin-top: 26px; }
}

/* 最终覆盖：确保后续历史规则不会缩窄或恢复旧卡片样式 */
.mw-site-footer:before { background: linear-gradient(90deg, #55b7ff 0%, #0076fe 52%, #8bd0ff 100%) !important; }
.footer-nav h2:after { background: #38a5ff !important; }
.help-banner { min-height:300px; padding:66px 0 54px !important; background:#0b3155 url('/static/index/img/banner1.png') center/cover no-repeat !important; border-bottom:3px solid #2f9dff; }
.help-banner .index { width:min(1440px,calc(100% - 48px)); }
.help-banner .search-box,.help-banner .top-search,.help-quick-links > a { border-radius:0 !important; }
.help-banner .search-box { box-shadow:0 16px 34px rgba(0,20,55,.22); }
.help-quick-links { width:min(100%,840px); margin-top:30px; border-top:1px solid rgba(255,255,255,.2); }
.help-quick-links > a { border:0 !important; border-right:1px solid rgba(255,255,255,.16) !important; background:rgba(5,31,61,.35) !important; }
.help-quick-links > a:last-child { border-right:0 !important; }
.mw-pricing-page { background:#f3f8fc !important; }
.mw-pricing-page .pricing-top { max-width:none !important; }
.mw-pricing-page .pricing-hero h1 { color:#fff !important; }
.mw-pricing-page .pricing-hero p { color:rgba(255,255,255,.78) !important; }
.mw-pricing-page .pricing-workspace,.mw-pricing-page .detail-inner,.mw-pricing-page .level-card,.mw-pricing-page .cat-pill,.mw-pricing-page button,.mw-pricing-page input { border-radius:0 !important; }
.mw-pricing-page .btn-buy { border-radius: var(--mw-radius) !important; }
.mw-query-page { background:#f3f8fc; }
.mw-query-wrap { max-width:1440px !important; }
.mw-query-card,.mw-query-head,.mw-query-form .form-control,.captcha-img,.mw-btn,.mw-result,.mw-agent-item,.mw-agent-suggest,.mw-agent-suggest-item { border-radius:0 !important; }
.mw-query-card { box-shadow:0 18px 46px rgba(26,64,105,.1) !important; }
.mw-btn { background:#0076fe !important; box-shadow:none !important; }
.manual-banner,.update-banner { border-bottom:3px solid #2f9dff; }
.manual-banner .index,.update-banner .index { width:min(1440px,calc(100% - 48px)); }
.manual-page { margin:48px auto 86px !important; }
@media (max-width:720px) {
  .help-banner { padding:52px 0 42px !important; }
  .help-quick-links { display:grid; grid-template-columns:1fr; }
  .help-quick-links > a { border-right:0 !important; border-bottom:1px solid rgba(255,255,255,.16) !important; }
}

.update-page { display: grid; grid-template-columns: 306px minmax(0,1fr); align-items: start; gap: 28px; width: min(1440px,calc(100% - 48px)) !important; margin: 48px auto 96px !important; }
.update-page .l { position: sticky; top: 94px; overflow: hidden; height: auto; max-height: calc(100vh - 120px); border: 1px solid #dce7f0 !important; background: #fff; box-shadow: 0 16px 40px rgba(26,64,105,.08); }
.update-page .mw-update-select { display: none; }
.update-page .l .list { overflow-y: auto; max-height: calc(100vh - 123px); padding: 12px; }
.update-page .l .item,.update-page .l .item.active { position: relative; margin: 0; padding: 0 !important; border: 0; border-bottom: 1px solid #edf2f6; background: transparent !important; }
.update-page .l .item:last-child { border-bottom: 0; }
.update-page .l .item a { display: flex; align-items: center; min-height: 54px; padding: 9px 12px; color: #61768b; font-size: 14px; }
.update-page .l .item a img { flex: 0 0 34px; width: 34px; height: 34px; margin-right: 12px; object-fit: contain; }
.update-page .l .item:hover a { color: #0076fe; background: #f5f9fd; }
.update-page .l .item.active a { padding-left: 15px; color: #0076fe; background: #edf6ff; font-weight: 600; box-shadow: inset 3px 0 0 #0076fe; }
.update-page .r { position: relative; float: none !important; width: auto !important; padding-left: 24px; }
.update-page .r:before { content: ""; position: absolute; top: 0; bottom: 0; left: 4px; width: 1px; background: #cfe0ee; }
.update-page .r .item { position: relative; overflow: visible; margin: 0 0 22px; border: 1px solid #dce7f0 !important; border-radius: 0 !important; background: #fff; box-shadow: 0 12px 34px rgba(26,64,105,.07) !important; }
.update-page .r .item:before { content: ""; position: absolute; top: 30px; left: -27px; width: 9px; height: 9px; border: 3px solid #f2f7fc; background: #0076fe; box-shadow: 0 0 0 1px #90c5ef; }
.update-page .r .item h2 { display: grid; grid-template-columns: 24px minmax(0,1fr) auto auto; align-items: center; gap: 10px; min-height: 72px; margin: 0; padding: 16px 22px; border-bottom: 1px solid #e4edf4; line-height: 1.35; }
.update-page .r .item h2 > i { margin: 0; color: #0076fe; font-size: 18px; }
.update-page .r .item h2 > strong { min-width: 0; overflow: hidden; color: #1b3853; font-size: 18px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.update-page .r .item h2 > small { padding: 5px 9px; color: #0076fe; background: #edf6ff; font-size: 11px; font-weight: 600; white-space: nowrap; }
.update-page .r .item h2 > span { float: none; color: #8a9bad; font-size: 12px; white-space: nowrap; }
.update-page .r .item .content { padding: 24px 28px 28px; color: #5f7488; font-size: 14px; line-height: 1.9; }
.update-page .r .item .content p:last-child { margin-bottom: 0; }
.update-page .r .item .content ul,.update-page .r .item .content ol { padding-left: 20px; }
.update-page .r .item .content li { margin: 7px 0; }
@media (max-width: 900px) {
    .update-page { grid-template-columns: 250px minmax(0,1fr); gap: 20px; }
    .update-page .r .item h2 { grid-template-columns: 22px minmax(0,1fr) auto; }
    .update-page .r .item h2 > span { grid-column: 2 / -1; }
}

@media (max-width: 720px) {
    .update-banner { min-height: 250px; padding: 54px 0 48px !important; }
    .update-banner h2 span { display: block; margin: 10px 0 0; }
    .update-banner p { font-size: 13px; }
    .update-page { display: block; width: calc(100% - 32px) !important; margin: 30px auto 64px !important; }
    .update-page .l { position: static; max-height: none; margin-bottom: 24px; box-shadow: none; }
    .update-page .mw-update-select { display: block; width: 100%; height: 46px; padding: 0 12px; border: 0; border-bottom: 1px solid #dce7f0; border-radius: 0; background: #fff; color: #29465c; }
    .update-page .l .list { display: none; }
    .update-page .r { padding-left: 14px; }
    .update-page .r:before { left: 0; }
    .update-page .r .item:before { left: -18px; }
    .update-page .r .item h2 { grid-template-columns: 20px minmax(0,1fr); gap: 8px; padding: 16px; }
    .update-page .r .item h2 > small,.update-page .r .item h2 > span { grid-column: 2; justify-self: start; }
    .update-page .r .item .content { padding: 20px; }
}

/* Remove decorative English eyebrow labels; Chinese headings carry the meaning. */
.eyebrow,.help-kicker,.pricing-kicker,.mw-portal-heading > span,.mw-portal-service-copy > span,.mw-portal-links-heading > span,.solution-process-heading > span,.solutions-page-hero .index > span,.about-hero .index > span,.download-hero .index > span { display:none !important; }
.pricing-hero:before { content:none !important; display:none !important; }
.mw-pricing-page > .container,.download-page,.help-page,.update-page,.manual-page,
.solutions-page-hero .index,.about-hero .index,.solutions-page-list .index,
.solutions-page-list > .index,.mw-query-page .container,.mw-query-page > .container,
.about-intro-grid,.about-page-modern,.policy-inner {
    width:min(1440px,calc(100% - 48px)) !important;
    max-width:none !important;
    margin-left:auto;
    margin-right:auto;
}

/* Page-specific light technology backgrounds. */
.help-banner {
    background: radial-gradient(circle at 82% 18%, rgba(91,168,255,.28), transparent 30%), linear-gradient(118deg,#0076fe 0%,#0059d0 58%,#062b78 100%) !important;
}
.help-banner:before { opacity: .32 !important; background-image: linear-gradient(rgba(255,255,255,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px) !important; background-size: 46px 46px !important; }
.solutions-page-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 8%, rgba(112,183,255,.28), transparent 30%), linear-gradient(135deg,#0076fe 0%,#0056c7 54%,#071f62 100%) !important;
}
.solutions-page-hero:after { content: ""; position: absolute; top: -170px; right: 8%; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.24); transform: rotate(38deg); box-shadow: 0 0 0 24px rgba(255,255,255,.04),0 0 0 48px rgba(255,255,255,.025); }
.about-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 78% 24%, rgba(91,168,255,.3), transparent 28%), linear-gradient(125deg,#0076fe 0%,#005bd1 58%,#0a337f 100%) !important;
}
.about-hero:after { content: ""; position: absolute; top: -210px; right: -120px; width: 620px; height: 620px; pointer-events: none; border: 1px solid rgba(151,205,255,.25); border-radius: 50%; box-shadow: 0 0 0 28px rgba(151,205,255,.055),0 0 0 58px rgba(151,205,255,.035),0 0 0 88px rgba(151,205,255,.02); background: radial-gradient(circle at 50% 50%,transparent 0 46%,rgba(177,220,255,.12) 46.2% 46.5%,transparent 46.8% 63%,rgba(177,220,255,.09) 63.2% 63.5%,transparent 63.8%); opacity: .9; }
.manual-banner {
    position: relative;
    overflow: hidden;
}
@media (max-width:720px) {
    .mw-pricing-page > .container,.download-page,.help-page,.update-page,.manual-page,
    .solutions-page-hero .index,.about-hero .index,.solutions-page-list .index,
    .mw-query-page .container,.about-intro-grid,.about-page-modern,.policy-inner { width:calc(100% - 32px) !important; }
}

/* 关于页与公共详情头部沿用主题蓝的深色渐变，保持各页视觉一致。 */
.about-hero {
    position: relative;
    overflow: hidden;
}
.detail-header { background: radial-gradient(circle at 82% 10%,rgba(74,157,255,.24),transparent 32%),linear-gradient(115deg,#0076fe 0%,#0055c5 58%,#062d70 100%) !important; }

/* 更新日志分类导航与产品分组 */
.update-page .update-side-group { margin-top: 16px; padding-top: 14px; border-top: 1px solid #e3edf7; }
.update-page .update-side-group.is-hidden { display: none; }
.update-page .update-side-group h3 { margin: 0 12px 5px; color: #7893ad; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.update-page .update-side-group .item { border-bottom: 0; }
.update-category-nav { display: flex; align-items: center; gap: 8px; margin: 0 0 20px; padding: 6px; border: 1px solid #cfe1f3; background: #f4f9ff; overflow-x: auto; }
.update-category-nav button { flex: 0 0 auto; min-height: 38px; padding: 0 17px; border: 0; color: #607b97; background: transparent; font-size: 13px; cursor: pointer; transition: color .2s ease,background .2s ease,box-shadow .2s ease; }
.update-category-nav button:hover { color: #005ecb; background: #e7f3ff; }
.update-category-nav button.active { color: #fff; background: #0076fe; box-shadow: 0 6px 14px rgba(0,118,254,.2); }
.update-page .r .item[hidden] { display: none !important; }
.update-page .r .item h2 { grid-template-columns: 24px minmax(0,1fr) auto auto auto; }
.update-page .r .item h2 .update-category-badge { padding: 5px 9px; color: #1266bd; background: #e7f3ff; font-size: 11px; white-space: nowrap; }
.update-top { position: relative; z-index: 3; width: min(980px,calc(100% - 48px)) !important; margin: -34px auto 0 !important; }
.update-top .update-category-nav { justify-content: center; margin: 0; padding: 7px; border: 1px solid #c9dff5; border-radius: 10px; box-shadow: 0 16px 34px rgba(0,59,137,.16); }
.update-top .update-category-nav button { min-height: 40px; padding: 0 23px; border-radius: 6px; font-weight: 600; }
.update-top .update-category-nav button.active { background: linear-gradient(135deg,#0076fe,#0058cd); }
.update-page { margin-top: 42px !important; }
.mw-pricing-page .soft-list-scroll { flex: initial; overflow: visible; padding: 12px 10px 18px; }
.mw-pricing-page .soft-card .soft-link { min-height: 54px; border-left-width: 2px; border-radius: 0 !important; }
@media (max-width: 720px) {
    .update-banner { min-height: 270px; padding: 58px 0 72px !important; }
    .update-top { width: calc(100% - 32px) !important; margin-top: -28px !important; }
    .update-top .update-category-nav { justify-content: flex-start; overflow-x: auto; }
    .update-top .update-category-nav button { padding: 0 15px; }
    .update-page { margin-top: 30px !important; }
}
@media (max-width: 900px) {
    .update-page .r .item h2 { grid-template-columns: 22px minmax(0,1fr) auto auto; }
    .update-page .r .item h2 .update-category-badge { grid-column: 2; justify-self: start; }
}
@media (max-width: 720px) {
    .update-category-nav { margin-bottom: 16px; }
    .update-category-nav button { padding: 0 13px; }
    .update-page .r .item h2 { grid-template-columns: 20px minmax(0,1fr); }
    .update-page .r .item h2 .update-category-badge { grid-column: 2; }
}

/* 帮助中心沿用关于页的吸顶侧栏结构 */
.help-page { align-items: start; overflow: visible !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
.help-page .l {
    position: sticky !important;
    top: 72px !important;
    align-self: start;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    background: #f7faff !important;
}
.help-page .l::-webkit-scrollbar { width: 4px; }
.help-page .l::-webkit-scrollbar-thumb { background: #c9dced; }
.help-page .l .list { padding: 0 0 12px; }
.help-page .help-nav-card { padding: 0 0 12px !important; }
.help-page .help-nav-card h3 { margin: 0; padding: 20px 20px 9px !important; color: #1a2b40; font-size: 15px; font-weight: 600; }
.help-page .help-nav-card .li { gap: 0; }
.help-page .help-nav-card .li a { display: flex; align-items: center; min-height: 42px; padding: 10px 20px !important; border-left: 2px solid transparent !important; color: #66788d; background: transparent; }
.help-page .help-nav-card .li a:hover,
.help-page .help-nav-card .li a.active { border-left-color: #0076fe !important; color: #0076fe; background: #fff; }
@media (max-width: 720px) {
    .help-page .l { position: static !important; top: auto !important; max-height: none; overflow: visible; }
}

/* 操作手册分类与内容卡片 */
.manual-page { margin-top: 44px !important; }
.manual-category-nav { display: flex; justify-content: center; gap: 6px; margin: 0 auto 38px; padding: 7px; border: 1px solid #c9dff5; border-radius: 10px; background: #f7fbff; box-shadow: 0 12px 28px rgba(0,71,160,.08); }
.manual-category-nav button { min-height: 40px; padding: 0 22px; border: 0; border-radius: 6px; color: #66819d; background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; }
.manual-category-nav button:hover { color: #005ecb; background: #e7f3ff; }
.manual-category-nav button.active { color: #fff; background: linear-gradient(135deg,#0076fe,#0058cd); box-shadow: 0 7px 16px rgba(0,118,254,.2); }
.manual-category[hidden] { display: none !important; }
.manual-category { margin-bottom: 42px; }
.manual-category > header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #cfe2f5; }
.manual-category > header h2 { margin: 0; color: #163f6c; font-size: 24px; font-weight: 600; }
.manual-category > header span { color: #7893ad; font-size: 12px; }
.manual-page .manual-category .list { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
@media (max-width: 720px) {
    .manual-banner { min-height: 270px; padding: 58px 0 72px !important; }
    .manual-page { margin-top: 30px !important; }
    .manual-category-nav { justify-content: flex-start; overflow-x: auto; margin-bottom: 28px; }
    .manual-category-nav button { flex: 0 0 auto; padding: 0 15px; }
    .manual-category > header h2 { font-size: 21px; }
    .manual-page .manual-category .list { grid-template-columns: 1fr; gap: 12px; }
}

/* 最终视觉整理：更新日志分组、解决方案图片承载与品牌矩阵 */
.update-page .update-side-group { margin-top: 0; padding-top: 12px; }
.update-page .update-side-group:first-of-type { padding-top: 0; border-top: 0; }

.solution-large-art {
    position: relative;
    padding: 18px;
    background: transparent !important;
    border-left: 0;
}
.solution-large-art:before {
    display: none;
}
.solution-large-art img { position: relative; z-index: 1; width: 100%; height: auto; max-width: 100%; max-height: 100%; box-shadow: 0 16px 34px rgba(0,55,125,.16); }

.soft-list-panel { position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #dce8f3 !important; border-radius: var(--mw-radius) !important; background: #f7fbff !important; box-shadow: 0 18px 38px rgba(0,71,160,.09) !important; }
.soft-list-panel-head { display: flex; align-items: baseline; justify-content: space-between; padding: 22px 20px 15px; border-bottom: 1px solid #dce8f3; background: #fff; }
.soft-list-panel-head strong { color: #1b3853; font-size: 18px; font-weight: 600; }
.soft-list-panel-head span { color: #8aa0b5; font-size: 11px; }
.mw-pricing-page .soft-list-scroll { padding: 10px 9px 18px; }
.mw-pricing-page .soft-card { padding: 0 7px; }
.mw-pricing-page .soft-card .soft-link { min-height: 56px; padding: 11px 13px; border-left: 0; border-bottom: 1px solid transparent; background: transparent; }
.mw-pricing-page .soft-card .soft-link:hover { background: #edf6ff; }
.mw-pricing-page .soft-card.selected .soft-link { color: #0076fe; background: #eaf4ff; box-shadow: inset 3px 0 0 #0076fe; }
.mw-pricing-page .soft-card.selected .soft-name { color: #0076fe; font-weight: 600; }
.pricing-service-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.pricing-service-grid > div > a { margin-top: auto; padding-top: 16px; }
@media (max-width: 720px) {
    .solution-large-art { padding: 12px; border-left: 0; border-top: 0; }
    .soft-list-panel-head { padding: 16px 17px 12px; }
}

/* 各内容页首屏统一中文层级 */
.download-hero h1,
.solutions-page-hero h1,
.about-hero h1,
.pricing-hero h1,
.mw-query-head h1,
.help-banner h1 { font-size: clamp(32px,3.8vw,44px) !important; font-weight: 500 !important; line-height: 1.3; letter-spacing: 0; }
.help-banner h1 { margin: 0 0 10px; color: #fff; }
.download-hero p,
.solutions-page-hero p,
.about-hero p,
.pricing-hero p,
.mw-query-head p,
.manual-banner p,
.update-banner p { font-size: 14px; line-height: 1.85; }
.help-banner .help-intro { max-width: 680px; margin: 0 auto 22px; color: rgba(255,255,255,.84); font-size: 14px; line-height: 1.85; }
.download-hero .index,
.solutions-page-hero .index,
.help-banner .index,
.pricing-hero-inner,
.about-hero .index,
.manual-banner .index,
.update-banner .index { position: relative; z-index: 1; }
@media (max-width: 720px) {
    .download-hero h1,
    .solutions-page-hero h1,
    .about-hero h1,
    .pricing-hero h1,
    .mw-query-head h1,
    .help-banner h1 { font-size: 27px !important; font-weight: 500 !important; }
    .download-hero p,
    .solutions-page-hero p,
    .about-hero p,
    .pricing-hero p,
    .mw-query-head p,
    .manual-banner p,
    .update-banner p,
    .help-banner .help-intro { font-size: 13px; }
}

/* 更新日志首屏与解决方案首屏统一布局语言 */
.update-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 0;
    padding: 84px 0 80px;
    color: #fff;
    text-align: center;
    border-bottom: 0;
}
.update-banner .index { position: relative; z-index: 1; width: min(100% - 48px, 1180px); text-align: center; }
.update-banner h1 { margin: 0 0 10px; color: #fff; font-size: clamp(32px,3.8vw,44px); font-weight: 500; line-height: 1.3; }
.update-banner p { max-width: 680px; margin: 0 auto; color: rgba(255,255,255,.84); font-size: 14px; line-height: 1.85; }
@media (max-width: 720px) {
    .update-banner { padding: 58px 0 54px; }
    .update-banner .index { width: calc(100% - 32px); }
    .update-banner h1 { font-size: 27px; }
}

/* 操作手册首屏与解决方案、更新日志保持同一结构 */
.manual-banner {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 84px 0 80px;
    color: #fff;
    text-align: center;
    border-bottom: 0;
}
.manual-banner .index { position: relative; z-index: 1; width: min(100% - 48px, 1180px); text-align: center; }
.manual-banner h1 { margin: 0 0 10px; color: #fff; font-size: clamp(32px,3.8vw,44px); font-weight: 500; line-height: 1.3; }
.manual-banner p { max-width: 680px; margin: 0 auto; color: rgba(255,255,255,.84); font-size: 14px; line-height: 1.85; }
@media (max-width: 720px) {
    .manual-banner { padding: 58px 0 54px; }
    .manual-banner .index { width: calc(100% - 32px); }
    .manual-banner h1 { font-size: 27px; }
}

/* 产品卡片标签固定在右上角，标题区保持干净 */
.download-page .download-item-content { position: relative; padding-top: 35px; }
.download-page .download-item-content > .download-tags { position: absolute; top: 10px; right: 20px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; max-width: calc(100% - 40px); margin: 0; }
.download-page .download-item-content > .download-tags span { white-space: nowrap; }
.download-page .download-item-content > .download-tags .pricing-member { color: #6b54a3; background: #f2edff; }
.download-page .download-card-heading .download-tags { display: none; }
@media (max-width: 720px) {
    .download-page .download-item-content { padding-top: 35px; }
    .download-page .download-item-content > .download-tags { top: 10px; right: 16px; max-width: calc(100% - 32px); }
}

/* 品牌墙三行规则排布：上 7、中 8、下 7，取消外壳装饰 */
.mw-portal-brand-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: min(1260px, 100%);
    max-width: none;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.mw-portal-brand-row { display: grid; align-items: center; width: 100%; min-height: 112px; gap: 0; }
.mw-portal-brand-row.row-7 { grid-template-columns: repeat(7, minmax(0,1fr)); }
.mw-portal-brand-row.row-8 { grid-template-columns: repeat(8, minmax(0,1fr)); }
.mw-portal-brand-row img {
    display: block;
    align-self: center;
    justify-self: center;
    grid-column: auto;
    width: auto;
    height: 120px;
    max-width: 92%;
    padding: 7px 10px;
    object-fit: contain;
    transform: none;
    filter: grayscale(.1) saturate(.96);
    opacity: .88;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.mw-portal-brand-row img:hover { filter: grayscale(0) saturate(1.08); opacity: 1; transform: translateY(-3px) scale(1.05); }
@media (max-width: 720px) {
    .mw-portal-brand-row { min-height: 82px; }
    .mw-portal-brand-row img { height: 100px; max-width: 96%; padding: 4px; }
}

/* 手册卡片最终覆盖：沿用产品中心卡片结构，去除卡片边框与顶部边框 */
.manual-page .manual-category .list .item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    border: 0;
    border-top: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transform: none;
    transition: background-color .2s ease;
}
.manual-page .manual-category .list .item:hover {
    border: 0;
    border-top: 0;
    background: #f7fbff;
    box-shadow: none;
    transform: none;
}
.manual-page .manual-category .list .item > a {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.manual-page .manual-category .list .item .icon-box {
    display: flex;
    flex: 0 0 146px;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 146px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #f5f9fe;
}
.manual-page .manual-category .list .item .icon-box > img {
    width: 100%;
    height: 100%;
    max-width: 108px;
    max-height: 108px;
    margin: 0;
    object-fit: contain;
}
.manual-page .manual-category .list .item .nr-box {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: 19px 20px 17px;
}
.manual-page .manual-category .list .item .nr-box h2 {
    margin: 0;
    color: #26384c;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}
.manual-page .manual-category .list .item .nr-box p {
    display: -webkit-box;
    flex: 1;
    overflow: hidden;
    margin: 9px 0 15px;
    color: #8793a2;
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.manual-page .manual-category .list .item .manual-open-label {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid #edf1f5;
    color: #0076fe;
    font-size: 12px;
    line-height: 1.4;
}
.manual-page .manual-category .list .item .manual-open-label i { font-size: 12px; }
@media (max-width: 720px) {
    .manual-page .manual-category .list .item .icon-box { flex-basis: 138px; height: 138px; }
    .manual-page .manual-category .list .item .nr-box { padding: 18px 16px 16px; }
}

/* 服务列表标题与帮助详情 */
.help-page .r .sort {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    margin: 0 0 8px;
    padding: 0 0 18px;
    border: 0;
    color: #1b3853;
    font-size: clamp(22px,2vw,27px);
    font-weight: 500;
    line-height: 1.35;
}
.help-page .r .sort:before {
    content: "";
    flex: 0 0 4px;
    width: 4px;
    height: 29px;
    background: linear-gradient(180deg,#55b7ff,#0076fe);
    box-shadow: 8px 0 0 rgba(0,118,254,.1);
}
.help-page .r .sort:after {
    content: "";
    order: 1;
    flex: 1 1 auto;
    height: 1px;
    margin-left: 10px;
    background: linear-gradient(90deg,#c8dff3,rgba(200,223,243,0));
}
.help-page .r .sort .help-ask-link {
    order: 2;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #bfd9f0;
    border-radius: 6px;
    color: #0076fe;
    background: #f5faff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}
.help-page .r .sort .help-ask-link:hover { color: #fff; border-color: #0076fe; background: #0076fe; }

.help-detail-page {
    display: grid;
    grid-template-columns: minmax(0,1fr) 320px;
    align-items: start;
    gap: 28px;
    width: min(1440px,calc(100% - 48px));
    margin: 42px auto 86px;
    padding: 0;
    background: transparent;
}
.help-detail-toolbar {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 2px 14px;
    border-bottom: 1px solid #dce7f0;
}
.help-detail-toolbar a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    color: #0067dc;
    border: 1px solid #b9d8f5;
    background: #f5faff;
    font-size: 13px;
    font-weight: 500;
}
.help-detail-toolbar a:hover { color: #fff; border-color: #0076fe; background: #0076fe; }
.help-detail-toolbar span { color: #7890a8; font-size: 13px; }
.help-detail-page .page-l,
.help-detail-page .page-r {
    float: none;
    width: auto;
    min-width: 0;
}
.help-detail-page .page-l {
    padding: 42px 46px;
    border-radius: 0 !important;
    background: #fff;
    box-shadow: 0 16px 42px rgba(26,64,105,.08);
}
.help-detail-page .page-l > h1 { color: #1b3853; font-size: clamp(25px,2.4vw,34px); font-weight: 500; line-height: 1.45; }
.help-detail-page .page-l-f { margin: 17px 0 26px; padding-bottom: 17px; border-bottom: 1px solid #e6eef5; }
.help-detail-page .page-l-f span { border-radius: 0; }
.help-detail-page .page-l .content { color: #526b82; font-size: 15px; line-height: 1.95; }
.help-detail-page .page-r { display: grid; gap: 18px; }
.help-detail-page .page-r-box {
    margin: 0;
    padding: 25px 26px;
    border: 1px solid #dce7f0;
    border-radius: 0 !important;
    background: #fff;
}
.help-detail-page .page-r-box h2 { display: flex; align-items: center; margin: 0 0 17px; padding-bottom: 13px; border-bottom: 1px solid #e5edf4; color: #29465f; font-size: 17px; font-weight: 500; }
.help-detail-page .page-r-box h2 span { top: auto; width: 3px; height: 20px; margin-right: 10px; background: #0076fe; }
.help-detail-page .page-r-box ul { margin: 0; }
.help-detail-page .page-r-box ul li { line-height: 1.65; white-space: normal; }
.help-detail-page .page-r-box ul li + li { margin-top: 10px; }
.help-detail-page .page-r-box ul li a { display: block; overflow: hidden; color: #526b82; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.help-detail-page .page-r-box ul li a:hover { color: #0076fe; }
.help-detail-page .page-r-box .page-r-bq li { display: inline-block; margin: 0 6px 7px 0; }
.help-detail-page .page-r-box .page-r-bq li a { padding: 5px 9px; border: 1px solid #dce7f0; background: #f8fbfe; white-space: normal; }

@media (max-width: 900px) {
    .help-detail-page { grid-template-columns: minmax(0,1fr) 270px; gap: 20px; }
    .help-detail-page .page-l { padding: 34px 30px; }
}
@media (max-width: 720px) {
    .help-page .r .sort { min-height: 48px; padding-bottom: 14px; font-size: 22px; }
    .help-detail-page { grid-template-columns: 1fr; gap: 18px; width: calc(100% - 32px); margin: 28px auto 60px; }
    .help-detail-toolbar { display: flex; grid-column: 1; }
    .help-detail-toolbar span { display: none; }
    .help-detail-page .page-l { padding: 28px 20px; }
    .help-detail-page .page-l > h1 { font-size: 24px; }
    .help-detail-page .page-r { grid-template-columns: 1fr; }
}

/* 关于我们与服务支持侧栏 */
.about-page-modern {
    grid-template-columns: 300px minmax(0,1fr);
    gap: 64px;
}
.help-page {
    grid-template-columns: 300px minmax(0,1fr);
    gap: 64px !important;
}
.about-side,
.help-page .l {
    position: sticky;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.about-side:after,
.help-page .l:after {
    content: none;
}
.about-side-title,
.help-side-title {
    margin: 0 0 24px;
    padding: 8px 18px 13px;
    border: 0;
    color: #12395b;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
}
.about-side a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    margin: 3px 0;
    padding: 12px 18px;
    border: 0;
    border-radius: 0;
    color: #62798e;
    background: transparent;
    font-size: 15px;
    font-weight: 400;
    transition: color .22s ease,background .22s ease,padding-left .22s ease;
}
.about-side a:before { content: none; }
.about-side a:after { content: none; }
.about-side a i { display: none; }
.about-side a:hover {
    padding-left: 24px;
    color: #0068db;
    background: linear-gradient(90deg,rgba(0,118,254,.075),rgba(0,118,254,0));
}
.about-side a.active {
    padding-left: 24px;
    color: #0068db;
    background: linear-gradient(90deg,rgba(0,118,254,.12) 0%,rgba(0,118,254,.035) 68%,rgba(0,118,254,0) 100%);
    font-weight: 600;
    box-shadow: none;
}

.help-page .l .list { padding: 0; }
.help-page .l .help-nav-card {
    margin: 0 !important;
    padding: 0 0 30px !important;
    border: 0 !important;
    background: transparent;
}
.help-page .l .help-nav-card:last-child { padding-bottom: 0 !important; }
.help-page .l .help-nav-card h3 {
    margin: 0;
    padding: 0 18px 11px !important;
    border: 0 !important;
    color: #355874;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
}
.help-page .l .help-nav-card h3:before { content: none; }
.help-page .l .help-nav-card .li { display: grid; gap: 3px; margin: 0; padding: 0; }
.help-page .l .help-nav-card .li a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 11px 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #657c91;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    transition: color .22s ease,background .22s ease,padding-left .22s ease;
}
.help-page .l .help-nav-card .li a:before { content: none; }
.help-page .l .help-nav-card .li a:after { content: none; }
.help-page .l .help-nav-card .li a:hover {
    padding-left: 24px !important;
    color: #0068db;
    background: linear-gradient(90deg,rgba(0,118,254,.075),rgba(0,118,254,0));
}
.help-page .l .help-nav-card .li a.active {
    padding-left: 24px !important;
    color: #0068db;
    background: linear-gradient(90deg,rgba(0,118,254,.12) 0%,rgba(0,118,254,.035) 68%,rgba(0,118,254,0) 100%);
    font-weight: 600;
    box-shadow: none;
}
.about-side::-webkit-scrollbar,
.help-page .l::-webkit-scrollbar { width: 4px; }
.about-side::-webkit-scrollbar-thumb,
.help-page .l::-webkit-scrollbar-thumb { background: #c1d1df; }

@media (max-width: 720px) {
    .about-page-modern { grid-template-columns: 1fr; gap: 34px; }
    .help-page { grid-template-columns: 1fr; gap: 34px !important; }
    .about-side { position: static; top: auto; max-height: none; overflow: visible; }
    .about-side,
    .help-page .l { box-shadow: none !important; }
    .about-side-title,
    .help-side-title { margin-bottom: 14px; padding: 0 12px 9px; font-size: 21px; }
    .about-side a { min-height: 50px; margin: 2px 0; padding: 10px 12px; font-size: 14px; }
    .about-side a:hover,
    .about-side a.active { padding-left: 17px; }
    .help-page .l .list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); padding: 12px 0 16px; }
    .help-page .l .help-nav-card { padding-bottom: 12px !important; }
    .help-page .l .help-nav-card h3 { padding: 0 12px 8px !important; font-size: 15px; }
    .help-page .l .help-nav-card .li a { min-height: 46px; padding: 10px 12px !important; font-size: 13px; }
    .help-page .l .help-nav-card .li a:hover,
    .help-page .l .help-nav-card .li a.active { padding-left: 17px !important; }
}

/* 产品中心与关于我们交换首屏背景，保留各自内容布局。 */
.download-hero {
    background: linear-gradient(116deg,#0076fe 0%,#075fcf 48%,#062b70 100%);
}
.download-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image: repeating-linear-gradient(118deg,transparent 0 76px,rgba(201,235,255,.3) 77px 78px,transparent 79px 152px),linear-gradient(90deg,transparent 0 68%,rgba(201,235,255,.2) 68.2% 68.4%,transparent 68.6%);
}
.download-hero:after {
    content: "";
    position: absolute;
    top: 26px;
    right: auto;
    bottom: auto;
    left: 7%;
    width: 330px;
    height: 174px;
    border: 1px solid rgba(177,224,255,.28);
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    transform: skewX(-24deg);
    box-shadow: 24px 24px 0 -23px rgba(177,224,255,.2),48px 48px 0 -47px rgba(177,224,255,.12);
    pointer-events: none;
}
.download-hero .index { position: relative; z-index: 1; }

.update-banner {
    background: linear-gradient(125deg,#0076fe 0%,#0058c8 54%,#03235f 100%) !important;
}
.update-banner:before {
    z-index: 0;
    opacity: .2;
    background-image: repeating-linear-gradient(90deg,transparent 0 82px,rgba(191,228,255,.2) 83px 84px,transparent 85px 164px),linear-gradient(135deg,transparent 0 47%,rgba(191,228,255,.16) 47.2% 47.6%,transparent 47.8% 52%,rgba(191,228,255,.1) 52.2% 52.6%,transparent 52.8% 100%);
    background-size: auto,100% 100%;
}
.update-banner:after {
    top: 50%;
    right: 7%;
    bottom: auto;
    width: 470px;
    height: 88px;
    border: 1px solid rgba(169,219,255,.28);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    transform: translateY(-50%) skewX(-28deg);
    box-shadow: 0 -24px 0 -23px rgba(169,219,255,.2),0 24px 0 -23px rgba(169,219,255,.14);
}

.manual-banner {
    background: linear-gradient(120deg,#0076fe 0%,#174fc0 54%,#071e5e 100%) !important;
}
.manual-banner:before {
    opacity: .2;
    background-image: repeating-linear-gradient(0deg,transparent 0 34px,rgba(190,228,255,.2) 35px 36px,transparent 37px 70px),linear-gradient(90deg,transparent 0 72%,rgba(190,228,255,.14) 72.2% 72.6%,transparent 72.8% 100%);
    background-size: auto,100% 100%;
}
.manual-banner:after {
    top: 24%;
    right: 8%;
    bottom: auto;
    width: 320px;
    height: 148px;
    border: 0;
    border-radius: 0;
    transform: skewX(-18deg);
    background: linear-gradient(135deg,transparent 0 42%,rgba(188,226,255,.24) 42.3% 43%,transparent 43.3% 51%,rgba(188,226,255,.15) 51.3% 52%,transparent 52.3% 100%);
    box-shadow: 22px 22px 0 -21px rgba(188,226,255,.18),44px 44px 0 -43px rgba(188,226,255,.1);
}
@media (max-width: 720px) {
    .download-hero:after { left: -110px; top: 20px; width: 260px; height: 140px; }
    .update-banner:after { right: -150px; width: 360px; height: 72px; }
    .manual-banner:after { right: -110px; width: 260px; height: 120px; }
}

.mw-portal-brand-list .mw-portal-brand-row {
    min-height: 138px;
}
@media (max-width: 720px) {
    .mw-portal-brand-list .mw-portal-brand-row {
        min-height: 112px;
    }
}

/* 手册卡片增加轻量边界与明确的交互状态，查看入口靠右对齐 */
.manual-page .manual-category .list .item {
    box-shadow: 0 0 0 1px rgba(136,177,211,.28), 0 12px 28px rgba(26,82,130,.07);
}
.manual-page .manual-category .list .item:hover,
.manual-page .manual-category .list .item:focus-within,
.manual-page .manual-category .list .item.is-active {
    background: #f3f9ff;
    box-shadow: 0 0 0 1px rgba(0,118,254,.5), 0 16px 34px rgba(0,93,184,.15);
}
.manual-page .manual-category .list .item:active {
    background: #eaf4ff;
}
.manual-page .manual-category .list .item:hover .icon-box,
.manual-page .manual-category .list .item:focus-within .icon-box,
.manual-page .manual-category .list .item.is-active .icon-box {
    background: #eaf4ff;
}
.manual-page .manual-category .list .item:hover .nr-box h2,
.manual-page .manual-category .list .item:focus-within .nr-box h2,
.manual-page .manual-category .list .item.is-active .nr-box h2 {
    color: #005ecb;
}
.manual-page .manual-category .list .item .manual-open-label {
    align-self: flex-end;
    margin-left: auto;
    text-align: right;
}
.manual-page .manual-category .list .item:hover .manual-open-label i,
.manual-page .manual-category .list .item:focus-within .manual-open-label i,
.manual-page .manual-category .list .item.is-active .manual-open-label i {
    transform: translateX(3px);
}

/* 全站统一圆角：卡片 14px、交互控件 10px、标签 6px */
.mw-portal-tab-nav,
.mw-portal-showcase,
.mw-portal-solution-grid,
.mw-portal-service-list,
.mw-portal-faq-list,
.quality .list .item,
.product .list .item.product-card,
.download-page .list .item.download-card,
.solution-large,
.solution-process-list,
.about-values,
.about-values-inline,
.manual-page .manual-category .list .item,
.update-page .l,
.update-page .r .item,
.mw-pricing-page .detail-inner,
.mw-pricing-page .level-card,
.mw-pricing-page .pricing-service-grid,
.mw-pricing-page .agent-tip-card,
.mw-pricing-page .level-empty,
.mw-pricing-page .empty-state,
.mw-pricing-page .modal-box,
.mw-query-card,
.mw-query-guide-main,
.mw-query-guide-side,
.mw-query-shortcuts,
.help-detail-page .page-l,
.help-detail-page .page-r-box,
.content-page .page-l,
.content-page .page-r-box,
.ucenter-page .l,
.ucenter-page .r > .page-box,
.ucenter-page .r > .page-box > .soft-item {
    border-radius: var(--mw-radius-lg) !important;
}

.mw-portal-tab-nav,
.mw-portal-showcase,
.mw-portal-solution-grid,
.mw-portal-service-list,
.mw-portal-faq-list,
.product .list .item.product-card,
.download-page .list .item.download-card,
.solution-large,
.solution-process-list,
.about-values,
.about-values-inline,
.manual-page .manual-category .list .item,
.mw-pricing-page .detail-inner,
.mw-pricing-page .pricing-service-grid,
.mw-query-card,
.mw-query-shortcuts {
    overflow: hidden;
}

.head .navs a,
.head .r > a.login,
.head .r > .news,
.head .r .avatar-mu .edition .fr a,
.head .r .avatar-mu .btns a,
.head .r .avatar-mu .btns a i,
.head .r .avatar-mu .foot a,
.mw-mobile-menu,
.mw-portal-actions a,
.mw-portal-showcase-actions a:first-child,
.mw-portal-service-copy > a,
.mw-portal-service-list > a > i,
.mw-portal-faq-highlights li,
.mw-portal-link-list a,
.help-banner .search-box,
.help-banner .top-search,
.help-quick-links > a,
.filter-chip,
.download-filter .filter-chip,
.download-card-logo,
.solution-large-art img,
.solution-cta,
.manual-category-nav button,
.update-category-nav button,
.update-page .l .item a,
.update-page .mw-update-select,
.about-side a,
.help-page .l .help-nav-card .li a,
.help-page .r ol li,
.help-detail-toolbar a,
.mw-pricing-page .cat-pill,
.mw-pricing-page .soft-card .soft-link,
.mw-pricing-page .soft-card .soft-icon,
.mw-pricing-page .soft-card .soft-icon-fallback,
.mw-pricing-page .detail-product-mark,
.mw-pricing-page .btn-outline-blue,
.mw-pricing-page .purchase-form .form-input,
.mw-pricing-page .pay-opt,
.mw-pricing-page .selected-info,
.mw-pricing-page .btn-submit,
.mw-pricing-page .msg-error,
.mw-pricing-page .pricing-service-grid i,
.mw-query-form .form-control,
.captcha-img,
.mw-btn,
.mw-result,
.mw-agent-item,
.mw-agent-suggest,
.mw-agent-suggest-item,
.input,
.textarea,
.panel,
.alert,
.right_nav li {
    border-radius: var(--mw-radius) !important;
}

.head .r .avatar-mu {
    border-radius: var(--mw-radius-lg) !important;
}

.head .r .avatar-mu .edition {
    border-radius: var(--mw-radius-lg) var(--mw-radius-lg) 0 0 !important;
}

.right_nav li {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.product-category,
.product-pricing,
.download-tags span,
.solution-products a,
.mw-portal-solution-grid li,
.update-page .r .item h2 > small,
.update-page .r .item h2 .update-category-badge,
.help-detail-page .page-l-f span,
.help-detail-page .page-r-box .page-r-bq li a {
    border-radius: var(--mw-radius-sm) !important;
}

.manual-category-nav,
.update-top .update-category-nav {
    border-radius: var(--mw-radius-lg) !important;
}

.manual-page .manual-category .list .item > a {
    border-radius: inherit !important;
}

.manual-page .manual-category .list .item .icon-box {
    border-radius: var(--mw-radius-lg) var(--mw-radius-lg) 0 0 !important;
}

.update-page .r .item:before {
    border-radius: 50%;
}

.mw-pricing-page .level-card.recommend::after {
    border-radius: var(--mw-radius-sm) !important;
}

.mw-pricing-page .modal-head .modal-close,
.br50,
.avatar,
.product-type-dot,
.swiper-pagination-bullet {
    border-radius: 50% !important;
}

/* 页面细节调整 */
.mw-portal-link-list a {
    padding-right: 12px;
    padding-left: 12px;
}

.download-card-logo {
    border: 0 !important;
}

.index-btn {
    padding: 5px 10px;
}

.solution-cta {
    border-bottom: 0 !important;
    background-color: #F7FBFF !important;
}

.solution-large-copy a {
    padding: 5px 10px;
}

.help-detail-toolbar {
    border-bottom: 0 !important;
}

.content-page .page-r-box .page-r-bq,
.help-detail-page .page-r-box .page-r-bq {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 6px;
}

.content-page .page-r-box .page-r-bq li,
.content-page .page-r-box .page-r-bq li:hover,
.help-detail-page .page-r-box .page-r-bq li,
.help-detail-page .page-r-box .page-r-bq li:hover {
    display: inline-flex;
    margin: 0;
    border: 0 !important;
    background: transparent !important;
}

.content-page .page-r-box .page-r-bq li a,
.content-page .page-r-box .page-r-bq li:hover a,
.help-detail-page .page-r-box .page-r-bq li a,
.help-detail-page .page-r-box .page-r-bq li:hover a {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 5px 9px !important;
    border: 1px solid #dce7f0 !important;
    background: #f8fbfe !important;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
}

.content-page .page-r-box .page-r-bq li:hover a,
.help-detail-page .page-r-box .page-r-bq li:hover a {
    border-color: #0076fe !important;
    background: #f0f7ff !important;
}

.mw-pricing-page .pricing-top {
    max-width: none !important;
    display: table !important;
}

.mw-pricing-page .detail-inner {
    border: 0 !important;
    box-shadow: none !important;
}

.index-page .list .item {
    padding: 0 !important;
}

.manual-category-nav {
    display: table !important;
    white-space: nowrap;
}

.manual-category > header {
    border-bottom: 0 !important;
}

/* 独立投诉建议页 */
.mw-complaint-page { min-height: 70vh; padding-bottom: 84px; background: #f3f8fc; }
.mw-complaint-hero { position: relative; overflow: hidden; padding: 68px 0 82px; color: #fff; text-align: center; background: linear-gradient(135deg,#0076fe 0%,#0058c8 55%,#062d70 100%); }
.mw-complaint-hero:after { content: ""; position: absolute; top: -170px; right: 8%; width: 420px; height: 420px; border: 1px solid rgba(173,220,255,.28); transform: rotate(38deg); box-shadow: 0 0 0 24px rgba(255,255,255,.04),0 0 0 48px rgba(255,255,255,.025); pointer-events: none; }
.mw-complaint-hero .index { position: relative; z-index: 1; }
.mw-complaint-hero h1 { margin: 0 0 10px; color: #fff; font-size: clamp(32px,3.8vw,44px); font-weight: 500; line-height: 1.3; }
.mw-complaint-hero p { max-width: 680px; margin: 0 auto; color: rgba(236,247,255,.84); font-size: 14px; line-height: 1.85; }
.mw-complaint-container { position: relative; z-index: 2; width: min(1440px,calc(100% - 48px)); margin: 0 auto; }
.mw-complaint-card { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 46px; width: 100%; max-width: 1200px; margin: 50px auto; padding: 42px 46px; box-sizing: border-box; border: 1px solid #dce7f0; border-radius: 20px; background: #fff; box-shadow: 0 18px 46px rgba(26,64,105,.1); }
.mw-complaint-main { min-width: 0; }
.mw-complaint-heading { margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid #e5edf4; }
.mw-complaint-heading h2 { margin: 0 0 8px; color: #1a2b40; font-size: 26px; font-weight: 500; }
.mw-complaint-heading p { margin: 0; color: #71859a; font-size: 14px; line-height: 1.8; }
.mw-complaint-form { max-width: 780px; }
.mw-complaint-form-row { margin-bottom: 17px; }
.mw-complaint-form-row label { display: block; margin-bottom: 7px; color: #405b73; font-size: 13px; }
.mw-complaint-form-row input,
.mw-complaint-form-row textarea { display: block; width: 100%; box-sizing: border-box; padding: 12px 14px; border: 1px solid #ceddea; border-radius: 8px; color: #1f2937; background: #fff; font: inherit; font-size: 14px; outline: 0; transition: border-color .2s ease,box-shadow .2s ease; }
.mw-complaint-form-row textarea { min-height: 142px; resize: vertical; line-height: 1.7; }
.mw-complaint-form-row input:focus,
.mw-complaint-form-row textarea:focus { border-color: #0076fe; box-shadow: 0 0 0 4px rgba(0,118,254,.1); }
.mw-complaint-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.mw-complaint-captcha-row { display: flex; align-items: flex-end; gap: 14px; }
.mw-complaint-captcha-row > div { flex: 1; min-width: 0; }
.mw-complaint-captcha-row img { flex: 0 0 auto; width: 120px; height: 46px; object-fit: fill; border: 1px solid #ceddea; border-radius: 8px; background: #f8fafc; cursor: pointer; }
.mw-complaint-submit { display: inline-flex; align-items: center; justify-content: center; min-width: 150px; padding: 12px 24px; border: 0; border-radius: 8px; color: #fff; background: linear-gradient(135deg,#ef4444,#dc2626); box-shadow: 0 6px 18px rgba(220,38,38,.22); font-size: 14px; font-weight: 600; cursor: pointer; transition: transform .2s ease,box-shadow .2s ease; }
.mw-complaint-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(220,38,38,.3); }
.mw-complaint-result { display: none; margin-top: 18px; padding: 16px 18px; border-radius: 8px; font-size: 14px; line-height: 1.8; }
.mw-complaint-result.show { display: block; }
.mw-complaint-result.success { border: 1px solid #b7e4c7; color: #166534; background: #eefbf3; }
.mw-complaint-result.error { border: 1px solid #fecdd3; color: #be123c; background: #fff1f2; }
.mw-complaint-result-title { margin-bottom: 5px; font-size: 16px; font-weight: 700; }
.mw-complaint-aside { min-height: 220px; padding: 3px 0 0 28px; border-left: 1px solid #e2ebf3; }
.mw-complaint-aside h3 { margin: 0 0 15px; color: #29465f; font-size: 17px; font-weight: 500; }
.mw-complaint-aside ul { margin: 0; padding: 0; list-style: none; }
.mw-complaint-aside li { position: relative; margin: 0 0 12px; padding-left: 14px; color: #71859a; font-size: 13px; line-height: 1.75; }
.mw-complaint-aside li:before { content: ""; position: absolute; top: .7em; left: 0; width: 5px; height: 5px; background: #62aef0; }
.mw-complaint-aside a { display: inline-block; margin-top: 8px; color: #0076fe; font-size: 13px; }
@media (max-width: 720px) {
    .mw-complaint-page { padding-bottom: 56px; }
    .mw-complaint-hero { padding: 54px 0 72px; }
    .mw-complaint-hero p { padding: 0 18px; }
    .mw-complaint-container { width: calc(100% - 32px); margin: 0 auto; }
    .mw-complaint-card { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px 32px; }
    .mw-complaint-aside { min-height: 0; padding: 22px 0 0; border-top: 1px solid #e2ebf3; border-left: 0; }
    .mw-complaint-form-grid { grid-template-columns: 1fr; gap: 0; }
    .mw-complaint-captcha-row img { width: 108px; }
    .mw-complaint-submit { width: 100%; }
}
