 body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
            background: linear-gradient(180deg, #fefaed 0%, #ece9f2 100%);
            min-height: 100vh;
            color: #334155;
        }
        /* ===== 顶部导航 ===== */
        .site-header {
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            position: relative;
            z-index: 10;
        }
        .site-header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .site-logo {
            font-size: 22px;
            font-weight: 700;
            color: #1e293b;
            letter-spacing: 2px;
            white-space: nowrap;
        }
        .site-nav {
            display: flex;
            list-style: none;
            gap: 32px;
            margin: 0;
            padding: 0;
        }
        .site-nav a {
            font-size: 15px;
            color: #334155;
            text-decoration: none;
            transition: color 0.2s;
        }
        .site-nav a:hover {
            color: #3b82f6;
        }
        .site-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 5px 14px;
            border-radius: 14px;
            font-size: 13px;
            color: #7c3aed;
            background: #f3f0ff;
            border: 1px solid #ddd6fe;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .action-btn:hover {
            background: #ede9fe;
        }
        .action-btn.action-icon {
            width: 30px;
            height: 30px;
            padding: 0;
            border-radius: 50%;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: #1e293b;
        }
        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .side-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            max-width: 80vw;
            height: 100vh;
            background: #ffffff;
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
            z-index: 999;
            display: flex;
            flex-direction: column;
            padding: 20px;
        }
        .side-menu.active {
            transform: translateX(0);
        }
        .side-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid #f1f5f9;
        }
        .side-menu-title {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
        }
        .side-menu-close {
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            color: #64748b;
        }
        .side-menu-nav {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
        }
        .side-menu-nav li {
            margin-bottom: 4px;
        }
        .side-menu-nav a {
            display: block;
            padding: 12px 8px;
            font-size: 15px;
            color: #334155;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s;
        }
        .side-menu-nav a:hover {
            background: #f8fafc;
            color: #3b82f6;
        }
        .side-menu-actions {
            margin-top: auto;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding-top: 16px;
            border-top: 1px solid #f1f5f9;
        }
        .side-menu-actions .action-btn {
            flex: 1;
            min-width: 80px;
            justify-content: center;
        }

        /* ===== 头部标题区 ===== */
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            position: relative;
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px 0;
        }
        .header-text {
            flex: 1;
            position: relative;
            min-width: 0;
        }
        .header-watermark {
            font-size: 32px;
            font-weight: 700;
            color: rgba(148, 163, 184, 0.15);
            letter-spacing: 2px;
            line-height: 1;
            position: absolute;
            top: -4px;
            left: 0;
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
        }
        .header-main {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 14px;
        }
        .header-main h1 {
            font-size: 26px;
            font-weight: 700;
            color: #1e293b;
            letter-spacing: 2px;
        }
        .header-sub {
            font-size: 13px;
            color: #94a3b8;
            margin-top: 8px;
            line-height: 1.5;
            max-width: 480px;
        }
        .header-img {
            flex-shrink: 0;
            width: 200px;
            height: auto;
            opacity: 0.85;
        }
        .header-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ===== 主容器 ===== */
        .main-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px;
        }
        .container {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            overflow: hidden;
        }
        .container .title {
            padding: 24px 32px 0;
        }
        .title h1 {
            font-size: 20px;
            margin: 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* ===== 温馨提示 ===== */
        .wxts {
            padding: 20px 32px;
            margin: 0;
        }
        .wxts h1 {
            font-size: 16px;
            color: #1e293b;
            margin: 0 0 10px 0;
        }
        .wxts ol {
            margin: 0;
            padding-left: 18px;
            color: #64748b;
            font-size: 13px;
            line-height: 1.8;
        }

        /* ===== 分区卡片 ===== */
        .section-card {
            margin: 0 32px 24px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
        }
        .section-header {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #e2e8f0;
        }
        .section-header .section-icon {
            width: 28px;
            height: 28px;
            background: #6b3a60;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
        }
        .section-header h2 {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
            margin: 0;
        }
        .section-header .section-desc {
            font-size: 13px;
            color: #94a3b8;
            margin-left: auto;
        }
        .section-body {
            padding: 20px;
        }

        /* ===== 表单样式 ===== */
        .form-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            padding: 10px 0;
            min-height: 44px;
        }
        .form-row + .form-row {
            border-top: 1px dashed #f1f5f9;
        }
        .form-label {
            width: 110px;
            font-size: 14px;
            color: #334155;
            text-align: right;
            flex-shrink: 0;
            text-align: justify;
            text-align-last: justify;
        }
        .form-content {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .form-content label {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            color: #334155;
            cursor: pointer;
        }
        input[type="radio"] {
            accent-color: #6b3a60;
            width: 16px;
            height: 16px;
            cursor: pointer;
        }
        select {
            border: 1px solid #ccc;
            border-radius: 5px;
            padding: 0 10px;
            height: 35px;
            line-height: 35px;
            font-size: 14px;
            background: #fff;
        }
        select:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }
        input[type="text"] {
            padding: 5px 10px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 5px;
            text-align: right;
            height: 30px;
            line-height: 30px;
            outline: none;
        }
        input[type="text"]:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }
        .msgIp {
            width: 130px;
            height: 35px;
            line-height: 35px;
            border: 1px solid #ccc;
            outline: none;
            text-indent: 10px;
            margin-right: 5px;
            border-radius: 5px;
        }
        .msgIp:hover {
            border: 1px solid #0075ff;
        }
        .msgIp.b-flex {
            flex: 1;
            max-width: 200px;
        }
        .unit-text {
            font-size: 14px;
            color: #64748b;
        }

        /* ===== 表格样式 ===== */
        .account-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .account-table thead tr {
            background-color: #ede9fe;
            color: #1e293b;
        }
        .account-table th,
        .account-table td {
            padding: 12px 15px;
            text-align: center;
        }
        .account-table tbody tr {
            border-bottom: 1px solid #e2e8f0;
        }
        .account-table tbody tr:nth-of-type(even) {
            background-color: #f8fafc;
        }
        .add-account-row {
            text-align: right;
            padding: 10px 15px;
        }
        .add-account-row a {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 7px 14px;
            border: 1px solid #dde8eb;
            border-radius: 5px;
            font-size: 13px;
            color: #334155;
            text-decoration: none;
            transition: all 0.2s;
        }
        .add-account-row a:hover {
            background: #f1f5f9;
        }
        .deletezh {
            margin-left: 6px;
            display: inline-flex;
            align-items: center;
        }
        .deletezh img {
            width: 18px;
            vertical-align: middle;
        }

        /* ===== 最高可贷额结果 ===== */
        .result-box {
            background: linear-gradient(135deg, #faf5ff 0%, #f3f0ff 100%);
            border: 1px solid #ddd6fe;
            border-radius: 10px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
        }
        .result-box .result-label {
            font-size: 15px;
            color: #334155;
            font-weight: 500;
        }
        .result-box .result-value {
            color: #8c4e7e;
            font-size: 32px;
            font-weight: 700;
            line-height: 1;
        }
        .result-box .result-unit {
            font-size: 15px;
            color: #334155;
        }

        /* ===== 房价分隔区 ===== */
        .price-divider {
            margin: 0 32px 24px;
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border: 1px solid #fcd34d;
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }
        .price-divider .divider-icon {
            width: 36px;
            height: 36px;
            background: #f59e0b;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }
        .price-divider .form-label {
            width: auto;
            text-align-last: auto;
            font-size: 15px;
            font-weight: 500;
        }
        .price-divider .msgIp {
            width: 160px;
            background: #fff;
        }

        /* ===== 贷款详情区特殊样式 ===== */
        .loan-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
        }
        .loan-detail-grid .form-row {
            border-top: none;
            padding: 6px 0;
        }
        .loan-detail-grid .form-label {
            width: 100px;
        }
        .rate-row {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .rate-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .rate-item label {
            font-size: 14px;
            color: #334155;
        }
        .rate-item .msgIp {
            width: 100px;
        }
        .rate-hint {
            font-size: 13px;
            color: #ef4444;
            font-style: normal;
        }

        /* ===== 贷款金额信息 ===== */
        .loan-amount-box {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 16px 20px;
            margin-top: 10px;
        }
        .loan-amount-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 8px 0;
            flex-wrap: wrap;
        }
        .loan-amount-row + .loan-amount-row {
            border-top: 1px dashed #e2e8f0;
        }
        .loan-amount-row .form-label {
            width: 120px;
        }
        .loan-amount-row .form-content {
            flex: 1;
        }
        .amount-input {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .amount-input .msgIp {
            width: 150px;
        }
        .readonly-field {
            background: #f1f5f9;
            color: #64748b;
        }
        .editable-field {
            background: #fff;
            border-color: #007bff;
        }
        .editable-field:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }
        .formula-hint {
            font-size: 12px;
            color: #94a3b8;
            margin-left: 8px;
        }

        /* ===== 组合比例 ===== */
        .combo-box {
            background: #f1f5f9;
            border-radius: 8px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .combo-box label {
            font-size: 14px;
            color: #334155;
            font-weight: 500;
        }
        .combo-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .combo-item .msgIp {
            width: 120px;
        }

        /* ===== 按钮 ===== */
        .submit-row {
            display: flex;
            justify-content: center;
            padding: 24px 0 10px;
        }
        .aBtnOutput {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 48px;
            background: #6b3a60;
            border: none;
            border-radius: 28px;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 16px rgba(42, 27, 61, 0.25);
            letter-spacing: 1px;
        }
        .aBtnOutput:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(42, 27, 61, 0.35);
        }

        /* ===== 计算结果区 ===== */
        .dkjsq_content_output {
            display: none;
        }
        .dkjsq_content_output.section-card {
            margin-top: 24px;
            width: auto;
            max-width: calc(100% - 64px);
            box-sizing: border-box;
        }
        .dkjsq_content_output h3.dkjsq_content_tit {
            border-bottom: 1px solid #dedddd;
            color: #0075ff;
            font-size: 16px;
            margin: 0 32px;
            padding-bottom: 10px;
        }
        .dkjsq_content_output h3.dkjsq_content_tit span {
            border-left: 5px solid #0075ff;
            padding-left: 10px;
        }
        .dkjsq_content_form {
            padding: 20px 32px;
            list-style: none;
            margin: 0;
            overflow-x: auto;
        }
        .dkjsq_content_form li {
            padding: 8px 0;
            display: flex;
            align-items: center;
        }
        .dkjsq_content_form li > span:last-child {
            min-width: 0;
            flex: 1;
            overflow: hidden;
        }
        .dkjsq_content_form li span.text {
            width: 150px;
            font-size: 14px;
            text-align: right;
            text-align-last: justify;
        }
        .import-i-text {
            color: #8c4e7e;
            font-size: 32px;
            font-weight: 700;
            font-style: normal;
            display: inline-block;
            vertical-align: middle;
            line-height: 1;
        }
        .dkzearea {
            color: #8c4e7e;
            font-size: 32px;
            font-weight: 700;
            font-style: normal;
            display: inline-block;
            vertical-align: middle;
            line-height: 1;
        }
        .bgbox {
            background: #ececec;
            padding: 10px;
        }
        .bgbox.hkqy {
            background: #ececec;
            padding: 10px;
            display: none;
        }
        .bgbox span.amount {
            color: #666;
        }
        .brspan {
            display: flex;
            align-items: center;
        }
        .nodisplay {
            display: none !important;
        }
        .centertext {
            font-size: 14px;
        }
        .centertext span:before {
            content: "";
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #a2a2a2;
            margin-right: 10px;
            margin-bottom: 2px;
        }
        .smalltext {
            font-size: 13px;
            color: #64748b;
        }
        #hkjh {
            display: none;
        }
        #hkjh .lookthehuankuanjihua,
        #hkjh .closethehuankuanjihua {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            padding: 8px 16px 8px 44px;
            background-position: 10px center;
            background-size: 28px;
            background-repeat: no-repeat;
            border: 1px solid #cfcfcf;
            border-radius: 6px;
            font-size: 14px;
            color: #334155;
            transition: all 0.2s;
            line-height: 1.4;
        }
        #hkjh .lookthehuankuanjihua {
            background-image: url(https://zjj.sz.gov.cn/main-images/openhuankuanmingxi.png);
        }
        #hkjh .closethehuankuanjihua {
            background-image: url(https://zjj.sz.gov.cn/main-images/closehuankuanmingxi.png);
        }
        #hkjh .lookthehuankuanjihua:hover,
        #hkjh .closethehuankuanjihua:hover {
            background-color: #f8fafc;
            border-color: #94a3b8;
        }
        #li_gjjkdje_result,
        #div_dx_loanInfo {
            display: none !important;
        }

        /* ===== 弹窗 ===== */
        #modal {
            border: none;
            border-radius: 8px;
            margin: 0 auto;
            padding: 20px;
            position: fixed;
            top: -100%;
            left: 20%;
            transform: translateX(-50%);
            animation: slideIn 0.3s forwards;
        }
        @keyframes slideIn {
            from { top: -100%; }
            to { top: 10%; }
        }
        #modal .modal-header {
            width: 400px;
            padding: 10px 0;
            display: flex;
            border-bottom: 1px solid #eee;
        }
        #modal .modal-header .modal-title {
            flex: 1;
            font-size: 18px;
        }
        #modal .modal-content {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
            font-size: 14px;
            width: 400px;
        }
        #modal .modal-header .modal-close {
            width: 50px;
            font-size: 20px;
            text-align: right;
            cursor: pointer;
        }
        #modal::backdrop {
            position: fixed;
            top: 0px;
            right: 0px;
            bottom: 0px;
            left: 0px;
            background: rgba(0, 0, 0, 0.2);
        }

        /* ===== 隐藏元素 ===== */
        #old_sloan, #new_sloan, #div_new_loanInfo,
        #yuan_loan .sylv, .jggtext, .sytext {
            display: none;
        }
        #li_totalLoan {
            display: none;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .site-header-inner {
                padding: 0 16px;
                height: 56px;
            }
            .site-logo {
                font-size: 16px;
            }
            .site-nav, .site-actions {
                display: none;
            }
            .menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .header {
                flex-direction: column;
                text-align: center;
                padding: 24px 16px 0;
            }
            .header-watermark {
                left: 50%;
                transform: translateX(-50%);
                font-size: 28px;
            }
            .header-main {
                justify-content: center;
            }
            .header-img {
                position: absolute;
                top: 80px;
                right: 8px;
                width: 100px;
                opacity: 0.25;
                pointer-events: none;
                z-index: 0;
            }
            .header-text {
                position: relative;
                z-index: 1;
            }
            .main-wrapper {
                padding: 0 12px 30px;
            }
            .section-card, .price-divider {
                margin: 0 12px 16px;
            }
            .section-body {
                padding: 14px;
            }
            .form-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .form-label {
                width: auto;
                text-align: left;
                text-align-last: auto;
            }
            .form-content {
                width: 100%;
            }
            .loan-detail-grid {
                grid-template-columns: 1fr;
            }
            .rate-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .price-divider {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            .loan-amount-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .combo-box {
                flex-direction: column;
                align-items: flex-start;
            }
            .result-box {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            /* 表格移动端适配 */
            .table-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                width: 100%;
            }
            .account-table {
                min-width: 480px;
                font-size: 13px;
            }
            .account-table th,
            .account-table td {
                padding: 8px 10px;
            }
            .account-table .msgIp {
                width: 80px;
                height: 30px;
                line-height: 30px;
                font-size: 13px;
            }
            table {
                min-width: auto;
            }
            .msgIp {
                width: 100px;
            }
            .msgIp.b-flex {
                max-width: 140px;
            }
            .dkjsq_content_output h3.dkjsq_content_tit {
                margin: 0 12px;
            }
            .dkjsq_content_form {
                padding: 14px 12px;
            }
            input[type="radio"] {
                width: 20px;
                height: 20px;
            }
            .brspan {
                flex-direction: column;
                align-items: flex-start;
            }
            .lltwo {
                flex-direction: column;
                align-items: flex-start;
            }
            .znsl {
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-start !important;
            }
        }
        @media (max-width: 415px) {
            .msgIp {
                width: 90px;
            }
        }