/* 全局基础规范 1900px 标准 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans SC", "思源黑体", sans-serif;
}
body {
    color: #333;
    background: #fff;
    line-height: 1.6;
}
.wrap-full {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    overflow: hidden;
}
.container {
    width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
/* 色彩变量统一管理 */
:root {
    --main-blue: #0F2942;
    --orange: #FF7822;
    --light-blue: #2068D8;
    --gray-bg: #E8EDF2;
    --text-white: #ffffff;
    --text-gray: #333333;
    --light-gray: #cccccc;
    --split-line: #4A6488;
    --shadow: 0 4px 16px rgba(0, 20, 60, 0.2);
}
/* 通用组件 */
.btn-orange {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-orange:hover {
    background: #E66A1E;
}
.btn-line {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-line:hover {
    background: rgba(255,255,255,0.2);
}
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 40px 30px;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-6px);
}
.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: var(--main-blue);
}
.section-title.white {
    color: #fff;
}

/* 导航栏 */
header.nav-bar {
    width: 100%;
    background: var(--main-blue);
    height: 90px;
    position: sticky;
    top: 0;
    z-index: 999;
}
.nav-inner {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    color: #fff;
    background: url(/public/images/logo.png) left center no-repeat;
    background-size: 90px auto;
    padding-left:86px;

}
.logo h1 {
    font-size: 24px;
    font-weight: bold;
    margin-left: 12px;
}
.logo span {
    font-size: 14px;
    opacity: 0.8;
    display: block;
}
.d-menu{
    height: 90px;
    line-height: 90px;
    text-align: center;
    color: #fff;
    /*width: 90px;*/
}
.wap-tool{
    display: none;
    height: 90px;
    line-height: 90px;
}
.nav-menu {
    display: flex;
    gap: 60px;
}
.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.nav-menu a:hover {
    color: var(--orange);
}
.nav-menu a.active {
    color: var(--orange);
}
.menu-height{
    height: auto !important;
}

/* 2.Banner首屏 */
section.banner {
    width: 100%;
    height: 860px;
    background: linear-gradient(rgba(15, 41, 66, 0.75), rgba(15, 41, 66, 0.75)), url("https://picsum.photos/id/1031/1900/860") center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}
.banner-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}
.banner-content h3 {
    font-size: 23px;
    margin-bottom: 16px;
    opacity: 0.9;
}
.banner-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.85;
}
.banner-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}
/* 3.企业定位板块 */
section.vision {
    padding: 120px 0;
    background: #fff;
}
.vision-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.vision-card h4 {
    font-size: 24px;
    color: var(--main-blue);
    margin-bottom: 16px;
}
.vision-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}
/* 4.一平台六支柱业务体系 */
section.business {
    padding: 120px 0;
    background: var(--gray-bg);
}
.business-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}
.business-left {
    width: 520px;
    max-width: 100%;
}
.business-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.business-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.biz-item {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.biz-item h5 {
    font-size: 18px;
    color: var(--main-blue);
    margin-bottom: 8px;
}
.biz-item p {
    font-size: 13px;
    color: #555;
}

/* 5.智能建造劳务班组 */
section.team {
    padding: 120px 0;
    background: #fff;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.team-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.team-card-text {
    background: #123372;
    color: #fff;
    padding: 20px;
}
.team-card-text h5 {
    font-size: 20px;
    margin-bottom: 8px;
}
.team-card-text p {
    font-size: 14px;
    opacity: 0.9;
}
/* 6.数据成果板块 */
section.data {
    padding: 120px 0;
    background: var(--main-blue);
}
.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.data-card {
    text-align: center;
    color: #fff;
}
.data-num {
    font-size: 52px;
    font-weight: bold;
    color: var(--orange);
    margin-bottom: 10px;
}
.data-desc {
    font-size: 16px;
    opacity: 0.85;
}


/* 7.合作伙伴Logo墙 */
section.partner {
    padding: 80px 0;
    background: var(--gray-bg);
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: center;
}
.partner-logo {
    width: 160px;
    height: 80px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-blue);
    font-weight: bold;
}
.partner-logo img{width:100%;height: auto}

/*新入驻班组*/
.module-wrap {
    background-color: #f2f5f9;
    padding: 60px 10px;
}
.module-wrap .container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: auto;
}

