/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
.za94f2body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.za94f2container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航样式 */
.za94f2header {
    background: linear-gradient(135deg, #0099ff 0%, #0077cc 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 确保导航在移动端正确显示 */
.za94f2nav {
    display: flex;
    align-items: center;
}

.za94f2header .za94f2container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.za94f2logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.za94f2nav_list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.za94f2nav_link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.za94f2nav_link:hover {
    color: #ffd700;
    background-color: rgba(255,255,255,0.1);
}

.za94f2mobile_menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.za94f2mobile_menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* 主要内容区域 */
.za94f2main {
    margin-top: 80px;
}

/* 咨询区域样式 */
.za94f2consultation {
    background: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 1rem;
}

.za94f2consultation_content {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.za94f2consultation_title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: normal;
}

.za94f2consultation_button {
    margin-top: 1.5rem;
}

.za94f2btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.za94f2btn_primary {
    background: #3498db;
    color: white;
}

.za94f2btn_primary:hover {
    background: #2980b9;
}

/* 查询系统区域 */
.za94f2query_section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.za94f2query_content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.za94f2query_title {
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.za94f2query_form {
    margin-top: 2rem;
}

.za94f2form_group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.za94f2form_label {
    color: #333;
    font-weight: normal;
    white-space: nowrap;
    font-size: 0.95rem;
}

.za94f2input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    min-width: 200px;
    transition: border-color 0.3s ease;
}

.za94f2input:focus {
    outline: none;
    border-color: #3498db;
}

.za94f2form_note {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-top: 0.8rem;
}

/* 展示区域 */
.za94f2showcase {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.za94f2showcase_title {
    text-align: center;
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.za94f2showcase_content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.za94f2showcase_image {
    margin-bottom: 1.5rem;
}

.za94f2image_placeholder {
    width: 100%;
    height: 200px;
    background: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: normal;
    border-radius: 6px;
}

.za94f2showcase_nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.za94f2nav_btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #3498db;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.za94f2nav_btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

/* FAQ区域 */
.za94f2faq_section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.za94f2faq_list {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.za94f2faq_item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.za94f2faq_question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    color: #2c3e50;
    transition: background-color 0.3s ease;
    margin: 0;
    font-weight: 600;
}

.za94f2faq_question:hover {
    background: #e9ecef;
}

.za94f2faq_answer {
    padding: 1.5rem;
    background: white;
    display: none;
}

.za94f2faq_answer p,
.za94f2faq_answer ul,
.za94f2faq_answer ol {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.za94f2faq_answer ul,
.za94f2faq_answer ol {
    padding-left: 2rem;
}

/* 客户评价区域 */
.za94f2reviews_section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.za94f2reviews_grid {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.za94f2review_card {
    background: white;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.za94f2review_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.za94f2review_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.za94f2review_name {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.za94f2stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.za94f2review_text {
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* 联系我们区域 */
.za94f2contact_section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.za94f2contact_content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.za94f2contact_title {
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 500;
}

.za94f2contact_subtitle {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.za94f2contact_info {
    margin-top: 1.5rem;
}

.za94f2contact_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.za94f2contact_item:last-child {
    border-bottom: none;
}

.za94f2contact_item:hover {
    background-color: #f8f9fa;
}

.za94f2contact_icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.za94f2contact_details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.za94f2contact_details p {
    color: #7f8c8d;
    margin: 0;
}

/* 页脚样式 */
.za94f2footer {
    background: #34495e;
    color: #bdc3c7;
    padding: 2rem 0 1rem;
}

.za94f2footer_keywords {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.za94f2footer_keywords a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.za94f2footer_keywords a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.za94f2footer_nav {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.za94f2footer_nav a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.za94f2footer_nav a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.za94f2footer_contact {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.za94f2footer_copyright {
    border-top: 1px solid #2c3e50;
    padding-top: 1rem;
}

.za94f2footer_copyright p {
    color: #95a5a6;
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
}

.za94f2footer_link {
    color: #3498db;
    text-decoration: underline;
}

.za94f2footer_link:hover {
    color: #2980b9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .za94f2mobile_menu {
        display: none; /* 隐藏汉堡菜单 */
    }
    
    .za94f2nav {
        position: static; /* 改为静态定位 */
        background: transparent;
        padding: 0.5rem 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: block;
        z-index: auto;
        box-shadow: none;
    }
    
    .za94f2nav_list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* 允许换行 */
        gap: 0.5rem;
        padding: 0;
        margin: 0;
        overflow-x: auto; /* 横向滚动 */
        white-space: nowrap;
    }
    
    .za94f2nav_link {
        font-size: 0.8rem; /* 较小字体 */
        padding: 0.2rem 0.5rem;
        border: none;
        background: none;
        text-decoration: none;
        color: white;
        white-space: nowrap;
        transition: color 0.3s ease;
    }
    
    .za94f2nav_link:hover {
        color: #ffd700;
        background: none;
        text-decoration: none;
    }
    
    /* 调整头部布局 */
    .za94f2header .za94f2container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .za94f2logo {
        margin-bottom: 0.5rem;
    }
    
    .za94f2logo h1 {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .za94f2consultation_content {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .za94f2consultation_title {
        font-size: 1.4rem;
    }
    
    .za94f2query_title {
        font-size: 1.5rem;
    }
    
    .za94f2form_group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .za94f2input {
        min-width: auto;
    }
    
    .za94f2contact_info {
        padding: 0 1rem;
    }
    
    .za94f2footer_content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .za94f2container {
        padding: 0 15px;
    }
    
    .za94f2consultation_content {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .za94f2consultation_title {
        font-size: 1.2rem;
    }
    
    .za94f2query_title {
        font-size: 1.3rem;
    }
    
    .za94f2btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .za94f2image_placeholder {
        height: 200px;
        font-size: 1rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.za94f2consultation_content,
.za94f2query_content,
.za94f2showcase_content,
.za94f2review_card,
.za94f2contact_item {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}

/* 新增：简化的HTML结构样式 */
/* 咨询区域 - 简化版 */
#home {
    background: white;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 80%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#home h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0099ff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

#home button {
    background: #0099ff;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

#home button:hover {
    background: #0077cc;
}

/* 查询系统区域 - 简化版 */
#query {
    background: white;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

#query h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0099ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

#query label {
    display: block;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

#query input {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    width: 250px;
    margin-right: 10px;
    vertical-align: middle;
}

#query button {
    display: inline-block;
    background: #0099ff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    vertical-align: middle;
    transition: all 0.3s ease;
}

#query button:hover {
    background: #0077cc;
}

#query p {
    color: #666;
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ区域 - 简化版 */
#faq {
    background: white;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#faq h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0099ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

#faq h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
}

#faq p, #faq ul, #faq ol {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

#faq ul, #faq ol {
    padding-left: 2rem;
}

#faq strong {
    color: #333;
    font-weight: bold;
}

/* 客户评价区域 - 简化版 */
#reviews {
    background: white;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

#reviews h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0099ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

#reviews h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    text-align: left;
}

#reviews p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

#reviews strong {
    color: #333;
    font-weight: bold;
}

/* 查询系统展示区域 - 简化版 */
#showcase {
    background: white;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

#showcase h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0099ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.showcase-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.showcase-image {
    margin-bottom: 1rem;
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.showcase-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #0099ff;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #0077cc;
    transform: scale(1.1);
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #0099ff;
}

/* 联系我们区域 - 简化版 */
#contact {
    background: white;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

#contact h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0099ff;
    margin-bottom: 1rem;
    text-align: center;
}

#contact > p {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

#contact ul {
    list-style: disc;
    padding-left: 2rem;
    text-align: left;
    margin: 0;
}

#contact li {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
} 