/* AB模板网 整站模板下载 */
/* 模板：Www.AdminBuy.Cn */
/* 仿站：Fang.AdminBuy.Cn */
/* 素材：Sc.AdminBuy.Cn */
/* js特效：js.AdminBuy.Cn */
/* QQ：9490489 */
/* 微信：wwwadminbuycn */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
    border: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

/* ========== 顶部信息栏 ========== */
.top-bar {
    background-color: #f5f5f5;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    color: #666;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left i {
    color: #F22C5F;
    margin-right: 5px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a:hover {
    color: #F22C5F;
}

/* ========== 头部导航 ========== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}
.logo-icon img{ height:55px; width:auto}

.logo-text h1 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.logo-text p {
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 5px;
}

.nav > li {
    position: relative;
}

.nav > li > a {
    display: block;
    padding: 0 20px;
    height: 90px;
    line-height: 90px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    position: relative;
}

.nav > li > a:hover,
.nav > li.active > a {
    color: #F22C5F;
}

.nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #F22C5F;
    transition: width 0.3s ease;
}

.nav > li > a:hover::after,
.nav > li.active > a::after {
    width: 60%;
}

/* 下拉菜单 */
.subnav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 180px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav > li:hover .subnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.subnav li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.subnav li:last-child a {
    border-bottom: none;
}

.subnav li a:hover {
    color: #F22C5F;
    background-color: #e9e9e9;
    padding-left: 25px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 180px;
    height: 38px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 0 40px 0 16px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #F22C5F;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
    font-size: 16px;
}

.search-box button:hover {
    color: #F22C5F;
}

/* ========== Banner轮播 ========== */
.banner {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide .bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.banner-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 100%;
}

.banner-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #F22C5F;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background-color: #4096ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.4);
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.banner-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dots li.active {
    background-color: #F22C5F;
    width: 30px;
    border-radius: 6px;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
}

.banner-arrow:hover {
    background-color: #F22C5F;
}

.banner-arrow.prev {
    left: 30px;
}

.banner-arrow.next {
    right: 30px;
}

/* ========== 通用区块标题 ========== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h3 {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #F22C5F;
}

.section-title p {
    font-size: 16px;
    color: #888;
    margin-top: 20px;
}

/* ========== 服务特色 ========== */
.features {
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(230, 0, 18, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e2e2e2, #bae0ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #F22C5F;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #F22C5F, #4096ff);
    color: #fff;
    transform: rotateY(360deg);
}

.feature-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ========== 关于我们 ========== */
.about-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-left {
    flex: 1;
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid #F22C5F;
    border-radius: 10px;
    z-index: -1;
}

.about-right {
    flex: 1;
}

.about-right h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.about-right h3 span {
    color: #F22C5F;
}

.about-right .subtitle {
    font-size: 16px;
    color: #F22C5F;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-right > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item .num {
    font-size: 36px;
    font-weight: bold;
    color: #F22C5F;
    display: block;
}

.stat-item .label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.about-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #F22C5F;
    color: #fff;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: #4096ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.4);
}

/* ========== 服务项目 ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-img {
    height: 200px;
    background: linear-gradient(135deg, #bae0ff, #91caff);
    position: relative;
    overflow: hidden;
}

.service-img .service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #F22C5F;
}

.service-info {
    padding: 25px;
}

.service-info h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-info h4 {
    color: #F22C5F;
}

.service-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    color: #F22C5F;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-price span {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.service-more {
    display: inline-block;
    color: #F22C5F;
    font-size: 14px;
}

.service-more:hover {
    padding-right: 5px;
}

/* ========== 服务流程 ========== */
.process {
    background: linear-gradient(135deg, #F22C5F, #F22C5F);
    color: #fff;
}

.process .section-title h3 {
    color: #fff;
}

.process .section-title h3::after {
    background-color: #fff;
}

.process .section-title p {
    color: rgba(255,255,255,0.8);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: rgba(255,255,255,0.3);
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    color: #F22C5F;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
}

.step-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* ========== 新闻动态 ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-img {
    height: 180px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    position: relative;
    overflow: hidden;
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #F22C5F;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    text-align: center;
}

.news-date .day {
    font-size: 20px;
    font-weight: bold;
    display: block;
}

.news-date .month {
    font-size: 12px;
}

.news-info {
    padding: 20px;
}

.news-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.news-card:hover .news-info h4 {
    color: #F22C5F;
}

.news-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #999;
}

.news-more {
    color: #F22C5F;
}

/* ========== 团队展示 ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #f0f0f0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #bae0ff, #91caff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #F22C5F;
}

.team-card:hover .team-avatar {
    border-color: #F22C5F;
    transform: scale(1.05);
}

.team-card h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.team-card .position {
    font-size: 14px;
    color: #F22C5F;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 13px;
    color: #666;
}

/* ========== 客户评价 ========== */
.testimonials {
    background-color: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: #F22C5F;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bae0ff, #91caff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #F22C5F;
}

.author-info h5 {
    font-size: 15px;
    color: #333;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 12px;
    color: #999;
}

/* ========== 预约咨询 ========== */
.cta {
    background: linear-gradient(135deg, #F22C5F, #F22C5F);
    padding: 60px 0;
    color: #fff;
}

.cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-left p {
    font-size: 16px;
    opacity: 0.9;
}

.cta-right {
    display: flex;
    gap: 20px;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background-color: #fff;
    color: #F22C5F;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn-outline:hover {
    background-color: #fff;
    color: #F22C5F;
}

/* ========== 底部 ========== */
.footer {
    background-color: #222;
    color: #999;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #F22C5F;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #F22C5F, #4096ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

.footer-logo-text h5 {
    font-size: 18px;
    color: #fff;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-size: 13px;
    color: #999;
}

.footer-links li a:hover {
    color: #F22C5F;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact li i {
    color: #F22C5F;
    margin-top: 3px;
    min-width: 16px;
}

.footer-qrcode {
    width: 100px;
    height: 100px;
    background-color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* ========== 内页Banner ========== */
.page-banner {
    height: 300px;
    background: linear-gradient(135deg, #F22C5F, #F22C5F);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 16px;
    opacity: 0.9;
}

/* 面包屑 */
.breadcrumb {
    background-color: #f9f9f9;
    padding: 15px 0;
    font-size: 13px;
    color: #666;
}

.breadcrumb a:hover {
    color: #F22C5F;
}

.breadcrumb .current {
    color: #F22C5F;
}

/* ========== 内页主内容区 ========== */
.page-main {
    padding: 60px 0;
}

.page-content {
    display: flex;
    gap: 40px;
}

/* 侧边栏 */
.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.widget-title {
    padding: 18px 20px;
    background-color: #F22C5F;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.widget-content {
    padding: 20px;
}

.side-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.side-nav li:last-child {
    border-bottom: none;
}

.side-nav li a {
    display: block;
    padding: 12px 0;
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
}

.side-nav li a:hover,
.side-nav li.active a {
    color: #F22C5F;
    padding-left: 10px;
}

.side-nav li a::before {
    content: '>';
    margin-right: 8px;
    color: #ccc;
    transition: color 0.3s ease;
}

.side-nav li a:hover::before,
.side-nav li.active a::before {
    color: #F22C5F;
}

/* 主内容区 */
.main-content {
    flex: 1;
}

.content-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F22C5F;
}

/* 新闻列表页 */
.news-list-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-list-item:hover {
    padding-left: 10px;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-img {
    width: 220px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.news-list-info {
    flex: 1;
}

.news-list-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.news-list-item:hover .news-list-info h4 {
    color: #F22C5F;
}

.news-list-info .date {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.news-list-info .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-list-info .more {
    color: #F22C5F;
    font-size: 13px;
}


/* 新闻详情页 */
.article-title {
    font-size: 30px;
    color: #333;
    margin-bottom: 15px;
}

.article-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 20px;
}

.article-content {
    font-size: 15px;
    color: #555;
    line-height: 2;
}

.article-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.article-content h3 {
    font-size: 20px;
    color: #333;
    margin: 30px 0 15px;
}

.article-content img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

/* 联系我们页 */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e2e2e2, #bae0ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F22C5F;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 14px;
    color: #666;
}

.contact-form h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #F22C5F;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #F22C5F;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4096ff;
}

/* 公司介绍页 */
.about-hero {
    margin-bottom: 50px;
}

.about-hero p {
    font-size: 15px;
    color: #666;
    line-height: 2;
    margin-bottom: 15px;
    text-indent: 2em;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background-color: #F22C5F;
    color: #fff;
    transform: translateY(-5px);
}

.value-item .icon {
    font-size: 40px;
    color: #F22C5F;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-item:hover .icon {
    color: #fff;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* 荣誉资质 */
.honors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.honor-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.honor-item:hover {
    border-color: #F22C5F;
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.1);
}

.honor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #e2e2e2, #bae0ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #F22C5F;
}

.honor-item p {
    font-size: 14px;
    color: #555;
}

/* ========== 移动端菜单按钮 ========== */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== 响应式设计 ========== */

/* 大屏适配 */
@media (max-width: 1200px) {
    .container {
        width: 96%;
        max-width: 1200px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .honors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 平板端 */
@media (max-width: 992px) {
    .container {
        width: 94%;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h3 {
        font-size: 28px;
    }
    
    /* 顶部信息栏 */
    .top-bar-left {
        gap: 15px;
    }
    
    /* 导航 */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav > li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav > li > a {
        height: 50px;
        line-height: 50px;
        padding: 0 20px;
        font-size: 15px;
    }
    
    .nav > li > a::after {
        display: none;
    }
    
    .subnav {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        background-color: #f9f9f9;
        display: none;
    }
    
    .nav > li.open .subnav {
        display: block;
    }
    
    .subnav li a {
        padding-left: 35px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header .container {
        height: 70px;
    }
    
    .logo-icon {
       
        height: 45px;
        font-size: 22px;
    }
	.logo-icon img{ height:45px}
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .search-box {
        display: none;
    }
    
    /* Banner */
    .banner {
        height: 400px;
    }
    
    .banner-content h2 {
        font-size: 36px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .banner-arrow.prev {
        left: 15px;
    }
    
    .banner-arrow.next {
        right: 15px;
    }
    
    /* 网格布局 */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 关于我们 */
    .about-wrap {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-left,
    .about-right {
        width: 100%;
    }
    
    .about-img {
        height: 300px;
    }
    
    .about-right h3 {
        font-size: 26px;
    }
    
    /* 服务流程 */
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    /* CTA */
    .cta .container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .cta-left h3 {
        font-size: 26px;
    }
    
    /* 底部 */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    /* 内页 */
    .page-banner {
        height: 220px;
    }
    
    .page-banner h2 {
        font-size: 32px;
    }
    
    .page-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .sidebar {
        width: 100%;
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    /* 联系我们 */
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* 公司价值观 */
    .about-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .honors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* 新闻列表 */
    .news-list-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-list-img {
        width: 100%;
        height: 200px;
    }
}

/* 手机端 */
@media (max-width: 768px) {
    .container {
        width: 92%;
    }
    
    .section {
        padding: 45px 0;
    }
    
    .section-title {
        margin-bottom: 35px;
    }
    
    .section-title h3 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 14px;
        margin-top: 15px;
    }
    
    /* 顶部信息栏 */
    .top-bar {
        display: none;
    }
    
    /* 头部 */
    .header .container {
        height: 60px;
    }
    
    .logo-icon {

        height: 40px;
        font-size: 20px;
    }
	.logo-icon img{ height:40px}
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        display: none;
    }
    
    /* Banner */
    .banner {
        height: 300px;
    }
    
    .banner-content {
        padding: 0 20px;
    }
    
    .banner-content h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .banner-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .banner-btn {
        padding: 10px 28px;
        font-size: 14px;
    }
    
    .banner-arrow {
        display: none;
    }
    
    /* 网格布局 */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    /* 关于我们 */
    .about-wrap {
        gap: 30px;
    }
    
    .about-img {
        height: 250px;
    }
    
    .about-right h3 {
        font-size: 22px;
    }
    
    .about-right > p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .about-stats {
        gap: 15px;
        margin: 25px 0;
    }
    
    .stat-item .num {
        font-size: 28px;
    }
    
    .stat-item .label {
        font-size: 12px;
    }
    
    /* 服务项目 */
    .service-img {
        height: 160px;
    }
    
    .service-info {
        padding: 20px;
    }
    
    .service-info h4 {
        font-size: 18px;
    }
    
    .service-price {
        font-size: 20px;
    }
    
    /* 团队 */
    .team-avatar {
        width: 140px;
        height: 140px;
        font-size: 48px;
    }
    
    /* CTA */
    .cta {
        padding: 40px 0;
    }
    
    .cta-left h3 {
        font-size: 22px;
    }
    
    .cta-left p {
        font-size: 14px;
    }
    
    .cta-right {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    /* 底部 */
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    /* 内页Banner */
    .page-banner {
        height: 180px;
    }
    
    .page-banner h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .page-banner p {
        font-size: 14px;
    }
    
    .page-main {
        padding: 35px 0;
    }
    
    .content-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    /* 新闻详情 */
    .article-title {
        font-size: 22px;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 10px 15px;
        font-size: 12px;
    }
    
    .article-content {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    /* 分页 */
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .pagination a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    /* 联系表单 */
    .contact-info h3,
    .contact-form h3 {
        font-size: 20px;
    }
    
    /* 荣誉资质 */
    .honors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .honor-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* 返回顶部按钮调整 */
    .back-top {
        right: 15px !important;
        bottom: 60px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    /* 全国分支机构 */
    .sidebar + div .content-title[style*="text-align: center"] {
        font-size: 20px;
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    .banner-content h2 {
        font-size: 22px;
    }
    
    .section-title h3 {
        font-size: 20px;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 45%;
    }
    
    .process-step .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .footer-bottom {
        font-size: 11px;
        padding: 15px 0;
    }
    
    .honors-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 新版国内风格首页样式 ========== */

/* 顶部信息栏 */
.top-bar {
    background: #f5f7fa;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e8e8e8;
}
.top-left span {
    color: #666;
}
.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-right strong {
    color: #F22C5F;
    font-size: 14px;
}
.top-divider {
    color: #ddd;
}

/* 头部导航 */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.logo h1 {
    font-size: 28px;
    color: #F22C5F;
    font-weight: bold;
    margin-bottom: 2px;
}
.logo p {
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
}
.nav > ul {
    display: flex;
    gap: 8px;
}
.nav > ul > li {
    position: relative;
}
.nav > ul > li > a {
    display: block;
    padding: 0 18px;
    line-height: 90px;
    font-size: 15px;
    color: #333;
    position: relative;
    transition: all 0.3s;
}
.nav > ul > li > a:hover,
.nav > ul > li.active > a {
    color: #F22C5F;
}
.nav > ul > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #F22C5F;
    border-radius: 2px;
}
.nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 180px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}
.nav > ul > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav .submenu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
}
.nav .submenu li:last-child a {
    border-bottom: none;
}
.nav .submenu li a:hover {
    background: #e2e2e2;
    color: #F22C5F;
    padding-left: 26px;
}

/* 区块通用标题 */
.section {
    padding: 70px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-title h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}
.section-title p {
    font-size: 14px;
    color: #999;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.title-line {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: #F22C5F;
    border-radius: 2px;
    position: relative;
}
.title-line::before,
.title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #F22C5F;
    border-radius: 50%;
    transform: translateY(-50%);
}
.title-line::before {
    left: -15px;
}
.title-line::after {
    right: -15px;
}
.section-more {
    text-align: center;
    margin-top: 40px;
}
.more-link {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #F22C5F;
    color: #F22C5F;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
}
.more-link:hover {
    background: #F22C5F;
    color: #fff;
}

/* 快捷服务入口 */
.quick-service {
    padding: 40px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}
.quick-service .container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.quick-item {
    padding: 30px 15px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    transition: all 0.3s;
    cursor: pointer;
}
.quick-item:last-child {
    border-right: none;
}
.quick-item:hover {
    background: #e2e2e2;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(242,44,95,0.1);
}
.quick-icon {
    font-size: 42px;
    margin-bottom: 12px;
}
.quick-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
    font-weight: normal;
}
.quick-item p {
    font-size: 12px;
    color: #999;
}

/* 关于我们 */
.about-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}
.about-img {
    flex: 0 0 45%;
}
.img-placeholder {
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    border-radius: 8px; height: 100%;
}
.img-placeholder .tu{width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;}
.about-content {
    flex: 1;
}
.about-content h4 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}
.about-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}
.about-features li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}
.check-icon {
    width: 20px;
    height: 20px;
    background: #F22C5F;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.stat-item {
    text-align: center;
    flex: 1;
}
.stat-num {
    font-size: 36px;
    font-weight: bold;
    color: #F22C5F;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item p {
    font-size: 13px;
    color: #999;
}
.more-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #F22C5F;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
}
.more-btn:hover {
    background: #F22C5F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242,44,95,0.3);
}

/* 服务项目卡片 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(242,44,95,0.15);
    border-color: transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #F22C5F;
    transition: width 0.3s ease;
    border-radius: 0 0 3px 3px;
}
.service-card:hover::before {
    width: 100%;
}
.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
}
.service-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
    min-height: 52px;
}
.service-price {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px dashed #eee;
    border-bottom: 1px dashed #eee;
}
.service-price span {
    color: #F22C5F;
    font-size: 24px;
    font-weight: bold;
}
.service-btn {
    display: inline-block;
    padding: 10px 35px;
    border: 1px solid #F22C5F;
    color: #F22C5F;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
}
.service-btn:hover {
    background: #F22C5F;
    color: #fff;
}

/* 服务流程 */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}
.step-item {
    flex: 0 0 14%;
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-num {
    width: 70px;
    height: 70px;
    background: #e2e2e2;
    color: #F22C5F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 18px;
    transition: all 0.3s;
}
.step-item:hover .step-num {
    background: #F22C5F;
    color: #fff;
    transform: scale(1.1);
}
.step-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}
.step-item p {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}
.step-line {
    flex: 1;
    height: 2px;
    background: #e8e8e8;
    margin-top: 35px;
    position: relative;
    z-index: 1;
    max-width: 5%;
}

/* 新闻动态 */
.news-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}
.news-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-main-img .img-placeholder {
    height: 260px;
    border-radius: 8px;
}
.news-main-content {
    padding: 5px 0;
}
.news-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #e9e9e9;
    color: #F22C5F;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.news-main-content h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-main-content h4:hover {
    color: #F22C5F;
}
.news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}
.news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-list {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #eee;
}
.news-list > h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F22C5F;
    display: inline-block;
}
.news-list ul li {
    padding: 14px 0;
    border-bottom: 1px dashed #eee;
}
.news-list ul li:last-child {
    border-bottom: none;
}
.news-list ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.news-title {
    font-size: 14px;
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}
.news-title:hover {
    color: #F22C5F;
}
.news-date {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
}
.more-news-link {
    display: block;
    text-align: right;
    color: #F22C5F;
    font-size: 13px;
    margin-top: 15px;
}

