/* 全局变量定义 */
:root {
    --main-color: #C0AF9F;
    --main-light: #A88F78;
    --text-color: #333;
    --text-gray: #666;
    --bg-light: #f5f5f5;
    --white: #fff;
    --pink: #C0AF9F;
    /* 标题/按钮主色 */
}

/* 通用重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "微软雅黑", sans-serif;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
dl,
dd {
    list-style: none;
}

/* 清除浮动（统一定义） */
.clearfix::after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}


/* 固定宽度容器（统一响应式） */
.w1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 浮动工具类 */
.fl {
    float: left;
}

.fr {
    float: right;
}

/* 顶部区域样式 */
.top_main {
    background-color: var(--bg-light);
    height: 30px;
    line-height: 30px;
    font-size: 12px;
}

.top_l {
    color: var(--text-gray);
}

.top_r {
    display: flex;
    align-items: center;
}

.top_r li {
    display: inline-block;
    margin: 0 5px;
    color: var(--text-gray);
}

.top_r .split {
    width: 1px;
    height: 12px;
    background-color: #ccc;
    vertical-align: middle;
}

.top_r a:hover {
    color: var(--main-color);
}

/* 页头区域样式 */
.header_main {
    padding: 15px 0;
    background-color: var(--white);
    position: relative;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    vertical-align: middle;
}

/* logo标题区域 */
.logo-title {
    padding-left: 20px;
}

.logo-title h2 {
    font-size: 22px;
    color: var(--text-color);
    font-weight: bold;
    margin-bottom: 4px;
}

.logo-title p {
    font-size: 14px;
    color: var(--main-color);
}

.tel {
    padding-top: 10px;
}

/* 电话图标（用emoji替代图片） */
.tel .icon::before {
    content: "📞";
    color: var(--main-color);
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

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

.tel .webtel {
    font-size: 20px;
    color: var(--main-color);
    font-weight: bold;
    margin-left: 5px;
}

/* 汉堡按钮样式 */
.nav-toggle {
    display: none;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
/* 关闭按钮样式 */
.nav-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 0.3s;
}

.nav-close:hover {
    color: var(--bg-light);
    transform: scale(1.1);
}

/* 导航区域样式 */
.nav_main {
    background-color: var(--main-color);
    color: var(--white);
    height: 45px;
    line-height: 45px;
}

.nav .list {
    display: flex;
}

.nav .list li {
    position: relative;
    /* 用于下拉菜单定位 */
}

.nav .list li a {
    display: block;
    padding: 0 25px;
    font-size: 16px;
}

/* 导航选中/ hover效果（优化对比度） */
.nav .list li a.hover,
.nav .list li a:hover {
    background-color: var(--main-light);
}

/* 下拉菜单样式（移除无效flex） */
.nav .list li dl {
    position: absolute;
    top: 45px;
    left: 0;
    background-color: var(--main-color);
    color: var(--bg-light);
    border: 1px solid #eee;
    border-top: none;
    display: none;
    z-index: 999;
    min-width: 120px;
}

.nav .list li:hover dl {
    display: block;
}

.nav .list li dl dd a {
    padding: 0 20px;
    font-size: 14px;
    line-height: 38px;
}

.nav .list li dl dd a:hover {
    background-color: var(--bg-light);
    color: var(--main-color);
}

/* Banner轮播样式 */
#banner_main {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#banner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 480px;
    overflow: hidden;
}

#banner .list {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    display: flex;
    transition: left 0.5s ease;
}
/* Banner标题样式 */
.banner-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-align: center;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    pointer-events: none; /* 不影响点击事件 */
}
.banner-title h2 {
    font-size: 50px;
    margin: 0 auto;
    font-weight: bold;
}

.banner-title p {
    font-size: 24px;
    margin: 0;
    opacity: 0.9;
}
#banner .list li {
    width: 50%;
    height: 100%;
}

#banner .list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播指示器 */
#banner .tip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

#banner .tip span {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s;
}

#banner .tip span.active {
    background-color: var(--main-color);
    transform: scale(1.2);
}

/* 轮播左右按钮 */
#banner .ico {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--white);
    text-align: center;
    line-height: 80px;
    font-size: 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}

#banner .ico:hover {
    background-color: #C0AF9F;
}

#btn_prev {
    left: 20px;
}

