/*!
Theme Name: maicnas
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: https://www.dkcnas.cn
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dkcnas
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
/* 基础重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 针对 pre 容器的样式（关键） */
pre {
  /* 1. 保留代码原有换行，同时允许长文本自动换行 */
  white-space: pre-wrap;
  /* 2. 当单词/标识符太长时，强制在任意位置换行（避免撑破容器） */
  overflow-wrap: break-word;
  /* 3. 限制最大宽度（可选，确保不超出父容器） */
  max-width: 100%;
  /* 4. 可选：添加内边距和背景，优化代码显示 */
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 4px;
}

/* 可选：code 标签无需额外样式，继承 pre 的设置即可 */
code {
  font-family: "Consolas", "Monaco", monospace; /* 等宽字体，提升代码可读性 */
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #f9f9f9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #004d99;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p {
    margin: 0 0 15px;
}

ul,
ol {
    margin: 0 0 15px 20px;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}


/* 分页导航样式 */
.pagination {
    margin-top: 30px;
    text-align: center;
    display: block;
}

.page-numbers-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background-color: white;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.page-numbers:hover:not(.current):not(.disabled) {
    background-color: #f1f5f9;
    color: var(--primary-color);
}

.page-numbers.current {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-numbers.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.page-numbers i {
    font-size: 14px;
}


/* 基础布局 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* 基础响应式设计 */
@media (max-width: 1200px) {}

@media (max-width: 992px) {

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }
}

/* 全局样式 */
:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --accent-color: #ff9900;
    --text-color: #333333;
    --light-gray: #f9f9f9;
    --medium-gray: #eeeeee;
    --dark-gray: #666666;
    --white: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}


/* 添加表单样式优化 */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: var(--secondary-color);
}

table {
    border-collapse: collapse;
    border: 1px solid #ccc;
    margin: 20px 0;
    background-color: #f8f8f8;
    text-align: center;
    line-height: 40px;
    width: 100%;
}

