
        table {
            border-collapse: collapse;
        }

        .jf-tt {
            width: 340px;
            height: auto;
            margin: 20px auto 0 auto;
        }

        .jf-btn {
            margin-top: 10px;
        }

        .jf-btn button {
            height: 25px;
            width: 50px;
        }

        .jf-text {
            margin-top: 10px;
            text-align: left;
        }

        .jf-choice input {
            width: 220px;
            height: 34px;
            line-height: 34px;
            padding: 0 5px;
            border: 1px solid #999;
        }

        .jf-choice select {
            width: 100px;
            height: 36px;
            line-height: 36px;
            vertical-align: top;
            outline: 0;
            border: 1px solid #999;
        }

        .jf-btn button {
            width: 100px;
            height: 36px;
            line-height: 36px;
            background-color: #467cd4;
            color: #FFFFFF;
            border: 0;
            outline: 0;
            border-radius: 5px;
            cursor: pointer;
        }

        .jf-btn button:hover {
            background-color: #1167b7;
        }

        .jf-btn button:active {
            background-color: #1167b7;
            transform: translateY(1px);
            -webkit-transform: translateY(1px);
            -moz-transform: translateY(1px);
            -o-transform: translateY(1px);
        }

        /* 表格样式 */
        .fee-tables-container {
            width: 90%;
            max-width: 1000px;
            margin: 20px auto;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .fee-table {
            width: 100%;
            margin-bottom: 30px;
            border: 1px solid #ddd;
            background-color: white;
        }

        .fee-table caption {
            font-size: 18px;
            font-weight: bold;
            padding: 15px;
            background-color: #467cd4;
            color: white;
            border-radius: 5px 5px 0 0;
        }

        .fee-table th,
        .fee-table td {
            border: 1px solid #ddd;
            padding: 12px 8px;
            text-align: center;
            font-size: 14px;
        }

        .fee-table th {
            background-color: #f2f2f2;
            font-weight: bold;
        }

        .fee-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .fee-table tr:hover {
            background-color: #f0f7ff;
        }

        .table-subtitle {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }

        /* 表二特殊样式 - 两列表格 */
        .fee-table.two-columns th:nth-child(1),
        .fee-table.two-columns td:nth-child(1) {
            width: 50%;
        }

        .fee-table.two-columns th:nth-child(2),
        .fee-table.two-columns td:nth-child(2) {
            width: 50%;
        }

        /* 合并单元格样式 */
        .merged-cell {
            vertical-align: middle;
        }

        @media screen and (max-width: 768px) {
            .fee-tables-container {
                width: 95%;
                padding: 10px;
            }

            .fee-table th,
            .fee-table td {
                padding: 8px 4px;
                font-size: 13px;
            }
        }

        @media screen and (max-width: 414px) {
            .jf-choice input {
                width: 160px;
            }

            .fee-table {
                font-size: 12px;
            }
        }