/* 服务保障 */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.guarantee-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.guarantee-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.guarantee-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #e9e9e9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s;
}
.guarantee-item:hover .guarantee-icon {
    background: #F22C5F;
}
.guarantee-text h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}
.guarantee-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* CTA预约区 */
.cta-section {
    padding: 50px 0;
    color: #fff;
}
.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta-text h3 {
    font-size: 28px;
    margin-bottom: 8px;
}
.cta-text p {
    font-size: 14px;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 20px;
}
.cta-btn {
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s;
}
.cta-btn.light {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}
.cta-btn.light:hover {
    background: #fff;
    color: #F22C5F;
}
.cta-btn.dark {
    background: #fff;
    color: #F22C5F;
}
.cta-btn.dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* 合作伙伴 */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.partner-item {
    height: 80px;
    background: #f5f7fa;
    border: 1px solid #eee;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    transition: all 0.3s;
}
.partner-item:hover {
    border-color: #F22C5F;
    color: #F22C5F;
    background: #e2e2e2;
}

/* 底部 */
.footer {
    background: #2c3e50;
    color: #bdc3c7;
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #F22C5F;
}
.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-contact p {
    font-size: 13px;
    margin-bottom: 8px;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 13px;
    color: #bdc3c7;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: #F22C5F;
    padding-left: 5px;
}
.footer-qr {
    text-align: center;
}
.qr-code {
    margin: 0 auto 10px;
    border-radius: 6px;
}
.footer-qr p {
    font-size: 12px;
    color: #999;
}
.footer-bottom {
    background: #1a252f;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #7f8c8d;
}

