/* 起名网站主题样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, '微软雅黑', '宋体';
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 60px;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.header-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
}

.main-nav {
    padding: 12px 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.current {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-nav li:hover .sub-nav {
    display: block;
}

.sub-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1001;
}

.sub-nav a {
    color: #333;
    display: block;
    padding: 8px 20px;
    border-radius: 0;
}

.sub-nav a:hover {
    background: #f8f9fa;
    transform: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* 主内容区域 */
.main-content {
    flex: 1;
    padding: 40px 0;
    margin: 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

/* 左侧主要内容 */
.main-left {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.section-header h3 {
    font-size: 20px;
    margin: 0;
}

.section-header p {
    opacity: 0.9;
    margin: 0;
}

.more-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
}

.more-link:hover {
    opacity: 1;
}

/* 起名功能区 */
.naming-section {
    margin-bottom: 30px;
}

.naming-tabs {
    padding: 25px;
}

.tab-headers {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.tab-btn.active,
.tab-btn:hover {
    background: #667eea;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.naming-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.form-row {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.form-row label {
    font-weight: 600;
    min-width: 80px;
    color: #333;
}

.form-row input[type="text"],
.form-row input[type="date"],
.form-row select {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    min-width: 200px;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #667eea;
}

.gender-select {
    display: flex;
    gap: 20px;
}

.gender-select label {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: auto;
    font-weight: normal;
    cursor: pointer;
}

/* 按钮组样式 */
.btn-group {
    display: flex;
    gap: 15px;
    width: 100%;
}

.btn-submit {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 免费起名按钮 */
.btn-free {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-free:hover {
    background: linear-gradient(135deg, #218838 0%, #1cb085 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* 专业起名按钮 */
.btn-premium {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e53e3e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 免费测名按钮 */
.btn-free-test {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-free-test:hover {
    background: linear-gradient(135deg, #218838 0%, #1cb085 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* 专业测名按钮 */
.btn-premium-test {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.btn-premium-test:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e53e3e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* 姓氏列表 */
.surname-section {
    margin-bottom: 30px;
}

.surname-list {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 18px;
}

.surname-list a {
    text-align: center;
    padding: 0;
    background: url('../images/word3.png') no-repeat center center;
    background-size: 100% 100%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 28px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: '楷体', '楷体_GB2312', 'KaiTi', serif;
}

.surname-list a:hover {
    transform: translateY(-3px) scale(1.05);
    color: #8B4513;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 最新起名示例 */
.examples-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
}

.examples-section .section-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.examples-section .section-header h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
}

.examples-section .section-header .icon-star::before {
    content: '⭐';
    margin-right: 8px;
    font-size: 18px;
}

.examples-section .section-desc {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

.example-grid {
    padding: 25px;
}

.name-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.name-grid ul {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
}

.name-grid li {
    list-style: none;
}

.name-grid li a,
.name-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    font-family: '楷体', KaiTi, serif;
    min-height: 80px;
}

.name-grid li a::before,
.name-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.name-grid li a:hover::before,
.name-item:hover::before {
    left: 100%;
}

.name-grid li a:hover,
.name-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.name-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: '楷体', KaiTi, serif;
}

.name-rating {
    font-size: 12px;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.name-item:hover .name-rating {
    color: #ffeb3b;
}

/* 姓氏起名推荐 - 全新设计 */
.recommend-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f8fbff 0%, #fff9f3 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.08);
    overflow: hidden;
    position: relative;
}

.recommend-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #ff9a9e 100%);
    border-radius: 20px 20px 0 0;
}

.recommend-section .section-header {
    background: transparent;
    color: #2d3748;
    text-align: center;
    padding: 30px 20px 20px;
    margin: 0;
    position: relative;
}

.recommend-section .section-header h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recommend-section .section-header .icon-family::before {
    content: '🏮';
    margin-right: 8px;
    font-size: 20px;
}

.recommend-section .section-desc {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.recommend-grid {
    padding: 0 30px 30px;
}

.recommend-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.recommend-list ul {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
}

.recommend-list li {
    list-style: none;
    margin-bottom: 0;
}

.recommend-list li a,
.recommend-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 15px;
    backdrop-filter: blur(10px);
}

.recommend-list li a::before,
.recommend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transition: left 0.6s ease;
}

.recommend-list li a:hover::before,
.recommend-item:hover::before {
    left: 0%;
}

.recommend-list li a:hover,
.recommend-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.recommend-list li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #667eea;
    border-right: 2px solid #667eea;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.recommend-list li a:hover::after {
    right: 15px;
    opacity: 1;
    border-color: #667eea;
}

.recommend-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: '楷体', KaiTi, serif;
    color: white;
    margin-right: 16px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
}

.recommend-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef, #fecfef, #667eea);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommend-item:hover .recommend-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.recommend-item:hover .recommend-icon::before {
    opacity: 1;
}

.recommend-content {
    flex: 1;
    padding-right: 20px;
}

.recommend-content h4 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.3;
}

.recommend-type {
    font-size: 12px;
    color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.recommend-item:hover .recommend-type {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.3);
    color: #5a67d8;
}

.recommend-arrow {
    display: none;
    /* 已用CSS箭头代替 */
}

/* 通用样式 */
.section-footer {
    text-align: center;
    margin-top: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.view-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* 十二生肖起名 */
.zodiac-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f0fff0 0%, #f8f8ff 100%);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
}

.zodiac-section .section-header {
    background: linear-gradient(135deg, #32cd32 0%, #667eea 100%);
    color: white;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.zodiac-section .section-header h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
}

.zodiac-section .section-header .icon-zodiac::before {
    content: '🐉';
    margin-right: 8px;
    font-size: 18px;
}

.zodiac-section .section-desc {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 400px;
}

.zodiac-tabs {
    background: rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(102, 126, 234, 0.1);
}

.zodiac-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(102, 126, 234, 0.1);
    padding: 1px;
}

.zodiac-item {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zodiac-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.zodiac-item:hover::before {
    left: 100%;
}

.zodiac-item:hover,
.zodiac-item.active {
    background: linear-gradient(135deg, #32cd32 0%, #667eea 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.zodiac-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}



.zodiac-emoji {
    font-size: 32px;
    line-height: 1;
    display: block;
}

.zodiac-item:hover .zodiac-icon,
.zodiac-item.active .zodiac-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}



.zodiac-item:hover .zodiac-emoji,
.zodiac-item.active .zodiac-emoji {
    transform: scale(1.1);
}

.zodiac-name {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    font-family: '楷体', KaiTi, serif;
}

.zodiac-content {
    background: white;
    padding: 25px;
    position: relative;
}

.zodiac-tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.zodiac-tab-content.active {
    display: block;
}

.zodiac-links {
    margin-bottom: 25px;
}

.zodiac-link {
    display: block;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zodiac-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.zodiac-link:hover::before {
    left: 100%;
}

.zodiac-link:hover {
    background: linear-gradient(135deg, #32cd32 0%, #667eea 100%);
    color: white;
    border-color: #32cd32;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.3);
}

.link-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: '楷体', KaiTi, serif;
}

.link-desc {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

.zodiac-articles h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #32cd32;
    display: inline-block;
}

.zodiac-articles ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zodiac-articles li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.zodiac-articles li:last-child {
    border-bottom: none;
}

.zodiac-articles li:hover {
    background: #f8f9fa;
    margin: 0 -15px;
    padding: 10px 15px;
    border-radius: 6px;
}

.article-time {
    background: #32cd32;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
    font-weight: 500;
}

.zodiac-articles a {
    color: #333;
    text-decoration: none;
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.zodiac-articles a:hover {
    color: #32cd32;
}

/* 分类文章列表 */
.articles-section {
    margin-bottom: 0;
}

.article-categories {
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-block {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.category-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.category-row:last-child {
    margin-bottom: 0;
}

.half-block {
    margin-bottom: 0;
    padding: 15px;
}

.category-title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7B68EE;
}

.category-title h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    font-family: '楷体', KaiTi, serif;
}

.category-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-title a:hover {
    color: #7B68EE;
}

.category-content {
    display: grid;
    gap: 15px;
}

.featured-articles {
    display: grid;
    gap: 15px;
}

.featured-articles.compact {
    margin-bottom: 10px;
}

.featured-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.featured-item a {
    display: flex;
    text-decoration: none;
    color: #333;
    gap: 15px;
    padding: 15px;
}

.featured-item .article-thumb {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.compact .featured-item .article-thumb {
    width: 80px;
    height: 60px;
}

.featured-item .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-item:hover .article-thumb img {
    transform: scale(1.05);
}

.featured-item .article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-item h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    transition: color 0.3s ease;
}

.compact .featured-item h5 {
    font-size: 14px;
    margin-bottom: 0;
}

.featured-item:hover h5 {
    color: #7B68EE;
}

.featured-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-links {
    display: grid;
    gap: 8px;
}

.article-links.compact {
    gap: 6px;
}

.article-links a {
    display: block;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.article-links.compact a {
    padding: 6px 10px;
    font-size: 13px;
}

.article-links a:hover {
    background: #7B68EE;
    color: white;
    border-color: #7B68EE;
    transform: translateX(5px);
}

.article-links a::before {
    content: '•';
    margin-right: 8px;
    color: #7B68EE;
    font-weight: bold;
}

.article-links a:hover::before {
    color: white;
}

/* 右侧边栏 */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.widget-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.widget-header h4 {
    margin: 0;
    font-size: 18px;
}

.widget-content {
    padding: 20px;
}

/* 热门推荐 */
.hot-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hot-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.hot-item:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.hot-item .icon {
    font-size: 24px;
}

.hot-item h5 {
    margin: 0 0 3px 0;
    font-size: 16px;
}

.hot-item p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

/* 工具列表 */
.tool-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tool-item {
    padding: 10px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.tool-item:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

/* 最新解名 */
.recent-names ul {
    list-style: none;
}

.recent-names li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.recent-names li:last-child {
    border-bottom: none;
}

.recent-names a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-names a:hover {
    color: #667eea;
}

/* 友情链接 */
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.links a {
    padding: 5px 10px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 15px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.links a:hover {
    background: #667eea;
    color: white;
}

/* 底部样式 */
.footer {
    background: #333;
    color: white;
    padding: 30px 0;
    margin-top: auto;
    text-align: center;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-inner p {
    margin: 10px 0;
    line-height: 1.8;
}

.footer-inner a {
    color: #667eea;
    text-decoration: none;
}

.footer-inner a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
/* 移动端顶部导航和菜单样式 */
.mobile-top-nav {
    display: none;
}

.mobile-nav-item {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-item:hover {
    background-color: #f0f0f0;
    color: #667eea;
}

/* 移动端汉堡按钮 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: #667eea;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-text {
    font-size: 10px;
    color: #667eea;
    margin-top: 2px;
    font-weight: 500;
}

/* 汉堡按钮动画 */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 移动端菜单面板 */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu-panel.show .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-icon {
    font-size: 20px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-body {
    padding: 20px;
}

.mobile-menu-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.section-icon {
    font-size: 18px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.zodiac-grid .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.item-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.item-text {
    flex: 1;
}

.zodiac-grid .menu-item {
    justify-content: center;
    font-size: 13px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-top {
        position: relative;
        padding: 10px 0;
    }

    .header-top .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 40px;
    }

    .mobile-top-nav {
        display: flex;
        gap: 5px;
        margin-left: auto;
        margin-right: 15px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .main-nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .header-nav {
        display: none;
    }

    /* 移动端显示优化 */
    .mobile-top-nav .mobile-nav-item {
        font-size: 15px;
        padding: 6px 10px;
        white-space: nowrap;
    }

    /* 动画优化 */
    .mobile-menu-panel {
        animation: fadeIn 0.3s ease-in-out;
    }

    .mobile-menu-panel.show {
        display: block !important;
    }

    /* 移动端菜单按钮优化 */
    .mobile-menu-btn {
        min-width: 50px;
        min-height: 50px;
        border-radius: 8px;
        background: rgba(102, 126, 234, 0.1);
    }

    .mobile-menu-btn:hover {
        background: rgba(102, 126, 234, 0.2);
    }

    /* 菜单项动画 */
    .menu-item {
        animation: slideInRight 0.3s ease-out;
    }

    .menu-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .menu-item:nth-child(2) {
        animation-delay: 0.15s;
    }

    .menu-item:nth-child(3) {
        animation-delay: 0.2s;
    }

    .menu-item:nth-child(4) {
        animation-delay: 0.25s;
    }

    .menu-item:nth-child(5) {
        animation-delay: 0.3s;
    }

    .menu-item:nth-child(6) {
        animation-delay: 0.35s;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .header-top {
        padding: 10px 0;
    }

    .main-content {
        padding: 20px 0;
    }
}

/* 更小屏幕移动端优化 */
@media (max-width: 480px) {
    .mobile-top-nav {
        gap: 2px;
        margin-right: 8px;
    }

    .mobile-top-nav .mobile-nav-item {
        font-size: 14px;
        padding: 5px 8px;
    }

    .main-content {
        padding: 15px 0;
    }

    .mobile-menu-btn {
        min-width: 45px;
        min-height: 45px;
        padding: 6px;
    }

    .hamburger-line {
        width: 18px;
        height: 1.5px;
    }

    .menu-text {
        font-size: 9px;
    }

    .mobile-menu-content {
        width: 90%;
        max-width: 320px;
    }

    .mobile-menu-header {
        padding: 15px;
    }

    .mobile-menu-title {
        font-size: 16px;
    }

    .mobile-menu-body {
        padding: 15px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }

    .zodiac-grid .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .menu-item {
        padding: 10px;
        font-size: 13px;
    }

    .item-icon {
        font-size: 14px;
    }

    .section-title {
        font-size: 15px;
    }

    .logo img {
        height: 45px;
    }

    .header-nav {
        padding: 0;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .form-row label {
        min-width: auto;
        margin-bottom: 5px;
    }

    .gender-select {
        justify-content: center;
    }

    .surname-list {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 12px;
        padding: 20px;
    }

    .surname-list a {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .name-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }

    .name-grid li a,
    .name-item {
        padding: 15px 10px;
        font-size: 14px;
        min-height: 70px;
    }

    .name-text {
        font-size: 16px;
    }

    .name-rating {
        font-size: 13px;
    }

    .recommend-list li a,
    .recommend-item {
        padding: 16px;
        font-size: 14px;
        border-radius: 12px;
    }

    .recommend-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
        margin-right: 12px;
    }

    .examples-section .section-header,
    .recommend-section .section-header {
        padding: 25px 15px 15px;
    }

    .recommend-section .section-header h3 {
        font-size: 22px;
    }

    .example-grid,
    .recommend-grid {
        padding: 0 20px 25px;
    }

    /* 平板端推荐列表改为单列 */
    .recommend-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* 平板端生肖布局调整 */
    .zodiac-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .zodiac-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .zodiac-item {
        padding: 12px 8px;
    }

    .zodiac-icon {
        width: 42px;
        height: 42px;
    }



    .zodiac-emoji {
        font-size: 28px;
        display: block;
    }

    .zodiac-name {
        font-size: 12px;
    }

    .zodiac-content {
        padding: 20px;
    }

    .tool-list {
        grid-template-columns: 1fr;
    }



    .section-header {
        padding: 15px 20px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .naming-tabs,
    .surname-list,
    .example-list,
    .recommend-list,
    .article-list {
        padding: 20px;
    }

    .widget-content {
        padding: 15px;
    }

    /* 移动端按钮组垂直排列 */
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .tab-headers {
        flex-direction: column;
    }

    .tab-btn {
        text-align: center;
    }

    .hot-item {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        height: 35px;
    }

    .article-categories {
        padding: 15px;
    }

    .category-block {
        padding: 15px;
        margin-bottom: 20px;
    }

    .category-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .half-block {
        padding: 15px;
    }

    .category-title h4 {
        font-size: 16px;
    }

    .featured-item a {
        padding: 12px;
        gap: 12px;
    }

    .featured-item .article-thumb {
        width: 80px;
        height: 60px;
    }

    .compact .featured-item .article-thumb {
        width: 70px;
        height: 50px;
    }

    .featured-item h5 {
        font-size: 14px;
    }

    .compact .featured-item h5 {
        font-size: 13px;
    }

    .article-links a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .article-links.compact a {
        padding: 5px 8px;
        font-size: 12px;
    }

    /* 超小屏幕按钮调整 */
    .btn-submit {
        font-size: 14px;
        padding: 12px;
        min-height: 44px;
    }

    /* 超小屏幕田字格调整 */
    .surname-list {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
        gap: 8px;
        padding: 15px;
    }

    .surname-list a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* 超小屏幕起名示例和推荐调整 */
    .name-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .name-grid li a,
    .name-item {
        padding: 12px 8px;
        font-size: 13px;
        min-height: 60px;
    }

    .name-text {
        font-size: 15px;
    }

    .name-rating {
        font-size: 12px;
    }

    /* 手机端推荐列表单列 */
    .recommend-list {
        grid-template-columns: 1fr;
    }

    .recommend-list li a,
    .recommend-item {
        padding: 14px;
        font-size: 13px;
        flex-direction: row;
        text-align: left;
        gap: 0;
    }

    .recommend-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-right: 12px;
        margin-bottom: 0;
        border-radius: 10px;
    }

    .recommend-content {
        padding-right: 30px;
    }

    .recommend-list li a::after {
        right: 12px;
        width: 6px;
        height: 6px;
    }

    .recommend-list li a:hover::after {
        right: 8px;
    }

    .examples-section .section-header h3,
    .recommend-section .section-header h3 {
        font-size: 18px;
    }

    .example-grid,
    .recommend-grid {
        padding: 15px;
    }

    .section-footer {
        padding: 15px;
    }

    .view-more-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* 手机端生肖布局调整 */
    .zodiac-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .zodiac-item {
        padding: 10px 5px;
    }

    .zodiac-icon {
        width: 36px;
        height: 36px;
    }



    .zodiac-emoji {
        font-size: 24px;
        display: block;
    }

    .zodiac-name {
        font-size: 11px;
    }

    .zodiac-content {
        padding: 15px;
    }

    .zodiac-link {
        padding: 15px;
    }

    .link-title {
        font-size: 16px;
    }

    .link-desc {
        font-size: 13px;
    }

    .zodiac-articles h4 {
        font-size: 14px;
    }
}

/* 新增右侧栏组件样式 */

/* 今日热门起名 */
.hot-names-widget .widget-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hot-names-widget .widget-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.update-time {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.hot-names-list {
    padding: 0;
}

.hot-name-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.hot-name-item:hover {
    background: linear-gradient(135deg, #fff8f0 0%, #f0f8ff 100%);
    transform: translateX(5px);
}

.hot-name-item:last-child {
    border-bottom: none;
}

.rank-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.rank-1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.rank-2 {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: #333;
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
}

.rank-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.3);
}

.rank-4,
.rank-5 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.name-info {
    flex: 1;
}

.name-link {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
    font-family: '楷体', KaiTi, serif;
}

.name-link:hover {
    color: #667eea;
}

.name-stats {
    font-size: 11px;
    color: #888;
    display: block;
    margin-top: 2px;
}

.trend-icon {
    font-size: 14px;
    opacity: 0.7;
}

/* 起名小贴士 */
.tips-widget .widget-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.auto-change {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.tips-container {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.tip-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    display: flex;
    align-items: flex-start;
    padding: 15px;
    gap: 12px;
}

.tip-item.active {
    opacity: 1;
    transform: translateX(0);
}

.tip-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.tip-content h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.tip-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.tip-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}



/* 动画效果 */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.naming-section,
.surname-section,
.examples-section,
.recommend-section,
.articles-section,
.widget {
    animation: fadeIn 0.6s ease-out;
}

/* 加载状态 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 新增组件移动端响应式样式 */
@media (max-width: 768px) {

    /* 热门起名移动端样式 */
    .hot-names-widget .widget-header h4 {
        font-size: 14px;
    }

    .hot-name-item {
        padding: 10px 12px;
    }

    .rank-badge {
        width: 20px;
        height: 20px;
        font-size: 11px;
        margin-right: 10px;
    }

    .name-link {
        font-size: 14px;
    }

    .name-stats {
        font-size: 10px;
    }

    /* 起名小贴士移动端样式 */
    .tips-container {
        height: 100px;
    }

    .tip-item {
        padding: 12px;
        gap: 10px;
    }

    .tip-icon {
        font-size: 20px;
    }

    .tip-content h5 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .tip-content p {
        font-size: 12px;
    }


}

@media (max-width: 480px) {

    /* 超小屏幕适配 */
    .hot-names-widget .widget-header,
    .tips-widget .widget-header,
    .common-chars-widget .widget-header {
        padding: 12px 15px;
    }

    .hot-names-widget .widget-header h4,
    .tips-widget .widget-header h4,
    .common-chars-widget .widget-header h4 {
        font-size: 13px;
    }

    .update-time,
    .auto-change,
    .char-type {
        font-size: 10px;
        padding: 1px 6px;
    }

    .tips-container {
        height: 90px;
    }

    .tip-item {
        padding: 10px;
    }

    .tip-content h5 {
        font-size: 13px;
    }

    .tip-content p {
        font-size: 11px;
    }
}

/* 常用起名用字组件 */
.common-chars-widget .widget-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.common-chars-widget .widget-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.char-type {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.char-tabs {
    padding: 15px;
}

.char-tab-btns {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 15px;
}

.char-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

.char-tab-btn.active {
    background: white;
    color: #667eea;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.char-tab-btn:hover:not(.active) {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.tab-icon {
    font-size: 16px;
}

.char-tab-content {
    display: none;
}

.char-tab-content.active {
    display: block;
}

.char-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.char-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.char-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.char-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.char-item:hover::before {
    transform: scaleY(1);
}

.char-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.char-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    font-family: '楷体', KaiTi, serif;
    min-width: 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.char-frequency {
    font-size: 11px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.char-meaning {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    padding-left: 4px;
}

.char-footer {
    padding: 10px 15px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.char-note {
    margin: 0;
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.char-note .icon-info {
    font-size: 12px;
}

/* 常用起名用字移动端适配 */
@media (max-width: 768px) {
    .common-chars-widget .widget-header h4 {
        font-size: 13px;
    }

    .char-type {
        font-size: 10px;
        padding: 2px 6px;
    }

    .char-tabs {
        padding: 12px;
    }

    .char-tab-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 4px;
    }

    .tab-icon {
        font-size: 14px;
    }

    .char-item {
        padding: 10px 12px;
    }

    .char-text {
        font-size: 16px;
    }

    .char-frequency {
        font-size: 10px;
    }

    .char-meaning {
        font-size: 11px;
    }

    .char-note {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .common-chars-widget .widget-header {
        padding: 10px 12px;
    }

    .common-chars-widget .widget-header h4 {
        font-size: 12px;
    }

    .char-tabs {
        padding: 10px;
    }

    .char-tab-btn {
        padding: 6px 8px;
        font-size: 11px;
    }

    .char-item {
        padding: 8px 10px;
    }

    .char-text {
        font-size: 15px;
    }

    .char-meaning {
        font-size: 10px;
    }
}

/* 诗词起名组件 */
.poetry-names-widget .widget-header {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.poetry-names-widget .widget-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.poetry-refresh {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poetry-refresh:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.poetry-names-list {
    padding: 15px;
}

.poetry-name-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.poetry-name-item:hover {
    background: linear-gradient(135deg, #fff8dc 0%, #faf0e6 100%);
    border-radius: 6px;
    padding: 12px 8px;
    margin: 0 -8px;
}

.poetry-name-item:last-child {
    border-bottom: none;
}

.name-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.poetry-name {
    font-size: 16px;
    font-weight: 600;
    color: #8B4513;
    font-family: "楷体", "KaiTi", serif;
    letter-spacing: 1px;
}

.poetry-source {
    font-size: 11px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.name-details {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.poem-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.poem-title {
    color: #8B4513;
    font-weight: 500;
}

.poem-author {
    color: #999;
    font-size: 11px;
}

.poem-snippet {
    color: #888;
    font-style: italic;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
    width: 100%;
}

.poetry-footer {
    padding: 0 15px 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
    padding-top: 15px;
}

.poetry-note {
    margin: 0;
    font-size: 11px;
    color: #999;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* 诗词起名移动端适配 */
@media (max-width: 768px) {
    .poetry-names-widget .widget-header {
        padding: 10px 12px;
    }

    .poetry-names-widget .widget-header h4 {
        font-size: 13px;
    }

    .poetry-refresh {
        font-size: 10px;
        padding: 2px 6px;
    }

    .poetry-names-list {
        padding: 12px;
    }

    .poetry-name {
        font-size: 15px;
    }

    .name-details {
        font-size: 11px;
    }

    .poem-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}

@media (max-width: 480px) {
    .poetry-name {
        font-size: 14px;
    }

    .poetry-source {
        font-size: 10px;
        padding: 1px 5px;
    }

    .name-details {
        font-size: 10px;
    }

    .poetry-note {
        font-size: 10px;
    }
}

/* 最新文章组件 */
.latest-articles-widget .widget-header {
    background: linear-gradient(135deg, #2E86AB 0%, #A23B72 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.latest-articles-widget .widget-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-count {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.articles-list {
    padding: 15px;
}

.article-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.article-item:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff8f9 100%);
    border-radius: 6px;
    padding: 10px 8px;
    margin: 0 -8px;
}

.article-item:last-child {
    border-bottom: none;
}

.article-title {
    margin: 0 0 6px 0;
    font-size: 13px;
    line-height: 1.4;
}

.article-title a {
    color: #333;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
    width: 100%;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #2E86AB;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
}

.article-category a {
    color: #2E86AB;
    text-decoration: none;
    background: rgba(46, 134, 171, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    transition: all 0.3s ease;
}

.article-category a:hover {
    background: rgba(46, 134, 171, 0.2);
    color: #1a5f7a;
}

.article-time {
    color: #999;
    font-size: 10px;
    white-space: nowrap;
}

.articles-footer {
    padding: 0 15px 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
    padding-top: 15px;
    text-align: center;
}

.view-all-articles {
    color: #2E86AB;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.view-all-articles:hover {
    color: #1a5f7a;
    transform: translateX(2px);
}

/* 最新文章移动端适配 */
@media (max-width: 768px) {
    .latest-articles-widget .widget-header {
        padding: 10px 12px;
    }

    .latest-articles-widget .widget-header h4 {
        font-size: 13px;
    }

    .article-count {
        font-size: 10px;
        padding: 2px 6px;
    }

    .articles-list {
        padding: 12px;
    }

    .article-title {
        font-size: 12px;
    }

    .article-meta {
        font-size: 10px;
    }

    .article-category a {
        font-size: 9px;
        padding: 1px 4px;
    }

    .article-time {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 11px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .view-all-articles {
        font-size: 11px;
    }
}

/* 列表页专用样式 */
.breadcrumb-nav {
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.breadcrumb-nav a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: #333;
    font-weight: 500;
}

/* 栏目导航样式 */
.category-nav-wrapper {
    margin: 20px 0 30px 0;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px 0;
    position: relative;
}

.category-nav-container {
    position: relative;
    width: 100%;
}

.category-nav-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    padding-bottom: 5px;
}

.category-nav-scroll::-webkit-scrollbar {
    height: 6px;
}

.category-nav-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.category-nav-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.category-nav-scroll::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.category-nav-list {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    width: max-content;
    min-width: 100%;
}

.category-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 12px 8px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.category-nav-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    color: #667eea;
    border-color: #667eea;
}

.category-nav-item.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.category-nav-item.active:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
    display: block;
}

.nav-text {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.2;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .category-nav-wrapper {
        margin: 15px -15px 25px -15px;
        border-radius: 0;
        padding: 12px 0;
    }

    .category-nav-scroll {
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 0;
    }

    .category-nav-scroll::-webkit-scrollbar {
        display: none;
    }

    .category-nav-list {
        padding: 0 15px;
        gap: 12px;
    }

    .category-nav-item {
        min-width: 70px;
        padding: 10px 6px;
    }

    .nav-icon {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .nav-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .category-nav-item {
        min-width: 65px;
        padding: 8px 4px;
    }

    .nav-icon {
        font-size: 16px;
    }

    .nav-text {
        font-size: 10px;
    }
}

/* 最新热搜榜样式 */
.hot-search-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
}

.hot-search-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f2f5;
}

.hot-search-section .section-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.hot-search-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-search-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #fafbfc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hot-search-item:hover {
    background: #f0f8ff;
    border-color: #667eea;
    transform: translateX(3px);
}

.search-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: #666;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-right: 12px;
}

.hot-search-item:nth-child(1) .search-rank {
    background: #ff4757;
}

.hot-search-item:nth-child(2) .search-rank {
    background: #ff6b35;
}

.hot-search-item:nth-child(3) .search-rank {
    background: #ffa502;
}

.search-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.search-category {
    color: #667eea;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.search-title {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-tag {
    padding: 2px 6px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    white-space: nowrap;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .hot-search-section {
        padding: 20px 15px;
        margin: 0 -15px 25px -15px;
        border-radius: 0;
    }

    .hot-search-section .section-header h2 {
        font-size: 18px;
    }

    .hot-search-item {
        padding: 10px 12px;
    }

    .search-rank {
        min-width: 20px;
        height: 20px;
        font-size: 11px;
        margin-right: 10px;
    }

    .search-category {
        font-size: 12px;
    }

    .search-title {
        font-size: 13px;
    }

    .search-tag {
        font-size: 10px;
        padding: 1px 4px;
    }
}

@media (max-width: 480px) {
    .hot-search-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .search-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .search-title {
        white-space: normal;
        line-height: 1.3;
    }
}

/* 十二生肖导航样式 */
.zodiac-nav-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
}

.zodiac-nav-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f2f5;
}

.zodiac-nav-section .section-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zodiac-nav-section .section-desc {
    color: #666;
    font-size: 14px;
}

.zodiac-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.zodiac-nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fafbfc;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.zodiac-nav-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
    background: #f0f8ff;
}

.zodiac-nav-item.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.zodiac-nav-item.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.zodiac-nav-item .zodiac-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.zodiac-nav-item.active .zodiac-icon {
    background: rgba(255, 255, 255, 0.2);
}

.zodiac-emoji {
    font-size: 24px;
    display: block;
}

.zodiac-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.zodiac-desc {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.2;
}

.zodiac-nav-item.active .zodiac-desc {
    opacity: 0.9;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .zodiac-nav-section {
        padding: 20px 15px;
        margin: 0 -15px 25px -15px;
        border-radius: 0;
    }

    .zodiac-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }

    .zodiac-nav-item {
        padding: 12px;
    }

    .zodiac-nav-item .zodiac-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .zodiac-emoji {
        font-size: 20px;
    }

    .zodiac-info h4 {
        font-size: 14px;
    }

    .zodiac-desc {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .zodiac-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .zodiac-nav-item {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

    .zodiac-nav-item .zodiac-icon {
        margin-right: 0;
        margin-bottom: 8px;
        width: 36px;
        height: 36px;
    }

    .zodiac-emoji {
        font-size: 18px;
    }

    .zodiac-info h4 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .zodiac-desc {
        font-size: 10px;
    }
}

/* 表单包装器 */
.naming-form-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.form-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.naming-form-wrapper .naming-form {
    padding: 30px;
}

/* 文章卡片样式 */
.articles-list {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-content {
    flex: 1;
    padding: 25px;
}

.article-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.article-category a {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-category a:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.article-date {
    color: #999;
    font-size: 13px;
}

.article-card .article-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.article-card .article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card .article-title a:hover {
    color: #667eea;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-size: 14px;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-tags {
    display: flex;
    gap: 8px;
}

.tag {
    background: #f0f2f5;
    color: #666;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #5a67d8;
    transform: translateX(3px);
}

.article-thumb {
    width: 200px;
    flex-shrink: 0;
}

.article-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-thumb img {
    transform: scale(1.05);
}

/* 服务介绍 */
.service-intro {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    padding: 40px 30px;
    margin-top: 50px;
    color: white;
}

.intro-header {
    text-align: center;
    margin-bottom: 40px;
}

.intro-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.intro-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.intro-item:hover {
    transform: translateY(-5px);
}

.intro-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.intro-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.intro-item p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* 分页样式 */
.pagination {
    text-align: center;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a {
    background: #f8f9fa;
    color: #667eea;
    border: 1px solid #e9ecef;
}

.pagination a:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination .current {
    background: #667eea;
    color: white;
    border: 1px solid #667eea;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .page-header {
        padding: 30px 20px;
        margin-bottom: 25px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-desc {
        font-size: 14px;
    }

    .naming-form-wrapper .naming-form {
        padding: 20px;
    }

    .form-header {
        padding: 20px;
    }

    .form-header h2 {
        font-size: 20px;
    }

    .article-card {
        flex-direction: column;
    }

    .article-thumb {
        width: 100%;
    }

    .article-content {
        padding: 20px;
    }

    .article-card .article-title {
        font-size: 18px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-intro {
        padding: 30px 20px;
    }

    .intro-header h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 20px 15px;
    }

    .page-title {
        font-size: 20px;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .intro-item {
        padding: 20px 15px;
    }

    .intro-icon {
        font-size: 36px;
    }
}

/* ==================== 文章内容页样式 ==================== */

/* 面包屑导航 */
.breadcrumb-container {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.separator {
    color: #6c757d;
}

/* 内容布局 */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding: 30px 0;
}

/* 文章详情样式 */
.article-detail {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.article-detail-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.article-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.meta-icon {
    font-size: 14px;
}

.meta-text {
    font-weight: 500;
}

.article-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-detail-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-detail-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.article-detail-content {
    padding: 30px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.article-detail-content h1,
.article-detail-content h2,
.article-detail-content h3,
.article-detail-content h4,
.article-detail-content h5,
.article-detail-content h6 {
    color: #333;
    margin: 25px 0 15px;
    font-weight: 600;
}

.article-detail-content p {
    margin-bottom: 15px;
}

.article-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.article-detail-content blockquote {
    border-left: 4px solid #007bff;
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
}

/* 图片画廊 */
.article-detail-gallery {
    padding: 30px;
    border-top: 1px solid #eee;
}

.article-detail-gallery h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* 文章底部广告位 */
.article-detail-ad {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.ad-label {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.ad-label::before,
.ad-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.ad-label::before {
    left: 50%;
    margin-left: -100px;
}

.ad-label::after {
    right: 50%;
    margin-right: -100px;
}

.ad-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ad-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ad-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ad-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.ad-info {
    flex: 1;
}

.ad-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.ad-info p {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.ad-btn {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ad-btn:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-1px);
    color: white;
}

/* 版权声明和免责说明 */
.article-detail-footer {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

.article-detail-footer .copyright-notice,
.article-detail-footer .disclaimer {
    margin-bottom: 20px;
}

.article-detail-footer .disclaimer {
    margin-bottom: 0;
}

.article-detail-footer h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-footer p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}



/* 文章导航 */
.article-nav {
    padding: 20px 30px;
    border-top: 1px solid #eee;
}

.nav-item {
    margin-bottom: 10px;
}

.nav-label {
    font-weight: 600;
    color: #666;
    margin-right: 10px;
}

.nav-item a {
    color: #007bff;
    text-decoration: none;
}

.nav-item a:hover {
    text-decoration: underline;
}

/* 相关文章 */
.related-articles {
    margin-top: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.related-articles .section-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.related-articles .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.related-item {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-content {
    width: 100%;
}

.related-title a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.related-title a:hover {
    color: #007bff;
}

.related-desc {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin: 5px 0;
}

.related-date {
    color: #999;
    font-size: 12px;
}

/* 评论区域 */
.comment-section {
    margin-top: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.comment-section .section-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.comment-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.comment-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.comment-list {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.comment-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 500;
    color: #333;
}

.comment-date {
    color: #999;
    font-size: 12px;
}

.comment-content {
    color: #666;
    line-height: 1.6;
}

/* 侧边栏样式重新定义（针对文章页） */
.content-layout .sidebar .widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    overflow: hidden;
}

.content-layout .widget-title {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.content-layout .article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-layout .list-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.content-layout .list-item:hover {
    background: #f8f9fa;
}

.content-layout .list-item:last-child {
    border-bottom: none;
}

.content-layout .item-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #6c757d;
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
    flex-shrink: 0;
}

.content-layout .item-rank.rank-1 {
    background: #dc3545;
}

.content-layout .item-rank.rank-2 {
    background: #fd7e14;
}

.content-layout .item-rank.rank-3 {
    background: #ffc107;
}

.content-layout .item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-layout .item-content a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
    margin-right: 10px;
}

.content-layout .item-content a:hover {
    color: #007bff;
}

.content-layout .item-date {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
}

/* 工具小组件 */
.tools-widget .widget-title {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 20px;
}

.tool-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.tool-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tool-btn i {
    font-size: 24px;
    margin-bottom: 8px;
}

.tool-btn span {
    font-size: 12px;
    font-weight: 500;
}

/* 响应式设计 - 文章页 */
@media (max-width: 992px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-detail-title {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .ad-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-detail-meta {
        gap: 8px;
    }

    .meta-item {
        font-size: 12px;
        padding: 5px 10px;
    }

    .article-detail-header,
    .article-detail-content,
    .article-detail-gallery,
    .related-articles,
    .article-detail-ad,
    .article-detail-footer {
        padding: 20px;
    }

    .ad-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .ad-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .article-detail-meta {
        gap: 6px;
    }

    .meta-item {
        font-size: 11px;
        padding: 4px 8px;
    }

    .ad-label::before,
    .ad-label::after {
        width: 40px;
    }

    .ad-label::before {
        margin-left: -70px;
    }

    .ad-label::after {
        margin-right: -70px;
    }

    .article-detail-ad,
    .article-detail-footer {
        padding: 15px;
    }
}

/* 实时起名统计模块样式 */
.stats-widget .widget-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-widget .widget-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-widget .widget-header .icon-stats {
    font-size: 18px;
}

.update-indicator {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    animation: pulse 2s infinite;
}

.stats-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.stat-trend {
    font-size: 12px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
}

.stat-trend.up {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.popular-chars {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.popular-chars h5 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.popular-chars h5::before {
    content: '🔥';
    font-size: 16px;
}

.char-rank-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.char-rank-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.char-rank-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.rank-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background: #6c757d;
    flex-shrink: 0;
}

.rank-num.hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.char-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.char-count {
    font-size: 12px;
    color: #666;
    background: white;
    padding: 2px 8px;
    border-radius: 10px;
}

.naming-trends {
    padding: 20px;
}

.naming-trends h5 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.naming-trends h5::before {
    content: '📈';
    font-size: 16px;
}

.trend-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.trend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trend-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.trend-info {
    flex: 1;
}

.trend-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 2px;
}

.trend-desc {
    font-size: 11px;
    color: #28a745;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .stats-widget .widget-header {
        padding: 12px 15px;
    }

    .stats-widget .widget-header h4 {
        font-size: 14px;
    }

    .update-indicator {
        font-size: 11px;
        padding: 3px 6px;
    }

    .stats-overview {
        padding: 15px;
        gap: 10px;
    }

    .stat-item {
        padding: 12px;
    }

    .stat-number {
        font-size: 20px;
    }

    .popular-chars,
    .naming-trends {
        padding: 15px;
    }

    .char-rank-item,
    .trend-item {
        padding: 8px 10px;
    }

    .char-name {
        font-size: 14px;
    }

    .rank-num {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .stats-overview {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 12px;
    }

    .popular-chars h5,
    .naming-trends h5 {
        font-size: 13px;
    }

    .char-rank-item {
        gap: 8px;
    }

    .char-name {
        font-size: 13px;
    }

    .char-count {
        font-size: 11px;
    }

    .trend-title {
        font-size: 12px;
    }

    .trend-desc {
        font-size: 10px;
    }
}