/* ==========================================
   一、全局企业级视觉规范
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.7;
}

/* 1580px 顶级宽屏容器 - 保证大屏不散架，小屏全自适应 */
.container {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
    /* padding: 0 40px; */
}

/* 正规企业网通用标题样式 */
.company-section-title {
    text-align: center;
    font-size: 40rem;
    font-weight: 700;
    color: #213d7a;
    margin-bottom: 45px;
    letter-spacing: 1px;
    position: relative;
}

/* ==========================================
   二、十万级洁净车间（质感全面升级）
   ========================================== */
.clean-room {
    background-color: #e6f2ff; /* 更具科技感的柔和天蓝 */
    padding: 70px 0;
}

.clean-room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(33, 61, 122, 0.1);
    padding-bottom: 20px;
}

.clean-room-title {
    font-size: 46px;
    font-weight: 800;
    color: #213d7a;
    line-height: 1.1;
}

.clean-room-title small {
    font-size: 14px;
    color: #627cb6;
    display: block;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 8px;
    text-transform: uppercase;
}

.clean-room-text {
    font-size: 22px;
    color: #213d7a;
    font-weight: bold;
    text-align: right;
    line-height: 1.6;
}

.clean-room-imgs {
    display: flex;
    gap: 30px;
}

.clean-room-img-wrapper {
    width: 50%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(33, 61, 122, 0.08);
}

.clean-room-imgs img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* 悬浮放大，正规企业网标配动态感 */
.clean-room-img-wrapper:hover img {
    transform: scale(1.04);
}


/* ==========================================
   三、管理团队及精益化体系（标准错位流）
   ========================================== */
.team-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.team-grid {
    background: #eaf6fd;
    display: flex;
    grid-template-columns: 1fr 1fr;
    /* gap: 60px; */
    margin-bottom: 20rem;
    align-items: center;
    justify-content: space-between;
}

.team-text h3 {
    font-size: 36rem;
    color: #213d7a;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.team-text p {
    font-size: 20rem;
    color: #555555;
    line-height: 1.8;
}

.team-tags {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* 胶囊标签 */
.team-tag {
    font-size: 18rem;
    color: #213d7a;
    font-weight: 600;
    background-color: #f0f5ff;
    border: 1px solid #d3e2ff;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.team-tag:hover {
    background-color: #213d7a;
    color: #ffffff;
}

.team-imgs {
    padding: 16rem;
    width: 70%;
    display: flex;
    gap: 20px;
}

.team-img-holder {
    width: 50%;
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.team-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.team-img-holder:hover img {
    transform: scale(1.05);
}


/* ==========================================
   四、4大类产品生产线（精美工业风大胶囊）
   ========================================== */
.production-lines {
    padding: 60px 0;
    background-color: #fbfcfd;
    text-align: center;
}

/* 带有倾斜大数字“4”的特制胶囊标题 */
.corporate-capsule-header {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #213d7a 0%, #1a3061 100%);
    color: #ffffff;
    padding: 10px 60px;
    border-radius: 60px;
    margin-bottom: 50px;
    box-shadow: 0 8px 25px rgba(33, 61, 122, 0.2);
}

.corporate-capsule-header .big-italic-4 {
    font-size: 56px;
    font-style: italic;
    font-weight: 900;
    margin-right: 15px;
    line-height: 1;
    color: #ffffff;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.15);
}

.corporate-capsule-header .main-title-text {
    font-size: 40rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.lines-grid {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    flex-wrap: wrap;
}

.line-card {
    width: 49%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.line-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.line-card:hover img {
    transform: scale(1.04);
}


/* ==========================================
   五、多样化产品定制选择（PC端·全量彻底隔离版）
   ========================================== */
.custom-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.custom-subtitle {
    text-align: center;
    font-size: 19px;
    color: #666666;
    margin-top: -25px;
    margin-bottom: 50px;
}

.custom-panel {
    border-radius: 20px;
    padding: 40px 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
}

.panel-dark-blue {
    background-color: #213d7a;
    color: #ffffff;
}

.panel-light-blue {
    background-color: #e6f2ff;
    color: #213d7a;
    border: 1px solid #d2e4f9;
}

.panel-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: left;
    letter-spacing: 1px;
}

/* ------------------------------------------
   板块 1：卫生巾规格 PC端独立样式
   ------------------------------------------ */
.pc-sanitary-pad-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}
.pc-pad-unit {
    text-align: center;
    flex: 1;
    min-width: 130px;
    transition: transform 0.3s ease;
}
.pc-pad-unit:hover {
    transform: translateY(-5px);
}
.pc-pad-unit img {
    width: auto;
    display: block;
    margin: 0 auto 20px;
}
.pc-pad-unit p {
    font-size: 15px;
    font-weight: 600;
}

/* ------------------------------------------
   板块 2：经期裤款式 PC端独立样式
   ------------------------------------------ */
.pc-period-pants-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}
.pc-pants-unit {
    text-align: center;
    flex: 1;
    min-width: 130px;
    transition: transform 0.3s ease;
}
.pc-pants-unit:hover {
    transform: translateY(-5px);
}
.pc-pants-unit img {
    width: auto;
    display: block;
    margin: 0 auto 20px;
}
.pc-pants-unit p {
    font-size: 15px;
    font-weight: 600;
}

/* ------------------------------------------
   板块 3：湿巾/湿厕纸包装 PC端独立样式
   ------------------------------------------ */
.pc-wipes-packaging-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}
.pc-wipes-unit {
    text-align: center;
    flex: 1;
    min-width: 130px;
    transition: transform 0.3s ease;
}
.pc-wipes-unit:hover {
    transform: translateY(-5px);
}
.pc-wipes-unit img {
    width: auto;
    display: block;
    margin: 0 auto 20px;
}
.pc-wipes-unit p {
    font-size: 15px;
    font-weight: 600;
}
.white-badge-pill {
    background-color: #ffffff;
    color: #213d7a;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}


/* ==========================================
   六、一站式服务（工厂图顶部悬浮半透明条）
   ========================================== */
.onestop-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.onestop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.onestop-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.onestop-card img {
    width: 100%;
    height: 330rem;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.onestop-card .floating-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 61, 122, 0.88);
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.onestop-card:hover img {
    transform: scale(1.06);
}

/* ==========================================
   七、底部流线适配
   ========================================== */
.full-bleed-process {
    padding: 40px 0 0 0;
}
.full-bleed-process img {
    width: 100%;
    display: block;
}


/* ==========================================
   八、完美级响应式防护断点
   ========================================== */
@media (max-width: 1200px) {
    .lines-grid { grid-template-columns: repeat(2, 1fr); }
    .onestop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .clean-room-header { flex-direction: column; text-align: center; align-items: center; }
    .clean-room-text { text-align: center; margin-top: 20px; }
    .clean-room-imgs { flex-direction: column; }
    .clean-room-img-wrapper { width: 100%; }
    .team-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-grid div:nth-child(1) { order: 1; }
    .team-grid div:nth-child(2) { order: 2; }
    .onestop-grid, .lines-grid { grid-template-columns: 1fr; }
}

/* 页面辅助类 */
.gai{
    width: 300rem !important;
}
.team-text{
    padding: 40rem;
    width: 34%;
}