    /* 财神方位专用样式 */
    .caishen-wrapper {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        overflow: hidden;
    }

    .caishen-title-area {
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: #fff;
        padding: 30px;
        text-align: center;
    }

    .caishen-title-center h1 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .subtitle {
        font-size: 16px;
        opacity: 0.9;
        line-height: 1.6;
    }

    .breadcrumb-nav {
        margin-bottom: 20px;
    }

    .breadcrumb {
        background: #fff;
        padding: 15px 20px;
        border-radius: 6px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        font-size: 14px;
    }

    .breadcrumb .fa-home {
        margin-right: 8px;
        color: #d4a017;
    }

    .breadcrumb .separator {
        margin: 0 10px;
        color: #999;
    }

    /* 日期导航 */
    .date-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        background: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
    }

    .nav-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #d4a017;
        color: #fff;
        padding: 12px 20px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .nav-btn:hover {
        background: #b8860b;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
    }

    .current-date-info {
        text-align: center;
    }

    .solar-date {
        font-size: 24px;
        font-weight: bold;
        color: #d4a017;
        margin-bottom: 4px;
    }

    .lunar-date {
        font-size: 14px;
        color: #666;
    }

    /* 指南针部分 */
    .compass-section {
        margin: 30px 0;
    }

    .section-title {
        background: #d4a017;
        color: #fff;
        padding: 15px 25px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
    }

    .section-content {
        padding: 40px 30px;
        background: #fff;
    }

    .compass-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .compass-main {
        display: flex;
        justify-content: center;
    }

    .fang_tu {
        position: relative;
        width: 320px;
        height: 320px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .zhengzhi {
        width: 320px;
        height: 320px;
        font-size: 20px;
        color: #fff;
        position: absolute;
        text-align: center;
        z-index: 10;
        line-height: 160px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .icon_yuanpan {
        background-image: url(../images/yuanpan.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        width: 320px;
        height: 320px;
        position: relative;
    }

    .yuanzhe {
        background-image: url(../images/yuanzhe.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        width: 320px;
        height: 320px;
        line-height: 320px;
        position: relative;
        transition: transform 0.5s ease;
    }

    .compass-info {
        text-align: center;
    }

    .main-direction {
        margin-bottom: 20px;
    }

    .direction-label {
        font-size: 18px;
        color: #666;
        margin-bottom: 10px;
    }

    .direction-value {
        font-size: 36px;
        font-weight: bold;
        color: #d4a017;
        margin-bottom: 10px;
    }

    .tip-text {
        font-size: 14px;
        color: #555;
        background: #f8f9fa;
        padding: 15px;
        border-radius: 6px;
        border-left: 4px solid #d4a017;
    }

    .tip-text i {
        color: #d4a017;
        margin-right: 8px;
    }

    /* 五神方位 */
    .gods-position-section {
        margin: 30px 0;
    }

    .gods-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    .god-item {
        background: #fff9e6;
        border: 2px solid #d4a017;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .god-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(212, 160, 23, 0.2);
    }

    .god-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .god-name {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
    }

    .god-position {
        font-size: 20px;
        font-weight: bold;
        color: #d4a017;
        margin-bottom: 8px;
    }

    .god-desc {
        font-size: 12px;
        color: #666;
        line-height: 1.4;
    }

    .chong-info {
        background: #fff5f5;
        border: 2px solid #e74c3c;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .chong-label {
        font-weight: bold;
        color: #555;
    }

    .chong-value {
        font-size: 20px;
        font-weight: bold;
        color: #e74c3c;
    }

    .chong-desc {
        font-size: 14px;
        color: #666;
    }

    /* 十二时辰 */
    .time-caishen-section {
        margin: 30px 0;
    }

    .time-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }

    .time-item {
        background: #f8f9fa;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .time-item.itemji {
        background: #e8f5e8;
        border-color: #28a745;
    }

    .time-item.itemxiong {
        background: #fff5f5;
        border-color: #dc3545;
    }

    .time-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .time-period {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
    }

    .time-range {
        font-size: 12px;
        color: #666;
        margin-bottom: 10px;
    }

    .time-ganzhi {
        font-size: 14px;
        font-weight: bold;
        color: #d4a017;
        margin-bottom: 8px;
    }

    .time-caishen {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
    }

    .time-luck {
        font-size: 14px;
        font-weight: bold;
        padding: 4px 8px;
        border-radius: 4px;
    }

    .itemji .time-luck {
        background: #28a745;
        color: #fff;
    }

    .itemxiong .time-luck {
        background: #dc3545;
        color: #fff;
    }

    .time-legend {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 20px;
    }

    .legend-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .legend-color {
        width: 16px;
        height: 16px;
        border-radius: 4px;
    }

    .legend-color.ji {
        background: #28a745;
    }

    .legend-color.xiong {
        background: #dc3545;
    }

    .legend-text {
        font-size: 14px;
        color: #555;
    }

    /* 财运建议 */
    .fortune-tips-section {
        margin: 30px 0;
    }

    .tips-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tip-card {
        background: #fff9e6;
        border: 2px solid #d4a017;
        border-radius: 8px;
        padding: 25px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .tip-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 160, 23, 0.2);
    }

    .tip-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .tip-title {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 12px;
    }

    .tip-content {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    /* 今天适不适合做什么样式 */
    .lifa_nav {
        margin: 30px 0;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .containerhl {
        padding: 0;
    }

    .titlehl {
        background: linear-gradient(135deg, #d4a017, #b8860b);
        color: #fff;
        padding: 20px;
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        margin: 0;
        position: relative;
    }

    .divider {
        height: 3px;
        background: linear-gradient(90deg, #d4a017, #fff, #d4a017);
        margin: 0;
    }

    .button-container {
        padding: 30px 20px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .shiht_item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .shiht_item a {
        display: block;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        color: #333;
        text-decoration: none;
        padding: 12px 20px;
        border-radius: 6px;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .shiht_item a:hover {
        background: #d4a017;
        color: #fff;
        border-color: #d4a017;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
    }

    /* 响应式设计 */
    @media (max-width: 1200px) {
        .gods-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .time-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .button-container {
            grid-template-columns: repeat(4, 1fr);
        }

        .compass-container {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .fang_tu,
        .zhengzhi,
        .icon_yuanpan,
        .yuanzhe {
            width: 280px;
            height: 280px;
        }

        .zhengzhi {
            line-height: 140px;
            font-size: 18px;
        }

        .yuanzhe {
            line-height: 280px;
        }
    }

    @media (max-width: 768px) {
        .date-navigation {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        .compass-container {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .fang_tu,
        .zhengzhi,
        .icon_yuanpan,
        .yuanzhe {
            width: 240px;
            height: 240px;
        }

        .zhengzhi {
            line-height: 120px;
            font-size: 16px;
        }

        .yuanzhe {
            line-height: 240px;
        }

        .gods-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .time-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .tips-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .chong-info {
            flex-direction: column;
            gap: 10px;
        }

        .button-container {
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 20px 15px;
        }

        .titlehl {
            font-size: 20px;
            padding: 15px;
        }

        .shiht_item a {
            padding: 10px 12px;
            font-size: 13px;
            min-height: 40px;
        }
    }

    @media (max-width: 480px) {
        .gods-grid {
            grid-template-columns: 1fr;
        }

        .time-grid {
            grid-template-columns: 1fr;
        }

        .fang_tu,
        .zhengzhi,
        .icon_yuanpan,
        .yuanzhe {
            width: 200px;
            height: 200px;
        }

        .zhengzhi {
            line-height: 100px;
            font-size: 14px;
        }

        .yuanzhe {
            line-height: 200px;
        }

        .button-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }