:root {
    --primary-color: #006039;
    --secondary-color: #589b50;
    --accent-color: #e63946;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
	--primary-light: #1a365d;
	--primary-dark: #0d1a27;
	--accent-color: var(--primary-color);
	--text-primary: #ffffff;
	--text-secondary: #555;
	--text-muted: #555;
	--bg-light: #f8fafc;
	--bg-card: #ffffff;
	--border-color: #e2e8f0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--primary-color);
    line-height: 1.6;
}
/* 瀹瑰櫒鏍峰紡 - 鏈€澶у搴�1200px */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* 椤堕儴淇℃伅鏍� */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-primary);
    padding: 10px 60px;
    text-align: right;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}
a{ text-decoration: none;}
/* 瀵艰埅鏍� */
.navbar {
    background-color: var(--bg-card);
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(17, 33, 49, 0.15);
    padding: 8px 60px;
    background-color: rgba(255, 255, 255, 0.98);
}
.logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
}
.logo img {
    height: 50px;
    margin-right: 10px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a:hover {
    color: var(--accent-color);
}
.nav-links a.active {
    color: var(--accent-color);
}
.nav-links a.active::after {
    width: 100%;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
    background-color: var(--accent-color);
}
/* 姹夊牎鑿滃崟鎸夐挳 */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
}
.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
/* Hero 鍖哄煙 */
.hero {
    height: 500px;
    background: linear-gradient(rgba(17, 33, 49, 0.3), rgba(17, 33, 49, 0.5)), 
                url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-primary);
    padding: 0 20px;
    background-attachment: fixed;
}
.hero h1 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.hero p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}
.hero-tel {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    color:#fff;
    margin-bottom: 20px;
    text-decoration: none;
}
.tel-button{   background-color: var(--text-primary);
    color: var(--primary-color);
 padding: 16px 45px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--text-primary);
    cursor: pointer;
    }
 .hero div{ display: flex; gap: 10px;}
.cta-button {
    background-color: transparent;
    color: var(--text-primary);
    padding: 16px 45px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: var(--text-primary);
    color: var(--primary-color);
}
/* 婊氬姩鏂伴椈 */
.scroll-news {
    background-color: var(--primary-color);
    border-bottom: 1px solid #e2e8f0;
    height: 50px;
    line-height: 40px;
    overflow: hidden;
    position: relative;
    padding: 5px 0;
}
.scroll-news .swiper-container {
    width: 100%;
    height: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 20px;
    color: var(--primary-dark);
}
.scroll-news .swiper-wrapper {
    display: flex;
    flex-direction: column;
}
.scroll-news .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 40px !important;
    line-height: 40px;
    overflow: hidden;
}
.scroll-tag {
    display: inline-flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}
.scroll-tag::after {
    content: '>';
    margin-left: 10px;
    color: var(--primary-color);
    position: absolute;
    right: 0;
}
.scroll-item {
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    max-width: calc(100% - 80px);
}
.scroll-arrow {
    position: absolute;
    right: calc((100% - 1200px) / 2 + 20px);
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
    animation: arrowBlink 1s infinite;
}
@keyframes arrowBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
/* 鏈嶅姟浠嬬粛鍖哄煙 */
.services {
    padding: 80px 0;
    background-color: var(--bg-card);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--primary-color);
}
.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background-color: var(--bg-light);
    padding: 35px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    
}
.service-card:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(17, 33, 49, 0.2);
    transform: translateY(-3px);
}
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
}
.service-card h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: color 0.3s ease;
}
.service-card:hover h3 {
    color: var(--text-primary);
}
.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.service-card:hover p {
    color: #fff;
}
.service-link {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}
.service-card:hover .service-link {
    color: var(--text-primary);
    border-color: var(--text-primary);
}
/* 缃戠偣澶у叏鍖哄煙 */
.network {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.city-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1200px;
	margin: 0 auto 50px;
}
.city-btn {
    padding: 10px 22px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-muted);
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.city-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.city-btn.active {
    background-color: var(--primary-color);
    color: var(--text-primary);
    border-color: var(--primary-color);
}
/* Swiper 鏍峰紡 */
.network-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.swiper-wrapper {
    display: flex;
}
.swiper-slide {
    display: flex;
    justify-content: center;
}
.network-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 450px;
}
 .network-card p a{ color: var(--primary-color);} 
