:root {
    --primary: #1a365d;
    --secondary: #c19e5f;
    --light: #f8f9fa;
    --dark: #212529;
    --midnight: #0a192f;
    --gold: #d4af37;
    --copper: #b87333;
    --ivory: #f8f5f0;
    --slate: #495670;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --primary-dark: #0A1A3A;
    --primary-gold: #D4AF37;
    --secondary-blue: #1A2E5A;
    --light-gold: #E8D49F;
    --light-gray: #F5F7FA;
    --dark-gray: #333;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark);
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

 /* 自定义导航栏样式 - 关键部分 */
 .navbar1 {
    background: transparent;
    padding: 0;
    transition: all 0.4s ease;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
    z-index: 1000;
}

.navbar1.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 关键修改：确保导航栏容器使用flex布局 */
.navbar1 > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 15px;
    width: 100%;
}

/* Logo样式 */
.navbar-brand {
    /*background-image: url({SITE_LOGO});*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 100px;
    width: 200px;
    display: block;
    margin: 0;
    transition: all 0.4s ease;
}

.navbar1.scrolled .navbar-brand {
    height: 100px;
}

/* 导航菜单样式 */
.navbar-nav {
    display: flex;
    flex-wrap: wrap;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: #add0d5 !important;
    font-weight: bold;
    font-size: 1.05rem;
    padding: 15px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width:70%;
}
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #142a4a;
    border-color: #142a4a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/static/picture/dfn.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
}

.dis{
    color: white;
}

/* .section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
} */

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.brands-section {
    background-color: var(--light);
    padding: 80px 0;
}

.brand-logo {
    height: 60px;
    /* filter: grayscale(100%); */
    /* opacity: 0.6; */
    transition: all 0.3s;
}

.brand-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-top: 20px;
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.expert-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.expert-card:hover {
    transform: translateY(-10px);
}



.contact-section {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgb(153 153 153 / 90%)), url(https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80);
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 15px;
}