#btn_next {
    right: 20px;
}
@media (max-width: 992px) {
            .banner-title h2 {
                font-size: 32px;
            }
            .banner-title p {
                font-size: 20px;
            }
          
        }

        @media (max-width: 768px) {
            .banner-title h2 {
                font-size: 28px;
                margin-bottom: 12px;
            }
            .banner-title p {
                font-size: 18px;
            }
            
          
        }

        @media (max-width: 576px) {
            .banner-title h2 {
                font-size: 24px;
                margin-bottom: 8px;
            }
            .banner-title p {
                font-size: 16px;
            }
            
        }

        @media (max-width: 400px) {
            .banner-title h2 {
                font-size: 20px;
            }
            .banner-title p {
                font-size: 14px;
            }
        }

/* 服务项目样式 */
.fw {
    padding: 0 15px;
}

.fw .fwTit {
    height: 79px;
    margin: 0 auto;
    background: url(./img/fwtit.png) no-repeat center -9px;
    border-top: 9px solid var(--main-color);
    text-align: center;
    max-width: 1200px;
}

.fw .fwTit a {
    font-size: 30px;
    font-weight: bold;
    line-height: 60px;
    color: var(--white);
    display: inline-block;
}

/* 服务列表（改用flex布局） */
.fwList ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

/* 单个服务项 */
.fwList li {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

/* 服务项链接容器 */
.fwList li a {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 15px;
    transition: border-color 0.3s;
    height: 100%;
}

.fwList li a:hover {
    border-color: var(--main-color);
}

/* 图片容器 */
.fw-pic {
    margin-right: 15px;
    flex-shrink: 0;
}

.fw-pic img {
    width: 200px;
    height: 100px;
    display: block;
    object-fit: cover;
}

/* 文字内容容器 */
.fw-text {
    flex: 1;
}

.fw-tit {
    font-size: 18px;
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 8px;
}

.fw-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 小banner1样式 */
.xbanner1 {
    background-color: var(--main-color);
    padding: 30px 0;
    background-image: url('footprint.png');
    background-repeat: no-repeat;
    background-position: 5% center, 95% center;
    background-size: auto 80%;
}

.tit1 {
    font-size: 26px;
    color: var(--white);
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.tit2 {
    font-size: 18px;
    color: var(--white);
    text-align: center;
    line-height: 1.8;
}

/* 八大理由样式 */
.liyou {
    width: 100%;
    min-height: 780px;
    /* 改为最小高度，防止溢出 */
    overflow: hidden;
    background: url(../images/liyou_bg.jpg) no-repeat center top;
    background-size: cover;
    /* 背景图适配 */
    padding: 50px 0;
}

.title {
    text-align: center;
    margin-bottom: 40px;
}

.title h3 {
    font-size: 26px;
    font-weight: normal;
}

.title h3 b {
    color: var(--main-color);
    font-weight: bold;
}

.title p {
    font-size: 14px;
    color: #999;
    margin: 10px 0;
}

.title i {
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--main-color);
    margin: 0 auto;
}

.txt {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    /* gap: 40px; */
}

.con {
    flex: 1 1 45%;
    min-width: 280px;
}

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

.con .tit h3 {
    font-size: 22px;
    font-weight: normal;
}

.con .tit h3 b {
    color: var(--main-color);
    font-weight: bold;
}

.con ul {
    text-align: center;
    padding: 0 30px;
}

.con ul li {
    position: relative;
    padding-left: 20px;
    line-height: 38px;
    font-size: 16px;
    margin-bottom: 10px;
}

/* 小banner2样式 */

/* 小banner外层容器 */
.xbanner2 .w1200 {
    position: relative;
    height: 250px;
    background: url(../images/ixbannerbg2.jpg) no-repeat center top;
    /* 补充背景图适配 */
    background-size: cover;
}

/* 右侧咨询区域（含二维码+电话） */
.xbanner2 .zixun {
    width: 429px;
    margin-top: 43px;
    position: relative;
    text-align: center;
}



/* 电话样式 */
.xbanner2 .zixun .tel {
    position: absolute;
    top: -50px;
    right: 44px;
    padding: 0 10px;
    height: 37px;
    line-height: 37px;
    text-align: center;
    font-size: 26px;
    color: #fff;
    background: #AE947D;
}

/* 大标题样式 */
.xbanner2 .bigtxt {
    font-size: 20px;
    color: #fff;
    margin-top: 70px;
    /* 调整与顶部的间距 */
    margin-left: 150px;
    /* 左侧间距 */
}

.bigtxt {
    padding-top: 50px;
}

.xbanner2 p.bigtxt b {
    color: #fcf9c4;
    font-size: 29px;
    margin-right: 20px;
    margin-top: 80px;
}

/* 副标题样式 */
.xbanner2 p {
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
    margin-left: 100px;
}

/* 左侧在线客服样式（对应图片左侧区域） */
.xbanner2 .online-service {
    float: left;
    width: 80px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    /* 与banner背景协调的粉色 */
    background-color: #C0AF9F;
}

.xbanner2 .online-service .icon {
    width: 30px;
    height: 30px;
    background: url(./img/ixbannerbg2.jpg) no-repeat center;
    background-size: contain;
    margin-bottom: 5px;
}

/* 响应式适配 - 768px以下手机端 */
@media (max-width: 768px) {

    /* 隐藏顶部区域 */
    .top_main {
        display: none;
    }

    /* 页头区域适配 */
    .header_main {
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }

    .logo-title {
        padding-left: 12px;
    }

    .logo-title h2 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .logo-title p {
        font-size: 11px;
    }

    /* 显示汉堡按钮 */
    .nav-toggle {
        display: block;
    }
    /* 显示关闭按钮 */
    .nav-close {
        display: block;
    }

    /* 隐藏电话区域 */
    .tel {
        display: none;
    }

    /* 导航区域适配 */
    .nav_main {
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100%;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding-top: 70px;
    }

    .nav_main.active {
        transform: translateX(0);
    }

    .nav .list {
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
    }

    .nav .list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav .list li a {
        padding: 0 20px;
        line-height: 45px;
    }

    /* 移动端下拉菜单适配 */
    .nav .list li dl {
        position: static;
        background-color: var(--main-color);
        border: none;
        display: none;
    }

    .nav .list li dl.active {
        display: block;
    }

    .nav .list li dl dd a {
        padding-left: 30px;
        color: var(--white);
    }

    /* Banner响应式适配 */
    #banner {
        height: 220px;
    }

    #banner .ico {
        width: 30px;
        height: 50px;
        font-size: 20px;
        line-height: 50px;
    }

    #banner .tip span {
        width: 10px;
        height: 10px;
    }

    /* 遮罩层 */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .overlay.active {
        display: block;
    }

    /* 服务项目响应式 */
    .fwList li {
        flex: 1 1 100%;
    }

    .fw .fwTit {
        background: none;
        border-top: none;
        height: auto;
    }

    .fw .fwTit a {
        color: var(--main-color);
        line-height: 40px;
        font-size: 24px;
    }

    .fw-pic img {
        width: 80px;
        height: 80px;
    }

    /* 小banner响应式适配（不隐藏） */
    .xbanner1 {
        padding: 20px 0;
        background-image: none;
    }

    .xbanner2 .w1200 {
        height: auto;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .xbanner2 .zixun {
        width: 100%;
        margin-top: 20px;
    }

    .xbanner2 .bigtxt {
        margin-left: 0;
        margin-top: 20px;
    }

    .xbanner2 p {
        margin-left: 0;
    }
}

