/* 全局变量 */
:root {
    --primary-color: #FF69B4;
    --secondary-color: #FFB6C1;
    --accent-color: #FF1493;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #fff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.z8e57econtainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部信息栏 */
.z8e57etop-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
}

.z8e57etop-bar .z8e57econtainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z8e57esocial-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

/* 头部导航 */
.z8e57eheader {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.z8e57enav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.z8e57elogo img {
    height: 50px;
}

.z8e57enav-links {
    display: flex;
    list-style: none;
}

.z8e57enav-links li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s;
}

.z8e57enav-links li a:hover {
    color: var(--primary-color);
}

.z8e57emenu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* 主要内容区 */
.z8e57emain-content {
    margin-top: 20px;
}

/* 轮播图区域 */
.z8e57ehero-slider {
    background: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.z8e57eslider-content {
    max-width: 800px;
    margin: 0 auto;
}

.z8e57eslider-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.z8e57ecta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}

.z8e57ecta-button:hover {
    background: var(--primary-color);
}

/* 核心服务 */
.z8e57ecore-services {
    padding: 60px 0;
    background: var(--light-gray);
}

.z8e57esection-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2em;
}

.z8e57eservices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.z8e57eservice-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.z8e57eservice-card:hover {
    transform: translateY(-5px);
}

.z8e57eservice-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.z8e57eservice-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 15px;
}

/* 服务优势 */
.z8e57eadvantages {
    padding: 60px 0;
}

.z8e57eadvantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.z8e57eadvantage-card {
    text-align: center;
    padding: 20px;
}

.z8e57eadvantage-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* 成功案例 */
.z8e57esuccess-cases {
    padding: 60px 0;
    background: var(--light-gray);
}

.z8e57ecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.z8e57ecase-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.z8e57ecase-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.z8e57ecase-content {
    padding: 20px;
}

.z8e57ecase-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: #666;
}

/* 专家团队 */
.z8e57eexpert-team {
    padding: 60px 0;
}

.z8e57eteam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.z8e57eexpert-card {
    text-align: center;
}

.z8e57eexpert-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

/* 联系我们 */
.z8e57econtact-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.z8e57econtact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.z8e57econtact-info {
    padding: 20px;
}

.z8e57econtact-list {
    list-style: none;
    margin: 20px 0;
}

.z8e57econtact-list li {
    margin: 10px 0;
}

.z8e57econtact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.z8e57eform-group {
    margin-bottom: 20px;
}

.z8e57eform-group input,
.z8e57eform-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.z8e57ebtn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.z8e57ebtn-submit:hover {
    background: var(--accent-color);
}

/* 页脚 */
.z8e57efooter {
    background: #333;
    color: var(--white);
    padding: 60px 0 20px;
}

.z8e57efooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.z8e57efooter-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.z8e57efooter-section ul {
    list-style: none;
}

.z8e57efooter-section ul li {
    margin: 10px 0;
}

.z8e57efooter-section a {
    color: var(--white);
    text-decoration: none;
}

.z8e57efooter-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .z8e57econtainer {
        max-width: 960px;
    }
    
    .z8e57enav-links {
        display: none;
    }
    
    .z8e57emenu-toggle {
        display: block;
    }
    
    .z8e57enav-links.z8e57eactive {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
    }
    
    .z8e57enav-links li {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .z8e57econtainer {
        max-width: 720px;
    }
    
    .z8e57ehero-slider {
        padding: 40px 0;
    }
    
    .z8e57eslider-content h1 {
        font-size: 2em;
    }
    
    .z8e57esection-title {
        font-size: 1.8em;
    }
}

@media (max-width: 576px) {
    .z8e57econtainer {
        max-width: 100%;
    }
    
    .z8e57etop-bar .z8e57econtainer {
        flex-direction: column;
        text-align: center;
    }
    
    .z8e57esocial-links {
        margin-top: 10px;
    }
    
    .z8e57econtact-grid {
        grid-template-columns: 1fr;
    }
}

/* 列表页和内容页布局 */
.z8e57econtent-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-top: 30px;
}

/* 文章列表样式 */
.z8e57earticle-list {
    flex: 1;
}

