/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}

/* 基础样式 */
body {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 6px 15px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
}

.btn-orange {
    background-color: #f96800;
    color: #fff;
}

.btn-red {
    background-color: #e60012;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
}

/* 顶部导航 */
.header {
    background-color: #d8082b;
    color: #fff;
}

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

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

.logo img {
    height: 70px;
    margin-right: 8px;
    display: none;
}

.logo img:nth-child(1) {
    display: block;
}

/* 桌面端导航菜单 */
.nav-menu {
    display: flex;
}

.nav-menu li {
    padding: 0 12px;
    height: 96px;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.nav-menu li a {
    padding: 0 5px;
    height: 100%;
    display: flex;
    font-size: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-menu li a span {
    font-size: 13px;
    text-transform: uppercase;
}

.nav-menu li.active,
.nav-menu li:hover {
    background: #ff3b5c;
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #999;
    transition: all 0.3s;
}

.menu-toggle.active span.m_1 {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span.m_2 {
    opacity: 0;
}

.menu-toggle.active span.m_3 {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* 轮播图 */
.bannerSwiper {
    width: 100%;
}

.bannerSwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 咨询模块 */
.consult {
    padding: 40px 0;
}

.indexTitle {
    margin-bottom: 50px;
}

.indexTitle ._cn {
    font-size: 32px;
    color: #010101;
    font-weight: normal;
    line-height: 2;
    position: relative;
    text-align: center;
}

.indexTitle ._cn span {
    font-weight: bold;
    color: #c41826;
}

.indexTitle ._sub {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 16px;
}

.indexTitle ._sub::before,
.indexTitle ._sub::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background-color: #5d5d5d;
    margin: 0 10px;
}

.indexTitle.style2 ._cn {
    color: #fff;
}

.indexTitle ._desc {
    font-size: 16px;
}

.consult-list {
    display: flex;
    flex-flow: row;
    gap: 50px;
}

.consult-item {
    padding-bottom: 20px;
    width: calc((100% - 150px)/4);
    border: 1px solid #c6c6c6;
    text-align: center;
    transition: all 0.3s;
}

.consult-item img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.consult-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.consult-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.consult-item .btn {
    background: transparent;
    border: 1px solid #cf0010;
    color: #cf0010;
}

.consult-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.consult-item:hover .btn {
    background: #cf0010;
    color: #fff;
}

/* 业务领域 */
.business {
    background: url("../images/tm-ikc-bg.webp") center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.business .indexTitle.style2 ._cn {
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-weight: bold;
    position: relative;
}

.business .indexTitle.style2 ._cn::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #c41826;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 0;
}

.business-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.business-item {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
}

.business-icon {
    width: 50px;
    margin-bottom: 15px;
}

.business-icon>img {
    width: 100%;
}

.business-item h3 {
    font-size: 22px;
    font-weight: bold;
}

.business-item:hover {
    background-color: #c41826;
}

/* 团队风采 */
.team {
    padding: 40px 0;
}

.team-list {
    display: flex;
    flex-flow: row;
    gap: 30px;
}

.team-item {
    width: calc((100% - 90px)/4);
    background-color: #f5f5f5;
    border: 1px solid #dedede;
}

.team-item img {
    width: 100%;
    height: 276px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-item .team-info {}

.team-item h3 {
    padding: 0 15px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.team-item p {
    padding: 0 15px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 24px;
    height: 48px;
}

.team-btn-group {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.team-btn-group>a {
    padding: 8px 10px;
    font-size: 18px;
    text-align: center;
    flex: 1;
    border-radius: 0;
}

/* 案例分享 */
.case {
    background: url(../images/back_img.webp)no-repeat center/cover;
    padding: 40px 0;
}

.case-list {}

.case-item {}

.case-item img {
    width: 100%;
    height: 252px;
    object-fit: cover;
    margin-bottom: 10px;
}

.case-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.case-item p {
    font-size: 14px;
    color: #fff;
}

/* 新闻资讯+在线咨询 */
.news-contact {
    padding: 50px 0;
    background-color: #ececec;
    position: relative;
    overflow: hidden;
}

.news-contact .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 左侧新闻资讯区域 */
.news-section {
    flex: 1;
    min-width: 300px;
    /* 移动端最小宽度 */
}

/* 新闻标题样式 */
.news-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: #000;
}

.news-title span:first-child {
    color: #d92121;
    /* 新闻红色 */
}

.news-title span:last-child {
    color: #666;
    font-size: 18px;
    margin-left: 10px;
    text-transform: uppercase;
}

/* 新闻列表样式 */
.news-list {
    list-style: none;
}

.news-item {
    margin-bottom: 25px;
}

.news-item h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* 右侧咨询表单区域 */
.consult-form-section {
    flex: 0 0 400px;
    /* 桌面端固定宽度 */
    min-width: 300px;
    /* 移动端最小宽度 */
    background-color: #d92121;
    padding: 25px;
    color: #fff;
}

/* 表单标题 */
.form-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-subtitle {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* 表单输入框样式 */
.consult-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background-color: #e64343;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

/* 输入框占位符样式 */
.form-input::placeholder {
    color: #fff;
    opacity: 0.8;
}

/* 文本域样式 */
.form-input.textarea {
    height: 120px;
    resize: none;
    /* 禁止调整大小 */
}

/* 提交按钮 */
.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #ff9933;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #ff8800;
}

/* 隐私提示 */
.privacy-tip {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* 响应式适配 - 移动端 */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        /* 纵向排列 */
    }

    .news-title {
        font-size: 2rem;
    }

    .consult-form-section {
        flex: 1;
        /* 占满宽度 */
    }
}

/* 服务流程 */
.process {
    background: url("../images/tm-ikc-bg.webp") center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.process .indexTitle.style2 ._cn {
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-weight: bold;
    position: relative;
}

.process .indexTitle.style2 ._cn::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 0;
}

.process-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.process-step>img {
    width: 100%;
}

.process-item .btn {
    width: 60%;
    padding: 8px 30px;
    border: 1px solid #fff;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s;
}

.process-item:hover .btn {
    background-color: #f57620;
    border-color: #f57620;
}


/* 关于我们 */
.about {
    padding: 40px 0;
    text-align: center;
}

.about .indexTitle ._cn {
    margin-bottom: 20px;
    padding-bottom: 5px;
    position: relative;
}

.about .indexTitle ._cn::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #c41826;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 0;
}

.about-title {
    font-size: 24px;
    color: #e60012;
    margin-bottom: 30px;
    position: relative;
}

.about-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #e60012;
    margin: 10px auto;
}

.about-content {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.about-images {
    height: 210px;
}

.about-images li {
    margin-right: 10px;
}

.about-images div {
    height: 100%;
}

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

/* page 单页 */
._subNavBox {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    background-color: #f9f9f9;
}

._subNavBox .nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* 标签切换 */
._subNavBox .nav-tabs {
    display: flex;
    align-items: center;
}

._subNavBox .nav-tab {
    padding: 5px 15px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
}
._subNavBox a+a::before{
    content: "";
    display: block;
    width: 1px;
    height: 60%;
    background-color: #ccc;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

._subNavBox .nav-tab:last-child {
    border-right: none;
}

._subNavBox .nav-tab.active {
    color: #e60012;
    font-weight: bold;
}

._subNavBox .nav-tab:hover {
    color: #e60012;
}

/* 搜索框 */
._subNavBox .search-box {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 500px;
}

._subNavBox .search-input {
    flex: 1;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

._subNavBox .search-btn {
    height: 36px;
    width: 60px;
    background-color: #e60012;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

._subNavBox .search-btn:hover {
    opacity: 0.9;
}

/* 核心内容区 */
._pageContent {
    padding: 30px 0;
}

/* 内容模块通用样式 */
.content-module {
    margin-bottom: 30px;
}

.module-title {
    font-size: 16px;
    color: #e60012;
    margin-bottom: 10px;
    font-weight: bold;
}

.module-desc,
.module-list {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.module-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}
/* 证书列表容器 */
.cert-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-items: center;
}

/* 单个证书项 */
.cert-item {
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 证书图片 */
.cert-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 12px;
    border: 1px solid #eee;
}

/* 证书名称 */
.cert-name {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* 预览弹窗 */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.preview-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.preview-img {
    max-width: 100%;
    max-height: 90vh;
    border: 5px solid #fff;
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 40px;
    height: 40px;
    background-color: #e60012;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    border: none;
    outline: none;
}
/* 列表项通用样式 */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    background-color: #f4f4f4;
    padding: 20px;
    border-bottom: 2px solid #e60012;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.content-item:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* 图片容器 */
.item-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 2px;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.content-item:hover .item-img img {
    transform: scale(1.02);
}

/* 文字内容区 */
.item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0;
}

.item-header {
    margin-bottom: 10px;
}

.item-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.item-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 20px;
}

.item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 按钮样式 */
.item-btn-wrap {
    display: flex;
    justify-content: flex-end;
}

.detail-btn {
    display: inline-block;
    padding: 6px 20px;
    background-color: #e60012;
    color: #fff;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.detail-btn:hover {
    background-color: #c00010;
}
._newsDetail ._title{
    font-size: 26px;
    font-weight: bold;
    color: #000;
    line-height: 2;
    text-align: center;
}
._newsDetail ._info{
    text-align: center;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #666;
}
._newsContent{
    line-height: 35px;
    font-size: 16px;
    margin-top: 30px;
}
._newsContent img{
    width: 85%;
    height: auto!important;
    margin: 15px auto 15px;
    display: block;
}
/* 团队列表 - Grid布局 */
.page-team-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

/* 单个团队成员项 */
.page-team-list .p-team-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

/* 圆形头像 */
.page-team-list .p-team-item .avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0; /* 防止头像压缩 */
    border: 1px solid #eee;
}

.page-team-list .p-team-item .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 成员信息区 */
.page-team-list .p-team-item .member-info {
    flex: 1;
}

.page-team-list .p-team-item .member-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.page-team-list .p-team-item .member-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 15px 0;
}

/* 按钮组 */
.page-team-list .p-team-item .btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-team-list .p-team-item .detail-btn {
    padding: 6px 20px;
    border: 1px solid #e60012;
    color: #e60012;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.page-team-list .p-team-item .detail-btn:hover {
    background-color: #fef0f1;
}

.page-team-list .p-team-item .consult-btn {
    padding: 6px 20px;
    border: none;
    background-color: #e60012;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.page-team-list .p-team-item .consult-btn:hover {
    background-color: #c00010;
}
/* 销售团队主体内容区 */
.page-team-detail {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: flex-start;
}

/* 头像区域 */
.avatar-wrap {
    width: 100%;
    overflow: hidden;
    border: 1px solid #eee;
}

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

/* 个人信息区域 */
.info-wrap {
    width: 100%;
}

.name-title {
    font-size: 24px;
    color: #e60012;
    padding-bottom: 10px;
    border-bottom: 2px solid #e60012;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 立即咨询按钮 */
.consult-btn {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #f39800;
    border-radius: 20px;
    color: #f39800;
    font-size: 14px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.consult-btn:hover {
    background-color: #f39800;
    color: #fff;
}

.info-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}
/* 案例分享 */
.page-case-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
    justify-items: flex-start;
}
.p-case-item{
    width: 100%;
    max-width: 380px;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.p-case-item .case-img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.p-case-item .case-info{
    padding: 15px;
}
.p-case-item .cName{
    font-size: 18px;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}
.p-case-item .sPrice{
    font-size: 15px;
}
.p-case-item .sPrice span{
    font-size: 20px;
    color: #e83d3d;
}
.p-case-item .mPrice{
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}
.p-case-item .sDate{
    font-size: 15px;
    color: #6d6d6d;
}
.p-case-item:hover{
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 底部 */
.footer {
    background-color: #000f31;
    color: #fff;
    padding: 50px 0;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    width: 160px;
}

.footer-logo img {
    width: 100%;
}

.footer-info {
    flex: 1;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-nav a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-contact {
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.6;
}

.footer-copyright {
    color: #999;
}

.footer-qrcode {
    width: 130px;
}

.footer-qrcode img {
    width: 100%
}

.yb_conct {
    position: fixed;
    z-index: 9999999;
    top: 35%;
    right: -127px;
    cursor: pointer;
    transition: all .3s ease;
}

.yb_bar ul li {
    width: 180px;
    height: 53px;
    font: 16px/53px 'Microsoft YaHei';
    color: #fff;
    text-indent: 54px;
    margin-bottom: 3px;
    border-radius: 3px;
    transition: all .5s ease;
    overflow: hidden;
}

.yb_bar .yb_top {
    background: #d8082b url(../images/fixCont.png) no-repeat 0 0;
}

.yb_bar .yb_phone {
    background: #d8082b url(../images/fixCont.png) no-repeat 0 -57px;
}

.yb_bar .yb_QQ {
    text-indent: 0;
    background: #d8082b url(../images/fixCont.png) no-repeat 0 -113px;
}

.yb_bar .yb_ercode {
    /*height:200px;*/
    padding-bottom: 15px;
    background: #d8082b url(../images/fixCont.png) no-repeat 0 -169px;
}

.hd_qr {
    /*padding: 0 29px 25px 29px;*/
    text-align: center;
    width: 140px;
    margin: 15px 0 10px 20px;
}

.yb_QQ a {
    display: block;
    text-indent: 54px;
    width: 100%;
    height: 100%;
    color: #fff;
}

#mtool {
    display: none;
}
.load-more{
    text-align: center;
    margin-top: 30px;
}
.load-more .layui-btn{
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
    font-size: 14px;
    color: #666;
    border: 1px solid #666;
}
.layui-btn-disabled, .layui-btn-disabled:active, .layui-btn-disabled:hover{
    border-color: #eee !important;
    background-color: #fbfbfb !important;
    color: #d2d2d2 !important;
    cursor: not-allowed !important;
    opacity: 1;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .cert-list {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .cert-img {
        height: 250px;
    }
    .content-item {
        grid-template-columns: 250px 1fr;
        gap: 15px;
    }

    .item-img {
        height: 180px;
    }

    .item-title {
        font-size: 16px;
    }
    ._newsDetail ._title{
        font-size: 24px;
    }
    ._newsDetail ._info{
        font-size: 13px;
    }
    ._newsContent img{
        width: 100%;
        height: auto!important;
        margin: 15px auto 15px;
        display: block;
    }
    ._newsContent{
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.8;
        color: #666;
    }
    .team-list {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .avatar {
        width: 160px;
        height: 160px;
    }
}
@media (max-width: 768px) {
    .header {
        padding: 7.5px 0;
        background-color: #fff;
        border-bottom: 1px solid #ddd;
    }

    .logo img {
        height: 40px;
    }

    .logo img:nth-child(1) {
        display: none;
    }

    .logo img:nth-child(2) {
        display: block;
    }

    .container {
        max-width: unset;
        padding: 0 15px;
    }

    .nav {
        flex-flow: row wrap;
    }

    /* 导航菜单 */
    .nav-menu {
        display: none;
        width: 100%;
        /* position: absolute;
        top: 55px;
        left: 0;
        right: 0; */
        background-color: #fff;
        flex-direction: column;
        padding: 10px 5px;
        z-index: 999;
    }

    .nav-menu li {
        padding: 0;
        height: auto;
    }

    .nav-menu li a {
        padding: 6px 0;
        color: #333;
    }

    .nav-menu li a span {
        display: none;
    }

    .nav-menu li.active,
    .nav-menu li:hover {
        background-color: transparent;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* 轮播图高度 */
    .bannerSwiper {
        height: 250px;
    }

    .bannerSwiper .swiper-slide {
        height: 100%;
    }

    .indexTitle {
        margin-bottom: 30px;
    }

    .indexTitle ._cn {
        font-size: 24px;
    }

    .indexTitle ._sub {
        font-size: 14px;
    }

    .indexTitle ._sub::before,
    .indexTitle ._sub::after {
        width: 30px;
    }

    .consult-list {
        flex-flow: row wrap;
        gap: 20px;
    }

    .consult-item {
        width: calc((100% - 20px)/2);
    }

    .consult-item h3 {
        font-size: 18px;
    }

    .business {
        padding: 30px 0;
    }

    .business-list {
        gap: 0;
    }

    .business-item {
        padding: 10px 30px;
    }

    .business-item h3 {
        font-size: 18px;
    }

    .team {
        padding: 20px 0;
    }

    .team-list {
        flex-flow: row wrap;
        gap: 20px;
    }

    .team-item {
        width: calc((100% - 20px)/2);
    }

    .team-item img {
        height: 212px;
    }

    .team-item h3 {
        font-size: 18px;
    }

    .team-item p {
        font-size: 13px;
    }

    .team-btn-group>a {
        font-size: 15px;
    }

    .case-item img {
        height: 208px;
    }

    .case-item p {
        font-size: 13px;
    }

    .news-contact {
        padding: 30px 0;
    }

    /* 服务流程 */
    .process {
        padding: 30px 0;
    }

    .process-list {
        gap: 20px;
    }

    .process-item {
        width: 100px;
        margin-bottom: 20px;
    }

    .process-item .btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* 导航栏换行 */
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-tabs {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-box {
        width: 100%;
        max-width: 100%;
    }

    /* 调整字体大小 */
    .nav-tab {
        font-size: 14px;
        padding: 5px 10px;
    }

    .module-title {
        font-size: 15px;
    }

    .module-desc,
    .module-list {
        font-size: 13px;
    }
    .cert-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .cert-item {
        padding: 10px;
    }

    .cert-img {
        height: 220px;
    }

    .cert-name {
        font-size: 14px;
    }

    .close-btn {
        top: -20px;
        right: -20px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .content-item {
        grid-template-columns: 1fr; /* 小屏纵向排版 */
        gap: 15px;
    }

    .item-img {
        height: 220px;
    }

    .item-content {
        gap: 10px;
    }

    .item-meta {
        flex-direction: column;
        gap: 5px;
    }

    .item-btn-wrap {
        justify-content: flex-start;
    }
    /* 小屏切换为1列 */
    .page-team-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* 小屏头像和文字纵向排版 */
    .page-team-list .p-team-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .page-team-list .p-team-item .avatar {
        width: 150px;
        height: 150px;
    }

    .page-team-list .p-team-item .btn-group {
        justify-content: center;
    }
    .page-team-detail {
        grid-template-columns: 1fr; /* 小屏纵向排版 */
        gap: 20px;
        margin: 20px auto;
    }

    .name-title {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .consult-btn {
        align-self: flex-start;
    }

    .info-content {
        font-size: 14px;
    }

    /* 顶部搜索框适配 */
    ._subNavBox {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
        max-width: 100%;
    }

    .footer {
        padding: 20px 0 76px;
        font-size: 13px;
    }

    .footer-content {
        flex-flow: column;
    }

    .footer-logo {
        display: none;
    }

    .footer-nav {
        display: none;
    }

    .footer-contact {
        line-height: 1.8;
    }

    .footer-qrcode {
        display: none;
    }

    .yb_conct {
        top: auto;
        bottom: 15%;
    }

    .yb_bar .yb_phone,
    .yb_bar .yb_QQ {
        display: none;
    }

    #mtool {
        /*overflow:hidden;*/
        height: 56px;
        background: #c4031b;
        position: fixed;
        width: 100%;
        bottom: 0px;
        display: block;
        z-index: 5555;
    }

    #mtool li {
        width: 25%;
        float: left;
        text-align: center
    }

    #mtool .is-x a,
    #mtool a.it {
        display: block;
        height: 3em;
        line-height: 2em;
        padding-top: 28px;
        background: url(../images/toolico.png) center 8px no-repeat;
        color: #FFF;
        font-weight: bold;
    }

    #mtool li#tooltel {}

    #mtool li#toolonline a {
        background-position: center -122px;
    }

    #mtool li#toolmap a {
        background-position: center -252px;
    }

    #mtool li#toolshare a {
        background-position: center -382px;
    }
}

@media (max-width: 480px) {
    /* 轮播图高度 */
    .bannerSwiper {
        height: 200px;
    }

    /* 按钮字体 */
    .btn {
        font-size: 11px;
        padding: 4px 10px;
    }
    ._subNavBox {
        padding: 10px 0;
    }

    .nav-tab {
        font-size: 13px;
        padding: 5px 8px;
    }

    .search-input {
        height: 32px;
        font-size: 13px;
    }

    .search-btn {
        height: 32px;
        width: 50px;
        font-size: 13px;
    }

    ._pageContent {
        padding: 20px 0;
    }

    .content-module {
        margin-bottom: 20px;
    }
    .cert-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-img {
        height: 200px;
    }

    .preview-modal {
        padding: 10px;
    }
    .item-img {
        height: 180px;
    }

    .item-title {
        font-size: 15px;
    }

    .item-desc {
        font-size: 13px;
    }

    .detail-btn {
        padding: 5px 15px;
        font-size: 13px;
    }
    .avatar {
        width: 120px;
        height: 120px;
    }

    .member-name {
        font-size: 16px;
    }

    .member-desc {
        font-size: 13px;
    }

    .detail-btn, .consult-btn {
        padding: 5px 15px;
        font-size: 13px;
    }
    .consult-btn {
        padding: 5px 15px;
        font-size: 13px;
    }
}