/* 筛选栏 */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    align-items: center;
}
.filter-item {
    display: flex;
    align-items: center;
    gap:8px;
}
.filter-item label{
    color:#333;
    font-size:14px;
}
.filter-item input, .filter-item select{
    border:1px solid #d0d7e3;
    padding:8px 12px;
    border-radius:4px;
    width:160px;
    font-size:14px;
}
.btn-orange{
    background:#ff7823;
    color:#fff;
    border:none;
    padding:9px 22px;
    border-radius:4px;
    cursor:pointer;
}
.sub-title{
    color: #a0a0a0;
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
}
/* 看板表格 */
.table-box{
    background:#fff;
    border-radius:8px;
    overflow:auto;
    max-height: 500px;
    min-width: 1000px;
}
.team-table{
    width:100%;
    border-collapse: collapse;
}
.team-table th{
    background:#0f3057;
    color:#fff;
    text-align:left;
    padding:14px 16px;
    font-weight:500;
    font-size:14px;
}
.team-table td{
    padding:14px 16px;
    border-bottom:1px solid #eee;
    font-size:14px;
    color:#333;
}
.team-table tr:hover{
    background:#f7f9fc;
}


/* 8.合作咨询表单 */
section.contact-form {
    padding: 120px 0;
    background: linear-gradient(rgba(15,41,66,0.9),rgba(15,41,66,0.9)), url("https://picsum.photos/id/1048/1900/600") center no-repeat;
    background-size: cover;
}
.form-wrap {
    display: flex;
    gap: 80px;
    align-items: center;
}
.form-left {
    width: 600px;
    color: #fff;
}
.form-left h4 {
    font-size: 32px;
    margin-bottom: 20px;
}
.form-left p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.8;
}
.form-right {
    flex: 1;
}
.form-item {
    margin-bottom: 20px;
}
.form-item input, .form-item textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
}

.mt10 + .layui-unselect{
    margin-top: 10px;
}

/* ========== 企业动态列表页专属样式 ========== */
.news-list-wrap {
    padding: 90px 0;
    background: #f8f9fa;
}
/* 页面左右布局：左侧新闻列表，右侧侧边栏 */
.news-layout {
    display: flex;
    gap: 50px;
}
.news-main {
    flex: 1;
    max-width: 1000px;
}
.news-side {
    width: 340px;
}
/* 新闻卡片列表 */
.news-card-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 35px;
}
.news-card-img {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
}
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-card-text {
    padding: 26px 30px;
    flex: 1;
}
.news-card-date {
    font-size: 14px;
    color: var(--orange);
    margin-bottom: 10px;
}
.news-card-title a {
    font-size: 22px;
    color: var(--main-blue);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}
.news-card-title a:hover {
    color: var(--orange);
}
.news-card-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 侧边栏热门资讯 */
.side-card {
    padding: 30px;
    margin-bottom: 35px;
}
.side-title {
    font-size: 22px;
    color: var(--main-blue);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--orange);
    margin-bottom: 24px;
}
.side-news li {
    list-style: none;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}
.side-news li:last-child {
    border-bottom: none;
}
.side-news a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.side-news a:hover {
    color: var(--orange);
}
.side-news .time {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}
/* 移动端适配 */
@media (max-width:768px) {
    .news-layout {
        flex-direction: column;
    }
    .news-side {
        width: 100%;
    }
    .news-card-item {
        flex-direction: column;
    }
    .news-card-img {
        width: 100%;
        height: 220px;
    }
}
/* 内页顶部横幅 */
.sub-banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(15, 41, 66, 0.75), rgba(15, 41, 66, 0.75)), url("/public/images/banner_news.jpg") center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.sub-banner h2 {
    font-size: 35px;
    margin-bottom: 12px;
}
.sub-banner p {
    font-size: 16px;
    opacity: 0.85;
}