.z8e57earticle-item {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.z8e57earticle-item:hover {
    transform: translateY(-5px);
}

.z8e57earticle-header {
    margin-bottom: 15px;
}

.z8e57earticle-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.z8e57earticle-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.z8e57earticle-title a:hover {
    color: var(--primary-color);
}

.z8e57earticle-meta {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.9em;
}

.z8e57earticle-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.z8e57earticle-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.z8e57earticle-thumbnail {
    overflow: hidden;
    border-radius: 5px;
}

.z8e57earticle-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.z8e57earticle-thumbnail a:hover img {
    transform: scale(1.05);
}

.z8e57earticle-excerpt {
    color: #666;
    line-height: 1.6;
}

.z8e57earticle-footer {
    display: flex;
    justify-content: flex-end;
}

.z8e57eread-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.z8e57eread-more:hover {
    color: var(--accent-color);
}

/* 侧边栏样式 */
.z8e57esidebar {
    width: 300px;
}

.z8e57esidebar-section {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.z8e57esidebar-title {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* 热门文章和最新文章列表 */
.z8e57ehot-articles,
.z8e57elatest-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z8e57ehot-articles li,
.z8e57elatest-articles li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.z8e57ehot-articles li:last-child,
.z8e57elatest-articles li:last-child {
    border-bottom: none;
}

.z8e57ehot-articles a,
.z8e57elatest-articles a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.z8e57ehot-articles a:hover,
.z8e57elatest-articles a:hover {
    color: var(--primary-color);
}

.z8e57earticle-date {
    color: #999;
    font-size: 0.9em;
}

/* 联系我们样式 */
.z8e57esidebar .z8e57econtact-info {
    color: #666;
}

.z8e57econtact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.z8e57econtact-info i {
    color: var(--primary-color);
}

/* 响应式布局 */
@media (max-width: 992px) {
    .z8e57econtent-wrapper {
        grid-template-columns: 1fr;
    }

    .z8e57esidebar {
        width: 100%;
    }

    .z8e57earticle-body {
        grid-template-columns: 1fr;
    }

    .z8e57earticle-thumbnail {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .z8e57earticle-meta {
        flex-wrap: wrap;
    }

    .z8e57earticle-title {
        font-size: 1.3em;
    }

    .z8e57earticle-excerpt {
        font-size: 0.95em;
    }
}

@media (max-width: 576px) {
    .z8e57earticle-item {
        padding: 15px;
    }

    .z8e57earticle-meta {
        font-size: 0.85em;
    }

    .z8e57earticle-thumbnail img {
        height: 200px;
    }

    .z8e57esidebar-section {
        padding: 15px;
    }
}

/* 移动端导航优化 */
@media (max-width: 992px) {
    .z8e57enav-links.z8e57eactive {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 10px 0;
    }

    .z8e57enav-links li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .z8e57enav-links li a {
        display: block;
        padding: 10px 20px;
    }

    .z8e57emenu-toggle {
        display: block;
    }
}

/* 移动端内容布局优化 */
@media (max-width: 768px) {
    .z8e57emain-content {
        margin-top: 10px;
    }

    .z8e57esection-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .z8e57earticle-content {
        padding: 15px;
    }

    .z8e57earticle-title {
        font-size: 1.3em;
    }

    .z8e57earticle-meta {
        font-size: 0.9em;
    }
}

/* 移动端页脚优化 */
@media (max-width: 576px) {
    .z8e57efooter-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z8e57efooter-section {
        text-align: center;
    }

    .z8e57efooter-section ul {
        margin-top: 10px;
    }
}

/* 自定义字段样式 */
.z8e57ediyfield {
    margin: 15px 0;
}

.z8e57ediyfield p {
    margin-bottom: 10px;
}

/* 相关内容样式 */
.z8e57erelated-articles {
    list-style: none;
}

.z8e57erelated-articles li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.z8e57erelated-articles li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.z8e57erelated-articles a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.z8e57erelated-articles a:hover {
    color: var(--primary-color);
}

.z8e57erelated-articles p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z8e57earticle-main .z8e57earticle-header {
        padding: 20px;
    }

    .z8e57earticle-main .z8e57earticle-body {
        padding: 0 20px 20px;
    }

    .z8e57earticle-main .z8e57earticle-title {
        font-size: 1.5em;
    }
}

/* 服务优势介绍样式 */
.z8e57eadvantages-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    line-height: 1.8;
}

.z8e57eadvantages-intro p {
    font-size: 1.1em;
}

/* 专家团队样式优化 */
.z8e57eexpert-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.z8e57eexpert-card:hover {
    transform: translateY(-5px);
}

.z8e57eexpert-card h3 {
    margin: 15px 0 10px;
}

.z8e57eexpert-card h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.z8e57eexpert-card h3 a:hover {
    color: var(--primary-color);
}

.z8e57eexpert-card p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

.z8e57eexpert-image a {
    display: block;
    overflow: hidden;
    border-radius: 50%;
}

.z8e57eexpert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.z8e57eexpert-image a:hover img {
    transform: scale(1.05);
}

/* 文章内容页样式 */
.z8e57earticle-content {
    margin-top: 30px;
}

.z8e57earticle-main {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.z8e57earticle-main .z8e57earticle-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.z8e57earticle-main .z8e57earticle-title {
    font-size: 2em;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.z8e57earticle-main .z8e57earticle-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9em;
}

.z8e57earticle-main .z8e57earticle-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.z8e57earticle-main .z8e57earticle-body {
    padding: 30px;
}

.z8e57earticle-content-frame {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-color);
}

.z8e57earticle-content-frame p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.z8e57earticle-content-frame h1,
.z8e57earticle-content-frame h2,
.z8e57earticle-content-frame h3,
.z8e57earticle-content-frame h4,
.z8e57earticle-content-frame h5,
.z8e57earticle-content-frame h6 {
    margin: 1.5em 0 1em;
    color: var(--text-color);
    line-height: 1.4;
    font-weight: 600;
}

.z8e57earticle-content-frame h1 { font-size: 1.8em; }
.z8e57earticle-content-frame h2 { font-size: 1.6em; }
.z8e57earticle-content-frame h3 { font-size: 1.4em; }
.z8e57earticle-content-frame h4 { font-size: 1.2em; }

.z8e57earticle-content-frame ul,
.z8e57earticle-content-frame ol {
    margin: 1em 0;
    padding-left: 2em;
}

.z8e57earticle-content-frame li {
    margin-bottom: 0.8em;
    line-height: 1.6;
}

.z8e57earticle-content-frame blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
    color: #666;
}

.z8e57earticle-content-frame table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    overflow-x: auto;
}