.network-card:hover {
    box-shadow: 0 8px 25px rgba(17, 33, 49, 0.15);
    border-color: var(--primary-color);
}
.swiper-navigation-icon{ width: 20px!important; height: 15px!important;}
.network-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.network-card h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 20px 25px 10px;
    margin: 0;
     text-decoration: none;
}
.network-card p {
    font-size: 14px;
    color: var(--text-muted);
    padding: 5px 25px;
    margin: 0;
    line-height: 1.7;
}
.detail-btn {
    display: inline-block;
    text-decoration: none;
    width: calc(100% - 50px);
    margin: 20px 25px 25px;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--text-primary);
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
     text-align: center;
}
.detail-btn:hover {
    background-color: var(--primary-light);
}
/* Swiper 绠ご鏍峰紡 */
.swiper-button-prev,
.swiper-button-next {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    background: var(--bg-card) opacity(0.6);
    color: var(--text-muted);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary-color) opacity(0.6);
    color: #000;
    border-color: var(--primary-color);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}
.swiper-button-next svg, .swiper-button-prev svg{ display: none;}
.swiper-button-prev {
    left: 0;
}
.swiper-button-next {
    right: 0;
}
/* 鏈嶅姟娴佺▼鍖哄煙 */
.process {
    padding: 80px 0;
    background-color: #f5f5f5;
    background-image: url('../images/ls14sj.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.process > * {
    position: relative;
    z-index: 1;
}
.process .section-title{color: #fff;}
.process .section-subtitle{color: #fff;}
 /* 鍒囨崲绛� */
 .process-tabs {
     display: flex;
     justify-content: center;
     gap: 0;
     margin-bottom: 40px;
     border-radius: 4px;
     overflow: hidden;
     max-width: 500px;
     margin-left: auto;
     margin-right: auto;
 }
 .tab-btn {
     padding: 15px 45px;
     font-size: 14px;
     font-weight: 400;
     letter-spacing: 1px;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     background-color: #e5e7eb;
     color: #6b7280;
 }
 .tab-btn.active {
     background-color: var(--primary-color);
     color: var(--text-primary);
 }
 .tab-btn:first-child {
     border-radius: 4px 0 0 4px;
 }
 .tab-btn:last-child {
     border-radius: 0 4px 4px 0;
 }
 .tab-btn:hover:not(.active) {
     background-color: #d1d5db;
 }
 /* 鏍囩鍐呭 */
 .tab-content {
     display: none;
 }
 .tab-content.active {
     display: block;
 }
 /* 娴佺▼鍗＄墖缃戞牸 */
 .process-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     max-width: 1200px;
     margin: 0 auto;
 }
 .process-card {
     background-color: var(--bg-card);
     padding: 20px 25px;
     border: 1px solid var(--border-color);
     border-radius: 8px;
     transition: all 0.3s ease;
     display: flex;
     align-items: flex-start;
 }
 .process-card:hover {
     border-color: var(--primary-color);
     box-shadow: 0 4px 15px rgba(17, 33, 49, 0.1);
 }
 .process-number {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     width: 36px;
     height: 36px;
     border: 2px solid var(--primary-color);
     border-radius: 50%;
     font-size: 14px;
     font-weight: 600;
     color: var(--primary-color);
     flex-shrink: 0;
     margin-right: 15px;
 }
 .process-info {
     flex: 1;
 }
 .process-card h4 {
     font-size: 15px;
     font-weight: 500;
     margin-bottom: 8px;
     color: var(--primary-color);
 }
 .process-card p {
     font-size: 14px;
     color: var(--text-muted);
     line-height: 1.7;
     margin-bottom: 0;
 }
 /* 涓€绔欏紡鏈嶅姟鏉垮潡 */
 .one-stop-service {
     padding: 80px 0;
     background-color: var(--bg-card);
 }
 .service-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
 }
 .service-item {
     background-color: var(--bg-card);
     overflow: hidden;
     border: 1px solid var(--border-color);
     transition: all 0.3s ease;
 }
 .service-item:hover {
     box-shadow: 0 8px 25px rgba(17, 33, 49, 0.15);
     transform: translateY(-3px);
 }
 .service-image {
     width: 100%;
     height: 180px;
     object-fit: cover;
     transition: transform 0.3s ease;
 }
 .service-item:hover .service-image {
     transform: scale(1.05);
 }
 .service-info {
     padding: 20px;
 }
 .service-number {
     font-size: 14px;
     font-weight: 600;
     color: var(--text-muted);
     margin-right: 8px;
 }
 .service-info h4 {
     font-size: 14px;
     font-weight: 500;
     color: var(--primary-color);
     margin-bottom: 8px;
     display: inline;
 }
 .service-en {
     font-size: 12px;
     color: var(--text-muted);
     font-style: italic;
 }
 /* 鑱旂郴淇℃伅鍖哄煙 */
 .contact {
     padding: 80px 0;
     background-color: var(--primary-color);
 }
 .contact .section-title {
     color: var(--text-primary);
 }
 .contact .section-subtitle {
     color: var(--text-secondary);
 }
 .contact-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
 }
 .contact-item {
     background-color: rgba(255, 255, 255, 0.05);
     padding: 40px;
     text-align: center;
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
 }
 .contact-item:hover {
     background-color: rgba(255, 255, 255, 0.1);
     border-color: rgba(255, 255, 255, 0.2);
 }
 .contact-item h3 {
     font-size: 15px;
     font-weight: 400;
     letter-spacing: 2px;
     margin-bottom: 15px;
     text-transform: uppercase;
     color: var(--text-primary);
 }
 .contact-item p {
     font-size: 14px;
     color: var(--text-secondary);
     line-height: 1.8;
     margin-bottom: 8px;
 }
 .contact-item p:last-child {
     margin-bottom: 0;
 }
 /* 鏂伴椈涓績鍖哄煙 */
 .news-center {
     padding: 80px 0;
     background-color: var(--bg-card);
 }
 .news-center .section-header {
     text-align: center;
     margin-bottom: 40px;
 }
 .section-label {
     font-size: 12px;
     font-weight: 300;
     letter-spacing: 4px;
     color: var(--text-muted);
     text-transform: uppercase;
     margin-bottom: 10px;
 }
 .title-line {
     width: 60px;
     height: 2px;
     background-color: var(--primary-color);
     margin: 15px auto 0;
 }
 /* 鏂伴椈鍒囨崲绛� */
 .news-tabs {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-bottom: 50px;
 }
 .news-tab {
     padding: 12px 35px;
     font-size: 14px;
     font-weight: 400;
     border: none;
     cursor: pointer;
     border-radius: 4px;
     transition: all 0.3s ease;
     background-color: #e5e7eb;
     color: #6b7280;
 }
 .news-tab.active {
     background-color: var(--primary-color);
     color: #ffffff;
 }
 .news-tab:hover:not(.active) {
     background-color: #d1d5db;
 }

 .news-content-index {
     display: none !important;
     max-width: 1200px;
     margin: 0 auto;
 }
 .news-content-index.active {
     display: block !important;
 }

 
 .news-layout {
     display: flex;
     gap: 30px;
 }

 .news-left {
     width: 34%;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }
 .news-main-item-large {
     display: flex;
     flex-direction: column;
     text-decoration: none;
     color: inherit;
 }
 .news-main-large-image {
     width: 100%;
     height: 300px;
     object-fit: cover;
     border-radius: 4px;
     margin-bottom: 20px;
 }
 .news-main-large-info h3 {
     font-size: 18px;
     font-weight: normal;
     color: var(--primary-color);
     margin-bottom: 12px;
 }
 .news-main-large-info p {
     font-size: 14px;
     color: var(--text-muted);
     line-height: 1.7;
     margin-bottom: 15px;
 }
 .news-date {
     font-size: 14px;
     color: var(--primary-color);
     font-style: italic;
 }
 /* 宸︿晶涓嬫柟涓や釜灏忔柊闂� - 涓€琛屼竴鍒� */
 .news-left-bottom {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }
 .news-small-item {
     display: flex;
     gap: 12px;
     padding: 15px;
     background-color: var(--bg-light);
     text-decoration: none;
     color: inherit;
     border-radius: 4px;
     transition: all 0.3s ease;
     align-items: center;
 }
 .news-small-item:hover {
     background-color: #e5e7eb;
 }
 .news-small-item img {
     width: 80px;
     height: 80px;
     object-fit: cover;
     flex-shrink: 0;
     border-radius: 4px;
 }
 .news-small-info {
     display: flex;
     flex-direction: column;
     justify-content: center;
 }
 .news-small-info h4 {
     font-size: 100%;
     font-weight: 500;
     color: var(--primary-color);
     margin-bottom: 6px;
 }
 .news-small-info p {
     font-size: 12px;
     color: var(--text-muted);
     line-height: 1.5;
     margin-bottom: 8px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }
 /* 鍙充晶锛氫袱鍒梘rid甯冨眬 */
 .news-right {
     flex: 1;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
 }
 .news-grid-item {
     display: flex;
     gap: 12px;
     padding: 12px;
     background-color: var(--bg-light);
     text-decoration: none;
     color: inherit;
     border-radius: 4px;
     transition: all 0.3s ease;
     align-items: center;
 }
 .news-grid-item:hover {
     background-color: #e5e7eb;
 }
 .news-grid-img {
     width: 70px;
     height: 70px;
     object-fit: cover;
     flex-shrink: 0;
     border-radius: 4px;
 }
 .news-grid-info {
     display: flex;
     flex-direction: column;
     justify-content: center;
 }
 .news-grid-info h4 {
     font-size: 100%;
     font-weight: 500;
     color: var(--primary-color);
     margin-bottom: 4px;
 }
 .news-grid-info p {
     font-size: 11px;
     color: var(--text-muted);
     line-height: 1.4;
     margin-bottom: 6px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .footer {
     background-color: var(--primary-color);
     color: var(--text-primary);
     padding: 60px;
 }
 .footer-content {
     display: flex;
     justify-content: space-between;
     max-width: 1200px;
     margin: 0 auto;
     padding-bottom: 40px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }
 .footer-left {
     flex: 1;
 }.footer-links li{ font-size: 14px;}
.footer-icon svg{ width: 14px; height: 14px; margin-right: 8px;}
.footer-left .logo {
    color: var(--text-primary);
    margin-bottom: 20px;
}
.footer-left p {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
    max-width: 300px;
}
.footer-links {
    display: flex;
    gap: 150px;
}
.footer-links h4 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text-primary);
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--text-primary);
}
.footer-bottom {
    padding-top: 30px;
    text-align: center;
}
.footer-bottom a{ color: #fff;}
.footer-bottom a:hover{ color: #fff;}
.footer-bottom p {
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
}
/* 鍒嗛〉鏍峰紡 */
.pagination {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

.pagination ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    display: inline-block;
    padding: 10px 16px;
    text-decoration: none;
    color: #666666;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 40px;
    min-height: 42px;
    line-height: 22px;
    text-align: center;
}

.pagination li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination li.active a {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.pagination li:first-child a {
    border: none;
    color: #999999;
    min-width: auto;
}

.pagination li:first-child a:hover {
    background-color: transparent;
    color: #666666;
}

  /* 鍝嶅簲寮忚璁� */
  @media (max-width: 1024px) {
      .services-grid {
          grid-template-columns: repeat(2, 1fr);
      }
      .service-grid {
          grid-template-columns: repeat(2, 1fr);
      }
      .network-grid {
          grid-template-columns: repeat(2, 1fr);
      }
      /* 瀵艰埅鏍忓搷搴斿紡 */
      .navbar {
          padding: 10px 30px;
      }
      .navbar.scrolled {
          padding: 8px 30px;
      }
      .nav-links {
          gap: 20px;
      }
      .nav-links a {
          font-size: 14px;
      }
      /* 椤堕儴淇℃伅鏍忓搷搴斿紡 */
      .top-bar {
          padding: 8px 30px;
          font-size: 14px;
      }
      /* 鏂伴椈涓績鍝嶅簲寮� */
      .news-layout {
          flex-direction: column;
      }
      .news-left {
          width: 100%;
      }
      .news-right {
          grid-template-columns: repeat(2, 1fr);
      }
      /* 搴曢儴鑿滃崟鍝嶅簲寮� */
      .footer {
          padding: 40px 30px;
      }
      .footer-content {
          flex-direction: column;
          gap: 30px;
      }
      .footer-links {
          flex-direction: column;
          gap: 30px;
      }
      .pagination {
  padding: 15px 15px;
    }

    .pagination ul {
        gap: 5px;
    }

    .pagination li a {
        padding: 10px 14px;
        font-size: 13px;
        min-width: 40px;
        min-height: 44px;
    }
        }

        @media (max-width: 768px) {
            /* 闅愯棌椤堕儴淇℃伅鏍� */
            .top-bar {
                display: none;
            }

            /* 瀵艰埅鏍忓搷搴斿紡 - logo鍜宮enu-toggle鍦ㄤ竴琛� */
            .navbar {
                padding: 10px 20px;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 0;
            }

            .navbar.scrolled {
                padding: 8px 20px;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background-color: var(--bg-card);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-bottom: 1px solid var(--border-color);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links a {
                font-size: 14px;
                padding: 10px 0;
                border-bottom: 1px solid var(--border-color);
            }

            .nav-links a:last-child {
                border-bottom: none;
            }

            /* Logo鍝嶅簲寮� */
            .logo img {
                height: 40px;
            }

            .logo {
                font-size: 20px;
            }

            .hero h1 {
                font-size: 28px;
                letter-spacing: 4px;
            }

            /* scroll-news 鎵嬫満绔紭鍖� */
            .scroll-news {
                height: 40px;
                line-height: 30px;
                padding: 5px 0;
            }

            .scroll-news .swiper-container {
                width: auto;
                height: 30px;
                padding: 0 15px 0 50px;
                border-radius: 15px;
                margin: 0 10px;
            }

            .scroll-news .swiper-slide {
                height: 30px !important;
                line-height: 30px;
                overflow: hidden;
            }

            .scroll-tag {
                font-size: 12px;
                padding-right: 8px;
                margin-right: 8px;
            }

            .scroll-tag::after {
                margin-left: 5px;
            }

            .scroll-item {
                font-size: 12px;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: calc(100% - 50px);
                flex: 1;
            }

            .scroll-arrow {
                right: 20px;
                font-size: 10px;
            }

            .services, .network, .process, .contact, .news-center, .one-stop-service {
                padding: 50px 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .service-image {
                height: 140px;
            }

            .service-info {
                padding: 15px;
            }

            .service-info h4 {
                font-size: 14px;
            }

            .service-en {
                font-size: 11px;
            }

            .network-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                gap: 40px;
            }

            .footer-links {
                flex-direction: column;
                gap: 30px;
            }

            .process-item {
                flex-direction: column;
                text-align: center;
            }

            .process-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }

            /* 鏈嶅姟娴佺▼鍝嶅簲寮� */
            .process-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .process-card {
                padding: 15px 20px;
            }

            .process-number {
                width: 32px;
                height: 32px;
                font-size: 12px;
                margin-right: 12px;
            }

            .process-card h4 {
                font-size: 14px;
                margin-bottom: 6px;
            }

            .process-card p {
                font-size: 12px;
                line-height: 1.6;
            }

            .process-tabs {
                flex-direction: column;
                gap: 10px;
            }

            .tab-btn {
                width: 100%;
                padding: 12px 20px;
            }

            /* 鏂伴椈涓績鍝嶅簲寮� */
            .news-tabs {
                gap: 10px;
            }

            .news-tab {
                padding: 10px 20px;
                font-size: 14px;
            }

            .news-main-large-image {
                height: 200px;
            }

            .news-main-large-info h3 {
                font-size: 18px;
            }

            .news-right {
                grid-template-columns: 1fr;
            }

            .news-small-item img,
            .news-grid-img {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            /* 瀵艰埅鏍忓搷搴斿紡 */
            .navbar {
                padding: 8px 15px;
            }
.scroll-tag{ display: none;}
            .navbar.scrolled {
                padding: 6px 15px;
            }
.city-btn{ padding: 8px;}
.city-selector{ gap:5px;}
            .logo img {
                height: 35px;
            }

            .logo {
                font-size: 18px;
            }

            .menu-toggle {
                padding: 8px;
            }

            .menu-toggle span {
                width: 20px;
            }

            /* 椤堕儴淇℃伅鏍忓搷搴斿紡 */
            .top-bar {
                padding: 6px 15px;
                font-size: 11px;
            }

            /* Hero鍝嶅簲寮� */
            .hero {
                height: 400px;
            }

            .hero h1 {
                font-size: 22px;
                letter-spacing: 2px;
            }

            .hero p {
                font-size: 14px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 14px;
            }

            /* 搴曢儴鑿滃崟鍝嶅簲寮� */
            .footer {
               padding: 40px 30px 100px;
            }

            .footer-left p {
                font-size: 12px;
                max-width: 100%;
            }

            .footer-links h4 {
                font-size: 12px;
                margin-bottom: 15px;
            }

            .footer-links a {
                font-size: 12px;
            }

            .footer-bottom p {
                font-size: 11px;
            }

            .service-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .service-image {
                height: 120px;
            }

            .service-info {
                padding: 12px;
            }

            .service-info h4 {
                font-size: 12px;
            }

            .service-en {
                font-size: 10px;
            }

            .news-tabs {
                flex-direction: column;
            }

            .news-tab {
                width: 100%;
            }

            .news-main-large-image {
                height: 180px;
            }

            .news-main-large-info h3 {
                font-size: 16px;
            }

            .news-main-large-info p {
                font-size: 14px;
            }

            .news-small-item,
            .news-grid-item {
                padding: 10px;
            }

            .news-small-item img,
            .news-grid-img {
                width: 50px;
                height: 50px;
            }

            .news-small-info h4,
            .news-grid-info h4 {
                font-size: 12px;
            }

            .news-small-info p,
            .news-grid-info p {
                font-size: 11px;
            }
            .pagination li a{
               
                font-size: 13px;
                min-width: 35px;
            }
              .pagination{ gap: 0;}
               .nav-links a::after{ display: none;}
               

        }

/* 鎮诞鎸夐挳 */
.float-buttons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.float-btn-appointment {
    background-color: var(--primary-color);
    color: #ffffff;
}

.float-btn-appointment:hover {
    background-color: #1a365d;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.float-btn-appointment svg {
    width: 22px;
    height: 22px;
}

.float-btn-top {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 1px solid #e5e5e5;
}

.float-btn-top:hover {
    background-color: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.float-btn-top svg {
    width: 18px;
    height: 18px;
}

.float-btn-top span {
    font-size: 10px;
    margin-top: 2px;
    font-weight: 500;
}

/* 鍝嶅簲寮忚璁� */
@media (max-width: 768px) {
    .float-buttons {
        right: 15px;
        bottom: 50px;
        gap: 12px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
    }

    .float-btn-appointment svg {
        width: 20px;
        height: 20px;
    }

    .float-btn-top svg {
        width: 16px;
        height: 16px;
    }

    .float-btn-top span {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .float-buttons {
        right: 10px;
        gap: 10px;
    }

    .float-btn {
        width: 40px;
        height: 40px;
    }

    .float-btn-appointment svg {
        width: 18px;
        height: 18px;
    }

    .float-btn-top svg {
        width: 14px;
        height: 14px;
    }

    .float-btn-top span {
        font-size: 8px;
    }
}

/* 闈㈠寘灞戝鑸� */
.breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 60px;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: #999;
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 500;
}

/* 闈㈠寘灞戝搷搴斿紡 */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 12px 20px;
    }

    .breadcrumb-content {
        font-size: 14px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        padding: 10px 15px;
    }

    .breadcrumb-content {
        font-size: 12px;
        gap: 6px;
    }
}

/* 浜岀骇椤甸潰banner鏍峰紡 */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner.jpg') center/cover no-repeat;
    height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background-attachment: fixed;
}

.page-header-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    opacity: 0.9;
}

.page-title {
    font-size: 32px;
    font-weight: normal;
    margin: 0;
}

.page-phone {
    font-size: 18px;
    font-weight: normal;
    margin-top: 5px;
}

/* 搴曢儴鎮诞鑿滃崟锛堝皬灞忓箷鏄剧ず锛� */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 10px 0;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    gap: 4px;
}

.bottom-nav-item svg {
    width: 22px;
    height: 22px;
}

.bottom-nav-item span {
    margin-top: 2px;
}

/* 浜岀骇椤甸潰banner鍝嶅簲寮� */
@media (max-width: 768px) {
    .page-header {
        height: 180px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 12px;
    }

    .page-phone {
        font-size: 16px;
    }

    .bottom-nav {
        display: flex;
        justify-content: space-around;
    }

    footer {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 150px;
    }

    .page-title {
        font-size: 20px;
    }

    .page-subtitle {
        font-size: 11px;
    }

    .page-phone {
        font-size: 14px;
    }
}

@media (min-width: 769px) {
    .bottom-nav {
        display: none !important;
    }
}

.services-section-bei{
	width: 100%;
	  background: #fff;
}