/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* 容器样式 - 主内容1600px宽，自适应 */
.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* 页头区 */
.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
}

/* 滚动时导航栏背景 */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    color: #333;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-item.active .nav-link {
    color: #e50011;
}

.header.scrolled .hotline-icon {
    filter: none;
}

.header.scrolled .hotline-label,
.header.scrolled .hotline-number {
    color: #e50011;
}

.header.scrolled .header-main {
    padding: 10px 0;
    border-bottom: none;
}

.header.scrolled .logo {
    filter: none;
}

/* Logo和服务热线区 */
.header-main {
    padding: 15px 0;
    background-color: transparent;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled .header-main {
    padding: 10px 0;
    border-bottom: none;
}

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

.branding {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

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

.header-slogan {
    display: none;
}

.service-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hotline-icon {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hotline-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}

.hotline-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotline-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: bold;
    min-width: 80px;
}

.hotline-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hotline-number {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
}

/* 导航条 - 整合到header-main中 */
.main-nav {
    background-color: transparent;
    flex: 1;
    justify-content: flex-end;
    position: relative;
    padding: 0 30px 0 0;
}

.main-nav .container {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
    flex: 0 0 auto;
    text-align: center;
    margin: 0 25px;
}

.nav-link {
    display: block;
    padding: 12px 5px 8px 5px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #e50011;
    font-weight: 700;
}

.header:not(.scrolled) .nav-item.active .nav-link {
    color: #e50011;
}

/* 二级菜单 */
.submenu {
    position: absolute;
    top: 100%;
    margin-top: 5px;
    left: 0;
    background-color: #fff;
    list-style: none;
    width: 120px;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.submenu a:hover {
    background-color: #e50011;
    color: #fff;
    padding-left: 20px;
}

/* 轮播图 */
.banner-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
    min-height: 300px;
}

.slider-container {
    position: relative;
    width: 100%;
    margin: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    text-align: center;
}

.slide.active {
    display: block;
}

.slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* 轮播按钮 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    color: #172988;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.banner-slider:hover .slider-btn {
    opacity: 1;
    visibility: visible;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.6);
    color: #e50011;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* 指示器 */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: #e50011;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* 产品区 */
.products-section {
    width: 100%;
    padding: 0;
    background-image: url('../img/in01.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: local;
}

/* 首页产品中心 - 新样式 */
.products-section.products-center-style {
    background-image: url('../img/in01.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.products-section.products-center-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0 60 Q300 20 600 60 T1200 60 L1200 120 L0 120 Z' fill='none' stroke='%23d0d8e8' stroke-width='0.5' opacity='0.4'/%3E%3Cpath d='M0 80 Q400 40 800 80 T1200 80' fill='none' stroke='%23b8c4d8' stroke-width='0.3' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 100% 120px;
    background-repeat: repeat-y;
    pointer-events: none;
    opacity: 0.6;
}

.products-center-style .products-bg {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 70px;
}

.products-center-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.products-center-title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    padding-top: 15px;
    padding-left: 0;
}

/* 标题后方红色渐变圆 */
.products-center-title-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 0, 17, 0.7) 0%, rgba(229, 0, 17, 0.3) 33%, rgba(229, 0, 17, 0) 66%, rgba(229, 0, 17, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.products-center-title-dot {
    display: none;
}

.products-center-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.1;
    position: relative;
    z-index: 0;
    padding-left: 20px;
}

.products-center-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 35px;
    flex-wrap: wrap;
    margin-left: auto;
}

.products-center-tabs li {
    position: relative;
    padding: 8px 20px 8px 24px;
}

.products-center-tabs li a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    padding-bottom: 6px;
    transition: color 0.2s;
}

.products-center-tabs li.active a,
.products-center-tabs li a:hover {
    color: #172988;
}

.products-center-tabs li a:hover::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 100% 100%, rgba(229, 0, 17, 0.7) 0%, rgba(229, 0, 17, 0.3) 50%, transparent 70%);
    z-index: -1;
}

/* 选中态底部指示器 - 已移除 */

.products-center-more {
    display: inline-block;
    padding: 10px 24px;
    background-color: #e50011;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.products-center-more:hover {
    background-color: #c4000f;
    color: #fff;
    transform: translateY(-1px);
}

.product-center-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 0;
}

