    /* 表单样式优化 */
    .wuxing-calculator {
        background-color: #fff;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid #eaeaea;
    }

    .nayin-form .form-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px 15px;
    }

    .nayin-form .form-group {
        flex: 1;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .nayin-form label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        color: #444;
    }

    .nayin-form .form-control {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #d6d6d6;
        border-radius: 4px;
        background: #f9f9f9;
        font-size: 15px;
        transition: all 0.3s;
    }

    .nayin-form .form-control:focus {
        border-color: #d4a017;
        box-shadow: 0 0 5px rgba(212, 160, 23, 0.3);
        background: #fff;
    }

    .radio-group {
        display: flex;
        gap: 15px;
    }

    .radio-group label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .radio-group input {
        margin-right: 5px;
    }

    .center-btn {
        justify-content: center;
        margin-top: 10px;
    }

    .btn-submit {
        background: #d4a017;
        color: white;
        border: none;
        border-radius: 4px;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 8px rgba(212, 160, 23, 0.2);
    }

    .btn-submit:hover {
        background: #b8860b;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(212, 160, 23, 0.3);
    }

    /* 结果区域样式 */
    .result-container {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid #e6edf7;
        margin-bottom: 30px;
    }

    .result-header {
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: white;
        padding: 15px 20px;
        position: relative;
    }

    .result-header h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }

    .result-section {
        margin-bottom: 20px;
        border-bottom: 1px solid #edf2f9;
    }

    .result-section:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .result-title {
        margin: 0;
        padding: 15px 20px;
        color: #7b5300;
        font-size: 16px;
        font-weight: 600;
        background-color: #fff9e6;
        border-bottom: 1px solid #f3e9c7;
    }

    .result-info,
    .analysis-content,
    .fate-analysis,
    .harmony-content {
        padding: 15px 20px;
    }

    .info-row {
        display: flex;
        margin-bottom: 8px;
    }

    .info-row:last-child {
        margin-bottom: 0;
    }

    .info-label {
        font-weight: 500;
        color: #666;
        width: 80px;
        flex-shrink: 0;
    }

    .info-value {
        flex: 1;
        color: #333;
    }

    /* 八字命盘表格样式 */
    .bazi-table-container {
        margin: 15px 20px;
        overflow-x: auto;
    }

    .bazi-table {
        width: 100%;
        border-collapse: collapse;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .bazi-table th,
    .bazi-table td {
        padding: 12px 15px;
        text-align: center;
        border: 1px solid #e6edf7;
    }

    .bazi-table thead tr {
        background-color: #d4a017;
        color: white;
        font-weight: 600;
    }

    .bazi-table tbody tr:nth-child(odd) {
        background-color: #fffbf0;
    }

    .bazi-table tbody tr:nth-child(even) {
        background-color: #ffffff;
    }

    .bazi-table tbody tr:hover {
        background-color: #fff9e6;
    }

    .bazi-label {
        font-weight: 600;
        color: #444;
        background-color: #fff2d1;
    }

    .bazi-value {
        font-size: 1.1em;
    }

    .bazi-day {
        background-color: #fff8e1;
        font-weight: 600;
        color: #d4a017;
    }

    .bazi-row td {
        font-size: 1.3em;
        font-weight: 600;
    }

    /* 五行分布图表样式 */
    .wuxing-chart-container {
        padding: 15px 20px;
    }

    .wuxing-info {
        padding: 10px 15px;
        background: #fff9e6;
        border-radius: 6px;
        margin: 0 0 15px;
        border: 1px solid #f3e9c7;
    }

    .wuxing-overview {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .wuxing-overview p {
        margin: 5px 20px 5px 0;
    }

    .wuxing-status {
        font-weight: bold;
        color: #444;
    }

    .wuxing-status.highlight {
        color: #d4a017;
        font-size: 1.1em;
    }

    .wuxing-barchart {
        margin: 20px 0;
    }

    .wuxing-bar-item {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
    }

    .wuxing-name {
        width: 40px;
        text-align: center;
        font-weight: bold;
        margin-right: 10px;
    }

    .wuxing-bar-container {
        flex: 1;
        background-color: #f5f5f5;
        border-radius: 4px;
        height: 30px;
        overflow: hidden;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .wuxing-bar {
        height: 100%;
        min-width: 40px;
        border-radius: 4px;
        position: relative;
        transition: width 1s ease;
    }

    .wuxing-bar.jin {
        background: linear-gradient(to right, #BDC3C7, #95A5A6);
    }

    .wuxing-bar.mu {
        background: linear-gradient(to right, #2ECC71, #27AE60);
    }

    .wuxing-bar.shui {
        background: linear-gradient(to right, #3498DB, #2980B9);
    }

    .wuxing-bar.huo {
        background: linear-gradient(to right, #E74C3C, #C0392B);
    }

    .wuxing-bar.tu {
        background: linear-gradient(to right, #F39C12, #D35400);
    }

    .wuxing-value {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-weight: bold;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
        font-size: 14px;
    }

    .wuxing-list {
        list-style: none;
        padding: 0 20px;
        margin: 15px 0;
    }

    .wuxing-list p {
        margin-bottom: 15px;
    }

    .wuxing-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .wuxing-list ul li {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .wuxing-item {
        font-weight: 600;
    }

    .wuxing-item.jin {
        color: #7f8c8d;
    }

    .wuxing-item.mu {
        color: #27ae60;
    }

    .wuxing-item.shui {
        color: #3498db;
    }

    .wuxing-item.huo {
        color: #c0392b;
    }

    .wuxing-item.tu {
        color: #d35400;
    }

    .wuxing-like {
        color: #d4a017;
        margin-left: 5px;
    }

    /* 分析部分样式 */
    .analysis-item {
        margin-bottom: 15px;
    }

    .analysis-item:last-child {
        margin-bottom: 0;
    }

    .analysis-subtitle {
        font-size: 15px;
        color: #7b5300;
        margin: 0 0 8px 0;
        padding-bottom: 5px;
        border-bottom: 1px dashed #f3e9c7;
    }

    /* 五行调和建议样式 */
    .harmony-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .harmony-item {
        background-color: #fffbf0;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border-top: 3px solid #d4a017;
    }

    .harmony-item h5 {
        color: #7b5300;
        margin-top: 0;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .harmony-item p {
        margin: 0;
        line-height: 1.6;
    }

    .harmony-item i {
        margin-right: 8px;
        color: #d4a017;
    }

    /* 付费精批按钮美化 */
    .premium-analysis {
        text-align: center;
        margin: 20px;
        padding: 25px;
        background: linear-gradient(135deg, #fff6e9, #fffaf0);
        border-radius: 10px;
        border: 1px solid #ffeeba;
        position: relative;
        overflow: hidden;
    }

    .premium-analysis:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #d4a017, #b8860b);
        border-radius: 5px 5px 0 0;
    }

    .premium-analysis p {
        margin-bottom: 20px;
        font-size: 16px;
        color: #7b5300;
        line-height: 1.6;
    }

    .premium-btn {
        display: inline-block;
        padding: 12px 30px;
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: white !important;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    }

    .premium-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(184, 134, 11, 0.4);
    }

    .premium-icon {
        display: inline-block;
        margin-right: 8px;
        animation: pointing 1.5s infinite;
    }

    @keyframes pointing {
        0% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(5px);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* 知识介绍部分样式 */
    .info-content {
        padding: 10px 0;
    }

    .info-item {
        margin-bottom: 20px;
        background-color: #fffbf0;
        border-radius: 8px;
        padding: 15px;
        border: 1px solid #f3e9c7;
    }

    .info-item h4 {
        color: #7b5300;
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 12px;
        border-bottom: 1px dashed #f3e9c7;
        padding-bottom: 8px;
    }

    .info-item h4 i {
        margin-right: 8px;
        color: #d4a017;
    }

    .info-item p {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .feature-list {
        padding-left: 20px;
        margin: 0;
    }

    .feature-list li {
        margin-bottom: 8px;
        line-height: 1.6;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .form-row {
            flex-direction: column;
        }

        .form-group {
            width: 100%;
            padding: 0;
        }

        .wuxing-overview {
            flex-direction: column;
        }

        .info-row {
            flex-direction: column;
        }

        .info-label {
            width: 100%;
            margin-bottom: 5px;
        }

        .bazi-table th,
        .bazi-table td {
            padding: 8px 10px;
            font-size: 0.9em;
        }

        .bazi-row td {
            font-size: 1.1em;
        }

        .harmony-list {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .wuxing-name {
            width: 30px;
            font-size: 14px;
        }

        .wuxing-value {
            font-size: 12px;
        }

        .premium-btn {
            padding: 10px 20px;
            font-size: 16px;
        }
    }