.z8e57earticle-content-frame th,
.z8e57earticle-content-frame td {
    padding: 0.8em;
    border: 1px solid #ddd;
    text-align: left;
}

.z8e57earticle-content-frame th {
    background: var(--light-gray);
    font-weight: 600;
}

.z8e57earticle-content-frame img {
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.z8e57earticle-content-frame a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.z8e57earticle-content-frame a:hover {
    color: var(--accent-color);
}

.z8e57earticle-main .z8e57earticle-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
}

.z8e57earticle-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    margin-bottom: 20px;
}

.z8e57earticle-tags i {
    color: var(--primary-color);
}

.z8e57earticle-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.z8e57eprev-article,
.z8e57enext-article {
    flex: 1;
}

.z8e57eprev-article a,
.z8e57enext-article a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.z8e57eprev-article a:hover,
.z8e57enext-article a:hover {
    color: var(--primary-color);
}

/* 响应式布局调整 */
@media (max-width: 992px) {
    .z8e57econtent-wrapper {
        grid-template-columns: 1fr;
    }

    .z8e57esidebar {
        width: 100%;
        margin-top: 30px;
    }

    .z8e57earticle-main .z8e57earticle-header {
        padding: 20px;
    }

    .z8e57earticle-main .z8e57earticle-body {
        padding: 20px;
    }

    .z8e57earticle-content-frame {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .z8e57earticle-main .z8e57earticle-title {
        font-size: 1.6em;
    }

    .z8e57earticle-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .z8e57earticle-content-frame {
        font-size: 0.95em;
    }

    .z8e57earticle-content-frame h1 { font-size: 1.6em; }
    .z8e57earticle-content-frame h2 { font-size: 1.4em; }
    .z8e57earticle-content-frame h3 { font-size: 1.2em; }
    .z8e57earticle-content-frame h4 { font-size: 1.1em; }

    .z8e57earticle-nav {
        flex-direction: column;
        gap: 10px;
    }

    .z8e57eprev-article,
    .z8e57enext-article {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .z8e57earticle-main .z8e57earticle-header {
        padding: 15px;
    }

    .z8e57earticle-main .z8e57earticle-body {
        padding: 15px;
    }

    .z8e57earticle-main .z8e57earticle-title {
        font-size: 1.4em;
    }

    .z8e57earticle-meta {
        font-size: 0.85em;
    }

    .z8e57earticle-content-frame {
        font-size: 0.9em;
    }

    .z8e57earticle-content-frame img {
        margin: 1em 0;
    }

    .z8e57earticle-content-frame blockquote {
        padding: 0.8em 1em;
    }

    .z8e57earticle-content-frame table {
        display: block;
        overflow-x: auto;
    }
}