/* 返回顶部 */
.back-top {
    position: fixed;
    right: 30px;
    bottom: 80px;
    width: 45px;
    height: 45px;
    background: #F22C5F;
    color: #fff;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    font-size: 18px;
    z-index: 999;
}
.back-top.show {
    opacity: 1;
    visibility: visible;
}
.back-top:hover {
    background: #F22C5F;
    transform: translateY(-3px);
}

/* 响应式 - 新增部分 */
@media (max-width: 992px) {
    .quick-service .container {
        grid-template-columns: repeat(3, 1fr);
    }
    .quick-item {
        border-bottom: 1px solid #f0f0f0;
        border-right: 1px solid #f0f0f0;
    }
    .about-wrap {
        flex-direction: column;
        gap: 40px;
    }
    .about-img {
        flex: none;
        width: 100%;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    .step-item {
        flex: 0 0 30%;
    }
    .step-line {
        display: none;
    }
    .news-wrap {
        grid-template-columns: 1fr;
    }
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .partner-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header .container {
        height: 70px;
    }
    .logo h1 {
        font-size: 22px;
    }
    .section {
        padding: 45px 0;
    }
    .section-title {
        margin-bottom: 35px;
    }
    .section-title h3 {
        font-size: 24px;
    }
    .quick-service {
        padding: 25px 0;
     
    }
    .quick-service .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .step-item {
        flex: 0 0 45%;
    }
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-text h3 {
        font-size: 22px;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .about-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    .stat-item {
        flex: 0 0 47%;
    }
    .stat-num {
        font-size: 28px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }
    .section-title h3 {
        font-size: 20px;
    }
    .img-placeholder {
        height: 200px;
    }
    .news-main-img .img-placeholder {
        height: 180px;
    }
    .step-item {
        flex: 0 0 100%;
    }
}


/* ========== 内页通用样式 ========== */

/* 内页Banner */
.page-banner {
    padding: 80px 0;
    color: #fff;
    text-align: center;
}
.page-banner h2 {
    font-size: 36px;
    margin-bottom: 10px;
}
.page-banner p {
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.breadcrumb {
    font-size: 13px;
}
.breadcrumb a {
    color: #fff;
    opacity: 0.8;
}
.breadcrumb a:hover {
    opacity: 1;
}
.breadcrumb span {
    opacity: 0.6;
}

/* 页面布局 */
.page-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.main-content {
    flex: 1;
    min-width: 0;
}
.sidebar {
    flex: 0 0 280px;
}

/* 侧栏模块 */
.sidebar-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 25px;
    overflow: hidden;
}
.sidebar-box h3 {
    font-size: 18px;
    color: #333;
    padding: 18px 20px;
    border-bottom: 2px solid #F22C5F;
    background: #fafafa;
    margin: 0;
}
.side-nav li {
    border-bottom: 1px solid #f5f5f5;
}
.side-nav li:last-child {
    border-bottom: none;
}
.side-nav li a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.3s;
}
.side-nav li a:hover,
.side-nav li.active a {
    color: #F22C5F;
    background: #e2e2e2;
    padding-left: 28px;
}
.side-cat li {
    border-bottom: 1px solid #f5f5f5;
}
.side-cat li:last-child {
    border-bottom: none;
}
.side-cat li a {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.3s;
}
.side-cat li a:hover,
.side-cat li.active a {
    color: #F22C5F;
    background: #e2e2e2;
}
.side-cat li span {
    color: #999;
    font-size: 13px;
}

/* 热门新闻 */
.hot-news li {
    padding: 12px 20px;
    border-bottom: 1px dashed #eee;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.hot-news li:last-child {
    border-bottom: none;
}
.hot-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #ccc;
    color: #fff;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    border-radius: 4px;
    margin-top: 2px;
}
.hot-news li:nth-child(1) .hot-num {
    background: #ff4444;
}
.hot-news li:nth-child(2) .hot-num {
    background: #ff8800;
}
.hot-news li:nth-child(3) .hot-num {
    background: #ffbb33;
}
.hot-news li a {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    transition: color 0.3s;
}
.hot-news li a:hover {
    color: #F22C5F;
}

