@charset "UTF-8";
/* ============================================================
   OfficeWeb365 Mobile Responsive Styles
   Breakpoints: 900px (nav collapse), 768px (full mobile), 1024px (tablet)
   ============================================================ */

/* ─── Hamburger Menu Button (hidden on desktop) ─── */
.mobile-menu-btn {
    display: none;
    position: absolute;
    top: 24px;
    right: 16px;
    z-index: 10001;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 36px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.mobile-menu-btn:hover,
.mobile-menu-btn:active,
.mobile-menu-btn.active {
    background: none !important;
    background-color: transparent !important;
}
.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: #3b3b3b;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   BREAKPOINT 1: Navigation collapse (max-width: 900px)
   ============================================================ */
@media screen and (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }

    /* Header adjustments */
    header {
        position: relative;
        padding-bottom: 0;
    }
    header > .autoWidth {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    /* Hide the clear:both div in header — breaks flex layout */
    header > .autoWidth > div[style*="clear:both"] {
        display: none;
    }
    /* Logo area */
    header .autoWidth > div:first-child {
        float: none;
        width: auto;
        margin: 8px 0 8px 16px;
        text-align: left;
        flex-shrink: 0;
    }
    header .autoWidth > div:first-child a {
        display: inline-block;
    }
    header .autoWidth > div:first-child img {
        height: 30px;
        width: auto;
        vertical-align: middle;
    }

    /* Hamburger button */
    .mobile-menu-btn {
        position: relative;
        top: auto;
        right: auto;
        margin: 8px 16px 8px 0;
        flex-shrink: 0;
        order: 2;
    }

    /* Navigation container */
    .NavDiv {
        float: none;
        width: 100%;
        height: auto;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        order: 3;
    }
    .NavDiv nav {
        width: 100%;
    }
    .NavDiv nav > ul {
        display: none;
        flex-direction: column;
        background: #fff;
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: 2px solid #f65314;
        box-shadow: 0 6px 16px rgba(0,0,0,.10);
    }
    .NavDiv nav > ul.nav-open {
        display: flex;
    }
    .NavDiv li {
        float: none !important;
        display: block;
        width: 100%;
        padding: 0 !important;
        height: auto !important;
        font-size: 14px !important;
        font-weight: 700;
        text-align: left !important;
        text-indent: 0 !important;
        white-space: normal;
        border-bottom: 1px solid #eee;
        letter-spacing: normal;
    }
    .NavDiv li:last-child {
        border-bottom: none;
    }
    .NavDiv li > a {
        display: block;
        width: 100%;
        padding: 11px 20px !important;
        color: #333 !important;
        line-height: 1.4 !important;
        box-sizing: border-box;
    }
    .NavDiv li > a:active {
        background: #f5f5f5;
    }

    /* Dropdown menu on mobile — inline expand */
    .NavDiv .nav-dropdown {
        position: relative;
        overflow: hidden !important;
    }
    .NavDiv .nav-dropdown::after {
        display: none;
    }
    .NavDiv .nav-dropdown > a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    .NavDiv .nav-dropdown > a::after {
        position: static;
        float: none;
        margin: 0 4px 0 0;
        width: 6px;
        height: 6px;
        border-right: 2px solid #666;
        border-bottom: 2px solid #666;
        transform: rotate(45deg);
        transition: transform .2s ease;
        flex-shrink: 0;
    }
    .NavDiv .nav-dropdown.open > a::after {
        transform: rotate(-135deg);
    }
    .NavDiv .nav-dropdown-menu {
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        box-shadow: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        background: #f8f8f8 !important;
        padding: 0 !important;
        margin: 0 !important;
        min-width: auto !important;
        display: none;
    }
    .NavDiv .nav-dropdown-menu::before {
        display: none;
    }
    .NavDiv .nav-dropdown.open > .nav-dropdown-menu {
        display: block;
    }
    .NavDiv .nav-dropdown-menu li {
        border-top: 1px solid #e8e8e8;
        border-bottom: none !important;
        text-indent: 0 !important;
    }
    .NavDiv .nav-dropdown-menu li a,
    .NavDiv .nav-dropdown-menu li a:link,
    .NavDiv .nav-dropdown-menu li a:visited {
        display: flex !important;
        align-items: center;
        gap: 6px;
        width: 100%;
        padding: 10px 20px 10px 32px !important;
        font-size: 13px !important;
        font-weight: 600;
        color: #555 !important;
        border-left: none !important;
        box-sizing: border-box;
        text-indent: 0 !important;
    }
    .NavDiv .nav-dropdown-menu li a svg {
        flex-shrink: 0;
        position: static !important;
        top: auto !important;
    }
    .NavDiv .nav-dropdown-menu li a:active {
        background: #e8e8e8;
    }
    .NavDiv .nav-dropdown-menu li a:hover {
        padding-left: 36px !important;
    }
}

/* ============================================================
   BREAKPOINT 2: Full Mobile (max-width: 768px)
   ============================================================ */
@media screen and (max-width: 768px) {

    /* ─── Global ─── */
    body {
        overflow-x: hidden;
        min-width: 320px;
    }
    /* Fix owCtl.css `li { text-indent: -2em }` which breaks mobile layout */
    li {
        text-indent: 0 !important;
    }
    .autoWidth {
        width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box;
    }
    img {
        max-width: 100%;
        height: auto;
    }

    /* ─── Header ─── */
    .HeadBottom {
        height: 2px;
    }

    /* ─── Index Page ─── */
    .idxImg {
        height: auto !important;
        min-height: 360px;
        padding: 60px 0 40px 0 !important;
    }
    .idxImg .autoWidth {
        display: flex;
        flex-direction: column;
    }
    .LeftDiv {
        float: none !important;
        width: 100% !important;
        height: auto !important;
        order: 1;
        text-align: center;
    }
    .LeftDiv img {
        position: static !important;
        max-width: 80%;
        margin: 0 auto !important;
    }
    .RightDiv {
        float: none !important;
        width: 100% !important;
        order: 0;
        text-align: center;
        color: #fff;
    }
    .RightDiv > div:first-child {
        font-size: 2.2em !important;
        margin-top: 10px !important;
        line-height: 1.4em !important;
    }
    .RightDiv > div:first-child + div {
        font-size: 1.1em !important;
        line-height: 1.4em !important;
    }
    .RightDiv > div:first-child + div + div {
        font-size: .95em !important;
        margin-top: 16px !important;
    }
    .slide {
        text-align: center;
        margin-top: 12px;
    }
    .notice {
        float: none !important;
        margin-top: 20px !important;
        order: 2;
        text-align: center;
    }
    .notice > div {
        float: none !important;
        width: auto !important;
        margin: 4px 0;
    }
    .notice > div:last-child {
        float: none !important;
        width: auto !important;
        text-align: center !important;
    }

    /* Index content sections — remove fixed heights */
    [style*="height:630px"],
    [style*="height: 630px"] {
        height: auto !important;
        min-height: 300px;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    [style*="height:400px"],
    [style*="height: 400px"],
    [style*="height:460px"],
    [style*="height: 460px"],
    [style*="height:580px"],
    [style*="height: 580px"],
    [style*="height:760px"],
    [style*="height: 760px"],
    [style*="height:1380px"],
    [style*="height: 1380px"] {
        height: auto !important;
        padding: 40px 0 !important;
    }

    .idxTxt > div {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }
    .idxTxt [style*="float:left"],
    .idxTxt [style*="float: left"],
    .idxTxt [style*="float:right"],
    .idxTxt [style*="float: right"] {
        float: none !important;
        width: 100% !important;
        text-align: center;
        margin-top: 16px !important;
    }
    .idxTxt img {
        max-width: 70%;
        margin: 0 auto;
    }
    .idxTxt h1 {
        font-size: 1.2em !important;
        text-align: center;
    }
    .idxTxt p {
        text-align: left;
        font-size: .95em !important;
        text-indent: 1.5em !important;
    }

    /* Index — "支持文档" icons section */
    .idxPics {
        margin: 30px auto !important;
    }
    .idxPics h1 {
        font-size: 1.4em !important;
        letter-spacing: .2em !important;
    }
    .idxPics div[style*="background-position"] {
        width: 100% !important;
        height: 30px !important;
        float: none !important;
        background-size: auto !important;
    }

    /* ─── Price Page ─── */
    /* Hide the desktop "最受欢迎" absolute-positioned border */
    #love { display: none; }
    div[style*="height:1380px"] {
        height: auto !important;
        padding: 20px 0 !important;
    }

    /* ── Restyle table as feature-row cards ── */
    .TB {
        width: auto !important;
        margin: 0 12px !important;
    }
    .TB tbody { display: block; }

    /* Table header — flex row, no font-size trick */
    .TB thead {
        display: block;
        margin: 0 12px 8px;
    }
    .TB thead tr {
        display: flex;
        border-bottom: 2px solid #e5e5e5;
        padding-bottom: 4px;
    }
    .TB thead th {
        flex: 0 0 20%;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
        padding: 6px 2px;
        font-size: 11px;
        font-weight: 700;
        text-align: center !important;
        color: #333;
        background: none;
        border: none;
    }
    .TB thead th:first-child {
        display: none; /* hide "服务" */
    }
    .TB thead th:nth-child(4) {
        color: #f65314;
    }
    .TB thead th svg { display: none; }

    /* Each row = a card */
    .TB tbody tr {
        display: flex;
        flex-wrap: wrap;
        margin: 0 12px 16px;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0,0,0,.04);
    }

    /* Feature name — full width title bar */
    .TB tbody td:first-child {
        flex: 0 0 100%;
        padding: 10px 14px;
        font-size: 14px;
        font-weight: 700;
        color: #1a1a1a;
        background: #f8f8f8;
        border: none;
        border-bottom: 1px solid #eee;
        text-align: left !important;
        line-height: 1.4;
    }

    /* 5 plan values — fixed 20% each, no borders to avoid width issues */
    .TB tbody td:not(:first-child) {
        flex: 0 0 20%;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
        padding: 10px 2px 12px;
        font-size: 12px;
        text-align: center !important;
        line-height: 1.4;
        border: none;
        word-break: break-all;
    }
    /* Alternate column tint for readability */
    .TB tbody td:nth-child(3),
    .TB tbody td:nth-child(5) {
        background: #fafafa;
    }

    /* Plan name labels via ::before — must be block to show above value */
    .TB tbody td:nth-child(2)::before {
        content: "免费版";
        display: block;
        font-size: 10px;
        color: #888;
        margin-bottom: 4px;
        font-weight: 600;
    }
    .TB tbody td:nth-child(3)::before {
        content: "标准版";
        display: block;
        font-size: 10px;
        color: #888;
        margin-bottom: 4px;
        font-weight: 600;
    }
    .TB tbody td:nth-child(4)::before {
        content: "高级版";
        display: block;
        font-size: 10px;
        color: #f65314;
        margin-bottom: 4px;
        font-weight: 700;
    }
    .TB tbody td:nth-child(5)::before {
        content: "企业版";
        display: block;
        font-size: 10px;
        color: #888;
        margin-bottom: 4px;
        font-weight: 600;
    }
    .TB tbody td:nth-child(6)::before {
        content: "大客户版";
        display: block;
        font-size: 10px;
        color: #888;
        margin-bottom: 4px;
        font-weight: 600;
    }

    /* Make "高级版" column stand out */
    .TB tbody td:nth-child(4) {
        background: #fff8f5;
        border-right-color: #ffe0d0;
    }

    /* Price row — force compact font via ID selector */
    #tb td span,
    #tb td div,
    #tb td {
        max-width: 100%;
        word-break: break-all;
    }
    #tb td span[style*="font-size:30px"] {
        font-size: 13px !important;
    }
    #tb td span[style*="font-size:18px"] {
        font-size: 12px !important;
    }
    #tb td span[style*="font-size:14px"] {
        font-size: 10px !important;
    }
    #tb td span,
    #tb td div[style*="position:absolute"] {
        position: static !important;
        vertical-align: baseline !important;
        top: auto !important;
    }
    #tb td div[style*="position:absolute"] {
        display: none;
    }

    /* Feature notes section */
    div[style*="background-color:#11b46d"] {
        height: auto !important;
        padding: 30px 16px !important;
    }
    .txt1 > div {
        margin-top: 12px;
        line-height: 1.8;
    }
    .txt1 br { display: none; }
    .txt1 span[style*="margin-left:2em"] {
        display: block;
        margin-left: 1em !important;
    }

    /* ─── Features Page (Feat) ─── */
    /* Certificate images */
    .movediv > img,
    img.movediv {
        width: 44% !important;
        margin: 2% !important;
    }
    .movediv:hover,
    .movediv > img:hover {
        transform: none !important;
    }
    #movediv-mark > div {
        font-size: 18px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    #movediv-mark #showimg {
        max-width: 90%;
    }

    /* Browser support image */
    [style*="width: 76%"] {
        width: 100% !important;
        float: none !important;
    }

    /* ─── Customers Page ─── */
    .divCustom {
        width: 100% !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 0 8px;
        box-sizing: border-box;
        margin: 16px auto;
    }
    .divCustom > div {
        float: none !important;
        width: calc(50% - 8px) !important;
        height: auto !important;
        min-height: 100px;
        padding: 12px 4px !important;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        box-sizing: border-box;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .divCustom > div img {
        max-width: 80%;
        height: auto;
    }
    .divCustom > div > div:first-child {
        margin-bottom: 4px;
    }
    .divCustom > div > span {
        font-size: 11px;
        line-height: 1.3;
    }
    /* Certificates section */
    .idxTxt[style*="width:1090px"] {
        width: 100% !important;
        padding: 0 16px;
        box-sizing: border-box;
    }

    /* ─── Viewview Page ─── */
    .ow-reveal {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 16px 0 !important;
    }
    .ow-reveal > div[style*="flex-shrink: 0"],
    .ow-reveal > div[style*="width: 420px"] {
        width: 100% !important;
        flex-shrink: 1 !important;
    }
    .ow-reveal > div[style*="flex: 1"] {
        width: 100% !important;
    }
    /* Stats bar */
    .ow-reveal[style*="justify-content: space-around"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 24px 12px !important;
    }
    .ow-reveal[style*="justify-content: space-around"] > div[style*="width: 1px"] {
        display: none;
    }
    .ow-reveal[style*="font-size: 42px"] {
        font-size: 28px !important;
    }
    /* 4-column grids */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    /* CTA buttons */
    .ow-reveal + div[style*="text-align: center"] a {
        display: block;
        margin: 10px auto !important;
        max-width: 260px;
    }
    /* Document preview links area */
    [style*="margin-left:120px"] {
        margin-left: 8px !important;
    }
    /* Document type section headers — icon fixed, text wraps */
    [style*="white-space:nowrap"] {
        display: flex !important;
        align-items: flex-start;
        white-space: normal !important;
        height: auto !important;
        max-height: none !important;
        line-height: 1.6 !important;
        padding: 8px 0 !important;
        background: none !important;
        gap: 8px;
    }
    /* Common ::before — icon block, fixed 28×28 */
    [style*="white-space:nowrap"]::before {
        content: '';
        flex-shrink: 0;
        width: 43px;
        height: 28px;
        background-image: url('/Content/imgs/docsico.png');
        background-repeat: no-repeat;
        background-size: auto;
    }
    /* Each doc type — match original sprite Y, clipped by 28px ::before box */
    [style*="white-space:nowrap"][style*="-30px"]::before  { background-position: 0 -30px; }
    [style*="white-space:nowrap"][style*="-60px"]::before  { background-position: 0 -60px; }
    [style*="white-space:nowrap"][style*="-90px"]::before  { background-position: 0 -90px; }
    [style*="white-space:nowrap"][style*="-180px"]::before { background-position: 0 -180px; }
    [style*="white-space:nowrap"][style*="-270px"]::before { background-position: 0 -270px; }
    [style*="white-space:nowrap"][style*="-435px"]::before { background-position: 0 -435px; }
    [style*="white-space:nowrap"][style*="-210px"]::before { background-position: 0 -210px; }
    [style*="white-space:nowrap"][style*="-362px"]::before { background-position: 0 -362px; }
    /* Text inside icon headers */
    [style*="margin-left:120px"] {
        margin-left: 0 !important;
    }

    /* ─── Howdo Page ─── */
    .autoWidth[style*="margin:auto"] .RightDiv {
        color: #fff;
        text-align: center;
        padding: 16px 0;
    }
    .autoWidth[style*="margin:auto"] [style*="width:360px"] {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        text-align: center;
    }
    .autoWidth[style*="margin:auto"] [style*="width:360px"] img {
        max-width: 80%;
    }
    .dldtdd dd {
        text-indent: 0;
        margin-left: 0;
        padding-left: 1em;
    }

    /* ─── Login / Signup / Register / Lost Pages ─── */
    .loginDiv,
    div.loginDiv[style*="width:700px"],
    div.loginDiv[style*="width:400px"] {
        width: 100% !important;
        max-width: 400px;
        margin: 20px auto !important;
        padding: 0 16px;
        box-sizing: border-box;
        float: none !important;
    }
    #weixinLogin {
        float: none !important;
        width: 100% !important;
        text-align: center;
        margin-bottom: 30px;
    }
    #weixinLogin img {
        width: 160px !important;
        height: 160px !important;
    }
    .loginDiv [style*="float:left"] {
        float: none !important;
        width: 100% !important;
    }
    .loginDiv input[type="text"],
    .loginDiv input[type="password"],
    .loginDiv input:not([type="button"]):not([type="submit"]) {
        width: 100% !important;
        box-sizing: border-box;
    }
    .loginDiv #sendCodeBtn {
        position: relative !important;
        margin-left: 0 !important;
        margin-top: 8px;
        width: 100% !important;
    }
    .loginDiv input[type="submit"] {
        margin: 16px auto !important;
        display: block;
        width: 100% !important;
        max-width: 200px;
    }
    .msgTxt {
        width: 90% !important;
        margin: 20px auto !important;
    }
    /* Register page phone/email selector */
    .NavDiv [style*="text-align:left"] {
        text-align: center !important;
        height: auto !important;
        line-height: 40px !important;
    }
    .NavDiv [style*="text-align:left"] > div {
        float: none !important;
        display: inline-block;
    }

    /* ─── Docview / Ask / Articles / PdfToWord / PdfToWordConvert / OnlinePrint / ViewEdit ─── */
    /* General form pages */
    form {
        width: 100% !important;
        padding: 0 16px;
        box-sizing: border-box;
    }
    input[type="text"],
    input[type="password"],
    input[type="email"],
    textarea {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* ─── Footer ─── */
    /* Hide floating WeChat QR outside footer */
    body > div[style*="clear: both"] > div[style*="position:absolute"] {
        display: none;
    }
    .foot {
        margin: 0;
        padding: 20px 0 0;
        background: #f5f5f5;
    }
    .foot > div:first-child {
        margin-bottom: 0;
    }
    .foot > div:first-child + div {
        width: 100% !important;
        padding: 0;
        box-sizing: border-box;
    }

    /* Contact row — flex wrap, grouped */
    .foot [style*="width:736px"] {
        width: 100% !important;
        padding: 12px 16px !important;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 6px 12px;
        text-align: center;
    }
    /* All floated children — reset */
    .foot [style*="width:736px"] > span,
    .foot [style*="width:736px"] > img,
    .foot [style*="width:736px"] > a {
        float: none !important;
        margin: 0 !important;
    }
    /* Section labels (客户服务支持, 商务在线咨询, etc.) */
    .foot [style*="width:736px"] > span {
        font-size: 12px;
        color: #666;
        white-space: nowrap;
    }
    /* Contact icons — uniform size */
    .foot [style*="width:736px"] > img {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0;
        cursor: pointer;
    }
    /* Phone number */
    .foot [style*="width:736px"] i {
        font-size: 15px !important;
        color: #333;
    }
    /* Weibo icon link */
    .foot [style*="width:736px"] > a {
        line-height: 0;
        display: inline-flex;
        align-items: center;
    }
    .foot [style*="width:736px"] > a img {
        width: 22px !important;
        height: 22px !important;
    }
    /* Clear float divs — hide */
    .foot [style*="width:736px"] > div[style*="clear:both"] {
        display: none;
    }
    /* QR code popup container — relative for mobile */
    .foot [style*="margin-left: 515px"] {
        position: relative !important;
        margin: 8px 0 0 !important;
        width: 100% !important;
        height: auto !important;
        text-align: center;
    }
    /* QR code images — centered modal when visible */
    .foot img[id$="tech"],
    .foot img[id$="busin"],
    .foot img[id$="gzh"],
    .foot img[id$="qqtech"],
    .foot img[id$="qqbusin"] {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 99999;
        width: 160px !important;
        height: 160px !important;
        border-radius: 8px;
        box-shadow: 0 8px 40px rgba(0,0,0,.3);
    }

    /* Divider */
    .foot hr {
        margin: 12px 0 0 !important;
    }

    /* Copyright & links area */
    .footBtm {
        padding: 12px 16px 50px;
        line-height: 1.8 !important;
        font-size: 12px;
        text-align: center;
    }
    .footBtm div[style*="width:898px"] {
        width: 100% !important;
        padding: 0;
        box-sizing: border-box;
    }
    .footBtm div[style*="width:898px"] span,
    .footBtm div[style*="width:898px"] a {
        display: inline;
        font-size: 12px;
        margin: 0 4px;
        white-space: nowrap;
    }
    .footBtm a:link,
    .footBtm a:visited {
        color: #555;
    }
    /* ICP image — align with text */
    .footBtm img {
        vertical-align: middle;
        width: 14px;
        height: 14px;
    }

    /* ─── Back to top ─── */
    #owBackTop {
        bottom: 90px !important;
        right: 12px !important;
    }

    /* ─── Contact Service Widget (#csw) ─── */
    #csw {
        bottom: 70px;
        right: 12px;
    }
    #csw-btn {
        width: 40px;
        height: 40px;
    }
    #csw-btn svg {
        width: 22px;
        height: 22px;
    }
    #csw-panel {
        width: 280px;
        right: -4px;
        bottom: 58px;
        border-radius: 14px;
    }
    .csw-head {
        padding: 14px 16px 10px;
    }
    .csw-wx {
        padding: 12px 16px;
    }
    .csw-qr {
        width: 140px;
        height: 140px;
    }

    /* ─── Misc inline styles ─── */
    /* Any div with px-based width that overflows */
    [style*="width:720px"],
    [style*="width: 720px"],
    [style*="width:860px"],
    [style*="width: 860px"],
    [style*="width:500px"],
    [style*="width: 500px"],
    [style*="width:480px"],
    [style*="width: 480px"],
    [style*="width:420px"],
    [style*="width: 420px"] {
        width: 100% !important;
    }
    [style*="width:736px"],
    [style*="width: 736px"] {
        width: 100% !important;
    }

    /* Notice popup on index */
    #showNotice {
        width: 92% !important;
        left: 4% !important;
        box-sizing: border-box;
    }
    #nContent {
        padding: 16px !important;
    }

    /* ─── ViewEdit Page ─── */
    .ve-hero {
        height: auto !important;
        min-height: 360px;
        padding: 60px 16px !important;
    }
    .ve-hero-logo {
        font-size: 36px !important;
    }
    .ve-hero-sub {
        font-size: 20px !important;
        letter-spacing: 2px !important;
    }
    .ve-hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }
    .ve-notice {
        height: auto !important;
        padding: 8px 0;
    }
    .ve-notice-inner {
        width: 100% !important;
        padding: 0 16px;
        flex-wrap: wrap;
        gap: 8px !important;
    }
    .ve-section {
        width: 100% !important;
        padding: 40px 16px !important;
    }
    .ve-new-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px !important;
    }
    .ve-new-card {
        width: 100% !important;
        max-width: 280px;
    }
    .ve-upload-card {
        flex-direction: column !important;
        gap: 24px !important;
        padding: 24px 20px !important;
    }
    .ve-upload-right img {
        width: 100% !important;
        max-width: 300px;
    }
    .ve-feats-grid {
        flex-direction: column !important;
        gap: 16px !important;
    }

    /* ─── OnlinePrint Page ─── */
    .header {
        clip-path: none !important;
        padding: 60px 16px 40px !important;
    }
    .header h1 {
        font-size: 2rem !important;
    }
    .header .subtitle {
        font-size: 1.1rem !important;
    }
    .preview-container {
        flex-direction: column !important;
    }
    .preview-image {
        transform: none !important;
    }
    .benefits {
        clip-path: none !important;
        padding: 50px 16px !important;
    }
    footer {
        clip-path: none !important;
        margin-top: 40px;
    }
    .spec-item:hover .preview-feature:hover {
        transform: none !important;
    }

    /* ─── PdfToWord / PdfToWordConvert Pages (.pw-* classes) ─── */
    .pw-hero {
        padding: 80px 0 100px !important;
        min-height: auto !important;
    }
    .pw-hero-h1 {
        font-size: 28px !important;
    }
    .pw-hero-feats {
        gap: 6px !important;
    }
    .pw-hero-feat {
        font-size: 12px !important;
        padding: 5px 12px !important;
    }
    .pw-metrics-inner {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .pw-metric {
        padding: 24px 12px !important;
    }
    .pw-metric + .pw-metric::before {
        display: none;
    }
    .pw-metric-val {
        font-size: 32px !important;
    }
    .pw-pain-grid,
    .pw-sol-grid {
        grid-template-columns: 1fr !important;
    }
    .pw-tech-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .pw-tech-feats {
        grid-template-columns: 1fr !important;
    }
    .pw-scenario-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .pw-pain-insight {
        padding: 32px 20px !important;
    }
    .pw-sec {
        padding: 50px 0 !important;
    }
    .pw-cta {
        padding: 80px 0 !important;
    }
    .pw-scroll-hint {
        display: none;
    }

    /* ─── Docview Page ─── */
    [style*="width:1180px"][style*="margin:30px auto"] {
        width: 100% !important;
        padding: 0 16px;
        box-sizing: border-box;
    }
    [style*="width:1180px"][style*="margin:30px auto"] fieldset {
        float: none !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    [style*="width:780px"] {
        width: 100% !important;
    }
    fieldset input[type="text"] {
        width: 100% !important;
        box-sizing: border-box;
    }
    #showViewDiv [style*="width:1180px"] {
        width: 100% !important;
        height: auto !important;
    }
    #viewFrame {
        width: 100% !important;
        height: 600px !important;
    }

    /* ─── Ask / Articles / Other utility pages ─── */
    [style*="width:1180px"] {
        width: 100% !important;
        padding: 0 16px;
        box-sizing: border-box;
    }
}

