@charset "UTF-8";
.weather-alert {
    background: #fff9f9;
    border-left: 4px solid #ff6b6b;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.temp-card {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 15px 0;
}
.temp-high span { color: #e74c3c; font-size: 24px; }
.temp-low span { color: #3498db; font-size: 24px; }

.recommend-title {
    color: #333;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px;
}
.recommend-desc {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 6px;
}

.cy_show {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}
.cy_card {
    flex: 1 1 120px;
    text-align: center;
}
.cy_card img {
    width: 100%;
    max-width: 100px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.cy_card img:hover {
    transform: scale(1.05);
}

/* 五行穿衣样式 */
.wuxing-box {
    background: #fffaf5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}
.wuxing-date {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}
.wuxing-content h3 {
    color: #333;
}
.wuxing-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}
.color-item {
    flex: 1 1 100px;
    padding: 10px;
    border-radius: 6px;
    color: white;
    text-align: center;
}
.color-item.avoid {
    opacity: 0.7;
    text-decoration: line-through;
}
.wuxing-tip {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* 科学解读样式 */
.science-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
.science-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}
.science-card h3{
    line-height: 36px;
}
.science-card li{
    line-height: 30px;
}
.material-guide table {
    width: 100%;
    border-collapse: collapse;
}
.material-guide th,
.material-guide td {
    border: 1px solid #eee;
    padding: 8px;
    text-align: left;
}
.material-guide th {
    background: #f5f5f5;
}