/* 联系信息侧栏 */
.contact-box .contact-info {
    padding: 20px;
    text-align: center;
}
.contact-box .contact-info strong {
    font-size: 14px;
    color: #333;
}
.contact-box .tel {
    font-size: 22px;
    color: #F22C5F;
    font-weight: bold;
    margin: 10px 0;
}
.contact-box .contact-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

/* 内容标题 */
.content-title {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}
.content-title h3 {
    font-size: 24px;
    color: #333;
}

/* 文章内容 */
.article-content {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}
.article-content p {
    margin-bottom: 18px;
    text-align: justify;
}
.article-content h2 {
    font-size: 22px;
    color: #333;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #F22C5F;
}
.article-content h4 {
    font-size: 17px;
    color: #333;
    margin: 25px 0 12px;
}
.article-content ul,
.article-content ol {
    margin-bottom: 18px;
    padding-left: 25px;
}
.article-content li {
    margin-bottom: 8px;
}
.article-img {
    margin: 10px 0 25px;
    text-align: center;
}

/* 关于我们特色列表 */
.sd-list {
    margin-bottom: 25px;
}
.sd-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}
.sd-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #F22C5F;
    font-weight: bold;
}

/* 特色列表 */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
}
.f-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.feature-item h5 {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}
.feature-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* 价格卡片 */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.price-card {
    text-align: center;
    padding: 25px 15px;
    background: #f9f9f9;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.price-card.hot {
    background: #e2e2e2;
    border: 2px solid #F22C5F;
}
.hot-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff4444;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
}
.price-card h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
.price-card .price {
    font-size: 28px;
    color: #F22C5F;
    font-weight: bold;
    margin-bottom: 5px;
}
.price-card .price span {
    font-size: 13px;
    color: #999;
    font-weight: normal;
}
.price-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}
.price-btn {
    display: inline-block;
    padding: 8px 25px;
    background: #F22C5F;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s;
}
.price-btn:hover {
    background: #F22C5F;
}