.products-center-style .product-item.product-card {
    background: transparent;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.products-center-style .product-item.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.products-center-style .product-card-image {
    width: 100%;
    overflow: hidden;
    background: #eee;
    border-radius: 16px 16px 0 0;
}

.products-center-style .product-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.products-center-style .product-item.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.products-center-style .product-card-label {
    padding: 18px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background-color: #172988;
    border-radius: 0 0 16px 16px;
    transition: background-color 0.3s;
}

.products-center-style .product-card-label-red {
    background-color: #172988;
}

.products-center-style .product-item.product-card:hover .product-card-label {
    background-color: #e50011;
}

.products-center-style .product-item.product-card:hover .product-card-label-red {
    background-color: #e50011;
}

.products-bg {
    width: 100%;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.products-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.products-left {
    flex: 1;
    min-width: 300px;
}

.products-title-area {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 10px;
}

.products-title {
    font-size: 32px;
    font-weight: bold;
    color: #172988;
    margin: 0;
    line-height: 1;
}

.title-divider {
    width: 2px;
    height: 32px;
    background-color: #e60f1f;
    flex-shrink: 0;
}

.products-title-en {
    font-size: 16px;
    color: #888888;
    font-weight: normal;
    line-height: 1;
    padding-bottom: 0;
    letter-spacing: 2px;
}

.products-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.products-right {
    flex: 1;
    min-width: 300px;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-category-item {
    width: 100%;
}

.category-box {
    border: 1px solid #172988;
    padding: 0 20px;
    text-align: center;
    background-color: #fff;
    transition: all 0.3s;
    cursor: pointer;
    height: 71px; /* 标题32px + 下边距10px + 描述28.8px ≈ 71px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0; /* 防止文字溢出 */
    word-wrap: break-word;
    text-decoration: none;
    color: inherit;
}

.category-box:hover {
    background-color: #172988;
    border-color: #172988;
    box-shadow: 0 4px 12px rgba(23, 41, 136, 0.2);
    transform: translateY(-3px);
}

.category-box h3 {
    font-size: 18px;
    color: #172988;
    margin: 0;
    font-weight: bold;
    transition: color 0.3s;
    line-height: 1.2;
    white-space: nowrap; /* 防止换行 */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.category-box:hover h3 {
    color: #fff;
}

.category-en {
    font-size: 12px;
    color: #172988;
    transition: color 0.3s;
    line-height: 1;
    white-space: nowrap; /* 防止换行 */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.category-box:hover .category-en {
    color: #fff;
}

/* 产品列表 */
.products-section .product-list-wrapper,
.product-list-wrapper {
    width: 100%;
    margin-top: 40px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-item {
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.product-item:hover {
    background-color: #172988;
}

.product-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 2px;
    background-color: #f9f9f9;
    display: block;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
    display: block;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0;
    min-height: 40px;
    flex-wrap: nowrap !important;
    gap: 10px;
    width: 100%;
}

.product-title {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: bold;
    flex: 1 1 0 !important;
    transition: color 0.3s;
    line-height: 1.2;
    min-width: 0 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap !important;
    text-align: left;
    display: block;
}

.product-item:hover .product-title {
    color: #fff;
}

.product-arrow {
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    margin-left: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #172988;
    color: #172988;
    font-size: 16px;
    transition: all 0.3s;
}

.product-item:hover .arrow-circle {
    background-color: transparent;
    border-color: #e50011;
    color: #e50011;
}

/* 公司简介区 */
.about-section {
    position: relative;
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 180px;
    font-weight: 800;
    color: rgba(200, 210, 230, 0.3);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.about-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-text-col {
    flex: 1;
    min-width: 0;
    order: 0;
}

.about-image-col {
    flex: 0 0 48%;
    max-width: 48%;
    order: 1;
}

.about-center-title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    padding-top: 15px;
    padding-left: 0;
    margin-bottom: 20px;
}

.about-center-title-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 0, 17, 0.7) 0%, rgba(229, 0, 17, 0.3) 33%, rgba(229, 0, 17, 0) 66%, rgba(229, 0, 17, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.about-center-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.1;
    position: relative;
    z-index: 0;
    padding-left: 20px;
}

.about-company-name {
    font-size: 22px;
    font-weight: bold;
    color: #172988;
    margin: 50px 0 30px 0;
    line-height: 1.3;
}

.about-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.about-desc p {
    margin: 0 0 16px 0;
}

.about-desc p:last-child {
    margin-bottom: 0;
}

.about-more-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 28px;
    background-color: #e50011;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.about-more-btn:hover {
    background-color: #c4000f;
    color: #fff;
    transform: translateY(-2px);
}

.about-image-col {
    flex: 0 0 48%;
    max-width: 48%;
    position: relative;
}

.about-image-col::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid #e50011;
    border-radius: 16px;
    z-index: -1;
    transition: all 0.4s ease;
}

.about-image-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.about-image-col:hover::before {
    top: 15px;
    right: -25px;
}

.about-image-col:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* 理由区 */
.reasons-section {
    padding: 80px 0 20px 0;
    background-color: #fff;
    margin-top: 0;
    background-image: url('../img/yyly.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.reasons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.reasons-title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    padding-top: 15px;
    padding-left: 0;
}

.reasons-title-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 33%, rgba(255, 255, 255, 0) 66%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.reasons-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    position: relative;
    z-index: 0;
    padding-left: 20px;
}

.reasons-title-dot {
    display: none;
}

.reasons-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.reason-item {
    display: flex;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    align-items: stretch;
}

.reason-left {
    width: 35%;
    background-color: #172988;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
}

.reason-number {
    position: absolute;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    letter-spacing: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-item:hover .reason-left {
    background-color: #e50011;
}

.reason-content-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.reason-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.reason-text {
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.reason-right {
    width: 65%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    position: relative;
}

.reason-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
    z-index: 1;
    pointer-events: none;
}

.reason-item:hover .reason-right::before {
    left: 100%;
}

.reason-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.reason-item:hover .reason-right img {
    transform: scale(1.05);
}

/* 新闻中心区 */
.news-center-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../img/newsbj.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-center-wrapper {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* 左侧选择区 */
.news-center-left {
    flex: 0 0 300px;
    min-width: 300px;
}

/* 右侧新闻滚动区 */
.news-center-right-wrapper {
    flex: 1;
    min-width: 0;
}

.news-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.news-scroll-wrapper {
    display: flex;
    gap: 80px;
}

@media (max-width: 768px) {
    .news-center-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .news-center-left {
        flex: 0 0 auto;
        width: 100%;
    }

    .news-scroll-container {
        margin-left: -20px;
        padding-left: 20px;
    }
}

.news-center-title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    padding-top: 15px;
    padding-left: 0;
    margin-bottom: 30px;
}

.news-center-title-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 0, 17, 0.7) 0%, rgba(229, 0, 17, 0.3) 33%, rgba(229, 0, 17, 0) 66%, rgba(229, 0, 17, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.news-center-title-dot {
    display: none;
}

.news-center-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.1;
    position: relative;
    z-index: 0;
    padding-left: 20px;
}

.news-center-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.news-tab-item {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s, font-weight 0.3s;
    display: inline-block;
    width: fit-content;
}

.news-tab-item:hover {
    color: #0066cc;
    font-weight: 600;
    border-bottom: 2px solid #e50011;
}

.news-tab-item.active {
    color: #333;
}

.news-tab-item:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e50011;
}

.news-tab-item:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e50011;
}

.news-center-more-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #e50011;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.news-center-more-btn:hover {
    background-color: #c4000f;
    color: #fff;
    transform: translateY(-2px);
}