th {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

tr:nth-child(odd) {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #fff;
}

tr:hover {
    background-color: #ccc;
}

td {
    padding: 10px;
    text-align: center;
    line-height: 30px;
}

td.highlight {
    background-color: #ffc;
    font-weight: bold;
    color: #0056b3;
}


/* 添加404页面样式 */
.error-404 {
    text-align: center;
    padding: 60px 0;
}

.error-404 .page-header {
    background-color: transparent;
    color: var(--text-color);
    padding: 0;
}

.error-404 .page-title {
    font-size: 120px;
    margin: 0;
    color: var(--primary-color);
    line-height: 1;
}

.error-404 .page-subtitle {
    font-size: 24px;
    margin: 20px 0;
}

.error-404 .error-description {
    max-width: 600px;
    margin: 0 auto 30px;
}

.error-404 .back-home {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.error-404 .back-home:hover {
    background-color: var(--secondary-color);
}

/* Unified Common Module Header Styles */
.common-module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align to bottom so title and subtitle sit nicely */
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.common-module-header .header-left {
    display: flex;
    align-items: baseline; /* Align text baselines */
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.common-module-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.2;
    padding-left: 10px;
    border-left: 4px solid #0066cc; /* Blue accent bar */
}

.common-module-subtitle {
    font-size: 14px;
    color: #999;
    margin-left: 15px;
    font-weight: normal;
}

.common-module-header .header-right {
    font-size: 14px;
}

.common-module-header .header-right a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.common-module-header .header-right a:hover {
    color: #0066cc;
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
    .common-module-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .common-module-header .header-right {
        margin-top: 10px;
        align-self: flex-end; /* Keep "more" link to the right or move to left? Usually right is fine, or hidden. */
    }
    
    .common-module-subtitle {
        display: block;
        margin-left: 0; /* Stack on mobile if needed, or keep inline but wrap */
        margin-top: 5px;
        width: 100%; /* Force new line if wrapping */
        padding-left: 14px; /* Align with text start (4px border + 10px padding) */
    }
}

/* Process and Guarantee Module Styles */
.process-module-section, .guarantee-module-section {
    padding: 50px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.module-header.text-left {
    text-align: left;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.module-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
    padding-left: 10px;
    border-left: 4px solid #333;
    line-height: 1;
}

/* Process Steps */
.process-steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.process-step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.step-content-top {
    margin-bottom: 30px;
    min-height: 80px;
}

.step-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.step-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

.step-indicator {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0; /* Solid line instead of dotted for cleaner look or use border-style: dashed */
    border-top: 1px dashed #b0c4de;
    z-index: 0;
    background: none;
}

.step-indicator::after {
    content: '▶';
    position: absolute;
    top: 50%;
    right: -10px; /* Adjust based on design */
    transform: translateY(-50%);
    color: #b0c4de;
    font-size: 10px;
    display: none; /* Hide default, maybe show on line end */
}

/* First item has no line before */

/* Arrow at the end of line */
.process-step-item:not(:last-child) .step-indicator::after {
     /* We use a different approach for arrows on the line if needed, 
        but simple dashed line is standard. 
        Let's add an arrow to the line. */
    content: '';
    position: absolute;
    top: 50%;
    right: -6px; /* Position at the end of the line segment */
    width: 6px;
    height: 6px;
    border-right: 1px solid #b0c4de;
    border-bottom: 1px solid #b0c4de;
    transform: translateY(-50%) rotate(-45deg);
    z-index: 1;
    margin-right: 3px;
    display: block;
    left: auto; 
}
/* Fix arrow positioning: it needs to be relative to the line which connects current and next.
   Actually, easiest is to make the line go from current center to right. 
*/
.process-step-item .step-indicator::before {
    left: 50%;
    width: 100%;
}
.process-step-item:last-child .step-indicator::before {
    display: none;
}

.step-num {
    width: 50px;
    height: 50px;
    line-height: 48px;
    border-radius: 50%;
    border: 1px solid #dbe6f5;
    background-color: #fff;
    color: #8dabd6;
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
    position: relative;
    display: inline-block;
}

/* Guarantee Module */
.guarantee-grid-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.guarantee-item {
    flex: 1;
    min-width: 180px;
    padding: 20px 10px;
}

.guarantee-icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.guarantee-hexagon {
    width: 70px;
    height: 70px;
    background-color: #5d9cec;
    color: #fff;
    line-height: 70px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%; /* Using circle as per simple CSS, or clip-path for hexagon */
    box-shadow: 0 5px 15px rgba(93, 156, 236, 0.3);
    position: relative;
}

/* Optional: Hexagon shape using clip-path if browser supports, else circle */
@supports (clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%)) {
    .guarantee-hexagon {
        border-radius: 0;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        width: 80px;
        height: 90px;
        line-height: 90px;
    }
}

.guarantee-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.guarantee-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .process-steps-wrapper {
        flex-wrap: wrap;
    }
    .process-step-item {
        flex: 0 0 50%; /* 2 per row */
        margin-bottom: 30px;
    }
    .process-step-item .step-indicator::before {
        display: none; /* Hide connecting lines on mobile/tablet wrap */
    }
    
    .guarantee-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .process-step-item {
        flex: 0 0 100%;
    }
    .guarantee-item {
        flex: 0 0 100%;
    }
}

.news-module-section {
    padding: 60px 0;
    background-color: #f5f7fa;
}

.news-module-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-module-title {
    font-size: 32px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

.news-module-subtitle {
    font-size: 16px;
    color: #666;
}

.news-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.news-card-item {
    width: 33.333%;
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.news-card-inner {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.news-cat-tag {
    display: inline-block;
    padding: 2px 8px;
    background-color: #e6f0ff;
    color: #0066cc;
    border-radius: 4px;
    margin-right: 15px;
    text-decoration: none;
    font-size: 12px;
}

.news-date {
    color: #999;
}

.news-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px;
    line-height: 1.4;
}

.news-card-title a {
    color: #333;
    text-decoration: none;
}

.news-card-title a:hover {
    color: #0066cc;
}

.news-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .news-card-item {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .news-card-item {
        width: 100%;
    }
}



/* 主内容区域 */
.main-content-area {
    padding: 40px 0 0;
    background-color: #f8f9fa;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    position: relative;
}

.site-main {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

/*header-inner end*/


/*single start*/
/* 文章样式 */
.single-article {
    margin-bottom: 30px;
}

.entry-header {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.entry-title {
    font-size: 24px;
    margin: 0 0 15px;
    color: #333;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    color: #999;
    gap: 15px;
    padding-bottom: 15px;
}

/* 特殊分类文章的头部样式 */
.special-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.special-header-inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.special-thumbnail {
    flex: 0 0 45%;
}

.special-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.special-content {
    flex: 1;
}

.special-header .entry-title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.special-header .entry-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.special-header .entry-meta {
    justify-content: flex-start;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .special-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .special-thumbnail {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .entry-title {
        font-size: 20px;
    }
}

.entry-thumb {
    max-width: 600px;
    margin: 0 auto 15px;

}

.entry-meta span {
    display: flex;
    align-items: center;
}

.entry-meta i {
    margin-right: 5px;
}

.entry-meta a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.entry-meta a:hover {
    color: var(--primary-color);
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 20px 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 30px 0 25px;
    color: #333;
    line-height: 1.5;
}

.entry-content h2 {
    font-size: 1.2em;
    margin-left: -28px;
    padding-left: 25px;
    border-left: 3px solid var(--primary-color);
}

.entry-content h3 {
    font-size: 1.1em;
    margin-left: -28px;
    padding-left: 25px;
    border-left: 3px solid var(--accent-color)
}

.entry-content h4 {
    font-size: 1em;
}

.entry-content ul,
.entry-content ol {
    margin: 1.2em 0;
    padding-left: 20px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content hr {
    margin: 3em auto;
    width: 240px;
    max-width: 100%;
    border: none;
    border-top: 1px solid #c4c7ce;
}

.entry-content th,
.entry-content td {
    text-align: left;
}

.entry-content th p,
.entry-content td p {
    margin: 0;
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.post-tags i {
    color: #999;
}

.post-tags a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    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 #eee;
    border-bottom: 1px solid #eee;
}

.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: #666;
    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: #333;
}

.form-tip {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    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;
}

.button-group {
    display: flex;
}

.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;
    flex: 1;
}

.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 {
    background-color: #f8f9fa;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.form-title {
    font-size: 20px;
    margin: 0;
    color: #0066cc;
}

.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: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.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: #ff6600;
    color: white;
}

.contact-form-section .button-group .baidu-service-btn:hover {
    background-color: #e55c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.contact-form-section .button-group .baidu-service-btn i {
    margin-right: 5px;
}

/* 咨询按钮样式 */
.btns {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.btns .quote-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color, #0066cc);
    color: white;
}

.btns .quote-btn2 {
    background-color: #ff9900;
    color: white;
}

.btns .quote-btn:hover {
    background-color: var(--secondary-color, #0055aa);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btns .quote-btn2:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.btns .J_getphone {
    background-color: var(--primary-color, #0066cc);
    color: white;
}

.btns .J_getphone:hover {
    background-color: var(--secondary-color, #0055aa);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btns .J_getweixin {
    background-color: #ff9900;
    color: white;
}

.btns .J_getweixin:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.btns .quote-btn i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .btns .quote-btn {
        font-size: 12px;
    }
}

.related-articles-list {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.related-article-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: calc(25% - 18px);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.related-article-card:hover {
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
}

.related-article-thumb img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    display: block;
}

.related-article-info {
    padding: 16px 14px 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.related-article-title {
    font-size: 14px;
    color: #222;
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .related-articles-list {
        gap: 16px;
    }

    .related-article-card {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .related-articles-list {
        flex-direction: column;
        gap: 14px;
    }

    .related-article-card {
        width: 100%;
    }
}



/* 弹出内容样式 */
.contact-info-box {
    display: none;
    margin-top: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

.contact-info-box.active {
    display: block;
}

.contact-info-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.contact-info-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.contact-phone-list {
    flex: 1;
}

.contact-phone-item {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.contact-phone-item i {
    margin-right: 8px;
    color: var(--primary-color, #0066cc);
}

.contact-info-content .contact-qrcode {
    text-align: center;
    margin-top: 0;
}

.contact-qrcode img {
    max-width: 150px;
    border: 1px solid #eee;
    padding: 5px;
    background: #fff;
}

.contact-qrcode-text {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*single end*/


/* 文章列表 */
.archive-posts {
    margin-bottom: 30px;
}

.archive-post-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.archive-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
}

.post-thumbnail {
    flex: 0 0 200px;
    height: 150px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.archive-post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.post-title {
    font-size: 18px;
    margin: 0 0 10px;
    color: #333;
    transition: color 0.3s;
}

.archive-post-item:hover .post-title {
    color: var(--primary-color);
}

.post-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    font-size: 12px;
    color: #999;
}

.post-date,
.post-category {
    margin-right: 15px;
}

.post-meta i {
    margin-right: 5px;
}

.post-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    color: var(--primary-color);
    font-size: 20px;
    transition: color 0.3s;
}

.archive-post-item:hover .post-more {
    color: var(--secondary-color);
}




/*sidebar start*/
/* 侧边栏 */
.widget-area {
    flex: 0 0 300px;
    transition: all 0.3s ease;
}

.sidebar-pic {
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: block;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 25px;
}

.widget-title {
    font-size: 18px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: #333;
}

/* 侧边栏菜单 */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.sidebar-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-menu a:hover {
    color: var(--primary-color);
}

.sidebar-menu i {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s;
}

.sidebar-menu a:hover i {
    transform: translateX(3px);
    color: var(--primary-color);
}

/* 活动分类样式 */
.sidebar-menu li.active a {
    color: var(--primary-color);
    font-weight: bold;
}

.sidebar-menu li.active i {
    color: var(--primary-color);
}

/* 最新文章和热门文章 */
.recent-posts,
.popular-posts,
.recommended-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li,
.popular-posts li,
.recommended-posts li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 15px;
}

.recent-posts li:before,
.popular-posts li:before,
.recommended-posts li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.recent-posts li:last-child,
.popular-posts li:last-child,
.recommended-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a,
.popular-posts a,
.recommended-posts a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s;
    display: block;
}

.recent-posts a:hover,
.popular-posts a:hover,
.recommended-posts a:hover {
    color: var(--primary-color);
}

/* 推荐服务项目 */
.latest-projects .widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.latest-projects .widget-title {
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.latest-projects .more-link {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.latest-projects .more-link:hover {
    color: var(--primary-color);
}

.latest-projects .more-link i {
    margin-left: 5px;
    font-size: 12px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.project-item {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 8px 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.project-item:hover {
    background-color: #e9ecef;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-item a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: block;
    transition: color 0.3s;
}

.project-item:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.project-item:hover a {
    color: white;
}

/* CNAS认可咨询模块 - 简化设计 */

.cnas-consultation-widget .consultation-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #1f2937;
    text-align: center;
    line-height: 1.4;
}

.cnas-consultation-widget .consultation-desc {
    font-size: 14px;
    line-height: 24px;
    color: #6b7280;
}

.cnas-consultation-widget .consultation-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.cnas-consultation-widget .consultation-buttons .btn {
    flex: 1;
    border: none;
    border-radius: 23px;
    line-height: 46px;
    font-size: 14px;
    padding: 0;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cnas-consultation-widget .consultation-buttons .quick-consultation-btn {
    background-image: linear-gradient(-34deg, #3d509f 0%, #556ac0 100%), linear-gradient(#000000, #000000);
    color: white;
    box-shadow: 0 4px 12px rgba(91, 107, 192, 0.3);
}

.cnas-consultation-widget .consultation-buttons .quick-consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 107, 192, 0.4);
}

.cnas-consultation-widget .consultation-buttons .quick-consultation-btn i {
    font-size: 16px;
}

.cnas-consultation-widget .consultation-buttons .detail-btn {
    background-image: linear-gradient(0deg, #f28d23 0%, #fbb163 100%), linear-gradient(#000000, #000000);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.cnas-consultation-widget .consultation-buttons .detail-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.cnas-consultation-widget .consultation-buttons .detail-btn i {
    font-size: 16px;
}

.cnas-consultation-widget .hotline-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cnas-consultation-widget .hotline-icon {
    width: 40px;
    height: 40px;
    background: #5b6bc0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cnas-consultation-widget .hotline-icon i {
    font-size: 18px;
    color: white;
}

.cnas-consultation-widget .hotline-info {
    flex: 1;
}

.cnas-consultation-widget .hotline-label {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 4px;
    font-weight: 500;
}

.cnas-consultation-widget .hotline-number {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.cnas-consultation-widget .hotline-number a {
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cnas-consultation-widget .hotline-number a:hover {
    color: #5b6bc0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .cnas-consultation-widget .consultation-buttons {
        flex-direction: column;
    }

    .cnas-consultation-widget .consultation-buttons .btn {
        flex: none;
        font-size: 15px;
    }

    .cnas-consultation-widget .hotline-section {
        padding: 14px;
    }

    .cnas-consultation-widget .hotline-number {
        font-size: 16px;
    }

    .cnas-consultation-widget .consultation-title {
        font-size: 18px;
    }

    .cnas-consultation-widget .consultation-desc {
        font-size: 13px;
    }
}

/* 联系方式 - 保留原有样式作为备用 */
.contact-widget {
    background-color: #f8f9fa;
}

.contact-info {
    font-size: 14px;
    color: #333;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-qrcode {
    text-align: center;
    margin-top: 15px;
}

.contact-qrcode img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.contact-qrcode p {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        flex: 0 0 100%;
    }

    .post-thumbnail {
        flex: 0 0 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .archive-title {
        font-size: 28px;
    }

    .archive-description {
        font-size: 14px;
    }

    .post-link {
        /* flex-direction: column; */
        align-items: center;
    }

    .post-thumbnail {
        flex: 0 0 120px;
        height: 120px;
    }

    .post-excerpt {
        display: none;
    }

    .post-content {
        padding: 15px;
    }

    .post-title {
        font-size: 16px;
    }

    .post-more {
        display: none;
    }
}

@media (max-width: 576px) {
    .post-meta {
        font-size: 10px;
    }

    .post-meta span {
        white-space: nowrap;
    }

    .archive-banner {
        padding: 40px 0;
    }

    .site-main {
        padding: 15px;
    }

    .current-category {
        flex-direction: column;
        align-items: flex-start;
    }

    .current-category h2 {
        margin-bottom: 10px;
    }
}

/* sidebar end */


/*content-contact*/
/* 联系我们部分样式调整 */
.contact-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact-container {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}

.contact-info {
    flex: 1.1;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* border-left: 4px solid var(--primary-color); */
}

.contact-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-desc {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: rgba(0, 102, 204, 0.1);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: row;
    /* 改为横向排列 */
    align-items: center;
    /* 垂直居中 */
    flex-wrap: wrap;
    /* 允许在小屏幕上换行 */
    width: 100%;
}

.contact-text span {
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
    /* 右侧添加间距 */
    color: #333;
}

.contact-text p {
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.5;
    flex: 1;
    /* 让内容占据剩余空间 */
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 18px;
}

.contact-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* 热线电话样式特殊处理 */

.hotline-number {
    font-size: 18px !important;
    /* 放大字体 */
    font-weight: bold !important;
    /* 加粗 */
}

.hotline-number a {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 26px;
}

.contact-text .service-time {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.contact-phone {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-phone:hover {
    transform: translateY(-3px);
}

.contact-phone i {
    font-size: 32px;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background-color: rgba(0, 102, 204, 0.1);
}

.phone-number {
    display: flex;
    flex-direction: column;
}

.phone-number span {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.phone-number p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* 新增微信联系方式样式 */
.contact-wechat {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 0 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-wechat:hover {
    transform: translateY(-3px);
}

.contact-wechat .wechat-info {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.contact-wechat .wechat-info i {
    font-size: 32px;
    color: #07C160;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: rgba(7, 193, 96, 0.1);
}

.contact-wechat .wechat-text {
    display: flex;
    flex-direction: column;
}

.contact-wechat .wechat-text span {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact-wechat .wechat-text p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

.contact-wechat .wechat-qrcode {
    text-align: center;
}

.contact-wechat .wechat-qrcode img {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.contact-wechat .wechat-qrcode p {
    font-size: 14px;
    margin-top: 5px;
    color: #666;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-tip {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    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;
}

.button-group {
    display: flex;
    gap: 15px;
}

.submit-btn {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    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);
}

.baidu-service-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.baidu-service-btn:hover {
    background-color: #e55c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
    color: #fff;
}

.baidu-service-btn i {
    margin-right: 5px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
        padding: 30px;
    }

    .contact-form {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-subtitle {
        font-size: 20px;
    }

    .contact-desc {
        font-size: 14px;
    }

    .contact-item i,
    .wechat-info i {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .contact-text span {
        font-size: 15px;
    }

    .contact-text p {
        font-size: 13px;
    }

    .phone-number span {
        font-size: 20px;
    }

    .hotline-number {
        font-size: 16px !important;
    }

    .hotline-number a {
        font-size: 22px;
    }

    .contact-wechat .wechat-info {
        flex: 1;
        margin-right: 0;
    }

    .contact-wechat .wechat-qrcode {
        display: flex;
        align-items: center;
    }

    .contact-wechat .wechat-qrcode img {
        width: 80px;
        height: 80px;
        margin-right: 0;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-row .form-field {
        margin-bottom: 10px;
    }

    .button-group {
        flex-direction: column;
    }
}


/* 快速链接 */
.quick-links-section {
    padding: 50px 0 10px;
    background-color: #1a1a1a;
    color: #ccc;
}

.quick-links-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-link-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.quick-link-column h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.quick-link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: wrap;
}

.quick-link-column ul li {
    margin-bottom: 10px;
    width: 100%;
}

.quick-link-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.quick-link-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.quick-link-column ul li a i {
    margin-right: 8px;
    font-size: 12px;
}

.contact-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-column p i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.contact-column a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.contact-column a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

/* 响应式样式 */
@media (max-width: 1200px) {}

@media (max-width: 992px) {

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }







    .quick-links-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {



    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .quick-links-container {
        grid-template-columns: 1fr;
    }

    .quick-link-column ul li {
        width: 50%
    }

}

/* 自定义头部样式 */

/* 页脚样式 */
.site-footer {
    background-color: #111;
    color: #999;
    padding: 20px 0;
    text-align: center;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer p {
    margin: 0;
}

.site-info {
    font-size: 14px;
}

.site-info a {
    color: #ccc;
    text-decoration: none;
}

.site-info a:hover {
    color: var(--accent-color);
}

.footer-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-navigation li {
    margin-left: 20px;
}

.footer-navigation a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-navigation a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .site-footer .container {
        flex-direction: column;
    }

    .site-info {
        margin-bottom: 15px;
    }

    .footer-navigation ul {
        justify-content: center;
    }

    .footer-navigation li {
        margin: 0 10px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}



.free-solution-section {
    padding: 50px 0;
}

.free-solution-container {
    display: flex;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.free-solution-container .leftbox {
    display: flex;
    align-items: center;
    padding: 30px;
    
    color: #fff;
    width: 25%;
}

.solution-icon {
    font-size: 36px;
    margin-right: 15px;
}

.solution-header h3 {
    font-size: 22px;
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #fff;
}

.solution-header .notice {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.free-solution-container .rightbox {
    flex: 1;
    display: flex;
    padding: 20px 30px;
}

.solution-stats {
    display: flex;
    align-items: center;
    flex: 1;
    background: #fff;
    border-radius: 20px;
    margin-right: 10px;
    height: 42px;
    padding: 0 20px;
}

.applied-count, .remain-count {
    text-align: center;
}

.count-label {
    font-size: 16px;
    color: #333;
}

.count-number {
    font-weight: bold;
    color: var(--primary-color);
}

.user-list-container {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin: 0 20px;
    padding: 0 20px;
    height: 42px;
    overflow: hidden;
    position: relative;
}

.user-list {
    animation: scrollList 15s linear infinite;
}

@keyframes scrollList {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.user-item {
    padding: 5px 10px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.solution-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.btn-get, .btn-consult {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-get {
    background-color: var(--primary-color);
    color: #fff;
}
.btn-get:hover{
    color: #fff;
}

.btn-consult {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-get:hover, .btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .free-solution-container {
        flex-direction: column;
    }
    
    .free-solution-container .leftbox {
        padding: 20px;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    
    .solution-stats {
        gap: 15px;
        width: 100%;
    }
    

    
    .user-list-container {
        width: 100%;
    }
}

@media (max-width: 960px) {
    .free-solution-container .rightbox{
        flex-direction: column;
    }
    .solution-buttons{
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width:768px){
    .solution-stats{
        flex-direction: column;
    }
    .user-list-container{
        flex: none;
    }
}



/*modal start*/
/* 弹窗样式 */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.quote-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.quote-modal-close:hover {
    color: var(--primary-color);
}

.quote-modal-header {
    margin-bottom: 15px;
}

.quote-modal-title {
    font-size: 20px;
    margin: 0;
    color: #0066cc;
}

.quote-modal-tip {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.quote-modal-tip2 {
    color: #0056b3;
}

.quote-modal-tip em {
    font-style: normal;
    color: #ef4444;
    font-weight: bold;
}

/* 按钮样式 */
.quote-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.entry-meta .quote-btn {
    color: #fff;
}

.quote-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 102, 204, 0.3);
}

.entry-meta .quote-btn:hover {
    color: #fff;
}

.quote-btn i {
    margin-right: 5px;
}

.form-field {
    display: flex;
    margin-bottom: 15px;
    gap: 15px;
}

/*modal end*/


/* 浮动按钮 */

/* 侧栏悬浮按钮样式 */

/* Detail List Styles */
.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px dashed #eee;
}
.detail-list li {
    float: left;
    width: 50%;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    line-height: 24px;
    color: #333;
    font-size: 14px;
}
.detail-list li.full {
    width: 100%;
}
.detail-list li .tit {
    color: #999;
    display: inline-block;
    width: 90px;
    text-align: right;
    margin-right: 15px;
}
@media (max-width: 768px) {
    .detail-list li {
        width: 100%;
        float: none;
    }
}
.detail-list:after {
    content: "";
    display: block;
    clear: both;
}

/* Optimized H5 Styles */
.panel-body h5 {
    font-size: 16px;
    font-weight: bold;
    border-left: 4px solid #0056b3;
    padding-left: 10px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.panel-body hr {
    display: none;
}
.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

/* 添加二维码容器样式 */
.qrcode-container {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.qrcode-container .qrcode-item {
    width: 48%;
    text-align: center;
}

.qrcode-container .qrcode-item img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border: 1px solid #eee;
    padding: 5px;
    background: #fff;
    border-radius: 4px;
    display: inline-block;
}

.qrcode-container .qrcode-item p {
    font-size: 12px;
    color: #666;
    text-align: center;
    display: block;
}

/* 调整联系方式样式 */
.contact-column p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.contact-column p i {
    width: 20px;
    margin-right: 8px;
    color: #0066cc;
}

.floating-btn {

    background-color: #0066cc;
    color: white;
    width: 60px;
    height: 66px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.floating-btn:hover {
    background-color: #0055aa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn i {
    font-size: 20px;
    margin-bottom: 8px;
}

/* 微信二维码弹窗 */
.floating-qrcode {
    position: absolute;
    right: 60px;
    bottom: 0;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.floating-qrcode:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: white;
}

.floating-qrcode img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-qrcode p {
    margin: 10px 0 0;
    text-align: center;
    font-size: 12px;
    color: #333;
}

.wechat-btn:hover .floating-qrcode {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 电话号码提示 */
.floating-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: white;
    padding: 8px 15px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-tooltip:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: white;
}

.floating-tooltip p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #666;
}

.phone-btn:hover .floating-tooltip,
.mobile-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}


/* 返回顶部按钮初始隐藏 */
/* .back-to-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
} */

/* 移动端适配 */
@media (max-width: 768px) {

    .floating-btn {
        display: none;
    }

    .floating-btn.back-to-top {
        display: flex;
        width: 45px;
        height: 45px;
        border-radius: 25px;
    }

    .floating-btn .btn-text {
        display: none;
    }

    .floating-btn i {
        margin-bottom: 0;
    }



    .floating-qrcode {
        width: 120px;
        padding: 10px;
    }
}

/* 友情链接样式 */
.friend-links-section {
    padding: 15px 0;
    background-color: #1a1a1a;
}

.friend-links-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.friend-links-title {
    color: #666;
    font-size: 14px;
}

.friend-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.friend-links-list a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.friend-links-list a:hover {
    color: #0066cc;
}

@media (max-width: 768px) {
    .friend-links-container {
        flex-direction: column;
        gap: 5px;
    }

    .friend-links-list {
        gap: 15px;
    }
}

.mobile-contact {
    display: none;
}

@media (max-width:768px) {
    .mobile-contact {
        display: flex;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 1000;
        height: 44px;
    }

    .mobile-contact a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 50%;
        padding: 10px 0;
        background: #0066cc;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }

    .mobile-contact a i {
        margin-right: 8px;
    }
}

/* 浮动按钮结束 */
.muted {
    font-size: 12px;
    color: #666;
}




/* 分公司网络样式 */
.branch-offices {
    margin: 0 0 10px;
    color: #fff;
}

.branch-offices h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.branch-item {
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.branch-item .address_name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.branch-item .address_location {
    display: none;
    margin-top: 5px;
    padding-left: 26px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.branch-item:hover .address_location {
    display: block;
    animation: fadeIn 0.3s ease;

}

.branch-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.branch-item:hover .branch-arrow {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.branch-item .address_location {
    display: none;
}

.branch-grid:hover .address_location {
    display: block;
}

.branch-item:hover {
    background-color: #0055aa;
    transform: translateY(-2px);
}

.branch-item i {
    margin-right: 10px;
    font-size: 16px;
}

.branch-item span {
    font-size: 14px;
}

@media (max-width: 768px) {
    .branch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.friend-links-footer {
    background-color: #1a1a1a;
    padding: 15px 0;
}


.friend-links-content h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.friend-links-footer .links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.friend-links-footer .links-list a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.friend-links-footer .links-list a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 768px) {

    .friend-links-content h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .friend-links-footer .links-list {
        gap: 15px;
    }

    .friend-links-footer .links-list a {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .friend-links-footer .links-list {
        gap: 10px;
    }

    .friend-links-footer .links-list a {
        font-size: 12px;
        padding: 5px 10px;
    }
}



