/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: 'Segoe UI', 'Microsoft YaHei', Arial, sans-serif;
    background: #181c23;
    color: #f3f3f3;
    min-height: 100vh;
}
.z29aa4container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 顶部导航栏 */
.z29aa4navbar {
    background: rgba(20, 24, 32, 0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    position: sticky;
    top: 0;
    z-index: 100;
}
.z29aa4nav-links {
    display: flex;
    align-items: center;
}
.z29aa4nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.z29aa4site-title {
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #00ffea;
    text-shadow: 0 2px 8px #00ffea44;
}
.z29aa4nav-links a {
    color: #f3f3f3;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.z29aa4nav-links a:hover {
    color: #00ffea;
}

@media (max-width: 1100px) {
    .z29aa4article-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .z29aa4article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.z29aa4nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #00ffea;
    font-size: 2rem;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 101;
}

/* 主横幅 */
.z29aa4banner {
    background: linear-gradient(120deg, #232a34 60%, #00ffea22 100%);
    padding: 3rem 0 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.z29aa4banner-content h1 {
    font-size: 2.5rem;
    color: #00ffea;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px #00ffea33;
}
.z29aa4banner-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #f3f3f3;
}
.z29aa4banner-keywords {
    color: #00ffea;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.z29aa4banner-img {
    width: 320px;
    max-width: 90vw;
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px #00ffea33;
    margin-top: 1rem;
}

/* 主内容区域 */
.z29aa4main-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

/* 板块样式 */
.z29aa4section {
    margin: 3rem 0 2rem 0;
    padding: 2rem 1rem;
    background: rgba(30, 36, 48, 0.95);
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px #00ffea11;
}
.z29aa4section h2 {
    color: #00ffea;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

/* 服务列表 */
.z29aa4service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.z29aa4service-item {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    background: #232a34;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    margin: 0.5rem 0;
    box-shadow: 0 2px 12px #00ffea22;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.z29aa4service-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px #00ffea33;
}
.z29aa4service-item h3 {
    color: #00ffea;
    margin-bottom: 0.7rem;
}

/* 关于我们 */
.z29aa4about-list {
    margin-top: 1rem;
    list-style: disc inside;
    color: #00ffea;
    font-size: 1.1rem;
    padding-left: 1.5rem;
}

/* 联系我们表单 */
.z29aa4contact-form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.z29aa4form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: #00ffea;
}
.z29aa4form-group input,
.z29aa4form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: none;
    border-radius: 0.5rem;
    background: #232a34;
    color: #f3f3f3;
    font-size: 1rem;
    box-shadow: 0 1px 4px #00ffea11;
}
.z29aa4form-group input:focus,
.z29aa4form-group textarea:focus {
    outline: 2px solid #00ffea;
    background: #1a1f27;
}
.z29aa4contact-form button {
    background: linear-gradient(90deg, #00ffea 60%, #00bfae 100%);
    color: #181c23;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    padding: 0.9rem;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px #00ffea33;
    transition: background 0.2s, color 0.2s;
}
.z29aa4contact-form button:hover {
    background: #00bfae;
    color: #fff;
}

/* 页脚 */
.z29aa4footer {
    background: #181c23;
    text-align: center;
    padding: 1.2rem 0 1.5rem 0;
    color: #888;
    font-size: 1rem;
    margin-top: 2rem;
    border-radius: 1.2rem 1.2rem 0 0;
    box-shadow: 0 -2px 12px #00ffea11;
}

/* 背景美化元素 */
.z29aa4background-decor {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 80% 10%, #00ffea22 0, transparent 60%),
                radial-gradient(circle at 20% 80%, #00bfae22 0, transparent 60%);
}

/* 优势板块 */
.z29aa4advantages .z29aa4advantage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}
.z29aa4advantage-item {
    background: #232a34;
    color: #00ffea;
    border-radius: 0.8rem;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px #00ffea22;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.z29aa4advantage-item span {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

/* 服务流程 */
.z29aa4flow-list {
    margin: 1.2rem auto 0 auto;
    max-width: 600px;
    padding-left: 1.2rem;
    color: #f3f3f3;
    font-size: 1.1rem;
    line-height: 2;
}
.z29aa4flow-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

/* 客户评价 */
.z29aa4testimonials .z29aa4testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}
.z29aa4testimonial-item {
    background: #232a34;
    border-radius: 0.8rem;
    box-shadow: 0 2px 8px #00ffea22;
    padding: 1.2rem 1rem;
    max-width: 320px;
    min-width: 220px;
    color: #f3f3f3;
    font-size: 1rem;
    text-align: left;
    position: relative;
}
.z29aa4testimonial-item p {
    margin-bottom: 0.7rem;
    font-style: italic;
}
.z29aa4testimonial-item span {
    color: #00ffea;
    font-size: 0.95rem;
}

/* FAQ */
.z29aa4faq-list {
    margin-top: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.z29aa4faq-item {
    background: #232a34;
    border-radius: 0.8rem;
    box-shadow: 0 2px 8px #00ffea22;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}
.z29aa4faq-item strong {
    color: #00ffea;
    display: block;
    margin-bottom: 0.3rem;
}

/* 新闻资讯 */
.z29aa4news-list {
    margin-top: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    color: #f3f3f3;
    font-size: 1.05rem;
}
.z29aa4news-list li {
    background: #232a34;
    border-radius: 0.8rem;
    box-shadow: 0 2px 8px #00ffea22;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.z29aa4news-list span {
    color: #00ffea;
    font-size: 0.98rem;
    min-width: 90px;
    display: inline-block;
}

.z29aa4nav-links a.z29aa4this,
.z29aa4nav-links a.thisclass {
    color: #00ffea;
    border-bottom: 2px solid #00ffea;
}

/* 首页文章板块 */
.z29aa4article-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-top: 1rem;
}
.z29aa4article-card {
    background: #232a34;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 2px 12px #00ffea22;
    transition: transform 0.2s, box-shadow 0.2s;
}
.z29aa4article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px #00ffea33;
}
.z29aa4article-card-thumb {
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #1a1f27;
}
.z29aa4article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.z29aa4article-card:hover .z29aa4article-card-thumb img {
    transform: scale(1.05);
}
.z29aa4article-card-body {
    padding: 0.8rem;
}
.z29aa4article-card-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}
.z29aa4article-card-body h3 a {
    color: #f3f3f3;
    text-decoration: none;
    transition: color 0.2s;
}
.z29aa4article-card-body h3 a:hover {
    color: #00ffea;
}
.z29aa4article-card-desc {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.z29aa4article-card-date {
    color: #00ffea;
    font-size: 0.8rem;
}

/* 列表页/内容页 页面横幅 */
.z29aa4page-banner {
    background: linear-gradient(120deg, #232a34 60%, #00ffea22 100%);
    padding: 2rem 0 1.5rem;
    text-align: center;
}
.z29aa4page-banner h1 {
    color: #00ffea;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.z29aa4breadcrumb {
    color: #aaa;
    font-size: 0.95rem;
}
.z29aa4breadcrumb a {
    color: #00ffea;
    text-decoration: none;
}
.z29aa4breadcrumb a:hover {
    text-decoration: underline;
}

/* 侧栏布局 */
.z29aa4layout-with-sidebar {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.z29aa4content-main {
    flex: 1;
    min-width: 0;
}
.z29aa4sidebar {
    width: 300px;
    flex-shrink: 0;
}
.z29aa4sidebar-block {
    background: rgba(30, 36, 48, 0.95);
    border-radius: 1rem;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px #00ffea11;
}
.z29aa4sidebar-title {
    color: #00ffea;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #00ffea33;
}
.z29aa4sidebar-title a {
    color: #00ffea;
    text-decoration: none;
}
.z29aa4sidebar-title a:hover {
    text-decoration: underline;
}
.z29aa4sidebar-list {
    list-style: none;
}
.z29aa4sidebar-imglist {
    list-style: none;
}
.z29aa4sidebar-imgitem {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #333;
}
.z29aa4sidebar-imgitem:last-child {
    border-bottom: none;
}
.z29aa4sidebar-imgthumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 0.4rem;
    overflow: hidden;
    background: #1a1f27;
    display: block;
}
.z29aa4sidebar-imgthumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    display: block;
}
.z29aa4sidebar-imgtitle {
    flex: 1;
    color: #f3f3f3;
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.4;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.z29aa4sidebar-imgtitle:hover {
    color: #00ffea;
}

/* 列表页文章列表 */
.z29aa4list-section {
    padding: 1.5rem;
}
.z29aa4article-list {
    list-style: none;
}
.z29aa4article-list-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid #333;
}
.z29aa4article-list-item:last-child {
    border-bottom: none;
}
.z29aa4article-thumb {
    width: 200px;
    flex-shrink: 0;
    border-radius: 0.6rem;
    overflow: hidden;
    background: #1a1f27;
}
.z29aa4article-thumb img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.z29aa4article-thumb:hover img {
    transform: scale(1.05);
}
.z29aa4article-info {
    flex: 1;
    min-width: 0;
}
.z29aa4article-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.z29aa4article-title a {
    color: #f3f3f3;
    text-decoration: none;
    transition: color 0.2s;
}
.z29aa4article-title a:hover {
    color: #00ffea;
}
.z29aa4article-meta {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.z29aa4article-meta a {
    color: #00ffea;
    text-decoration: none;
}
.z29aa4article-meta a:hover {
    text-decoration: underline;
}
.z29aa4article-intro {
    color: #aaa;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* 分页 - 左右翻页 */
.z29aa4pagebar {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}
.z29aa4pages .pagelist,
.z29aa4pages ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.z29aa4pages .pagelist li,
.z29aa4pages ul li {
    list-style: none;
}
.z29aa4pages .pagelist a,
.z29aa4pages .pagelist span,
.z29aa4pages ul a,
.z29aa4pages ul span {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    background: #232a34;
    color: #f3f3f3;
    text-decoration: none;
    border-radius: 0.4rem;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    border: 1px solid #333;
}
.z29aa4pages .pagelist a:hover,
.z29aa4pages ul a:hover {
    background: #00ffea;
    color: #181c23;
    border-color: #00ffea;
}
.z29aa4pages .pagelist .thisclass,
.z29aa4pages .pagelist .thisclass a,
.z29aa4pages ul .thisclass,
.z29aa4pages ul .thisclass a {
    background: #00ffea;
    color: #181c23;
    border-color: #00ffea;
    font-weight: bold;
}

/* 内容页 */
.z29aa4article-detail {
    padding: 1.5rem 2rem;
}
.z29aa4article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}
.z29aa4article-meta-bar a {
    color: #00ffea;
    text-decoration: none;
}
.z29aa4article-litpic {
    margin-bottom: 1.5rem;
    text-align: center;
}
.z29aa4article-litpic img {
    max-width: 100%;
    border-radius: 0.8rem;
    box-shadow: 0 4px 16px #00ffea22;
}
.z29aa4article-body {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.z29aa4article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 0.5rem 0;
}
.z29aa4article-body p {
    margin-bottom: 1rem;
}
.z29aa4article-images {
    margin-bottom: 1.5rem;
}
.z29aa4image-item {
    margin-bottom: 1rem;
    text-align: center;
}
.z29aa4image-item img {
    max-width: 100%;
    border-radius: 0.6rem;
}
.z29aa4image-item span {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.4rem;
}
.z29aa4diyfield {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #232a34;
    border-radius: 0.6rem;
}
.z29aa4meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.z29aa4tagitem a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #232a34;
    color: #00ffea;
    text-decoration: none;
    border-radius: 1rem;
    font-size: 0.85rem;
    border: 1px solid #00ffea33;
    transition: background 0.2s;
}
.z29aa4tagitem a:hover {
    background: #00ffea;
    color: #181c23;
}
.z29aa4article-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
}
.z29aa4prenext {
    flex: 1;
    font-size: 0.92rem;
    color: #aaa;
}
.z29aa4prenext a {
    color: #00ffea;
    text-decoration: none;
}
.z29aa4prenext a:hover {
    text-decoration: underline;
}
.z29aa4prenext-next {
    text-align: right;
}
.z29aa4related h3 {
    color: #00ffea;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.z29aa4related-list {
    list-style: none;
}
.z29aa4related-item {
    display: flex;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #333;
    align-items: flex-start;
}
.z29aa4related-item:last-child {
    border-bottom: none;
}
.z29aa4related-thumb {
    flex-shrink: 0;
    width: 120px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #1a1f27;
    display: block;
}
.z29aa4related-thumb img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    display: block;
}
.z29aa4related-info {
    flex: 1;
    min-width: 0;
}
.z29aa4related-info > a {
    color: #f3f3f3;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    display: block;
    margin-bottom: 0.3rem;
}
.z29aa4related-info > a:hover {
    color: #00ffea;
}
.z29aa4related-list li p {
    color: #888;
    font-size: 0.88rem;
    margin-top: 0.3rem;
    line-height: 1.5;
}
.clear {
    clear: both;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .z29aa4nav-toggle {
        display: block;
    }
    .z29aa4nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(20,24,32,0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 0 1rem 0;
        display: none;
        box-shadow: 0 4px 16px #00ffea22;
        border-radius: 0 0 1rem 1rem;
    }
    .z29aa4nav-links.open {
        display: flex;
        animation: navOpen 0.2s;
    }
    .z29aa4nav-links a {
        width: 100%;
        padding: 1rem 2rem;
        margin: 0;
        border-bottom: 1px solid #232a34;
        font-size: 1.1rem;
    }
    .z29aa4nav-links a:last-child {
        border-bottom: none;
    }
    .z29aa4nav-container {
        position: relative;
    }
    .z29aa4service-list {
        flex-direction: column;
        align-items: center;
    }
    .z29aa4advantages .z29aa4advantage-list,
    .z29aa4testimonials .z29aa4testimonial-list {
        flex-direction: column;
        align-items: center;
    }
    .z29aa4layout-with-sidebar {
        flex-direction: column;
    }
    .z29aa4sidebar {
        width: 100%;
    }
    .z29aa4article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .z29aa4article-list-item {
        flex-direction: column;
    }
    .z29aa4article-thumb {
        width: 100%;
    }
    .z29aa4article-thumb img {
        height: 180px;
    }
    .z29aa4article-nav {
        flex-direction: column;
    }
    .z29aa4prenext-next {
        text-align: left;
    }
}
@keyframes navOpen {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
    .z29aa4container {
        width: 98%;
    }
    .z29aa4banner-content h1 {
        font-size: 1.5rem;
    }
    .z29aa4section h2 {
        font-size: 1.3rem;
    }
    .z29aa4service-item {
        min-width: 90vw;
        max-width: 98vw;
    }
    .z29aa4footer {
        font-size: 0.9rem;
    }
    .z29aa4article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .z29aa4page-banner h1 {
        font-size: 1.4rem;
    }
    .z29aa4article-detail {
        padding: 1rem;
    }
    .z29aa4article-meta-bar {
        flex-direction: column;
        gap: 0.5rem;
    }
    .z29aa4pages .pagelist {
        gap: 0.3rem;
    }
    .z29aa4pages .pagelist a,
    .z29aa4pages .pagelist span {
        padding: 0.4rem 0.6rem;
        font-size: 0.82rem;
    }
} 