/* 右侧新闻滚动区 */
.news-center-right {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.news-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.news-scroll-wrapper {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.news-scroll-wrapper:hover {
    /* 由JS控制暂停 */
}

.news-card {
    flex: 0 0 420px;
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-image {
    width: 100%;
    height: auto;
    overflow: visible;
    background-color: #f0f0f0;
    border-radius: 0;
}

.news-card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
    border-radius: 0;
}

.news-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 16px 20px 12px 20px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 20px 16px 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #919191;
    border-bottom: 1px solid #919191;
    margin-top: auto;
}

.news-card:hover .news-card-footer {
    border-top-color: #e50011;
    border-bottom-color: #e50011;
}

.news-card-date {
    font-size: 13px;
    color: #999;
}

.news-card-link {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.news-card:hover .news-card-link {
    color: #0066cc;
}

/* 产品定制流程整区（统一背景） */
.product-process {
    width: 100%;
    background-image: url('../img/yyly.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 50px;
}

/* 产品定制流程标题区 */
.process-banner {
    position: relative;
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px 0;
}

.process-banner-bg-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    font-size: clamp(28px, 7vw, 90px);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.15);
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.process-banner-title {
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-align: center;
    letter-spacing: 0.05em;
}

/* 定制流程 7 圆步骤 */
.process-steps-wrap {
    padding: 10px 20px 10px;
}

.process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 14px;
}

.process-step {
    flex: 1 1 0;
    min-width: 0;
    max-width: 150px;
    margin: 0 auto;
    aspect-ratio: 1;
    border: 2px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.process-step-top {
    flex: 1;
    min-height: 0;
    background: #fff;
    color: #172988;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 6px;
    gap: 4px;
}

.process-step-num {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.process-step-name {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.process-step-bottom {
    flex: 1;
    min-height: 0;
    background: #172988;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.process-step-bottom img {
    max-width: 88%;
    max-height: 88%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* 底部在线留言 + 热线 */
.process-contact-bar {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0;
}

.process-contact-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    justify-content: stretch;
    width: 100%;
    padding: 0;
}

.process-contact-label {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    flex: 0 0 auto;
    padding-right: 20px;
    align-self: center;
}

.process-contact-form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    flex: 3 1 auto;
    min-width: 0;
    padding-right: 16px;
}

.process-contact-form input {
    height: 44px;
    padding: 0 16px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    background: #fff;
    min-width: 0;
    flex: 1;
}

.process-contact-form input::placeholder {
    color: #999;
}

.process-form-wide {
    flex: 6 1 0;
    min-width: 250px;
}

.process-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 40px;
    border: none;
    border-radius: 6px;
    background: #e50011;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
}

.process-submit-btn:hover {
    background: #c4000f;
}

.process-submit-btn svg {
    flex-shrink: 0;
}

.process-hotline {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 8px;
    color: #fff;
    white-space: nowrap;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.process-hotline-label {
    font-size: 20px;
    font-weight: 600;
}

.process-hotline-num {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* 主内容区 */
.main-content {
    min-height: 600px;
    padding: 40px 0;
}

.content-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-wrapper h1 {
    font-size: 28px;
    color: #172988;
    margin-bottom: 20px;
    text-align: center;
}

.content-wrapper p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* 应用区 */
.application-section {
    position: relative;
    padding: 60px 0 80px;
    background-color: #fff;
}

.application-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.application-title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    padding-top: 15px;
    padding-left: 0;
}

.application-title-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 0, 17, 0.7) 0%, rgba(229, 0, 17, 0.3) 33%, rgba(229, 0, 17, 0) 66%, rgba(229, 0, 17, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.application-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.1;
    position: relative;
    z-index: 0;
    padding-left: 20px;
}

.application-title-dot {
    display: none;
}

.application-more-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #e50011;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
    position: static;
}

.application-more-btn:hover {
    background-color: #c4000f;
    color: #fff;
    transform: translateY(-1px);
}

.application-more-btn::after {
    display: none;
}

.application-content {
    margin-top: 0;
}

.application-main-image {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    display: block;
}

.application-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(23, 41, 136, 1) 0%, rgba(23, 41, 136, 1) 50%, rgba(23, 41, 136, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.application-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
    object-fit: contain;
}

.application-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.application-text-content {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
}

.application-text-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.application-text-content p {
    margin-bottom: 20px;
}

.application-text-content p:last-child {
    margin-bottom: 0;
}

.application-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.application-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0;
}

.application-item:last-child {
    border-right: none;
}