/* 非移动端隐藏汉堡按钮 */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    .nav-close {
        display: none !important;
    }
}
/*首页面关于我们开始*/
/* 关于我们开始 */
/* 关于我们模块样式 */
.in_about {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

/* 标题样式 - 两侧带横线 */
.in_about .title {
    color: var(--pink);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* 文字与横线间距 */
}

.in_about .title::before,
.in_about .title::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--pink);
    max-width: 200px;
    /* 限制横线最大宽度 */
}

/* 图片区域样式 */
.in_about .pic {
    float: left;
    width: 45%;
    /* 图文占比调整 */
    overflow: hidden;
}

.in_about .pic img {
    width: 100%;
    height: auto;
    /* 保持图片比例 */
    object-fit: cover;
    /* 图片填充容器 */
}

/* 内容区域样式 */
.in_about .con {
    float: right;
    width: 52%;
    /* 图文占比调整 */
    margin-left: 3%;
    /* 图文间距 */
    color: #6b6b6b;
    font-size: 14px;
    line-height: 30px;
}

.in_about .con p {
    height: 275px;
    text-align: justify;
    overflow: hidden;
    /* 可选：行数限制（超出省略）
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    */
}

/* 查看更多按钮样式 */
.in_about .con .more {
    width: 146px;
    height: 40px;
    line-height: 40px;
    display: block;
    background: var(--pink);
    border-radius: 5px;
    text-align: center;
    margin-top: 25px;
    cursor: pointer;
}

.in_about .con .more a {
    color: var(--white);
    /* 按钮文字白色 */
    display: block;
    width: 100%;
    height: 100%;
}

/* 响应式适配（可选） */
@media (max-width: 768px) {

    .in_about .pic,
    .in_about .con {
        width: 100%;
        margin-left: 0;
    }

    .in_about .pic {
        margin-bottom: 20px;
    }

    .in_about .title::before,
    .in_about .title::after {
        max-width: 100px;
    }
    .xbanner2{
        display: none;
    }
}

/* 关于我们结束 */
/*首页面关于我们结束*/