/* ========== 服务项目页 ========== */
.service-nav-section {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}
.service-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 25px 0;
    flex-wrap: wrap;
}
.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}
.service-nav-item:hover,
.service-nav-item.active {
    background: #e2e2e2;
    color: #F22C5F;
}
.snav-icon {
    font-size: 32px;
}
.service-nav-item span:last-child {
    font-size: 14px;
    color: #555;
}
.service-nav-item:hover span:last-child,
.service-nav-item.active span:last-child {
    color: #F22C5F;
}

/* 服务详情 */
.service-detail {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}
.service-detail-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #e2e2e2, #e9e9e9);
    border-bottom: 1px solid #eee;
}
.sd-icon {
    font-size: 56px;
}
.sd-title {
    flex: 1;
}
.sd-title h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}
.sd-title p {
    font-size: 14px;
    color: #666;
}
.sd-price {
    text-align: right;
}
.price-label {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}
.price-num {
    font-size: 32px;
    color: #ff4444;
    font-weight: bold;
}
.price-unit {
    font-size: 14px;
    color: #999;
    margin-left: 3px;
}
.service-detail-body {
    padding: 30px;
}
.sd-image {
    margin-bottom: 25px;
}
.sd-content h4 {
    font-size: 18px;
    color: #333;
    margin: 25px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.sd-content h4:first-child {
    margin-top: 0;
}

/* ========== 新闻列表页 ========== */
.news-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    border-bottom: 2px solid #F22C5F;
    flex-wrap: wrap;
}
.news-tab {
    padding: 12px 28px;
    font-size: 15px;
    color: #555;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s;
}
.news-tab:hover,
.news-tab.active {
    background: #F22C5F;
    color: #fff;
}