.application-item:hover,
.application-item.active {
    background-color: #e50011;
    margin: -15px;
    padding: 35px 25px;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.application-item:hover .application-item-image img,
.application-item.active .application-item-image img {
    filter: brightness(0) invert(1);
}

.application-item:hover .application-item-text,
.application-item.active .application-item-text {
    color: #fff;
}

.application-item-image {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.application-item-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.application-item-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* 页脚 */
.footer {
    background-color: #172988;
    background-image: url('../img/fbj.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 0 0 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    display: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    gap: 80px;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
}

.footer-info {
    color: #fff;
    line-height: 1.8;
}

.footer-company-name {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 16px;
    margin: 5px 0;
}

.footer-qrcode {
    text-align: center;
    flex: 0 0 auto;
    align-self: center;
}

.footer-right {
    flex: 0 0 auto;
}

.footer-menus {
    display: flex;
    gap: 80px;
}

.footer-menu-column {
    flex: 0 0 auto;
}

.qrcode-image {
    width: 130px;
    height: 130px;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 10px;
}

.qrcode-text {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.footer-menu-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 10px;
}

.footer-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-menu-list a:hover {
    color: #e50011;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.footer-bottom p a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom p a:hover {
    text-decoration: underline;
}

.footer-copyright,
.footer-support {
    display: none;
}

/* 页面横幅 */
.page-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #172988;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/n.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-banner .container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 30px;
}

.page-banner-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 页面标题 */
.page-title-wrapper {
    text-align: center;
    padding: 40px 0 10px 0;
    margin-bottom: 0;
}

.page-title {
    font-size: 28px;
    font-weight: bold;
    color: #172988;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #172988;
    display: inline-block;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0 10px 0;
    margin: 0;
    font-size: 15px;
    color: #666;
}

.breadcrumb a {
    color: #172988;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #e50011;
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

/* 产品列表页样式 */
.product-list-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 40px;
    align-items: stretch;
}

.product-sidebar {
    flex: 0 0 250px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: bold;
    color: #172988;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e50011;
}

/* 侧边栏联系方式 */
.sidebar-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.sidebar-contact .contact-title {
    font-size: 18px;
    font-weight: bold;
    color: #172988;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e50011;
}

.sidebar-contact .contact-item {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.sidebar-contact .contact-label {
    color: #666;
    flex-shrink: 0;
}

.sidebar-contact .contact-value {
    color: #333;
    word-break: break-all;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 8px;
}

.category-item a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.category-item a:hover {
    background-color: #f5f5f5;
    color: #e50011;
}

.category-item.active > a {
    background-color: #172988;
    color: #fff;
}

.sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.sidebar-toggle {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23172988"><path d="M7 10l5 5 5-5z"/></svg>') center/contain no-repeat;
    transition: transform 0.3s;
}

.sidebar-collapsed .sidebar-toggle {
    transform: rotate(-90deg);
}

.product-sidebar.collapsed > .category-list {
    display: none;
}

/* 移动端展开合起 */
@media (max-width: 991px) {
    .sidebar-toggle {
        display: block;
    }
    
    .product-sidebar.collapsed > .category-list {
        display: none;
    }
}

@media (min-width: 992px) {
    .sidebar-toggle {
        display: none;
    }
    
    .product-sidebar.collapsed > .category-list {
        display: block;
    }
}

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

.category-header a {
    flex: 1;
}

.category-toggle {
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"><path d="M10 6l6 6-6 6z"/></svg>') center/contain no-repeat;
    transition: transform 0.3s;
    cursor: pointer;
}

.category-item.has-sub.open > .category-header .category-toggle {
    transform: rotate(90deg);
}

.category-sub {
    display: none;
    padding-left: 20px;
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
}

.category-item.has-sub.open > .category-sub {
    display: block;
}

.category-sub li a {
    padding: 8px 15px;
    font-size: 15px;
}

.product-list-content {
    flex: 1;
}

.product-list-content .product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-list-content .product-item {
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-list-content .product-item:hover {
    background-color: #172988;
}

.product-list-content .product-item a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-list-content .product-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 2px;
    background-color: #f9f9f9;
    display: block;
    position: relative;
}

.product-list-content .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
    display: block;
}

.product-list-content .product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-list-content .product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    padding: 0;
    min-height: 40px;
    width: 100%;
}

.product-list-content .product-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 4px 0;
    font-weight: bold;
    flex: 1;
    transition: color 0.3s;
    line-height: 1.4;
    text-align: center !important;
    width: 100%;
}

.product-list-content .product-item:hover .product-title {
    color: #fff;
}

.product-list-content .product-title a {
    display: block;
    text-align: center !important;
    color: inherit;
    width: 100%;
}

.product-list-content .product-title a,
.product-list-content .product-title {
    text-align: center !important;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.page-item {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s;
}

.page-item:hover {
    border-color: #e50011;
    color: #e50011;
}

.page-item.active {
    background: #e50011;
    border-color: #e50011;
    color: #fff;
}

/* 产品详情页样式 */
.product-details-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 40px;
}

.product-details-content {
    flex: 1;
}

.product-details-main {
    display: flex;
    gap: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.product-images {
    flex: 0 0 45%;
    max-width: 45%;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f5f5f5;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #e50011;
}

.product-details-content .product-info {
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 20px;
    gap: 0;
}

.product-details-content .product-title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    width: 100%;
    line-height: 1.5;
    display: block;
    min-height: auto;
    overflow: visible;
}

.product-details-content .product-summary {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 30px 0;
    width: 100%;
    display: block;
}

.product-detail-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}

.product-detail-block h3 {
    font-size: 21px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
}

.product-detail-block h4 {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin: 18px 0 8px 0;
}

.product-detail-block p {
    color: #666;
    line-height: 1.8;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.product-detail-block ul {
    padding-left: 20px;
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.product-detail-block ul li {
    margin-bottom: 6px;
}

/* 单页内容样式 */
.page-content-wrapper {
    margin-top: 20px;
    padding-bottom: 40px;
}

.page-content {
    width: 100%;
}

.page-content.page-single {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    width: 100%;
}

.page-single .page-detail-block {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding: 36px 30px;
    width: 100%;
}

.page-single-wrapper {
    margin-top: 0;
    padding-bottom: 30px;
}

.page-single .page-text-content {
    line-height: 1.5;
}

.page-single .page-text-content p {
    margin: 0 0 10px 0;
}

/* 联系我们页 lxwm.html */
.lxwm-full-wrapper {
    margin-top: 20px;
    padding-bottom: 40px;
}

.lxwm-full-wrapper .lxwm-detail {
    padding: 30px 28px 36px;
}

.lxwm-layout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.lxwm-contact-block {
    flex: 1;
}

.lxwm-message-block {
    flex: 1;
}

.lxwm-contact-block h3,
.lxwm-message-block h3 {
    font-size: 20px;
    font-weight: bold;
    color: #172988;
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e50011;
}

.lxwm-contact-rows p {
    margin: 0 0 12px 0;
    font-size: 15px;
    line-height: 1.65;
    color: #333;
}

.lxwm-contact-rows a {
    color: #172988;
    text-decoration: none;
}

.lxwm-contact-rows a:hover {
    color: #e50011;
    text-decoration: underline;
}

.lxwm-message-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.lxwm-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.lxwm-form-half {
    flex: 1 1 calc(33.33% - 16px);
    min-width: 180px;
}

.lxwm-form-row label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.lxwm-message-form input,
.lxwm-message-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.lxwm-message-form input:focus,
.lxwm-message-form textarea:focus {
    outline: none;
    border-color: #172988;
}

.lxwm-message-form textarea {
    resize: vertical;
    min-height: 120px;
}

.lxwm-submit-btn {
    align-self: flex-start;
    padding: 12px 36px;
    background-color: #e50011;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.gallery-content {
    flex: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: #e50011;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f7f8fa;
    display: block;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.gallery-title {
    padding: 12px 15px;
    font-size: 15px;
    color: #333;
    text-align: center;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    font-weight: 500;
}

.gallery-item:hover .gallery-title {
    color: #e50011;
    background: #fff5f5;
}

.image-modal-title {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 14px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0 0 6px 6px;
    margin-top: 0;
}

.page-detail-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 30px;
    margin-top: 20px;
}

.page-detail-block h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e50011;
}

.page-detail-block h2 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 25px 0 15px 0;
}