/* 关于我们开始 */
.submian .subleft {
    width: 250px;
}


.submian .subleft .lefta {
    width: 250px;
    margin-bottom: 20px;
}

.submian .subleft .lefta .title {
    background: #C0AF9F;
    color: #fff;
    height: 96px;
    text-align: center;
}
/* 补充“关于我们”标题内的文字样式 */
.submian .subleft .lefta .title h2 {
    font-size: 28px;
    padding-top: 25px;
    margin-bottom: 5px;
}
.submian .subleft .lefta .title span {
    font-size: 16px;
    opacity: 0.9;
}

.submian .subleft .lefta .comt ul {
    background: #ececec;
    padding: 15px 15px 15px 15px;
    border: 1px solid #ececec;
    border-top: 0;
}
/* 补充“企业文化/理念”的列表样式 */
.submian .subleft .lefta .comt ul li {
    line-height: 40px;
}
.submian .subleft .lefta .comt ul li a {
    display: block;
    padding-left: 20px;
    transition: background 0.2s;
}
.submian .subleft .lefta .comt ul li a:hover {
    background: var(--white);
    color: var(--pink);
}

.submian .subleft .leftnews {
    margin-bottom: 20px;
}

/* 补充“推荐产品/联系我们”的标题样式（与“关于我们”标题风格统一） */
.submian .subleft .leftnews .title_pro {
    background: var(--pink);
    color: var(--white);
    height: 96px;
    text-align: center;
}
.submian .subleft .leftnews .title_pro h2 {
    font-size: 28px;
    padding-top: 25px;
}

.submian .subleft .leftnews .leftprocomt {
    padding-top: 10px;
    border: 1px solid #ddd;
    border-top: 0;
}

.submian .subleft .leftnews .leftprocomt li {
    float: left;
    text-align: center;
    width: 110px;
    margin-left: 10px;
    margin-bottom: 10px; /* 补充图片之间的间距 */
}
/* 补充推荐产品的图片/文字样式 */
.submian .subleft .leftnews .leftprocomt li img {
    width: 100%;
    height: auto;
    display: block; /* 消除图片下方默认空隙 */
}
.submian .subleft .leftnews .leftprocomt li p {
    font-size: 14px;
    margin-top: 5px;
}

.submian .subleft .leftnews .leftcont {
    background: #ececec;
    padding: 10px;
    border-radius: 0 0 3px 3px;
}

.submian .subleft .leftnews .leftcont p {
    color: #666;
    line-height: 30px;
    font-size: 14px;
    display: block;
}

.submian .subright {
    width: 920px;
    padding-bottom: 20px;
    line-height: 28px;
}



.submian .sobtitle {
    height: 30px;
    line-height: 30px;
    padding: 0 0px 10px;
    margin-bottom: 20px;
    color: #666;
    font-size: 18px;
    border-bottom: 1px solid #cccbcb;
    text-align: center;
}

.submian .sobtitle s {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 8px;
    border: 3px solid #C0AF9F;
    vertical-align: middle;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.submian .sobtitle a {
    font-size: 14px;
    color: #666;
}
.aboutlist{
    padding: 10px;
    font-size: 14px;
}
.nybanner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}
.content_css{
    flex: 1 1 45%;
    min-width: 280px;
    float: right;
}
/* 响应式适配 - 平板及以下 */
@media (max-width: 992px) {
    .submian .subleft {
        width: 200px;
    }
    .submian .subright {
        width: calc(100% - 220px);
    }
    .submian .subleft .leftnews .leftprocomt li {
        width: 90px;
    }
}

/* 响应式适配 - 手机端 */
@media (max-width: 768px) {
    .submian .subleft {
        display: none;
    }
    .submian .subright {
        width: 100%;
        float: none;
        padding-bottom: 10px;
        line-height: 24px;
    }
    .submian .sobtitle {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    .submian .sobtitle h3 {
        font-size: 18px;
    }
    .aboutlist {
        padding: 5px;
        font-size: 14px;
        line-height: 26px;
    }
    .submian {
        padding: 10px 0;
    }
    /* 优化移动端文字排版 */
    .aboutlist p {
        margin-bottom: 10px;
    }
}

/* 小屏手机适配 */
@media (max-width: 480px) {
    .nybanner{
        display: none;
    }
    .subleft {
        display: none;
    }
    .submian .sobtitle {
        font-size: 14px;
    }
    .submian .sobtitle h3 {
        font-size: 16px;
    }
    .aboutlist {
        font-size: 13px;
        line-height: 24px;
    }
}
/* 关于我们结束 */

/* 师资团队开始 */
.fwcj {
    width: 100%;
    margin-bottom: 40px;
}

.fwcjTitBg {
    /* 标题栏背景（截图中为白色） */
    background-color: #fff;
}

.fwcjTit {
    display: flex;
    align-items: center;
    height: 46px;
    line-height: 46px;
    position: relative;
}

/* 师资团队标题块（粉色背景） */
.fwcjTit h3 {
    background-color: var(--pink);
    color: var(--white);
    padding: 0 20px;
    font-size: 18px;
    margin-right: 15px;
}

/* 副标题文字 */
.fwcjTit p {
    color: var(--text-gray);
    font-size: 14px;
    flex: 1;
    /* 占据中间空间，将“查看更多”推到右侧 */
    display: flex;
    align-items: center;
}

/* 添加横线伪元素 */
.fwcjTit p::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ccc;
    margin-left: 15px;
    max-width: 100px;
}

