/* 拼音查字页面样式 */

/* 拼音查字头部 */
.zipinyin-header {
    text-align: center;
    padding: 30px 0 20px;
    border-bottom: 2px solid #2c5f41;
    margin-bottom: 20px;
}

.zipinyin-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c5f41;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.zipinyin-subtitle {
    font-size: 14px;
    color: #888;
}

/* 拼音说明 */
.zipinyin-desc {
    padding: 20px;
    background: linear-gradient(135deg, #f5f9f7 0%, #e8f4ef 100%);
    border-left: 4px solid #2c5f41;
    border-radius: 8px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #444;
    font-size: 14px;
    text-align: justify;
}

/* 首字母导航区 */
.pinyin-nav-section {
    margin-bottom: 30px;
}

.pinyin-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c5f41;
    margin-bottom: 15px;
}

.pinyin-letter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.letter-nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.letter-nav-item:hover,
.letter-nav-item.active {
    background-color: #2c5f41;
    color: #fff;
    border-color: #2c5f41;
}

/* 拼音分组 */
.pinyin-group {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.pinyin-group:last-child {
    border-bottom: none;
}

.pinyin-group-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c5f41;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pinyin-group-title::before {
    content: "#";
    color: #4a8c5c;
    font-size: 18px;
}

/* 拼音列表 */
.pinyin-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pinyin-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pinyin-item:hover {
    background-color: #2c5f41;
    color: #fff;
    border-color: #2c5f41;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(44, 95, 65, 0.2);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .zipinyin-title {
        font-size: 24px;
    }

    .pinyin-letter-nav {
        gap: 6px;
    }

    .letter-nav-item {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .pinyin-item {
        padding: 6px 12px;
        font-size: 13px;
    }
}