/* 新闻条目 */
.news-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}
.news-item:hover {
    background: #fafafa;
    padding-left: 10px;
    padding-right: 10px;
}
.news-item-img {
    flex: 0 0 220px;
    overflow: hidden;
    border-radius: 6px;
}
.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-item:hover .news-item-img img {
    transform: scale(1.05);
}
.news-item-content {
    flex: 1;
    min-width: 0;
}
.news-cat {
    display: inline-block;
    padding: 3px 10px;
    background: #e9e9e9;
    color: #F22C5F;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.news-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-item-content h3 a {
    color: #333;
    transition: color 0.3s;
}
.news-item-content h3 a:hover {
    color: #F22C5F;
}
.news-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}
.news-meta span {
    margin-right: 20px;
}
.news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-more {
    font-size: 13px;
    color: #F22C5F;
}
.news-more:hover {
    text-decoration: underline;
}



/* ========== 新闻详情页 ========== */
.article-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
.article-header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}
.article-meta {
    font-size: 13px;
    color: #999;
}
.article-meta span {
    margin: 0 12px;
}
.article-tag {
    display: inline-block;
    padding: 3px 10px;
    background: #e9e9e9;
    color: #F22C5F;
    border-radius: 4px;
}
.article-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}
.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.share-btn {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    transition: all 0.3s;
}
.share-btn:hover {
    border-color: #F22C5F;
    color: #F22C5F;
}
.article-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}
.article-nav a {
    font-size: 14px;
    color: #555;
    transition: color 0.3s;
}
.article-nav a:hover {
    color: #F22C5F;
}

/* 相关新闻 */
.related-news {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.related-news h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}
.related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-item a {
    display: block;
}
.related-item .img-placeholder {
    border-radius: 6px;
    margin-bottom: 10px;
   
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.related-item p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}
.related-item a:hover p {
    color: #F22C5F;
}
.adminbuy_cn img{ max-width:100% !important; height:auto !important;display:inline-block;}
.adminbuy_cn p{text-wrap: inherit !important;}
.adminbuy_cn p span{text-wrap: inherit !important;}
/* ========== 联系我们页 ========== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #F22C5F;
}
.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.contact-card h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.contact-value {
    font-size: 20px;
    color: #F22C5F;
    font-weight: bold;
    margin-bottom: 8px;
    word-break: break-all;
}
.contact-desc {
    font-size: 13px;
    color: #999;
}

/* 留言表单 */
.contact-form-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.contact-form {
    padding-right: 30px;
    border-right: 1px solid #eee;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-item {
    flex: 1;
}
.form-item label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}
.required {
    color: #ff4444;
    margin-left: 3px;
}
.form-input {
    width: 100%;
    height: 42px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: #fff;
}
.form-input:focus {
    outline: none;
    border-color: #F22C5F;
}
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.3s;
    font-family: inherit;
}
.form-textarea:focus {
    outline: none;
    border-color: #F22C5F;
}
.form-submit {
    margin-top: 25px;
}
.submit-btn {
    padding: 12px 50px;
    background: #F22C5F;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-btn:hover {
    background: #F22C5F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242,44,95,0.3);
}

.contact-info-side h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}
.contact-info-side ul {
    margin-bottom: 25px;
}
.contact-info-side li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}
.contact-info-side li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #F22C5F;
}
.qr-box {
    text-align: center;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}
.qr-box p {
    font-size: 13px;
    color: #666;
    margin: 5px 0;
}

/* 服务网点 */
.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.network-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
}
.network-item:hover {
    border-color: #F22C5F;
    box-shadow: 0 4px 15px rgba(242,44,95,0.1);
}
.network-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #F22C5F;
    display: inline-block;
}
.network-item p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}
.network-more {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #999;
}

/* 企业文化网格 */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.culture-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.culture-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.culture-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.culture-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.culture-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}


/* ========== 移动端响应式优化 ========== */