/* 查看更多链接 */
.fwcjTit a {
    color: var(--pink);
    font-size: 14px;
}

/* 轮播容器（相对定位，给箭头留空间） */
.fwcj .gd-img {
    position: relative;
    padding: 0 40px;
    margin-top: 20px;
    /* 增加顶部间距，避免和标题重叠 */
}

/* 左右箭头样式（改用CSS字符实现，无需图片） */
.fwcj .gd-img .prev,
.fwcj .gd-img .next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    margin-top: -38px;
    width: 32px;
    height: 76px;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    /* 箭头背景 */
    border: 1px solid #eee;
    /* 增加边框更显眼 */
    border-radius: 4px;
    /* 圆角优化 */
    font-size: 24px;
    /* 箭头大小 */
    color: var(--pink);
    /* 箭头颜色 */
    transition: all 0.3s;
}

/* 箭头hover效果 */
.fwcj .gd-img .prev:hover,
.fwcj .gd-img .next:hover {
    background-color: var(--pink);
    color: var(--white);
}

/* 左箭头字符 */
.fwcj .gd-img .prev::before {
    content: "←";
    /* 左箭头字符 */
}

/* 右箭头字符 */
.fwcj .gd-img .next::before {
    content: "→";
    /* 右箭头字符 */
}

.fwcj .gd-img .prev {
    left: 0;
    /* 调整箭头位置到容器内 */
}

.fwcj .gd-img .next {
    right: 0;
    /* 调整箭头位置到容器内 */
}

/* 轮播内容容器 */
.fwcj .gd-img .bd {
    width: 100%;
    overflow: hidden;
}

/* 轮播列表（flex布局实现横向滚动） */
.fwcj .gd-img .bd ul {
    display: flex;
    transition: transform 0.5s ease;
    /* 轮播动画 */
}

/* 师资卡片样式 */
.fwcj .gd-img li {
    width: 280px;
    overflow: hidden;
    text-align: center;
    margin-right: 26px;
    background: #ececec;
    transition: all .5s;
    flex-shrink: 0;
    /* 防止卡片被压缩 */
}

/* 选中的师资卡片样式（截图中粉色背景） */
.fwcj .gd-img li.active {
    background-color: var(--pink);
}

/* 卡片图片容器 */
.fwcj .gd-img li .img {
    width: 100%;
    height: 200px;
    /* 适配截图中图片比例 */
    overflow: hidden;
}

/* 卡片图片自适应 */
.fwcj .gd-img li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 保持图片比例 */
}

/* 卡片文字样式 */
.fwcj .gd-img li p {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 14px;
    transition: color 0.5s;
}

/* 选中卡片的文字样式（白色） */
.fwcj .gd-img li.active p {
    color: var(--white);
}

/* 最后一个卡片去掉右侧边距 */
.fwcj .gd-img li:last-child {
    margin-right: 0;
}

/* 师资团队结束 */

/* 新闻团队开始 */
.inews {
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.inews1 {
    width: calc(33.333% - 20px);
    /* 使用百分比宽度，减去间距 */
    margin-bottom: 20px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #F5F5F5;
}

.inews .title a {
    color: #666;
}

.inews .newslist {
    width: 100%;
}

.inews .newslist li {
    width: 100%;
    height: 39px;
    line-height: 39px;
    border-bottom: 1px dashed #e1e1e1;
    overflow: hidden;
}

.inews .newslist li a {
    width: 100%;
    display: block;
    color: #666;
}

/* 补充标题样式（粉色标题+下划线） */
.inews .title {
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--pink);
}

.inews .title h3 {
    font-size: 18px;
    color: var(--pink);
    font-weight: 700;
    display: inline-block;
}

.inews .title .more {
    color: var(--pink);
    font-size: 14px;
}

/* 新闻列表时间样式（右侧显示） */
.inews .newslist li .time {
    float: right;
    color: var(--text-gray);
    font-size: 14px;
    margin-left: 10px;
}