/* ========== 企业动态详情页独有样式 ========== */
.news-detail-wrap {
    padding: 100px 0;
}
.news-detail-card {
    padding: 60px;
}
/* 新闻头部信息 */
.news-head {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.news-title {
    font-size: 34px;
    color: var(--main-blue);
    line-height: 1.4;
    margin-bottom: 20px;
}
.news-meta {
    display: flex;
    gap: 40px;
    font-size: 15px;
    color: #666;
}
.news-meta span {
    display: flex;
    align-items: center;
}
.news-meta span i {
    color: var(--orange);
    margin-right: 8px;
}

/* 新闻正文 */
.news-content {
    font-size: 17px;
    line-height: 2;
    color: #444;
}
.news-content p {
    margin-bottom: 22px;
    text-indent: 2em;
}
.news-content h4 {
    font-size: 22px;
    color: var(--main-blue);
    margin: 35px 0 18px;
    padding-left: 12px;
    border-left: 4px solid var(--orange);
}
.news-content img{
    max-width: 100%;
}
.news-img-box {
    margin: 30px 0;
}
.news-img-box img {
    width: 100%;
    border-radius: 8px;
}
.news-img-desc {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}
/* 上下篇切换 */
.news-switch {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}
.switch-item a {
    color: var(--main-blue);
    text-decoration: none;
    font-size: 16px;
}
.switch-item a:hover {
    color: var(--orange);
}

/* ========== 简洁版联系我们页面专属样式 ========== */
.contact-main {
    padding: 90px 0;
}
.contact-wrap {
    display: flex;
    gap: 60px;
}
/* 左侧联系方式区域 */
.contact-left {
    width: 48%;
}
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--main-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-text h4 {
    font-size: 20px;
    color: var(--main-blue);
    margin-bottom: 6px;
}
.contact-text p {
    font-size: 15px;
    color: #555;
}
/* 右侧简易留言表单 */
.contact-right {
    width: 48%;
}
.form-title {
    font-size: 24px;
    color: var(--main-blue);
    margin-bottom: 30px;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-item {
    flex: 1;
}
.form-full {
    width: 100%;
    margin-bottom: 20px;
}
.form-item input,
.form-full input,
.form-full textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}
textarea {
    min-height: 120px;
    resize: none;
}

/**百日筑基**/
.form_summery{
    position: relative;
}
.form_summery:after{
    clear: both;
    content: '';
    display: block;
}
.form_summery .adv-card{
    width: 30%;
    float: left;
    margin: 5px 1.5%;
    min-width: 340px;
}
.form_summery h4{
    text-align: left;
    height: 30px;
}
.form_summery p{
    text-align: left;
    height: 325px;
    line-height: 25px;
}
.form-con-info{
    text-align: left !important;
}
.form-con-info .line{
    text-indent: 2em;
}
/* 移动端适配 */
@media (max-width:768px) {
    .form_summery .adv-card {
        width: 98%;
    }
    .form_summery .adv-card p{
        font-size: 15px;
    }

}
/* 底部地图简约模块 */
.map-box {
    margin-top: 70px;
}
.map-box iframe {
    width: 100%;
    height: 360px;
    border-radius: 8px;
    border: none;
    box-shadow: var(--shadow);
}
/* 移动端适配 */
@media (max-width:768px) {
    .contact-wrap {
        flex-direction: column;
    }
    .contact-left, .contact-right {
        width: 100%;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ========== 关于我们页面专属样式 ========== */
/* 公司介绍 */
.company-intro {
    padding: 90px 0;
}
.intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-text h3 {
    font-size: 28px;
    color: var(--main-blue);
    margin-bottom: 20px;
}
.intro-text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
    text-align: left;
    text-indent: 30px;
}
.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
/* 公司优势 */
.company-advantages {
    padding: 90px 0;
    background: var(--gray-bg);
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.advantage-card {
    padding: 35px;
    text-align: center;
}
.advantage-card h4 {
    font-size: 22px;
    color: var(--main-blue);
    margin-bottom: 15px;
}
.advantage-card p {
    font-size: 15px;
    color: #666;
}
/* 公司历程 */
.company-history {
    padding: 90px 0;
}
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--light-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--light-blue);
    border: 4px solid var(--main-blue);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
.left {
    left: 0;
}
.right {
    left: 50%;
}
.left::after {
    right: -12px;
}
.right::after {
    left: -13px;
}
.timeline-content {
    padding: 25px 30px;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.timeline-content h4 {
    color: var(--main-blue);
    font-size: 19px;
    margin-bottom: 10px;
}
.timeline-content p {
    color: #666;
    font-size: 15px;
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    .intro-row {
        grid-template-columns: 1fr;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item::after {
        left: 18px;
    }
    .left::after, .right::after {
        left: 18px;
    }
    .right {
        left: 0;
    }
}

/* ========== 智能班组页面专属样式 ========== */
/* 班组介绍板块 */
.team-intro {
    padding: 90px 0;
    background: var(--gray-bg);
}
.intro-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

/* 服务承诺 */
.promise-box {
    padding: 80px 0;
    background: var(--main-blue);
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    color: #fff;
}
.promise-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* 移动端适配 */
@media (max-width:768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .promise-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-row-two {
        flex-direction: column;
        gap: 0;
    }
}


/* ========== 智能班组页面专属样式 ========== */
/* 班组介绍板块 */
.team-intro {
    padding: 90px 0;
    background: var(--gray-bg);
}
.intro-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

.team-card-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
}
.team-card-text p {
    font-size: 15px;
    opacity: 0.9;
}
/* 服务承诺 */
.promise-box {
    padding: 80px 0;
    background: var(--main-blue);
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    color: #fff;
}
.promise-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
}
.join-form-area .layui-form-label{
    padding: 9px 0px;
    text-align: right;
}
.join-form-area .txt{
    width: 230px;
}

/* 移动端适配 */
@media (max-width:768px) {
    .promise-grid {
        grid-template-columns: 1fr 1fr;
    }
    .join-form-area .txt{
        width:100%;
    }
}

/* ========== 接单表单页面专属样式 ========== */
/* 平台接单介绍区域 */
.receive-intro {
    padding: 90px 0;
    background: var(--gray-bg);
}
.intro-desc {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}
/* 合作优势板块 */
.advantage-area {
    padding: 80px 0;
}
.adv-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 35px;
}
.adv-card {
    padding: 30px;
    text-align: center;
}
.adv-card h4 {
    font-size: 24px;
    color: var(--main-blue);
    margin: 12px 0;
}
.adv-card p {
    font-size: 15px;
    color: #555;
}
/* 移动端适配 */
@media (max-width:768px) {

    .adv-card p{
        font-size: 14px;
        height: 365px;
    }
}
/* 表单主体区域 */
.form-main {
    padding: 90px 0;
    background: var(--gray-bg);
}
.form-main .form-wrap {
    max-width: 1050px;
    margin: 0 auto;
    padding: 55px;
    display: block;
}
.form-main .form-two-row {
    display: flex;
    gap: 26px;
    margin-bottom: 26px;
}
.form-main .form-item {
    flex: 1;
}
.form-main .form-full {
    width: 100%;
    margin-bottom: 26px;
}
.form-item input,
.form-full input,
.form-full select,
.form-full textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
}
.form-main textarea {
    min-height: 140px;
    resize: none;
}
.form-main .submit-box {
    margin-top: 10px;
}
.form-main .submit-box .btn-orange {
    width: 100%;
    font-size: 17px;
    padding: 15px;
}
.form-main .layui-form-select .layui-input{
    height: 47px;
}
.form-main xm-select{
    height: 47px;
    border-radius: 7px;
}
/* 移动端适配 */
@media (max-width:768px) {
    .adv-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-main .form-two-row {
        flex-direction: column;
        gap: 0;
    }
}
/* ========== 项目部服务表单页面专属样式 ========== */
/* 服务介绍板块 */
.service-desc-area {
    padding: 90px 0;
    background: var(--gray-bg);
}
.desc-text {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}
/* 服务板块卡片 */
.service-item-area {
    padding: 80px 0;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
}
.service-card {
    padding: 30px 24px;
    text-align: center;
}
.service-card h4 {
    font-size: 21px;
    color: var(--main-blue);
    margin: 12px 0;
}
.service-card p {
    font-size: 15px;
    color: #555;
}