/* 平板端 */
@media (max-width: 992px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    /* 顶部信息栏 */
    .top-bar {
        height: auto;
        line-height: 1.5;
        padding: 8px 0;
    }
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    /* 导航 */
    .header .container {
        height: 70px;
    }
    .nav > ul {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #333;
        transition: all 0.3s;
    }
    
    /* Banner */
    .page-banner {
        padding: 50px 0;
    }
    .page-banner h2 {
        font-size: 28px;
    }
    
    /* 布局 */
    .page-layout {
        flex-direction: column;
    }
    .sidebar {
        flex: none;
        width: 100%;
        order: 2;
    }
    .main-content {
        order: 1;
    }
    
    /* 联系卡片 */
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 服务导航 */
    .service-nav-item {
        padding: 12px 18px;
    }
    
    /* 价格卡片 */
    .price-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* 留言表单 */
    .contact-form-wrap {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    .contact-form {
        padding-right: 0;
        border-right: none;
        padding-bottom: 25px;
        border-bottom: 1px solid #eee;
    }
    
    /* 服务网点 */
    .network-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 企业文化 */
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 相关新闻 */
    .related-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 手机端 */
@media (max-width: 768px) {
    .section {
        padding: 35px 0;
    }
    .section-title {
        margin-bottom: 25px;
    }
    .section-title h3 {
        font-size: 22px;
    }
    
    /* 快捷服务 */
    .quick-service {
       
    }
    
    /* 关于我们 */
    .about-wrap {
        gap: 25px;
    }
    .about-content h4 {
        font-size: 20px;
    }
    .about-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    .stat-item {
        flex: 0 0 47%;
    }
    .stat-num {
        font-size: 24px;
    }
    
    /* 服务项目 */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 服务流程 */
    .process-steps {
        gap: 15px;
    }
	.process-steps .step-item{ width:100%}
    .step-item {
        flex: 0 0 45%;
    }
    .step-num {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    /* 新闻 */
    .news-wrap {
        gap: 25px;
    }
    .news-item {
        flex-direction: column;
        gap: 12px;
        padding: 18px 0;
    }
    .news-item-img {
        flex: none;
        width: 100%;
        height: 180px;
    }
    .news-item-content h3 {
        font-size: 17px;
    }
    
    /* 服务保障 */
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* CTA */
    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .cta-text h3 {
        font-size: 22px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-btn {
        width: 100%;
        text-align: center;
    }
    
    /* 合作伙伴 */
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* 底部 */
    .footer {
        padding-top: 35px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    /* 服务导航 */
    .service-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 15px 0;
        -webkit-overflow-scrolling: touch;
    }
    .service-nav-item {
        flex-shrink: 0;
        padding: 10px 15px;
    }
    .snav-icon {
        font-size: 26px;
    }
    
    /* 服务详情 */
    .service-detail-head {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
    }
    .sd-icon {
        font-size: 42px;
    }
    .sd-title {
        flex: 1;
        min-width: 150px;
    }
    .sd-title h3 {
        font-size: 20px;
    }
    .sd-price {
        width: 100%;
        text-align: left;
    }
    .service-detail-body {
        padding: 20px;
    }
    .price-cards {
        grid-template-columns: 1fr;
    }
    
    /* 联系卡片 */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-card {
        padding: 25px 20px;
    }
    
    /* 留言表单 */
    .contact-form-wrap {
        padding: 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    /* 服务网点 */
    .network-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 企业文化 */
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 新闻详情 */
    .article-header h1 {
        font-size: 22px;
        text-align: left;
    }
    .article-meta {
        text-align: left;
    }
    .article-meta span {
        display: block;
        margin: 5px 0;
    }
    .related-list {
        grid-template-columns: 1fr;
    }
    
    /* 新闻标签 */
    .news-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .news-tab {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* 内页Banner */
    .page-banner {
        padding: 40px 0;
    }
    .page-banner h2 {
        font-size: 24px;
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar {
        display: none;
    }
    
    .header .container {
        height: 60px;
    }
    .logo h1 {
        font-size: 20px;
    }
    .logo p {
        display: none;
    }
    
    .section {
        padding: 30px 0;
    }
    .section-title h3 {
        font-size: 20px;
    }
    
    .stat-item {
      
    }
    
    .step-item {
        flex: 0 0 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header h1 {
        font-size: 20px;
    }
    
    .service-detail-head {
        flex-direction: column;
        text-align: center;
    }
    .sd-price {
        text-align: center;
    }
}


/* ========== 团队页面样式 ========== */

/* 筛选按钮 */
.team-filter, .case-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
    cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
    background: #F22C5F;
    color: #fff;
    border-color: #F22C5F;
}

/* 团队卡片网格 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.team-avatar {
    position: relative;
    overflow: hidden;
}
.team-avatar img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}
.team-card:hover .team-avatar img {
    transform: scale(1.05);
}
.team-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    background: #ff9800;
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
}
.team-tag.gold {
    background: linear-gradient(135deg, #ffd700, #ff9800);
}
.team-info {
    padding: 20px;
    text-align: center;
}
.team-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 6px;
}
.team-position {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}
.team-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
}
.team-rating .stars {
    color: #ff9800;
    font-size: 14px;
}
.team-rating .rating-num {
    color: #ff9800;
    font-weight: bold;
}
.team-rating .service-count {
    color: #999;
    font-size: 12px;
}
.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 15px;
}
.team-skills span {
    padding: 3px 10px;
    background: #e2e2e2;
    color: #F22C5F;
    font-size: 12px;
    border-radius: 12px;
}
.team-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background: #F22C5F;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}
.team-btn:hover {
    background: #F22C5F;
}

/* ========== 团队详情页 ========== */
.team-detail-wrap {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}
.team-detail-left {
    position: sticky;
    top: 30px;
    align-self: start;
}
.team-detail-img {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}
.team-contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}
.team-contact-card h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.tel-big {
    font-size: 26px;
    color: #F22C5F;
    font-weight: bold;
    margin-bottom: 8px;
}
.team-contact-card p {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}
.order-btn {
    display: block;
    padding: 12px;
    background: #F22C5F;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
}
.order-btn:hover {
    background: #F22C5F;
}

.team-detail-right {
    min-width: 0;
}
.team-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.team-detail-header h2 {
    font-size: 28px;
    color: #333;
}
.team-badge {
    padding: 6px 16px;
    background: #e2e2e2;
    color: #F22C5F;
    font-size: 14px;
    border-radius: 20px;
}
.team-badge.gold {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
}

.team-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}
.meta-item {
    text-align: center;
}
.meta-label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 6px;
}
.meta-value {
    display: block;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}
.meta-value.star {
    color: #ff9800;
    font-size: 15px;
}

.detail-section {
    margin-bottom: 35px;
}
.detail-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F22C5F;
    display: inline-block;
}
.detail-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.skill-tag {
    padding: 8px 18px;
    background: #e2e2e2;
    color: #F22C5F;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid #b3d9ff;
}

.service-list {
    list-style: none;
    padding: 0;
}
.service-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.service-list li strong {
    color: #333;
}

.cert-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.cert-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}
.cert-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.cert-info h5 {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}
.cert-info p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* 评价列表 */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.review-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}
.review-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.review-user {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}
.review-stars {
    color: #ff9800;
    font-size: 13px;
}
.review-date {
    font-size: 12px;
    color: #999;
    margin-left: auto;
}
.review-content {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ========== 案例页面样式 ========== */

/* 案例卡片网格 */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
.case-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.case-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.case-img img {
   
}
.case-card:hover .case-img img {
    transform: scale(1.05);
}
.case-cat {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 5px 14px;
    background: rgba(242,44,95,0.9);
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
}
.case-info {
    padding: 20px;
}
.case-info h4 {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
}
.case-info h4:hover {
    color: #F22C5F;
}
.case-info h4 a {
    color: inherit;
}
.case-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.case-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}

/* 客户评价 */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.testimonial-content {
    margin-bottom: 20px;
}
.testimonial-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}
.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: #F22C5F;
    font-family: serif;
    font-style: normal;
    opacity: 0.3;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-info h5 {
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
}
.author-info p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* ========== 案例详情页 ========== */
.case-detail {

    margin: 0 auto;
}
.case-detail-header {
    text-align: center;
    margin-bottom: 30px;
}
.case-cat-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #e9e9e9;
    color: #F22C5F;
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.case-detail-header h1 {
    font-size: 30px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}