/* 新闻标题溢出省略 */
.inews .newslist li {
    font-size: 14px;
}

.inews .newslist li a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .inews1 {
        width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .inews1 {
        width: 100%;
    }
}

/* 新闻团队结束 */

/* 底部开始 */
.footer_main {
    width: 100%;
    padding-bottom: 0px;
    color: rgb(255, 255, 255);
    background: #C0AF9F;
}

.copyright_main {
    line-height: 28px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    text-align: center;
    background: #A88F78;
    padding: 20px 0px;
}

/* 补充清除浮动样式 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}





/* 底部主容器内边距 */
.bottom_main {
    padding: 30px 0;
}

/* 联系方式区域样式 */
.contact {
    width: 100%;
}

.contact h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact .p1 {
    margin-bottom: 8px;
}

.contact .tel {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.contact p {
    margin: 6px 0;
}

/* 底部导航区域样式 */
.bNav {
    width: 60%;
}

.bNav .item {
    float: left;
    margin-right: 60px;
    /* 导航列之间的间距 */
}

.bNav .item dt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
}

.bNav .item dd {
    margin: 8px 0;
}

/* 二维码区域样式 */
.ewm {
    width: 18%;
    text-align: center;
}

.ewm img {
    width: 100px;
    height: 100px;
}

.ewm dd {
    margin-top: 8px;
}

/* 平板端适配（992px以下） */
@media (max-width: 992px) {
    .bNav .item {

        margin-right: 30px;
        /* 缩小导航列间距 */
    }

    .contact {
        text-align: center;
        font-size: 22px;
        /* 微调电话字体 */
    }

    .bNav {
        display: none;
    }
}

/* 移动端适配（768px以下） */
@media (max-width: 768px) {

    /* 堆叠布局，宽度100% */
    .contact,
    .bNav,
    .ewm {
        float: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 25px;
    }

    /* 底部导航项堆叠 */
    .bNav .item {
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
    }

    /* 缩小内边距，适配移动端 */
    .bottom_main {
        padding: 20px 0;
    }

    /* 字体适配 */
    .contact h3,
    .bNav .item dt {
        font-size: 16px;
    }

    .contact .tel {
        font-size: 20px;
    }

    /* 二维码尺寸适配 */
    .ewm img {
        width: 80px;
        height: 80px;
    }

    /* 版权信息换行优化 */
    .copyright_main p {
        line-height: 1.6;
    }
}

/* 底部结束 */

/*产品项目开始*/

.submian .subleft .leftnews {
    margin-bottom: 20px;
}

/* 补充“推荐产品/联系我们”的标题样式（与“关于我们”标题风格统一） */
.submian .subleft .leftnews .title_pro {
    background: var(--pink);
    color: var(--white);
    height: 96px;
    text-align: center;
}
.submian .subleft .leftnews .title_pro h2 {
    font-size: 28px;
    padding-top: 25px;
}

.submian .subleft .leftnews .leftprocomt {
    padding-top: 10px;
    border: 1px solid #ddd;
    border-top: 0;
}

.submian .subleft .leftnews .leftprocomt li {
    float: left;
    text-align: center;
    width: 110px;
    margin-left: 10px;
    margin-bottom: 10px; /* 补充图片之间的间距 */
}
/* 补充推荐产品的图片/文字样式 */
.submian .subleft .leftnews .leftprocomt li img {
    width: 100%;
    height: auto;
    display: block; /* 消除图片下方默认空隙 */
}
.submian .subleft .leftnews .leftprocomt li p {
    font-size: 14px;
    margin-top: 5px;
}

.submian .subleft .leftnews .leftcont {
    background: #ececec;
    padding: 10px;
    border-radius: 0 0 3px 3px;
}

.submian .subleft .leftnews .leftcont p {
    color: #666;
    line-height: 30px;
    font-size: 14px;
    display: block;
}

.submian .subright {
    width: 920px;
    padding-bottom: 20px;
    line-height: 28px;
}



.submian .sobtitle {
    height: 30px;
    line-height: 30px;
    padding: 0 0px 10px;
    margin-bottom: 20px;
    color: #666;
    font-size: 18px;
    border-bottom: 1px solid #cccbcb;
    text-align: center;
}