.page-detail-block h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 20px 0 12px 0;
}

.page-text-content {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.page-text-content p {
    margin: 0 0 12px 0;
    color: #666;
    text-align: justify;
}

.page-text-content p:last-child {
    margin-bottom: 0;
}

.page-text-content ul,
.page-text-content ol {
    margin: 15px 0;
    padding-left: 30px;
    color: #666;
}

.page-text-content ul li,
.page-text-content ol li {
    margin-bottom: 8px;
    line-height: 1.8;
}

/* 文章列表样式 */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-item {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #e6eaf2;
    border-radius: 6px;
    padding: 16px 18px 18px 18px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.article-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #172988 0%, #e50011 100%);
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.article-item:hover {
    border-color: #d5deff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.article-item:hover::before {
    opacity: 1;
}

.article-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.article-item:hover .article-title {
    color: #e50011;
}

.article-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #777;
    margin: 0 0 10px 0;
    align-items: center;
    flex-wrap: wrap;
}

.article-date {
    color: #999;
    padding: 4px 8px;
    background: #f2f4f8;
    border-radius: 12px;
}

.article-cat,
.article-category {
    color: #172988;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(23, 41, 136, 0.08);
    border-radius: 12px;
}

.article-desc {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.article-content {
    margin-top: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.article-content p {
    margin: 0 0 15px 0;
    color: #666;
}

.article-content p:last-child {
    margin-bottom: 0;
}

/* 大图弹窗 */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.image-modal.open {
    display: flex;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-modal-img {
    max-width: 90vw;
    max-height: calc(90vh - 60px);
    object-fit: contain;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

.image-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.product-code,
.product-stock {
    font-size: 15px;
    color: #666;
}

.product-stock {
    color: #52c41a;
}

.product-price-box {
    margin-bottom: 25px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 4px;
}

.price-label {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.price-main {
    font-size: 36px;
    color: #e50011;
    font-weight: bold;
}

.price-main .price-unit {
    font-size: 18px;
    font-weight: normal;
}

.price-note {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.product-specs {
    margin-bottom: 25px;
}

.product-specs h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
    color: #666;
    font-size: 15px;
}

.spec-list li:last-child {
    border-bottom: none;
}

.product-details-content .product-actions {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 0;
    width: 100%;
    align-items: center;
    flex-shrink: 0;
}

.btn-contact,
.btn-quote {
    padding: 12px 38px;
    min-width: 160px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-contact {
    background: #e50011;
    color: #fff;
}

.btn-contact:hover {
    background: #c4000e;
}

.btn-quote {
    background: #172988;
    color: #fff;
}

.btn-quote:hover {
    background: #0f1f6a;
}

/* 产品详情标签页 */
.product-tabs {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
}

.tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #e50011;
}

.tab-btn.active {
    color: #e50011;
    border-bottom-color: #e50011;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.tab-pane h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 10px 0;
    color: #333;
}

.tab-pane p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.tab-pane ul {
    padding-left: 20px;
    line-height: 1.8;
    color: #666;
}

.tab-pane ul li {
    margin-bottom: 8px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.spec-table td {
    padding: 12px 15px;
    color: #666;
}

.spec-table td:first-child {
    width: 150px;
    color: #333;
    font-weight: 500;
}

.application-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.application-item {
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.application-item h4 {
    font-size: 16px;
    font-weight: bold;
    color: #172988;
    margin: 0 0 8px 0;
}

.application-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #172988;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover {
    background-color: #e50011;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .service-hotline {
        display: none;
    }
    
    .nav-item {
        min-width: 80px;
    }
    
    .nav-link {
        padding: 12px 10px;
        font-size: 15px;
    }
    
    /* 产品中心中等屏幕 */
    .products-center-header {
        gap: 16px;
    }
    
    .products-center-tabs {
        gap: 20px;
    }
    
    .product-center-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    /* 产品区中等屏幕适配 */
    .products-title {
        font-size: 28px;
    }
    
    .title-divider {
        height: 28px;
    }
    
    .category-box {
        height: 67px; /* 标题28px + 下边距10px + 描述28.8px ≈ 67px */
        padding: 0 15px;
    }
    
    .category-box h3 {
        font-size: 16px;
    }
    
    .category-en {
        font-size: 11px;
    }
    
    /* 产品列表中等屏幕适配 */
    .product-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    /* 产品区平板适配 */
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products-content {
        gap: 30px;
    }
    
    .products-title {
        font-size: 26px;
    }
    
    .title-divider {
        height: 26px;
    }
    
    .category-box {
        height: 65px; /* 标题26px + 下边距10px + 描述28.8px ≈ 65px */
    }
    
    /* 产品中心平板 */
    .product-center-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .products-center-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-center-tabs {
        order: 1;
        width: 100%;
    }
    
    /* 产品列表平板适配 */
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 36px;
    height: 30px;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-icon-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

/* 移动端应用区样式 */
@media (max-width: 768px) {
    .application-section {
        padding: 40px 0;
    }
    
    .application-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .application-title {
        font-size: 22px;
    }
    
    .application-more-btn {
        font-size: 15px;
    }
    
    .application-content {
        margin-top: 0;
    }
    
    .application-main-image {
        margin-bottom: 0;
        height: auto;
    }
    
    .application-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .application-item {
        padding: 15px 8px;
        border-right: 1px solid rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        margin: 0;
    }
    
    .application-item:nth-child(2n) {
        border-right: none;
    }
    
    .application-item:nth-child(n+5) {
        border-bottom: none;
    }
    
    .application-item:hover,
    .application-item.active {
        margin: -15px;
        padding: 30px 23px;
        z-index: 10;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .application-item-image {
        margin-bottom: 10px;
    }
    
    .application-item-text {
        font-size: 15px;
    }

    /* 应用区描述文字移动端字号与选择区一致 */
    .application-text-content {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    /* 移动端容器样式 */
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .products-center-more {
        display: none;
    }
    
    .products-center-title {
        font-size: 28px;
    }
    
    .branding {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    
    .logo {
        text-align: left;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* 当布局换行时，隐藏标语和电话区 */
    .header-slogan {
        display: none;
    }
    
    .service-hotline {
        display: none;
    }
    
    /* 显示移动端菜单按钮 */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* 导航菜单移动端样式 */
    .main-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin: 0;
        padding: 20px;
        overflow-y: auto;
        box-sizing: border-box;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav .container {
        padding: 0;
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        min-width: auto;
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    
    .nav-item.has-submenu {
        position: relative;
    }
    
    /* 有二级菜单的显示展开箭头 */
    .nav-item.has-submenu > .nav-link::after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 8px;
        vertical-align: middle;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #333;
        transition: transform 0.3s;
    }
    
    .nav-item.has-submenu.active > .nav-link::after {
        transform: rotate(180deg);
    }
    
    .nav-link {
        padding: 14px 20px;
        color: #333;
        font-size: 15px;
    }
    
    /* 二级菜单移动端样式 */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(248, 248, 248, 0.9);
        display: none;
        border-top: none;
        width: 100%;
        min-width: auto;
        margin-top: 0;
        padding: 0;
    }
    
    .submenu li {
        border-bottom: 1px solid #eee;
    }
    
    .submenu a {
        padding: 12px 30px;
        color: #000;
        font-size: 15px;
    }
    
    .submenu a:hover {
        color: #e50011;
        background-color: #fff;
    }
    
    /* 菜单按钮激活状态 */
    .mobile-menu-btn.active .menu-icon-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active .menu-icon-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .menu-icon-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* 轮播图移动端样式 */
    .banner-slider {
        height: auto;
        min-height: 150%;
    }
    
    .slider-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    .slide {
        width: 100%;
        text-align: center;
    }
    
    .slide img {
        width: 150%;
        max-width: 150%;
        height: auto;
        display: block;
        margin-left: -25%;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f5f5f5;
        display: none;
        border-top: none;
        width: 100%;
        min-width: auto;
        margin-top: 0;
    }
    
    .submenu a {
        color: #000;
        padding-left: 40px;
    }
    
    .submenu a:hover {
        background-color: rgba(0, 0, 0, 0.1);
        padding-left: 45px;
    }
    
    .nav-item.has-submenu:hover .submenu,
    .nav-item.has-submenu.active .submenu {
        display: block;
    }
    
    .submenu a {
        color: #000;
        padding-left: 40px;
    }
    
    .submenu a:hover {
        background-color: rgba(0, 0, 0, 0.1);
        padding-left: 45px;
    }
    
    .content-wrapper {
        padding: 20px;
    }
    
    .content-wrapper h1 {
        font-size: 24px;
    }
    
    /* 产品区移动端样式 */
    .products-section {
        padding: 0 0 40px 0;
    }
    
    .products-bg {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .products-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .products-left {
        width: 100%;
        min-width: 0;
    }
    
    .products-right {
        width: 100%;
        min-width: 0;
    }
    
    .products-center-title {
        font-size: 28px;
    }
    
    .products-center-tabs li a {
        font-size: 15px;
    }
    
    .products-center-tabs li {
        padding: 8px 10px;
        text-align: center;
    }
    
    .products-center-tabs {
        grid-template-columns: repeat(7, 1fr);
        gap: 0;
    }
    
    .product-center-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .products-center-style .product-card-label {
        font-size: 16px;
        padding: 14px;
    }
    
    .products-title {
        font-size: 24px;
    }
    
    .title-divider {
        height: 24px;
    }
    
    .products-title-en {
        font-size: 15px;
    }
    
    .products-description {
        font-size: 15px;
    }
    
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-category-item {
        width: 100%;
    }
    
    .category-box {
        width: 100%;
        padding: 0 12px;
        height: 59px; /* 标题24px + 下边距10px + 描述25.2px ≈ 59px */
    }
    
    .category-box h3 {
        font-size: 15px;
        line-height: 1.1;
    }
    
    .category-en {
        font-size: 10px;
        line-height: 1;
    }
    
    .category-box {
        gap: 3px;
    }
    
    /* 产品列表移动端样式 */
    .product-list-wrapper {
        margin-top: 30px;
    }
    
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-title {
        font-size: 15px;
    }
    
    .arrow-circle {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }
    
    /* 公司简介区移动端样式 */
    .about-section {
        padding: 50px 0;
    }
    
    .about-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text-col {
        order: 0;
    }
    
    .about-image-col {
        flex: 0 0 auto;
        max-width: 100%;
        order: 1;
    }
    
    .about-center-title {
        font-size: 24px;
    }
    
    .about-company-name {
        font-size: 18px;
    }
    
    .about-desc {
        font-size: 15px;
    }
    
    .about-bg-text {
        font-size: 100px;
        left: 0;
    }
    
    /* 理由区移动端样式 */
    .reasons-section {
        padding: 40px 0;
    }
    
    .reasons-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .reasons-title {
        font-size: 24px;
        color: #fff;
    }
    
    .reasons-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reason-item {
        flex-direction: column;
    }
    
    .reason-left {
        width: 100%;
        padding: 15px;
    }
    
    .reason-right {
        width: 100%;
        height: 200px;
    }
    
    .reason-title {
        font-size: 20px;
    }
    
    .reason-text {
        font-size: 15px;
    }
    
    .reason-content-wrapper {
        text-align: center;
    }
    
    .reason-number {
        font-size: 120px;
        letter-spacing: -3px;
    }

    /* 新闻中心区移动端样式 */
    .news-center-section {
        padding: 50px 0;
    }

    .news-center-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .news-center-left {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
        padding-right: 0;
    }

    .news-center-right-wrapper {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .news-scroll-container {
        margin-left: 0;
        padding-left: 0;
    }

    .news-center-title {
        font-size: 24px;
    }

    .news-center-tabs {
        flex-direction: row;
        gap: 20px;
    }

    .news-tab-item {
        font-size: 16px;
    }

    .news-center-more-btn {
        font-size: 14px;
        padding: 10px 24px;
    }

    .news-scroll-wrapper {
        animation: none;
        flex-direction: column;
        gap: 15px;
    }

    .news-card {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .news-card:nth-child(n+4) {
        display: none;
    }

    .news-card-image {
        width: 100%;
        height: auto;
    }

    .news-card-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .news-card-title {
        font-size: 16px;
        margin: 12px 16px 10px 16px;
    }

    .news-card-desc {
        font-size: 13px;
        margin: 0 16px 12px 16px;
    }

    .news-card-footer {
        padding: 10px 16px;
    }

    .news-card-date {
        font-size: 12px;
    }

    .news-card-link {
        font-size: 13px;
    }

    /* 产品定制流程标题区移动端 */
    .product-process {
        padding-bottom: 36px;
    }

    .process-banner {
        min-height: 140px;
        padding: 20px 15px;
    }

    .process-banner-bg-text {
        font-size: clamp(18px, 5vw, 36px);
        letter-spacing: 0.04em;
        white-space: normal;
        max-width: 95%;
    }

    .process-banner-title {
        font-size: 24px;
    }

    .process-steps-wrap {
        padding: 8px 15px 24px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .process-steps {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        min-width: min-content;
        padding-bottom: 6px;
    }

    .process-step {
        flex: 0 0 88px;
        max-width: 88px;
    }

    .process-step-num {
        font-size: 16px;
    }

    .process-step-name {
        font-size: 13px;
    }

    .process-contact-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 0 20px;
    }

    .process-contact-label {
        font-size: 18px;
        padding-right: 0;
        width: 100%;
        flex: 0 0 auto;
    }

    .process-contact-form {
        flex-wrap: wrap;
        flex-direction: row;
        padding-right: 0;
        width: 100%;
    }

    .process-contact-form input {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
    }

    .process-form-wide {
        flex: 1 1 100%;
        min-width: 0;
    }

    .process-submit-btn {
        flex: 0 0 100%;
        width: 100%;
        font-size: 16px;
    }

    .process-hotline {
        justify-content: center;
        text-align: center;
        flex: 0 0 100%;
        width: 100%;
    }

    .process-hotline-label {
        font-size: 18px;
    }

    .process-hotline-num {
        font-size: 26px;
    }

    /* 应用区移动端样式 */
    /* 应用区移动端样式 */
    .application-section {
        padding: 60px 0;
    }
    
    .application-title {
        font-size: 24px;
    }
    
    .application-title-area .title-divider {
        height: 24px;
    }
    
    .application-title-en {
        font-size: 15px;
    }
    
    .application-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .application-content {
        margin-top: 30px;
    }
    
    .application-main-image {
        margin-bottom: 0;
    }
    
    .application-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    
    .application-item {
        padding: 15px 10px;
        border-right: 1px solid rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        margin: 0;
    }
    
    .application-item:nth-child(3n) {
        border-right: none;
    }
    
    .application-item:nth-child(n+4) {
        border-bottom: none;
    }
    
    .application-item:hover,
    .application-item.active {
        margin: -15px;
        padding: 30px 25px;
        z-index: 10;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .application-item-image {
        margin-bottom: 10px;
    }
    
    .application-item-text {
        font-size: 15px;
    }

    /* 应用区移动端文字铺满并自适应高度 */
    .application-main-image {
        display: block;
        position: relative;
        overflow: hidden;
        height: auto;
        min-height: auto;
    }
    
    .application-main-image::before {
        width: 100%;
        height: 100%;
    }
    
    .application-main-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .application-text-overlay {
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 20px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .application-text-content {
        max-height: none;
    }

    /* 页尾响应式样式 */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-qrcode {
        display: none;
    }
    
    .footer-right {
        display: none;
    }
    
    .footer-bg {
        transform: translateX(20px);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
        padding-top: 0;
        height: auto;
        min-height: auto;
    }
    
    .footer-bottom p {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* 页面横幅移动端样式 */
    .page-banner {
        height: 200px;
    }
    
    .page-banner-title {
        font-size: 32px;
    }
    
    /* 产品列表页移动端样式 */
    .product-list-wrapper,
    .product-details-wrapper {
        flex-direction: column;
    }
    
    .product-sidebar {
        flex: 1;
        width: 100%;
    }
    
    /* 移动端隐藏联系方式 */
    .sidebar-contact {
        display: none;
    }
    
    /* 联系我们页移动端 */
    .lxwm-form-half {
        flex: 1 1 100%;
    }
    .lxwm-form-row label {
        font-size: 13px;
    }
    .lxwm-form-row input,
    .lxwm-form-row textarea {
        font-size: 14px;
    }
    .lxwm-message-form {
        gap: 12px;
    }
    .lxwm-layout {
        flex-direction: column;
        gap: 28px;
    }
    .lxwm-contact-block {
        flex: none;
        width: 100%;
    }
    .lxwm-message-block {
        width: 100%;
    }
    
    .product-list-content .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-details-main {
        flex-direction: column;
        gap: 16px;
        padding: 14px;
    }

    .product-detail-block {
        padding: 14px;
    }
    
    .product-images {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .product-main-image {
        aspect-ratio: 1 / 1;
    }
    
    .product-details-content .product-info {
        width: 100%;
        padding-left: 0;
        flex: 0 0 auto;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
    }

    .article-title {
        font-size: 17px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    /* 产品区小屏手机适配 */
    .products-section {
        padding: 0 0 30px 0;
    }
    
    .products-center-style .products-bg {
        padding-top: 35px;
        padding-bottom: 45px;
    }
    
    .products-bg {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .products-center-title {
        font-size: 28px;
    }
    
    .products-center-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    
    .products-center-tabs li {
        flex: 0 0 calc(33.333% - 10px);
        text-align: center;
        padding: 8px 5px;
        border: 1px solid #d0d0d0;
        border-radius: 4px;
        background: #fff;
        transition: all 0.2s;
    }

    .products-center-tabs li.active,
    .products-center-tabs li:hover {
        border-color: #172988;
        background: #f5f7ff;
    }

    .products-center-tabs li a {
        font-size: 14px;
    }
    
    .product-center-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .products-center-style .product-card-image {
        aspect-ratio: 1;
    }
    
    .products-center-style .product-card-label {
        font-size: 15px;
        padding: 12px;
    }
    
    .products-left {
        width: 100%;
        min-width: 0;
    }
    
    .products-right {
        width: 100%;
        min-width: 0;
    }
    
    .products-title {
        font-size: 22px;
    }
    
    .title-divider {
        height: 22px;
    }
    
    .products-title-en {
        font-size: 12px;
    }
    
    .products-description {
        font-size: 13px;
    }
    
    .product-categories {
        gap: 12px;
    }
    
    .product-category-item {
        width: 100%;
    }
    
    .category-box {
        width: 100%;
        padding: 0 10px;
        height: 55px; /* 标题22px + 下边距10px + 描述23.4px ≈ 55px */
    }
    
    .category-box h3 {
        font-size: 15px;
    }
    
    .category-en {
        font-size: 10px;
    }
    
    /* 其他小屏样式 */
    .welcome-text {
        font-size: 12px;
    }

    /* 应用区小屏文字铺满并自适应高度 */
    .application-main-image {
        display: block;
        position: relative;
        overflow: hidden;
        height: auto;
        min-height: auto;
    }
    
    .application-main-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .application-text-overlay {
        position: relative;
        width: 100%;
        height: auto;
        padding: 16px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hotline-text {
        font-size: 15px;
    }
    
    .hotline-text strong {
        font-size: 16px;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    /* 产品列表小屏手机样式 */
    .product-list-wrapper {
        margin-top: 25px;
    }
    
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .product-info {
        min-height: 36px;
    }
    
    .arrow-circle {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
    
    /* 应用区小屏手机样式 */
    .application-main-image {
        flex-direction: column;
        min-height: auto;
    }
    
    .application-main-image::before {
        width: 100%;
        height: 100%;
    }
    
    .application-main-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .application-text-overlay {
        width: 100%;
        min-height: auto;
        padding: 16px;
        position: relative;
    }

    /* 新闻中心区小屏样式 */
    .news-center-section {
        padding: 40px 0;
    }

    .news-center-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .news-center-right-wrapper {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .news-center-title {
        font-size: 22px;
    }

    .news-center-tabs {
        gap: 15px;
    }

    .news-tab-item {
        font-size: 15px;
    }

    .news-center-more-btn {
        display: none;
    }

    .news-card {
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .news-card-image {
        height: 180px;
    }

    .news-scroll-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    .news-card {
        flex: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .news-card:nth-child(n+4) {
        display: none;
    }

    .news-card-title {
        font-size: 15px;
        margin: 10px 0 8px 0;
    }

    .news-card-desc {
        font-size: 12px;
        margin: 0 0 10px 0;
    }

    .news-card-footer {
        padding: 8px 0;
    }

    .news-card-date {
        font-size: 11px;
    }

    .news-card-link {
        font-size: 12px;
    }

    /* 页尾小屏手机样式 */
    .footer {
        padding: 30px 0;
    }
    
    .footer-logo {
        max-width: 150px;
        margin-bottom: 15px;
    }
    
    .footer-company-name {
        font-size: 16px;
    }
    
    .footer-info p {
        font-size: 13px;
    }
    
    .footer-qrcode {
        display: none;
    }
    
    .footer-right {
        display: none;
    }
    
    .footer-bg {
        transform: translateX(10px);
    }
    
    .footer-bottom {
        padding-top: 0;
        margin-top: 40px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
        justify-content: center;
        height: auto;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-support {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }
    
    /* 返回顶部按钮移动端样式 */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    /* 页面横幅小屏样式 */
    .page-banner {
        height: 150px;
    }
    
    .page-banner-title {
        font-size: 24px;
    }
    
    /* 产品列表页小屏样式 */
    .product-list-content .product-list {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        aspect-ratio: 1 / 1;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 15px;
    }

    /* 文章列表小屏样式 */
    .article-item {
        padding: 14px 16px;
    }

    .article-title {
        font-size: 16px;
    }

    .article-meta {
        font-size: 12px;
        gap: 10px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: 180px;
    }

    /* 产品详情页小屏手机样式 */
    .product-details-main {
        padding: 12px;
        gap: 14px;
    }

    .product-detail-block {
        padding: 12px;
    }

    .product-thumbnails {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .product-thumbnails::-webkit-scrollbar {
        height: 3px;
    }

    .product-thumbnails::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

    .thumbnail {
        flex: 0 0 calc(20% - 6.4px);
        width: calc(20% - 6.4px);
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .btn-contact,
    .btn-quote {
        padding: 10px 15px;
        min-width: auto;
        font-size: 14px;
        flex: 1;
    }

    .product-details-content .product-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
}
