﻿@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: 14px;
    --mw-radius-lg: 20px;
}

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));
}

.slide-btn,
.index-btn {
    border-radius: 12px;
    font-weight: 700;
}

.slide-btn {
    padding: 15px 34px;
    color: #fff !important;
    background: var(--mw-primary);
    box-shadow: 0 12px 28px rgba(0, 118, 254, .20);
}

.slide-btn:hover,
.index-btn:hover {
    color: #fff !important;
    background: var(--mw-primary-dark);
    box-shadow: var(--mw-shadow);
    transform: translateY(-1px);
}

.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;
}

.update-banner {
    background: url("/static/index/img/update-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;
    background: url("/static/index/img/help-bg.jpg") center/cover no-repeat !important;
}

.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,
.help-banner h2 {
    padding-left: 0;
    line-height: 1.25;
    text-align: center;
    font-weight: 700;
}

.help-banner h2 {
    font-size: 30px;
}

.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;
    background: url("/static/index/img/banner-02.jpg") center/cover no-repeat !important;
    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 .sort {
    margin: 0 0 20px;
    padding-left: 16px;
    font-size: 22px;
}

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

.help-page .r ol li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 0;
    border-radius: 14px;
    background-color: #fafafa;
    transition: all .22s ease;
}

.help-page .r ol li:hover {
    background-color: #f8fbff;
    box-shadow: var(--mw-shadow-soft);
    transform: translateY(-2px);
}

.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 .l .logo img {
        height: 32px;
    }

    .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 .l,
    #slide .r {
        width: 100%;
    }

    #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,
    .help-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;
    }

    .help-page .r ol li {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .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;
    }

}