.submian .sobtitle s {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 8px;
    border: 3px solid #ff5b8f;
    vertical-align: middle;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.submian .sobtitle a {
    font-size: 14px;
    color: #666;
}
.honorlist{
    padding: 10px;
    font-size: 14px;
}
.honorlist ul.list
 {
    float: left;
    width: 100%;
    padding-left: 0px;
}
.list_imgH ul.list li.item
 {
    width: 286px;
    margin-right: 30px;
}

.honorlist ul.list li.item {
    float: left;
    width: 296px;
    margin-bottom: 30px;
    margin-right: 14px;
}
.list_imgH ul.list li.item a
 {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #ececec;
}
.list_imgH ul.list li.item img {
    display: block;
    width: 278px;
    height: 208px;
}
/* 补充服务项目列表样式 */
.aboutlist {
    padding: 10px;
    font-size: 14px;
}
.aboutlist .list {
    float: left;
    width: 100%;
    padding: 0;
}
/* 3列布局，控制每个项目的宽/间距 */
.aboutlist .list .item {
    float: left;
    width: calc((100% - 40px) / 3); /* 3列+左右间距20px */
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: center;
}
/* 每3个项目清除右侧间距 */
.aboutlist .list .item:nth-child(3n) {
    margin-right: 0;
}
/* 项目内链接容器 */
.aboutlist .list .item a {
    display: block;
    width: 100%;
    overflow: hidden;
}
/* 项目图片样式 */
.aboutlist .list .item img {
    display: block;
    width: 100%;
    height: auto; /* 保持图片比例 */
}
/* 标题栏基础样式（浅灰背景） */
.aboutlist .list .item span {
    display: block;
    padding: 12px 0;
    background-color: #ececec;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: -1px; /* 贴合图片边框 */
}
/* 首个项目的标题栏（粉色背景） */
.aboutlist .list  span {
    background-color: var(--pink);
    color: var(--white);
}
/* 为aboutlist添加hover效果（统一颜色） */
.aboutlist .list .item a {
    transition: all 0.3s ease; /* 过渡动画 */
}
.aboutlist .list .item a:hover img {
    transform: scale(1.05); /* 图片轻微放大 */
}
.aboutlist .list .item a:hover span {
    background-color: var(--pink); /* 统一hover背景色 */
    color: var(--white); /* 统一hover文字色 */
}
/* 首个项目hover也统一为粉色（删除原区分样式） */
.aboutlist .list .item:first-child a:hover span {
    background-color: var(--pink); /* 统一为粉色 */
}
/* 响应式适配 - 平板及以下 */
@media (max-width: 992px) {
    .submian .subleft {
        width: 200px;
    }
    .submian .subright {
        width: calc(100% - 220px);
    }
    .submian .subleft .leftnews .leftprocomt li {
        width: 90px;
    }
    /* 平板端调整为2列 */
    .aboutlist .list .item {
        width: calc((100% - 20px) / 2);
    }
    .aboutlist .list .item:nth-child(3n) {
        margin-right: 20px;
    }
    .aboutlist .list .item:nth-child(2n) {
        margin-right: 0;
    }
}

/* 响应式适配 - 手机端 */
@media (max-width: 768px) {
    .submian .subleft {
        display: none;
    }
    .submian .subright {
        width: 100%;
        float: none;
        padding-bottom: 10px;
        line-height: 24px;
    }
    .submian .sobtitle {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    .submian .sobtitle h3 {
        font-size: 18px;
    }
    .honorlist {
        padding: 5px;
        font-size: 14px;
        line-height: 26px;
    }
    .submian {
        padding: 10px 0;
    }
    /* 优化移动端文字排版 */
    .honorlist p {
        margin-bottom: 10px;
    }
    /* ========== 关键修改：移动端服务项目逐个显示 ========== */
    .aboutlist .list .item {
        width: 100%; /* 占满整行 */
        margin-right: 0 !important; /* 强制清除右侧间距 */
        margin-bottom: 15px; /* 调整上下间距 */
        float: none; /* 取消浮动，垂直排列 */
    }
}

/* 小屏手机适配 */
@media (max-width: 480px) {
    .submian .sobtitle {
        font-size: 14px;
    }
    .submian .sobtitle h3 {
        font-size: 16px;
    }
    .honorlist {
        font-size: 13px;
        line-height: 24px;
    }
}
/*产品项目结束*/

/*新闻样式开始*/
        /* 固定宽度容器 */
        .container-1200 {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* 新闻板块容器 */
        .news-section {
            padding: 20px 0;
        }

        /* 右侧内容区 */
        .news-main {
            width: 920px;
            padding-bottom: 20px;
            line-height: 28px;
        }

        /* 标题栏 */
        .news-section__title {
            height: 30px;
            line-height: 30px;
            padding-bottom: 10px;
            margin-bottom: 20px;
            color: #666;
            font-size: 18px;
            border-bottom: 1px solid #cccbcb;
            text-align: center;
        }

        /* 列表容器 */
        .news-list {
            padding: 10px;
            font-size: 14px;
        }

        /* 列表项 */
        .news-list__item {
            border-bottom: 1px dashed #ccc;
            padding: 15px 0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .news-list__item:hover {
            background-color: #f9f9f9;
            padding-left: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        /* 列表项文本区 */
        .news-item__content {
            flex: 1;
        }

        .news-item__title {
            font-size: 16px;
            color: var(--text-color);
            font-weight: 600;
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        .news-list__item:hover .news-item__title {
            color: var(--main-color);
        }

        .news-item__meta {
            font-size: 12px;
            color: var(--text-gray);
            margin-bottom: 6px;
        }

        .news-item__meta span {
            margin-right: 15px;
        }

        .news-item__desc {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 22px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .news-main {
                width: 100%;
                float: none;
                padding-bottom: 10px;
                line-height: 24px;
            }

            .news-section__title {
                font-size: 16px;
                margin-bottom: 15px;
                padding-bottom: 8px;
            }

            .news-list {
                padding: 5px;
                font-size: 14px;
                line-height: 26px;
            }

            .news-section {
                padding: 10px 0;
            }

            .news-list__item {
                padding: 12px 0;
                gap: 10px;
            }

            .news-item__title {
                font-size: 15px;
            }

            .news-item__desc {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .news-section__title {
                font-size: 14px;
            }

            .news-section__title h3 {
                font-size: 16px;
            }

            .news-list {
                font-size: 13px;
                line-height: 24px;
            }
        }
/*新闻样式结束*/
/* 服务列表项样式 */
.submian .subright .aboutlist .service-list .service-item {
    border-bottom: 1px dashed #ccc;
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* 服务列表项链接布局 */
.submian .subright .aboutlist .service-list .service-item a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

/* 服务列表图片容器 */
.submian .subright .aboutlist .service-list .service-item .service-img {
    width: 200px;
    height: 130px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

/* 服务列表图片样式 */
.submian .subright .aboutlist .service-list .service-item .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 服务列表项hover效果 */
.submian .subright .aboutlist .service-list .service-item:hover {
    background-color: #f9f9f9;
    padding-left: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 服务列表图片hover放大 */
.submian .subright .aboutlist .service-list .service-item:hover .service-img img {
    transform: scale(1.05);
}

/* 服务列表文本区域 */
.submian .subright .aboutlist .service-list .service-item .service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* 服务列表标题样式 */
.submian .subright .aboutlist .service-list .service-item .service-text h3 {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
    margin: 0;
}

/* 服务列表标题hover变色 */
.submian .subright .aboutlist .service-list .service-item:hover .service-text h3 {
    color: var(--pink);
}

/* 服务列表标记文本（时间/浏览量） */
.submian .subright .aboutlist .service-list .service-item .service-text .service-mark {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

/* 服务列表标记文本间距 */
.submian .subright .aboutlist .service-list .service-item .service-text .service-mark span {
    margin-right: 15px;
}

/* 服务列表描述文本 */
.submian .subright .aboutlist .service-list .service-item .service-text .service-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 22px;
    margin: 0;
}

/* 移动端适配 - 服务列表图片容器调整 */
@media (max-width: 768px) {
    .submian .subright .aboutlist .service-list .service-item .service-img {
        width: 80px;
        height: 60px;
    }
}

/* 小屏手机适配 - 服务列表图片容器调整 */
@media (max-width: 480px) {
    .submian .subright .aboutlist .service-list .service-item .service-img {
        width: 70px;
        height: 52px;
    }
}

/*分页样式开始*/
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px; }
.pagination > li {
    display: inline; }
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #C0AF9F;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px; }
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd; }
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #C0AF9F;
    border-color: #C0AF9F;
    cursor: default; }
/*分页样式结束*/

/*联系我们开始*/
/* 联系详情模块专属样式 */
.contact-detail {
    margin: 30px 0;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-header {
    background: var(--pink);
    color: var(--white);
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
}

.contact-img {
    flex: 1;
    min-width: 300px;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 25px 20px;
}

.contact-info h3 {
    color: var(--pink);
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.contact-info-list {
    margin-bottom: 20px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.contact-info-list li i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--pink);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
    font-style: normal;
}

.contact-desc {
    background: var(--white);
    line-height: 24px;
    color: var(--text-gray);
}

.contact-map {
    margin-top: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* 移动端联系详情适配（单独分离） */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-img {
        min-width: 100%;
        height: 200px;
    }
    
    .contact-info {
        min-width: 100%;
        padding: 15px;
    }
}

/* 小屏手机联系详情适配（单独分离） */
@media (max-width: 480px) {
    .contact-img {
        height: 150px;
    }
}
/*联系我们结束*/