  1→
  2→/* 文章样式 */
  3→.single-article {
  4→    margin-bottom: 30px;
  5→}
  6→
  7→.entry-header {
  8→    margin-bottom: 25px;
  9→    border-bottom: 1px solid #e5e5e5;
 10→    padding-bottom: 15px;
 11→}
 12→
 13→.entry-title {
 14→    font-size: 28px;
 15→    margin: 0 0 15px;
 16→    color: #333333;
 17→}
 18→
 19→.entry-meta {
 20→    display: flex;
 21→    flex-wrap: wrap;
 22→    font-size: 14px;
 23→    color: #999999;
 24→    gap: 15px;
 25→}
 26→
 27→.entry-meta span {
 28→    display: flex;
 29→    align-items: center;
 30→}
 31→
 32→.entry-meta i {
 33→    margin-right: 5px;
 34→}
 35→
 36→.entry-meta a {
 37→    color: #0066cc;
 38→    text-decoration: none;
 39→    transition: color 0.3s;
 40→}
 41→
 42→.entry-meta a:hover {
 43→    color: var(--primary-color);
 44→}
 45→
 46→.entry-content {
 47→    font-size: 16px;
 48→    line-height: 1.8;
 49→    color: #333333;
 50→    margin-bottom: 30px;
 51→}
 52→
 53→.entry-content p {
 54→    margin-bottom: 20px;
 55→}
 56→
 57→.entry-content img {
 58→    max-width: 100%;
 59→    height: auto;
 60→    border-radius: 4px;
 61→    margin: 20px 0;
 62→}
 63→
 64→.entry-content h2, .entry-content h3, .entry-content h4 {
 65→    margin: 30px 0 15px;
 66→    color: #333333;
 67→}
 68→
 69→.entry-content ul, .entry-content ol {
 70→    margin-bottom: 20px;
 71→    padding-left: 20px;
 72→}
 73→
 74→.entry-content li {
 75→    margin-bottom: 10px;
 76→}
 77→
 78→.entry-content a {
 79→    color: var(--primary-color);
 80→    text-decoration: none;
 81→}
 82→
 83→.entry-content a:hover {
 84→    text-decoration: underline;
 85→}
 86→
 87→.entry-footer {
 88→    margin-top: 30px;
 89→    padding-top: 20px;
 90→    border-top: 1px solid #e5e5e5;
 91→}
 92→
 93→.post-tags {
 94→    display: flex;
 95→    flex-wrap: wrap;
 96→    align-items: center;
 97→    gap: 10px;
 98→}
 99→
.post-tags i {
    color: #0066cc;
}

.post-tags a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s;
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 文章导航 */
.post-navigation {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous, .nav-next {
    max-width: 48%;
}

.nav-previous a, .nav-next a {
    display: flex;
    align-items: center;
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-previous a:hover, .nav-next a:hover {
    color: var(--primary-color);
}

.nav-previous i, .nav-next i {
    margin: 0 5px;
}

/* 留言表单 */
.contact-form-section {
    background-color: #f8f9fa;
}

.form-title {
    font-size: 20px;
    margin: 0 0 15px;
    color: #333333;
}

.form-tip {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e5e5e5;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-field textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-field {
    flex: 1;
    margin-bottom: 0;
}

.form-submit {
    margin-top: 20px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* 自定义菜单样式 */
.custom-menu-section {
    padding: 30px 0 15px;
    margin-bottom: 0px;
}

.page-links-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-links-menu li {
    text-align: center;
    padding: 15px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-links-menu li:hover, .page-links-menu .current-menu-item {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #007bff;
    color: white;
}

/* 为不同菜单项设置不同背景色 */

.page-links-menu li a {
    display: block;
    text-decoration: none;
    color: #0066cc;
    font-size: 16px;
    font-weight: 500;
}

.page-links-menu li:hover a, .page-links-menu .current-menu-item a {
    color: white;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .page-links-menu li a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-links-menu li a {
font-size: 11px;
    }
}

.form-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .form-title {
        font-size: 20px;
        margin: 0;
        color: #333333;
    }

    .form-phone {
        display: inline-block;
        background-color: #f0f7ff;
        color: var(--primary-color);
        padding: 6px 12px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s;
    }

    .form-phone:hover {
        background-color: var(--primary-color);
        color: white;
    }

    .form-phone i {
        margin-right: 5px;
    }
    .form-tip em {
    font-style: normal;
    color: #ef4444;
    font-weight: bold;
}
    .form-tip {
        font-size: 14px;
        color: #666666;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px dashed #e5e5e5;
    }
    .contact-form-section .button-group {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .contact-form-section .button-group .submit-btn,
    .contact-form-section .button-group .baidu-service-btn {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 20px;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .contact-form-section .button-group .submit-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
    }

    .contact-form-section .button-group .submit-btn:hover {
        background-color: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    }

    .contact-form-section .button-group .baidu-service-btn {
        background-color: #0066cc;
        color: white;
    }

    .contact-form-section .button-group .baidu-service-btn:hover {
        background-color: #0052a3;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,102,204,0.3);
    }

    .contact-form-section .button-group .baidu-service-btn i {
        margin-right: 5px;
    }