/* 每日财运页面样式 */
.caiyun-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.caiyun-calculator {
    padding: 20px;
}

.caiyun-form {
    background: #fff;
    border-radius: 8px;
}

.date-picker {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff9e6;
    border-radius: 6px;
    border-left: 4px solid #d4a017;
}

.date-title {
    font-size: 16px;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 600;
}

.center-btn {
    text-align: center;
    margin: 25px 0 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);
    display: inline-block;
    text-align: center;
}

.btn-submit:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 160, 23, 0.3);
}

/* 结果容器 */
.result-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.result-header {
    background-color: #f8f5e6;
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
}

.result-header h3 {
    margin: 0;
    color: #8B4513;
    font-size: 18px;
    font-weight: 600;
}

.result-data {
    padding: 20px;
}

/* 结果概览 */
.result-overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #d4a017, #8B4513);
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.overview-date {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.lunar-date {
    font-size: 14px;
    opacity: 0.8;
}

.overview-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.score-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.score-text {
    font-size: 12px;
    margin-top: 3px;
}

.score-stars {
    color: #ffd700;
    font-size: 16px;
}

/* 结果部分 */
.result-section {
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.result-title {
    padding: 12px 15px;
    background-color: #f8f5e6;
    color: #8B4513;
    font-size: 16px;
    margin: 0;
    border-bottom: 1px solid #eaeaea;
    font-weight: 600;
}

.result-title i {
    margin-right: 8px;
}

.result-content {
    padding: 15px;
}

.fortune-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* 分析项 */
.analysis-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eaeaea;
}

.analysis-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d4a017;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 20px;
    flex-shrink: 0;
}

.item-content {
    flex-grow: 1;
}

.item-content h5 {
    margin: 0 0 10px;
    color: #8B4513;
    font-size: 16px;
}

.item-value {
    font-size: 18px;
    color: #d4a017;
    font-weight: 600;
    margin: 5px 0;
}

.item-desc {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0;
}

/* 进度条 */
.progress-bar {
    height: 8px;
    background-color: #f1f1f1;
    border-radius: 4px;
    margin: 10px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #d4a017;
    border-radius: 4px;
}

/* 建议框 */
.advice-box {
    background-color: #fff9e6;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #d4a017;
}

.advice-content p {
    margin: 0;
    line-height: 1.7;
    color: #333;
}

/* 付费分析按钮 */
.premium-analysis {
    margin-top: 25px;
    background: linear-gradient(135deg, #fff9e6, #f8f5e6);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eaeaea;
}

.premium-analysis p {
    margin-bottom: 15px;
    color: #555;
}

.premium-btn {
    background: linear-gradient(135deg, #d4a017, #8B4513);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.premium-icon {
    margin-right: 5px;
}

/* 说明模块 */
.notice-list {
    padding: 10px 0;
}

.notice-list p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.notice-item {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #eaeaea;
}

.notice-item h4 {
    color: #8B4513;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 12px;
    border-bottom: 1px dashed #e6cfa1;
    padding-bottom: 8px;
}

.notice-item h4 i {
    margin-right: 8px;
}

/* 媒体查询响应式布局 */
@media (max-width: 768px) {
    .result-overview {
        flex-direction: column;
        padding: 15px;
    }

    .overview-date {
        margin-bottom: 15px;
        align-items: center;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-row {
        flex-direction: column;
    }

    .item-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .date-picker {
        padding: 10px;
    }

    .btn-submit {
        width: 100%;
        padding: 10px;
    }

    .score-circle {
        width: 60px;
        height: 60px;
    }

    .score-number {
        font-size: 24px;
    }

    .analysis-item {
        flex-direction: column;
    }

    .item-icon {
        margin-bottom: 10px;
    }
}