/* ============================================================
   BREAKPOINT 3: Tablet (769px - 1024px)
   ============================================================ */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .autoWidth {
        width: 94% !important;
        max-width: 720px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    /* Compact nav — smaller font, less padding */
    .NavDiv li {
        font-size: 1em !important;
        padding-left: 20px !important;
    }
    .NavDiv .nav-dropdown-menu {
        left: 20px;
    }

    /* Index sections */
    .idxImg {
        height: auto !important;
        min-height: 400px;
        padding-top: 80px !important;
    }
    [style*="height:630px"] {
        height: auto !important;
        min-height: 350px;
        padding: 40px 0 !important;
    }
    .LeftDiv {
        width: 40% !important;
        height: auto !important;
    }
    .RightDiv {
        text-align: center;
    }
    .RightDiv > div:first-child {
        font-size: 3em !important;
    }
    .idxTxt > div[style*="float:left"],
    .idxTxt > div[style*="float:right"] {
        width: 48% !important;
    }

    /* Customers — 3 or 4 per row */
    .divCustom {
        width: 100% !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .divCustom > div {
        float: none !important;
        width: calc(33.33% - 10px) !important;
        height: auto !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    /* Viewview — images smaller */
    .ow-reveal > div[style*="width: 420px"] {
        width: 320px !important;
    }

    /* Price table — same restyle */
    .TB tbody { display: block; }
    .TB thead { display: block; margin: 0 20px 8px; }
    .TB thead tr { display: flex; border-bottom: 2px solid #e5e5e5; padding-bottom: 4px; }
    .TB thead th { flex: 0 0 20%; min-width: 0; overflow: hidden; box-sizing: border-box; padding: 6px 2px; font-size: 11px; font-weight: 700; text-align: center !important; color: #333; background: none; border: none; }
    .TB thead th:first-child { display: none; }
    .TB thead th:nth-child(4) { color: #f65314; }
    .TB thead th svg { display: none; }
    .TB tbody tr {
        display: flex;
        flex-wrap: wrap;
        margin: 0 20px 16px;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        background: #fff;
        overflow: hidden;
    }
    .TB tbody td:first-child {
        flex: 0 0 100%;
        min-width: 0;
        padding: 10px 14px;
        font-size: 14px;
        font-weight: 700;
        background: #f8f8f8;
        border: none;
        border-bottom: 1px solid #eee;
        text-align: left !important;
    }
    .TB tbody td:not(:first-child) {
        flex: 0 0 20%;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
        padding: 10px 6px 12px;
        font-size: 13px;
        text-align: center !important;
        border: none;
    }
    .TB tbody td:last-child { border-right: none; }
    .TB tbody td:nth-child(2)::before { content: "免费版"; display: block; font-size: 10px; color: #888; margin-bottom: 4px; font-weight: 600; }
    .TB tbody td:nth-child(3)::before { content: "标准版"; display: block; font-size: 10px; color: #888; margin-bottom: 4px; font-weight: 600; }
    .TB tbody td:nth-child(4)::before { content: "高级版"; display: block; font-size: 10px; color: #f65314; margin-bottom: 4px; font-weight: 700; }
    .TB tbody td:nth-child(5)::before { content: "企业版"; display: block; font-size: 10px; color: #888; margin-bottom: 4px; font-weight: 600; }
    .TB tbody td:nth-child(6)::before { content: "大客户版"; display: block; font-size: 10px; color: #888; margin-bottom: 4px; font-weight: 600; }
    .TB tbody td:nth-child(4) { background: #fff8f5; }
    div[style*="height:1380px"] { height: auto !important; padding: 20px 0 !important; }
    #love { display: none; }

    /* Footer */
    .foot [style*="width:736px"] {
        width: 100% !important;
        padding: 12px 24px !important;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 8px 16px;
    }
    .foot [style*="width:736px"] > span,
    .foot [style*="width:736px"] > img,
    .foot [style*="width:736px"] > a {
        float: none !important;
        margin: 0 !important;
    }
    .foot [style*="width:736px"] > span { font-size: 13px; }
    .foot [style*="width:736px"] > img { width: 24px !important; height: 24px !important; }
    .foot [style*="width:736px"] > div[style*="clear:both"] { display: none; }
    .foot hr { margin-top: 12px !important; }
    .footBtm {
        padding: 12px 24px 60px;
        line-height: 1.8 !important;
        font-size: 12px;
        text-align: center;
    }
    .footBtm div[style*="width:898px"] {
        width: 100% !important;
    }

    /* ViewEdit — narrower sections */
    .ve-section {
        width: 94% !important;
        max-width: 720px;
        padding: 50px 0;
    }
    .ve-notice-inner {
        width: 94% !important;
        max-width: 720px;
    }
    .ve-new-grid {
        gap: 20px !important;
    }
    .ve-new-card {
        width: 180px !important;
    }

    /* PdfToWord — fewer columns */
    .pw-pain-grid,
    .pw-sol-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .pw-tech-stats {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .pw-scenario-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Docview */
    [style*="width:1180px"] {
        width: 94% !important;
        max-width: 720px;
        padding: 0 16px;
        box-sizing: border-box;
    }
    fieldset[style*="width:800px"] {
        width: 60% !important;
    }
}

/* ============================================================
   Print styles (keep these clean)
   ============================================================ */
@media print {
    .mobile-menu-btn,
    #csw,
    #owBackTop,
    .HeadBottom {
        display: none !important;
    }
}