footer {
    background: #0a1a30;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.footer-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.25rem rgba(193, 158, 95, 0.25);
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 专业维修流程 */

.w-14 {
    width: 3.5rem;
}

.h-14 {
    height: 3.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.font-bold {
    font-weight: 700;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.flex {
    display: flex;
}

.relative {
    position: relative;
    margin-bottom: 20px;
}

.bg-primary\/10 {
    background-color: rgb(22 93 255 / 0.1);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.h-full {
    height: 100%;
}

.p-6 {
    padding: 1.5rem;
}

.bg-primary\/10 {
    background-color: rgb(22 93 255 / 0.1);
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:block {
        display: block;
    }
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid {
    display: flex;
}

.text-primary {
    --tw-text-opacity: 1;
    color: rgb(22 93 255 / var(--tw-text-opacity, 1));
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-\[-20px\] {
    --tw-translate-x: -20px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hidden {
    display: none;
}

.top-1\/2 {
    top: 38%;
}

.right-0 {
    right: 25px;
}

.absolute {
    position: absolute;
}

.text-dark {
    --tw-text-opacity: 1;
    color: rgb(30 41 59 / var(--tw-text-opacity, 1));
    font-weight: 700;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.bi {
    display: inline-block;
    font-weight: bold;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

@media (max-width:991px) {
    .transform .bi-arrow-right {
        display: none;
    }
}

/* 精湛工艺 */
.process {
    padding: 3rem 5%;
    background: var(--midnight);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.process .section-title1 h2,
.process .section-title1 p {
    text-align: center;
    color: var(--ivory);
}

.process .section-title1 h2:after {
    background: var(--copper);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.step {
    width: 220px;
    margin: 15px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--midnight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 300px;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.2;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.gears-bg {
    position: absolute;
    font-size: 20rem;
    color: rgba(212, 175, 55, 0.05);
    z-index: 1;
}

.gear-1 {
    top: 10%;
    left: 5%;
    animation: rotate 30s linear infinite;
}

.gear-2 {
    bottom: 10%;
    right: 5%;
    animation: rotate 40s linear infinite reverse;
}

/* 响应式设计 */
@media (max-width: 992px) {

    .appointment-container {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .step:not(:last-child):after {
        display: none;
    }
}

/* 定义顺时针旋转动画 */
@keyframes rotate-clockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 定义逆时针旋转动画 */
@keyframes rotate-counterclockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* 动画齿轮 */
.fas {
    animation-duration: 30s;
    /* 旋转一圈时间 */
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


.gear-1 {
    animation-name: rotate-clockwise;
}

.gear-2 {
    animation-name: rotate-counterclockwise;
    animation-duration: 40s;
    /*齿轮2旋转时间*/
}

/* 新闻 */
.packages .tc-box {
    background-color: #09f;
    color: rgba(255, 255, 255, .8);
    padding: 40px 50px;
    border-radius: 4px;
    margin: 0 0 50px 0;
}

.packages .tc-box h2 {
    font-size: 20px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 10px;
    margin: 0;
}

.packages .tc-box ul {
    text-align: left;
    line-height: 32px;
    margin: 20px 0 0 0;
}

.packages .tc-box ul li {
    background: url(/static/image/tc-bg-ok.svg) no-repeat left center / auto 12px;
    background-position-x: -30px\0;
    padding-left: 32px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.packages .tc-box:hover {
    background-color: #6c0;
    -webkit-box-shadow: 0 0 10px rgba(255, 96, 80, .5);
    box-shadow: 0 0 10px rgba(115, 191, 58, 1)
}

/* 网点 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.spjz {
    justify-content: space-between;
}

.czjz {
    align-items: center;
}

.wrap {
    flex-wrap: wrap;
}

.column {
    flex-direction: column;
}

.lao02 {
    padding: 30px 0;
    background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
}


.wxtit01 {
    text-align: center;
    margin-bottom: 30px;
}

.wxtit01c {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a6aa9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.wxtit01a {
    height: 3px;
    width: 80px;
    background: #1a6aa9;
    margin: 10px auto;
}

.wxtit01b {
    font-size: 2.2rem;
    color: #222;
    margin: 15px 0;
}

.wxtit01d {
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.adrs, .smsize {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background: #eef5ff;
    border-radius: 30px;
    color: #1a6aa9;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #cde;
}

.adrs.on, .smsize:hover {
    background: #1a6aa9;
    color: white;
    border-color: #1a6aa9;
}

.swiper-containerwx {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* margin-top: 20px; */
}

.service-centers {
    display: flex;
    transition: transform 0.5s ease;
    padding-bottom: 20px;
}

.center-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 16px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.center-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-header1 {
    background: linear-gradient(135deg, #1a6aa9 0%, #2a8ac8 100%);
    color: white;
    padding: 20px;
    position: relative;
}

.card-header1 h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    margin-left: -90px;
}

.level {
    position: absolute;
    top: 22px;
    right: 15px;
    background: #ffcc00;
    color: #333;
    padding: 3px 3px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

.card-body p {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    margin-top: 10px;
}

.card-body i {
    position: absolute;
    left: 3px;
    top: 3px;
    color: #1a6aa9;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.card-footer {
    background: #f8fafd;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eef2f7;
}

.card-footer div {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.card-footer i {
    margin-right: 5px;
    color: #1a6aa9;
}

.btn1 {
    padding: 5px 20px;
    background: #1a6aa9;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin: 0 10px 10px 0;
}

.btn1:hover {
    background: #155a8a;
    transform: translateY(-2px);
}


.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.swiper-button-prev {
    /* left: -20px; */
}

.swiper-button-next {
    right: 0px;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: #1a6aa9;
    color: white;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .center-card {
        flex: 0 0 calc(50% - 30px);
    }
    
    .swiper-button-prev {
        left: 0;
    }
    
    .swiper-button-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .wxtit01c {
        font-size: 1.5rem;
    }
    
    .wxtit01b {
        font-size: 1.8rem;
    }
    
    .center-card {
        flex: 0 0 calc(100% - 30px);
    }
    
    .wxtit01d {
        max-height: 300px;
        overflow-y: auto;
    }
    
    .swiper-button-prev, .swiper-button-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .wxtit01c {
        font-size: 1.3rem;
    }
    
    .wxtit01b {
        font-size: 1.5rem;
    }
    
    .adrs, .smsize {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}



/* 网点地址结束 */

/* 技师 */


.lao04 {
    width: 100%;
    margin: 0px auto 24px;
    padding: 42px 0px;
    background: #f7f9fc;
}

.lao04a {
    margin: 0px auto;
}

.lao04a_a {
    /* width: 24.2%; */
    overflow: hidden;
    margin: 10px 0;
    padding: 0 10px;
    position: relative;
}

.lao04a_a img {
    width: 100%;
    display: block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.lao04a_a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.lao04a_aa {
    position: absolute;
    left: 0;
    top: 105%;
    background: rgba(140, 122, 102, 0.66);
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.lao04a_aa h3 {
    padding-left: 10%;
    color: #fff;
    margin-bottom: 8px;
    padding-top: 15%;
    font-size: 20px;
}

.lao04a_aa .con {
    padding-left: 10%;
    color: #fff;
    margin-bottom: 50%;
    line-height: 1.5;
}

.lao04a_ab {
    padding-left: 10%;
}

.lao04a_aba {
    width: 20%;
    color: #fff;
    font-size: 24px;
}

.lao04a_abb {
    width: 80%;
    color: #fff;
}

.lao04a_a:hover .lao04a_aa {
    top: 0;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.lgsize {
    font-size: 36px;
    line-height: 38px;
    font-weight: lighter;
}
.text-white-50{
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/*网点页面*/
/* 主容器 */
        .main-page {
            width: 100%;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 15px;
        }
        
        /* 标题区域样式 */
        .main-title {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .main-title hr {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent, #4caf50, transparent);
            border: none;
            margin: 0;
        }
        
        .tit {
            padding: 0 30px;
            text-align: center;
        }
        
        .tit h2 {
            font-size: 32px;
            color: #237cba;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            letter-spacing: 2px;
        }
        
        .tit p {
            color: #777;
            font-size: 16px;
            margin-top: 8px;
        }
        
        /* 网点列表样式 */
        .network-list ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
            /*margin: 0 -15px;*/
            margin: 0 ;
            padding: 0;
        }
        
        .network-list li {
            padding: 15px;
            width: 100%;
        }
        
        .network-list a {
            display: flex;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            color: black;
            text-decoration: none;
            height: 100%;
        }
        
        .network-list a:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .img {
            width: 40%;
            overflow: hidden;
            position: relative;
        }
        
        .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .network-list a:hover .img img {
            transform: scale(1.05);
        }
        
        .text {
            width: 60%;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .text h2 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #237cba;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        .text h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #4caf50;
            border-radius: 3px;
        }
        
        .adres {
            color: #666;
            margin-bottom: 15px;
            flex-grow: 1;
            font-size: 15px;
            line-height: 1.7;
        }
        
        .herfTel {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
        }
        
        .tel {
            font-size: 18px;
            color: #ff5722;
            font-weight: 600;
        }
        
        .consult-btn {
            background: #0099ff;
            width: 120px;
            height: 40px;
            border-radius: 20px;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .consult-btn:hover {
            background: #0077cc;
            transform: translateY(-2px);
        }
        
        .consult-btn i {
            margin-left: 5px;
            font-size: 18px;
        }
        
        /* 响应式设计 */
        @media (min-width: 768px) {
            .network-list li {
                width: 50%;
            }
            
            .tit h2 {
                font-size: 36px;
            }
        }
        
        @media (min-width: 992px) {
            .network-list li {
                width: 50%;
            }
        }
        
        @media (max-width: 767px) {
            .network-list a {
                flex-direction: column;
            }
            
            .img, .text {
                width: 100%;
            }
            
            .img {
                height: 200px;
            }
            
            .tit h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .herfTel {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .consult-btn {
                margin-top: 10px;
            }
            
            .tit {
                padding: 0 15px;
            }
            
            .tit h2 {
                font-size: 24px;
            }
        }
        
        /* 水印效果 */
        .network-list li {
            position: relative;
        }
        
        .network-list li:after {
            content: '';
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234caf5050"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>') no-repeat;
            opacity: 0.3;
            z-index: 1;
        }
        
        
/*新闻列表页*/
 /* 主内容区 */
        .container1 {
            display: flex;
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            gap: 30px;
        }
        
        /* 新闻列表 */
        .news-list {
            flex: 2;
        }
        
        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
            display: flex;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .news-img {
            flex: 0 0 250px;
            height: 180px;
            overflow: hidden;
        }
        
         @media (max-width: 576px) {
             .news-img{
                 flex: none;
             }
         }
        
        
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 20px;
            flex: 1;
        }
        
        .news-category {
            display: inline-block;
            background: #eef5ff;
            color: #1a3a6c;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .news-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1a3a6c;
        }
        
        .news-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .news-title a:hover {
            color: #ff6b00;
        }
        
        .news-excerpt {
            color: #666;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            color: #888;
            font-size: 0.85rem;
        }
        
        .news-date {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .news-date i {
            margin-right: 5px;
            color: #ff6b00;
        }
        
        .news-author {
            display: flex;
            align-items: center;
        }
        
        .news-author i {
            margin-right: 5px;
            color: #1a3a6c;
        }
        
        /* 侧边栏 */
        .sidebar {
            flex: 1;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .widget-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eef5ff;
            color: #1a3a6c;
        }
        
        .popular-news {
            list-style: none;
            padding-left: 0px;
        }
        
        .popular-news li {
            padding: 15px 0;
            border-bottom: 1px solid #f0f4f8;
        }
        
        .popular-news li:last-child {
            border-bottom: none;
        }
        
        .popular-news a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: color 0.3s;
        }
        
        .popular-news a:hover {
            color: #1a3a6c;
        }
        
        .popular-meta {
            font-size: 0.8rem;
            color: #888;
            margin-top: 5px;
            display: flex;
            align-items: center;
        }
        
        .popular-meta i {
            margin-right: 5px;
            color: #ff6b00;
        }
        
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag-small {
            background: #eef5ff;
            color: #1a3a6c;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .tag-small:hover {
            background: #1a3a6c;
            color: white;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .pagination a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 40px;
            background: white;
            border-radius: 8px;
            margin: 0 5px;
            color: #555;
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .pagination a:hover, 
        .pagination a.active {
            background: #1a3a6c;
            color: white;
        }
        
        
/*关于我们*/
.slideInUp{
    width: 150px;
    height:5px;
    background-color: #0a1a30;
    margin: 20px auto;
}

.pj{
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgb(153 153 153 / 90%)), url(https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80);
    height: 300px;
}

.tp-counter-item h3,span{
    color: white;
}

/*网点详情页*/
/* 面包屑导航 */
        .cjwt04 {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            padding: 10px 15px;
        }
        
        .cjwt04 a {
            color: #2c5e9e;
            text-decoration: none;
        }
        
        .cjwt04 a:hover {
            text-decoration: underline;
        }
        
        /* 网点区域 */
        .bai06 {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .bai06a {
            padding: 20px;
        }
        
        .bai06a_a {
            width: 100%;
            background: linear-gradient(to right, #1a3a6c, #2c5e9e);
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .bai06a_a h2 {
            font-weight: 500;
            font-size: 1.3rem;
        }
        
        .bai06a_a a {
            color: #ffcc00;
            text-decoration: none;
            margin-left: 5px;
        }
        
        .bai06a_b {
            width: calc(100% - 20px);
            margin: 10px;
            border: 1px solid #eaeaea;
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .bai06a_b:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: #2c5e9e;
        }
        
        .bai06a_ba {
            margin-bottom: 15px;
        }
        
        .bai06a_ba01 svg {
            width: 40px;
            height: 40px;
            fill: #2c5e9e;
        }
        
        .bai06a_ba02 {
            font-weight: 600;
            color: #1a3a6c;
            margin-left: 10px;
        }
        
        .bai06a_bb {
            color: #555;
            line-height: 1.8;
            margin-bottom: -50px;
        }
        
        .bai06a_bb span {
            font-weight: 600;
            color: #1a3a6c;
            display: block;
            margin-bottom: 5px;
        }
        
        .bai06a_bc {
            gap: 10px;
        }
        
        .bai06a_bc01, .bai06a_bc02 {
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            text-align: center;
            display: block;
            flex: 1;
        }
        
        .bai06a_bc01 {
            background: linear-gradient(to right, #ff6b00, #ff9e00);
            color: white;
        }
        
        .bai06a_bc01:hover {
            background: linear-gradient(to right, #e05a00, #e08a00);
        }
        
        .bai06a_bc02 {
            background: transparent;
            border: 1px solid #2c5e9e;
            color: #2c5e9e;
        }
        
        .bai06a_bc02:hover {
            background: #2c5e9e;
            color: white;
        }
        
        /* 服务流程 */
        .home-service {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 30px 20px;
            margin-top: 30px;
        }
        
        .headlinebox {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .headlinebox .title h3 {
            font-size: 2rem;
            color: #1a3a6c;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .headlinebox .title h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #ff6b00;
        }
        
        .headlinebox .line {
            height: 2px;
            background: #eaeaea;
            width: 200px;
            margin: 0 auto 15px;
        }
        
        .headlinebox .en {
            color: #888;
            font-style: italic;
        }
        
        .flow-path {
            margin: 30px 0;
        }
        
        .flow-path ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
        }
        
        .flow-path li {
            width: 12%;
            /*min-width: 110px;*/
            margin: 0 10px 30px;
            text-align: center;
            position: relative;
        }
        
        .flow-path .line {
            margin-bottom: 15px;
            position: relative;
            height: 100px;
        }
        
        .flow-path .line::after {
            content: '→';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: #ccc;
        }
        
        .flow-path li:last-child .line::after {
            display: none;
        }
        
        .flow-path img {
            width: 80px;
            height: 80px;
            transition: transform 0.3s ease;
        }
        
        .flow-path li:hover img {
            transform: scale(1.1);
        }
        
        .flow-path .box {
            background: #f5f9ff;
            padding: 15px 10px;
            border-radius: 8px;
            border: 1px solid #e1ecff;
        }
        
        .flow-path .box p:first-child {
            color: #2c5e9e;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .flow-path .box p:last-child {
            color: #333;
            font-weight: 500;
        }
        
        .moresame {
            text-align: center;
            margin-top: 30px;
        }
        
        .btn-more {
            display: inline-block;
            background: linear-gradient(to right, #1a3a6c, #2c5e9e);
            color: white;
            padding: 12px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s;
            margin-bottom: 15px;
        }
        
        .btn-more:hover {
            background: linear-gradient(to right, #15305a, #214a87);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(28, 58, 108, 0.3);
        }
        
        .moresame p {
            color: #666;
            font-size: 1.1rem;
        }
        
        .moresame p a {
            color: #ff6b00;
            text-decoration: none;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .bai06a_b {
                width: calc(50% - 20px);
            }
            
            .flow-path li {
                width: 20%;
                min-width: 140px;
            }
        }
        
        @media (max-width: 768px) {
            .bai06a_b {
                width: 100%;
                margin: 10px 0;
            }
            
            .flow-path li {
                width: 40%;
                min-width: 140px;
            }
            
            .flow-path .line::after {
                display: none;
            }
            
            .headlinebox .title h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 576px) {
            .bai06a_bc {
                flex-direction: column;
            }
            
            .flow-path li {
                width: 100%;
                max-width: 300px;
            }
            
            .bai06a_a h2 {
                font-size: 1.1rem;
                text-align: center;
            }
        }
.smsize2 {
    display: inline-block;
    padding: 8px 15px;
    /*margin: 5px;*/
    background: #eef5ff;
    border-radius: 30px;
    color: #1a6aa9;
    text-decoration: none;
    font-size: 0.95rem ;
    transition: all 0.3s ease;
    border: 1px solid #cde;
    float: right;
    /*margin-left:100px ;*/
    margin: 0 auto;
}

/*文章详情页*/
 /* 主内容区样式 */
        .sx-jianju.blog {
            margin: 30px 0;
        }
        
        /* 文章头部样式 */
        .xingshi {
            background: linear-gradient(to right, #1a3a6c, #2c5e9e);
            border-radius: 12px 12px 0 0;
            padding: 10px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .xingshi::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            z-index: 1;
        }
        
        .xingshi::after {
            content: "";
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            z-index: 1;
        }
        
        .format-aside {
            background: #ff6b00;
            display: inline-block;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .format-aside a {
            color: white;
            text-decoration: none;
        }
        
        .xingshi h2 {
            font-size: 25px;
            margin: 0 0 3px;
            position: relative;
            z-index: 2;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .xingshi aside {
            display: flex;
            gap: 20px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 2;
        }
        
        /* 文章内容样式 */
        .blog-content {
            background: white;
            padding: 40px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            position: relative;
        }
        
        .blog-content::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #ff6b00, #ff9e00);
            border-radius: 0 0 12px 12px;
        }
        
        .blog-content p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            color: #444;
            text-align: justify;
        }
        
        .blog-content strong {
            display: block;
            font-size: 1.4rem;
            color: #1a3a6c;
            margin: 35px 0 15px;
            padding-left: 15px;
            border-left: 4px solid #ff6b00;
        }
        
        .blog-content a {
            color: #2c5e9e;
            text-decoration: none;
            font-weight: 500;
        }
        
        .blog-content a:hover {
            text-decoration: underline;
            color: #ff6b00;
        }
        
        /* 分页和返回样式 */
        .showfenye {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .fenye {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
        }
        
        .fenye p {
            margin-bottom: 15px;
            font-size: 1rem;
            color: #555;
        }
        
        .fenye a {
            color: #2c5e9e;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .fenye a:hover {
            color: #ff6b00;
            text-decoration: underline;
        }
        
        .revert {
            background: #1a3a6c;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .revert:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 58, 108, 0.3);
        }
        
        .revert a {
            display: flex;
            align-items: center;
            padding: 20px 25px;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .revert a span:first-child {
            margin-right: 8px;
        }
        
        /* 侧边栏样式 */
        .sidebar {
            margin-top: 30px;
        }
        
        .bianlan {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .bianlan h3 {
            background: linear-gradient(to right, #1a3a6c, #2c5e9e);
            color: white;
            padding: 18px 25px;
            font-size: 1.3rem;
            font-weight: 600;
            position: relative;
        }
        
        .bianlan h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, #ff6b00, #ff9e00);
        }
        
        .new-text ul {
            list-style: none;
            padding: 0;
        }
        
        .new-text li {
            border-bottom: 1px solid #f0f4f8;
            transition: all 0.3s;
        }
        
        .new-text li:last-child {
            border-bottom: none;
        }
        
        .new-text li:hover {
            background: #f8f9ff;
        }
        
        .new-text a {
            display: block;
            padding: 15px 25px;
            color: #444;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            position: relative;
            padding-left: 40px;
        }
        
        .new-text a::before {
            content: "•";
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: #ff6b00;
            font-size: 1.5rem;
        }
        
        .new-text a:hover {
            color: #ff6b00;
            padding-left: 45px;
        }
        
        /* 阅读量样式 */
        #visitCount {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        #visitCount::before {
            content: "\f06e";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 0.9rem;
        }
        
        /* 响应式设计 */
        @media (min-width: 768px) {
            .col-md-9 {
                width: 75%;
            }
            
            .col-md-3 {
                width: 25%;
            }
            
            .sidebar {
                margin-top: 0;
            }
        }
        
        @media (min-width: 992px) {
            .col-lg-9 {
                width: 75%;
            }
            
            .col-lg-3 {
                width: 25%;
            }
        }
        
        @media (max-width: 767px) {
            .xingshi {
                padding: 20px;
            }
            
            .xingshi h2 {
                font-size: 1.8rem;
            }
            
            .blog-content {
                padding: 25px;
            }
            
            .showfenye {
                flex-direction: column;
            }
            
            .revert {
                margin-top: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .xingshi aside {
                flex-direction: column;
                gap: 8px;
            }
            
            .blog-content {
                padding: 20px 15px;
            }
            
            .blog-content strong {
                font-size: 1.2rem;
            }
        }
        
        /* 动画效果 */
        .blog-content p, .blog-content strong, .new-text li {
            animation: fadeIn 0.6s ease-out forwards;
            opacity: 0;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .blog-content p:nth-child(1) { animation-delay: 0.1s; }
        .blog-content strong:nth-child(2) { animation-delay: 0.2s; }
        .blog-content p:nth-child(3) { animation-delay: 0.3s; }
        .blog-content strong:nth-child(4) { animation-delay: 0.4s; }
        .blog-content p:nth-child(5) { animation-delay: 0.5s; }
        .blog-content strong:nth-child(6) { animation-delay: 0.6s; }
        .blog-content p:nth-child(7) { animation-delay: 0.7s; }
        .blog-content p:nth-child(8) { animation-delay: 0.8s; }
        
        .new-text li:nth-child(1) { animation-delay: 0.1s; }
        .new-text li:nth-child(2) { animation-delay: 0.2s; }
        .new-text li:nth-child(3) { animation-delay: 0.3s; }
        .new-text li:nth-child(4) { animation-delay: 0.4s; }
        .new-text li:nth-child(5) { animation-delay: 0.5s; }
        .new-text li:nth-child(6) { animation-delay: 0.6s; }
        .new-text li:nth-child(7) { animation-delay: 0.7s; }
        .new-text li:nth-child(8) { animation-delay: 0.8s; }
        
        
        
/*网点详情页*/
.network-show-top{
    background-color: #d6e6f3;
}