.case-detail-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}
.case-detail-img {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}
.case-detail-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.case-detail-content .detail-section {
    margin-bottom: 35px;
}
.case-detail-content .detail-section:last-child {
    margin-bottom: 0;
}

.demand-list {
    list-style: none;
    padding: 0;
}
.demand-list li {
    padding: 12px 0 12px 25px;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    position: relative;
}
.demand-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F22C5F;
    font-weight: bold;
}

/* 服务效果 */
.result-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.result-item {
    text-align: center;
    padding: 25px 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s;
}
.result-item:hover {
    background: #e2e2e2;
    transform: translateY(-3px);
}
.result-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.result-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}
.result-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* 客户评价大卡片 */
.customer-review {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #F22C5F;
}
.review-avatar {
    flex-shrink: 0;
}
.review-content {
    flex: 1;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}
.review-header h5 {
    font-size: 16px;
    color: #333;
    margin: 0;
}
.review-header .review-stars {
    font-size: 14px;
    color: #ff9800;
}
.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}
.review-date {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* 服务人员卡片 */
.case-staff {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.case-staff h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}
.staff-card {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    align-items: center;
}
.staff-avatar {
    flex-shrink: 0;
}
.staff-info {
    flex: 1;
}
.staff-info h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 6px;
}
.staff-title {
    font-size: 14px;
    color: #F22C5F;
    margin-bottom: 10px;
}
.staff-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}
.staff-btn {
    font-size: 14px;
    color: #F22C5F;
}
.staff-btn:hover {
    text-decoration: underline;
}


/* ========== 新增页面移动端适配 ========== */

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .team-detail-wrap {
        grid-template-columns: 1fr;
    }
    .team-detail-left {
        position: static;
    }
    .result-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .team-filter, .case-filter {
        gap: 8px;
    }
    .filter-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
    .team-info {
        padding: 15px;
    }
    .team-info h4 {
        font-size: 16px;
    }
    .team-skills {
        gap: 4px;
    }
    .team-skills span {
        font-size: 11px;
        padding: 2px 8px;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-detail-meta {
        grid-template-columns: repeat(2, 1fr);
    }
    .cert-list {
        grid-template-columns: 1fr;
    }
    
    .case-detail-header h1 {
        font-size: 22px;
    }
    .case-detail-meta {
        flex-direction: column;
        gap: 8px;
    }
    .case-detail-content {
        padding: 20px;
    }
    
    .customer-review {
        flex-direction: column;
    }
    
    .staff-card {
        flex-direction: column;
        text-align: center;
    }
    
    .result-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .result-item {
        padding: 20px 10px;
    }
    .result-icon {
        font-size: 30px;
    }
    .result-item h4 {
        font-size: 14px;
    }
    .result-item p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-detail-meta {
        grid-template-columns: 1fr;
    }
    .team-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .team-detail-header h2 {
        font-size: 22px;
    }
    .case-detail-header h1 {
        font-size: 20px;
    }
    .result-grid {
        grid-template-columns: 1fr;
    }
}


/* AB模板网新增分页样式 www.admibnuy.cn */
.pagebar { padding:20px; overflow:hidden; clear:both}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 12px;
  padding: 8px 10px;
  margin: 0 2px;
  border-radius: 3px; line-height:100%
}
.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #333;
  border: 1px solid #333;
}
.pagination a.page-num-current {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}
.pagination .st{ font-family:宋体}
.text-secondary{ text-align:center; padding:20px 0}