/* 分页模块 */


.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px;}
.pagination > li{display:inline;}
.pagination > li.active span{background: var(--orange);color:#fff;}
.pagination > li.disabled span{color:#ccc;}
.pagination > li > a,.pagination > li > span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:var(--orange);text-decoration:none;background-color:#fff;border:1px solid #ddd;}
.pagination > li:first-child > a,.pagination > li:first-child > span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px;}
.pagination > li:last-child > a,.pagination > li:last-child > span{border-top-right-radius:4px;border-bottom-right-radius:4px;}
.navigation{display:block;margin-top:10px;}

/* 移动端适配调整 */
@media (max-width:768px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-row-double {
        flex-direction: column;
        gap: 0;
    }
    .checkbox-group {
        flex-direction: column;
        gap:10px;
    }
}

/*百日筑基*/
.form_type_summery .content{background:#f4f7fb;border:1px solid #d8e1ee;padding:16px;border-radius:6px;margin-bottom:12px;}
.form_type_summery .content .title{color:#0f2440;margin-bottom:8px;}
.form_type_summery .content .info{font-size:13px;color:#444;}
.layui-form-checkbox span{width:190px;}
.red{color: #f00}
.form-item-title{line-height: 40px; width: 100%;}
.form-item-title.btm{border-bottom: 1px solid #ccc;margin-bottom: 10px;padding-left:5px; font-weight: bold;background: #fbf7f7;position: relative}
.form-item-title.btm:before{
    position: absolute;
    left:0px;
    top:0px;
    content:'';
    height:100%;
    width: 2px;
    background: #2787f8;
}
.form-file{
    width: 100%; max-width: 1300px; font-weight: bold; margin:0px auto 40px; padding:32px 100px 32px 40px; background-color:#f2f5f8; border-radius:8px; display:flex; align-items:center; justify-content:space-between; box-sizing:border-box;
}
.form-file .title{
    display:flex; align-items:center; gap:12px;
}
.form-file .txt{
    font-size:30px; color:#1a365d; font-weight:bold;
}
.form-file .show{
    padding:10px 24px; background:#165DFF; color:#fff; text-decoration:none; border-radius:6px; font-size:15px;
}
/* 移动端适配调整 */
@media (max-width:768px) {
    .form-file {
        padding: 32px 20px;
        display: block;
    }
    .form-file .txt{
        font-size: 26px;
    }
    .form-file .show{
        text-align: center;
        margin: 20px auto;
        width: 100%;
        display: block;
    }
}
/* ========== 智建工坊 板块样式 适配官网风格 ========== */
.zgjgf-section{
    width:96%;
    max-width:1240px;
    margin:60px auto;
}
.zgjgf-title-wrap{
    text-align:center;
    margin-bottom:32px;
}
.zgjgf-main-title{
    font-size:28px;
    font-weight:bold;
    color:#162c49;
    margin-bottom:8px;
}
.zgjgf-sub-title{
    font-size:16px;
    color:#55647a;
}
.zgjgf-banner-box{
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 2px 14px rgba(0,40,80,0.09);
    overflow:hidden;
    margin-bottom:40px;
}
.zgjgf-banner-img{
    width:100%;
    display:block;
}
.zgjgf-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}
.zgjgf-card{
    background:#fff;
    border-radius:12px;
    padding:28px;
    box-shadow:0 2px 12px rgba(0,35,70,0.07);
}
.zgjgf-card h3{
    font-size:20px;
    color:#162c49;
    margin-bottom:20px;
    border-left:4px solid #2357a8;
    padding-left:12px;
}
.zgjgf-item-list{
    padding-left:0;
    list-style:none;
}
.zgjgf-item-list li{
    padding:10px 0;
    font-size:15px;
    color:#334155;
    border-bottom:1px dashed #e4e9f1;
    line-height:1.7;
}
.zgjgf-item-list li:last-child{
    border-bottom:none;
}
.zgjgf-step-wrap{
    grid-column:1 / -1;
}
.zgjgf-step-box{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:10px;
}
.zgjgf-step-item{
    flex:1;
    min-width:110px;
    text-align:center;
    padding:16px 8px;
    background:#f0f5fc;
    border-radius:8px;
}
.zgjgf-step-num{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#2357a8;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 8px;
    font-weight:bold;
}
.zgjgf-notice{
    background:#fff7e8;
    border:1px solid #ffddaa;
    border-radius:10px;
    padding:20px 24px;
    margin-top:36px;
}
.zgjgf-notice h4{
    color:#b46c00;
    margin-bottom:10px;
    font-size:16px;
}
.zgjgf-notice p{
    font-size:14px;
    color:#6b4c18;
    line-height:1.7;
}
.zgjgf-contact{
    margin-top:20px;
    font-size:15px;
    color:#162c49;
}

/* 移动端适配 */
@media (max-width:768px){
    .zgjgf-section{
        margin:40px auto;
    }
    .zgjgf-main-title{
        font-size:22px;
    }
    .zgjgf-container{
        grid-template-columns:1fr;
        gap:20px;
    }
    .zgjgf-card{
        padding:20px 16px;
    }
    .zgjgf-step-item{
        min-width:85px;
    }
}



.nologin-btn{margin: 30px auto;display: block;text-align: center;width:200px;min-width: 200px;}













/* 页脚 */
footer.footer {
    padding: 40px 0 30px;
    background: #081A30;
    color: var(--light-gray);
}
.footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 30px;
}
.footer-row img{
    width: 120px;
    height: 120px;
}
.footer-col h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
}
.footer-col p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 8px;
}
.footer-col .qr{
    float: left;
    margin-right: 10px;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--split-line);
    font-size: 13px;
}
/* 移动端适配 */
@media (max-width:1400px) {
    .container {
        width: 100%;
    }
}
@media (max-width:768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        background: #fff;
        color: #000;
        padding: 0px 14px;
        gap:0px;
        height: 0px;
        width: 100px;
        overflow: hidden;
        transition: all 0s 2s linear;
    }
    .wap-tool{
        display: block;
    }
    .nav-menu a{
        color: #000;
        height: 50px;
        line-height: 50px;
    }
    .btn-orange{
        /*display: none;*/
        text-align: center;
        width: 50px;
        padding: 5px;
    }
    .vision-row, .business-right, .team-grid, .data-grid, .footer-row {
        grid-template-columns: 1fr;
    }
    .business-wrap, .form-wrap {
        flex-direction: column;
    }
    .banner-content h2 {
        font-size: 28px;
    }
}