 /* -----------------------内页主图------------------------ */
        /* 重置iinbanner相关元素的默认样式 */
        .iinbanner-container, 
        .iinbanner-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        /* 主容器 */
        .iinbanner-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
.iinbanner-image-container {
    width: 100%;
    height: 300px; /* 固定高度 */
    overflow: hidden; /* 超出部分隐藏 */
}

.iinbanner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 关键：保持宽高比，裁剪多余部分 */
    display: block;
}
        
        /* 导航层 - 悬浮在图片上 */
        .iinbanner-navigation {
            position: absolute---;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #f9f9f9;
            padding: 16px 0px;
            display: flex;
            align-items: center;
            backdrop-filter: blur(2px);
        }
        
        /* 导航内容 */
        .iinbanner-nav-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .iinbanner-icon {
            color: #009b4c;
            font-size: 18px;
        }
        
        .iinbanner-location {
            color: #999999;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .iinbanner-link {
           color: #999999;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .iinbanner-link:hover {
            color: #009b4c;
        }
        
        .iinbanner-separator {
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* 响应式设计 - 平板端 */
        @media screen and (max-width: 1024px) {
            .iinbanner-image-container {
                height: 350px;
            }
            
            .iinbanner-navigation {
                padding: 14px 20px;
            }
            
            .iinbanner-icon {
                font-size: 17px;
            }
            
            .iinbanner-location {
                font-size: 15px;
            }
        }
        
        /* 响应式设计 - 移动端 */
        @media screen and (max-width: 768px) {
            .iinbanner-image-container {
             width: 100%;
                height: 50vh;
            }
            
            .iinbanner-navigation {
                padding: 12px 16px;
                backdrop-filter: none; /* 移动端性能优化 */
            }
            
            .iinbanner-icon {
                font-size: 16px;
            }
            
            .iinbanner-location {
                font-size: 14px;
                flex-wrap: wrap;
            }
            
            .iinbanner-separator {
                display: none; /* 移动端隐藏分隔符 */
            }
        }
        
        /* 小屏幕移动端优化 */
        @media screen and (max-width: 480px) {
            .iinbanner-image-container {
                height:200px;
            }
            
            .iinbanner-navigation {
                padding: 10px 12px;
            }
            
            .iinbanner-icon {
                font-size: 15px;
            }
            
            .iinbanner-location {
                font-size: 13px;
            }
        }
/* -----------------------内页面包------------------------ */

/* -----------------------内左菜单------------------------ */

        /* 导航菜单样式 */
        .in_nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0 -8px -16px -8px; /* 负边距抵消子元素的外边距 */
        }        
        .in_nav_item {
            width: 200px;
			
            border: 1px solid #ddd;
            text-align: center;
            margin: 0 8px 16px 8px; /* 左右8px间距，底部16px间距 */
        }        
        .in_nav_link {
            display: block;
            padding: 15px 10px;
            text-decoration: none;
            color: #000;
            background-color: #fff;
            transition: all 0.3s ease;
        }        
        .in_nav_link:hover {
            background-color: #009b4c;
            color: #fff;
        }        
        /* 移动端样式 */
        @media (max-width: 768px) {
            .in_nav {
                justify-content: flex-start;
                margin: 0 -8px -16px -8px;
            }            
            .in_nav_item {
                width: calc(50% - 16px); /* 减去左右间距 */
            }            
            .in_nav_link {
                padding: 18px 10px;
            }
        }        
        /* 平板端样式 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .in_nav_item {
                width: calc(25% - 16px); /* 减去左右间距 */
                max-width: none;
            }
        }        
        /* 小屏幕桌面端样式 */
        @media (min-width: 1025px) and (max-width: 1300px) {
            .in_nav_item {
                width: calc(20% - 16px); /* 每行显示5个，减去间距 */
                max-width: none;
            }
        }
        
        /* 当前高亮状态 */
        .in_nav_link.current {
            background-color: #009b4c;
            color: #fff;
        }
        
/* -----------------------内页关于------------------------ */
         /* about 容器样式 */
        .about-container {
            margin: 0 auto;
            background-color: white;
            
            box-shadow-: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        /* 上部分样式 */
        .about-top {
            display: flex;
            flex-wrap: wrap;
            padding: 40px 0;
            border-bottom: 1px solid #eee;
        }
        
        /* 左部分样式 - 图片区域 */
        .about-left {
            flex: 0 0 45%;
            padding-right: 10px;
        }
        
        .about-image-container {
            position: relative;
            width: 100%;
            padding-top: 70%; /* 5:4 比例 (4/5 = 0.8 = 80%) */
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .about-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover {
            transform: scale(1.03);
        }
        
        /* 右部分样式 - 内容区域 */
        .about-right {
            flex: 0 0 55%;
            padding-left: 30px;
        }
        
        /* 英文小标题样式 */
        .about-subtitle {
            color: #009b4c;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        /* 灰色横线样式 */
        .about-line {
            width: 130px;
            height: 1px;
            background-color: #ccc;
            margin-bottom: 10px;
        }
        
        /* 公司名称样式 */
        .about-company-name {
            font-size: 32px;
            font-weight: 500;
            color: #222;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        /* 公司简介样式 */
        .about-description {
            color: #555;
            font-size: 16px;
            line-height: 2;
        }
        
        /* 下部分样式 */
        .about-bottom {
            padding: 40px;
            background-color: #f9f9f9;
        }
        
        .about-bottom-content {
            color: #444;
            font-size: 16px;
            line-height: 2;
            max-width----: 900px;
            margin: 0 auto;
        }
        
        /* 响应式设计 */
        /* 平板设备 */
        @media (max-width: 992px) {
            .about-top {
                padding: 30px;
            }
            
            .about-left, .about-right {
                flex: 0 0 100%;
                padding: 0;
            }
            
            .about-left {
                margin-bottom: 30px;
            }
            
            .about-image-container {
                padding-top: 75%; /* 调整为4:3比例适应平板 */
            }
            
            .about-bottom {
                padding: 30px;
            }
        }
        
        /* 移动设备 */
        @media (max-width: 768px) {

            
            .about-top, .about-bottom {
                padding: 20px;
            }
            
            .about-company-name {
                font-size: 26px;
            }
            
            .about-description, .about-bottom-content {
                font-size: 15px;
            }
            
            .about-image-container {
                padding-top: 80%; /* 恢复5:4比例 */
            }
        }
        
        /* 小屏幕移动设备 */
        @media (max-width: 480px) {
            .about-top, .about-bottom {
                padding: 15px;
            }
            
            .about-company-name {
                font-size: 22px;
            }
            
            .about-subtitle {
                font-size: 13px;
            }
        }
        
        /* 装饰元素 */
        .about-decoration {
            text-align: center;
            margin-top: 20px;
            color: #999;
            font-size: 14px;
        }
        
        .about-decoration i {
            margin: 0 5px;
        }
  /* -----------------------内页图片列表------------------------ */		
  
		
       @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }        
        .piclist-container {
            margin: 0 auto;
            padding: 0px 0;
        }        
        .piclist-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .piclist-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 0px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .piclist-item:hover {
            transform: translateY(-1px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .piclist-img-container {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .piclist-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .piclist-item:hover .piclist-img {
            transform: scale(1.05);
        }
        
        .piclist-img-container::after {
            content: "\f00e";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            color: white;
            font-size: 2.5rem;
            opacity: 0;
            text-shadow: 0 0 15px rgba(0,0,0,0.7);
            transition: all 0.3s ease;
            z-index: 2;
            pointer-events: none; /* 允许点击穿透 */
        }
        
        .piclist-item:hover .piclist-img-container::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        .piclist-content {
            padding: 20px;
            text-align: center;
        }
        
        .piclist-title {
            font-size: 1rem;
			font-weight:400;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }
        
        .piclist-title a {
            color: #333333;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }
        
        .piclist-title a:hover {
            color: #000000;
        }
        
        .piclist-btn {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(to right, #0a4387, #0a4387);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        
        .piclist-btn:hover {
            transform: translateY(-3px);
			color: white;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(to right, #0a4387, #0a4387);
        }
        
        /* Lightbox Styles */
        .piclist-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.80);
            display: flex;
            justify-content: center;
            align-items: center;
           z-index:99999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }
        
        .piclist-lightbox.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .piclist-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            transform: scale(0.8);
            transition: transform 0.5s ease;
        }
        
        .piclist-lightbox.active .piclist-lightbox-content {
            transform: scale(1);
        }
        
        .piclist-lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 0px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        }
        
        .piclist-lightbox-close {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 36px;
            height: 36px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333333;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 74, 0.4);
        }
        
        .piclist-lightbox-close:hover {
            background: #ffffff;
            transform: rotate(90deg);
        }
        
        /* 图片信息 */
        .piclist-lightbox-info {
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            padding: 15px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 0 0 10px 10px;
			
        }
        
        /* 导航按钮 */
        .piclist-lightbox-nav {
            position: absolute;

            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .piclist-lightbox-prev,
        .piclist-lightbox-next {
            background: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333333;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
        }
        
        .piclist-lightbox-prev:hover,
        .piclist-lightbox-next:hover {
			color: #000000;
            background: rgba(255, 255, 255, 0.99);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .piclist-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .piclist-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .piclist-header h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 600px) {
            .piclist-grid {
                grid-template-columns: 1fr;
            }
            
            .piclist-header h1 {
                font-size: 2.2rem;
            }
            
            .piclist-header p {
                font-size: 1rem;
            }
            
            .piclist-lightbox-close {
                top: -60px;
                right: 0;
            }
        }
        
        .piclist-footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }
        
        
        @keyframes loader {
            to {
                transform: translateY(-15px);
                background: #feb47b;
            }
        }
        
        /* 所有可点击元素添加手形光标 */
        a, .piclist-btn, .piclist-lightbox-close, 
        .piclist-img-container, .piclist-lightbox-prev, 
        .piclist-lightbox-next {
            cursor: pointer;
        }  
  /* -----------------------内页证书列表------------------------ */
  
		
       @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }        
        .honorlist-container {
            margin: 0 auto;
            padding: 0px 0;
        }        
        .honorlist-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .honorlist-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 0px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .honorlist-item:hover {
            transform: translateY(-1px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .honorlist-img-container {
            position: relative;
            width: 100%;
            height-------------: 250px;
            overflow--------------: hidden;
            cursor: pointer;
        }
        
        .honorlist-img {
            width: 100%;
            height-: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .honorlist-item:hover .honorlist-img {
            transform: scale(1.05);
        }
        
        .honorlist-img-container::after {
            content: "\f00e";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            color: white;
            font-size: 2.5rem;
            opacity: 0;
            text-shadow: 0 0 15px rgba(0,0,0,0.7);
            transition: all 0.3s ease;
            z-index: 2;
            pointer-events: none; /* 允许点击穿透 */
        }
        
        .honorlist-item:hover .honorlist-img-container::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        .honorlist-content {
            padding: 20px;
            text-align: center;
        }
        
        .honorlist-title {
            font-size: 1rem;
			font-weight:400;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }
        
        .honorlist-title a {
            color: #333333;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }
        
        .honorlist-title a:hover {
            color: #000000;
        }
        
        .honorlist-btn {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(to right, #0a4387, #0a4387);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        
        .honorlist-btn:hover {
            transform: translateY(-3px);
			color: white;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(to right, #0a4387, #0a4387);
        }
        
        /* Lightbox Styles */
        .honorlist-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.80);
            display: flex;
            justify-content: center;
            align-items: center;
           z-index:99999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }
        
        .honorlist-lightbox.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .honorlist-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            transform: scale(0.8);
            transition: transform 0.5s ease;
        }
        
        .honorlist-lightbox.active .honorlist-lightbox-content {
            transform: scale(1);
        }
        
        .honorlist-lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 0px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        }
        
        .honorlist-lightbox-close {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 36px;
            height: 36px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333333;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 74, 0.4);
        }
        
        .honorlist-lightbox-close:hover {
            background: #ffffff;
            transform: rotate(90deg);
        }
        
        /* 图片信息 */
        .honorlist-lightbox-info {
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            padding: 15px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 0 0 10px 10px;
			
        }
        
        /* 导航按钮 */
        .honorlist-lightbox-nav {
            position: absolute;

            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .honorlist-lightbox-prev,
        .honorlist-lightbox-next {
            background: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333333;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
        }
        
        .honorlist-lightbox-prev:hover,
        .honorlist-lightbox-next:hover {
			color: #000000;
            background: rgba(255, 255, 255, 0.99);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .honorlist-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .honorlist-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .honorlist-header h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 600px) {
            .honorlist-grid {
                grid-template-columns: 1fr;
            }
            
            .honorlist-header h1 {
                font-size: 2.2rem;
            }
            
            .honorlist-header p {
                font-size: 1rem;
            }
            
            .honorlist-lightbox-close {
                top: -60px;
                right: 0;
            }
        }
        
        .honorlist-footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            backdrop-filter: blur(5px);
        }
        
        
        @keyframes loader {
            to {
                transform: translateY(-15px);
                background: #feb47b;
            }
        }
        
        /* 所有可点击元素添加手形光标 */
        a, .honorlist-btn, .honorlist-lightbox-close, 
        .honorlist-img-container, .honorlist-lightbox-prev, 
        .honorlist-lightbox-next {
            cursor: pointer;
        }  
		
 /* -----------------------内页产品列表------------------------ */		
        /* 主要容器布局 */
        .leftp-container {
            display: flex;
            flex-wrap: wrap;
            margin: 0 auto;
            padding: 20px 0;
            background-color: #fff;
        }
        
        /* 左侧部分 - 占30% */
        .leftp-left {
            width: 25%;
            padding-right: 20px;
        }
        
        /* 右侧部分 - 占70% */
        .leftp-right {
            width: 75%;
            padding-left: 20px;
        }
        
        /* 左侧上部 - 菜单部分 */
        .leftp-left-top {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 25px 20px;
            margin-bottom: 30px;
        }
        
        .leftp-menu-title {
            font-size: 26px;text-transform: Uppercase;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 12px;
        }
        
        .leftp-green-line {
            height: 3px;
            width: 50px;
            background-color: #009b4c;
            margin-bottom: 25px;
            border-radius: 2px;
        }
        
        .leftp-menu-list {
            margin-top: 10px;
        }
        
        .leftp-menu-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #f9f9f9;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 6px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .leftp-menu-item:hover,
        .leftp-menu-item.active {
            background-color: #009b4c;
            color: #fff;
            border-left: 4px solid #27ae60;
        }
        
        .leftp-menu-item:hover .leftp-menu-icon,
        .leftp-menu-item.active .leftp-menu-icon {
            color: #fff;
        }
        
        .leftp-menu-text {
            font-size: 16px;
            font-weight: 500;
        }
        
        .leftp-menu-icon {
            color: #95a5a6;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        /* 左侧下部 - 内容部分 (移动端隐藏) */
        .leftp-left-bottom {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 25px 20px;
        }
        
        .leftp-bottom-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .leftp-content-list {
            margin-top: 15px;
        }
        
        .leftp-content-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.3s ease;
        }
        
        .leftp-content-item:hover {
            background-color: #f9f9f9;
            padding-left: 5px;
        }
        
        .leftp-content-item:hover .leftp-content-title {
            color: #009b4c;
        }
        
        .leftp-content-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .leftp-content-item:hover .leftp-content-img {
            transform: scale(1.1);
        }
        
        .leftp-content-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .leftp-content-title {
            font-size: 16px;
            font-weight: 500;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        
        /* 右侧内容区域 */
        .leftp-right-title {
            font-size: 26px;text-transform: Uppercase;
            font-weight: 500;
            color: #666666;
            margin-bottom: 12px;
        }
        
        .leftp-right-line {
            height: 1px;
            width: 100%;
            background-color: #dddddd;
            margin-bottom: 25px;
        }
        
        .leftp-right-desc {
            font-size: 18px;
            color: #7f8c8d;
            margin-bottom: 0px;
            line-height: 1.7;
        }
        
        .leftp-right-content {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }
        
        .leftp-right-content p {
            margin-bottom: 20px;
        }
        
        /* 响应式设计 - 平板端 */
        @media (max-width: 992px) {
            .leftp-container {
                padding: 15px;
            }
            
            .leftp-left {
                width: 35%;
                padding-right: 15px;
            }
            
            .leftp-right {
                width: 65%;
                padding-left: 15px;
            }
            
            .leftp-menu-title {
                font-size: 20px;
            }
            
            .leftp-right-title {
                font-size: 24px;
            }
            
            .leftp-right-desc {
                font-size: 17px;
            }
        }
        
        /* 响应式设计 - 移动端 */
        @media (max-width: 768px) {
            .leftp-container {
                flex-direction: column;
                padding: 10px;
            }
            
            .leftp-left,
            .leftp-right {
                width: 100%;
                padding: 0;
            }
            
            .leftp-left {
                margin-bottom: 20px;
            }
            
            .leftp-left-bottom {
                display: none; /* 移动端隐藏左侧下部 */
            }
            
            .leftp-menu-item {
                padding: 12px 15px;
            }
            
            .leftp-right-title {
                font-size: 22px;
            }
            
            .leftp-right-desc {
                font-size: 16px;
            }
        }
        
        /* 响应式设计 - 小屏幕移动端 */
        @media (max-width: 480px) {
            .leftp-container {
                padding: 8px;
            }
            
            .leftp-left-top {
                padding: 20px 15px;
            }
            
            .leftp-menu-title {
                font-size: 18px;
            }
            
            .leftp-menu-text {
                font-size: 15px;
            }
            
            .leftp-right-title {
                font-size: 20px;
            }
            
            .leftp-right-desc {
                font-size: 15px;
            }
        }

 /* -----------------------右侧产品列表------------------------ */		
        .prolist * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 容器样式 */
        .prolist-container {
            margin: 0 auto;
            padding: 20px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        
        /* 使用Flex布局替代Grid */
        .prolist-products {
            display: flex;
            flex-wrap: wrap;
            /* 通过负边距抵消容器内边距，实现间距效果 */
            margin: 0 -12.5px;
        }
        
        /* 产品项样式 */
        .prolist-product {
            display: block;
            text-decoration: none;
            color: #333;
            background-color: #fff;
			border:#ddd 1px solid;
            border-radius: 0px;
            overflow: hidden;
            box-shadow-: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            /* 使用百分比宽度，配合内边距实现间距 */
            width: calc(33.333% - 25px);
            margin: 0 12.5px 25px;
        }
        
        .prolist-product:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }
        
        /* 图片容器 */
        .prolist-image-container {
            width: 100%;
            height: 0;
            padding-bottom: 100%; /* 保持1:1宽高比 */
            position: relative;
            overflow: hidden;
        }
        
        .prolist-product-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .prolist-product:hover .prolist-product-img {
            transform: scale(1.08);
        }
        
        /* 产品标题 */
        .prolist-product-title {
            padding: 10px 15px 10px;
            font-size: 1rem;
            font-weight: 500;
            text-align: center;
            transition: color 0.3s ease;
        }
        
        .prolist-product:hover .prolist-product-title {
            color: #009b4c;
        }
        
        /* 查看详情部分 */
        .prolist-view-more {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 15px 20px;
        }
        
        .prolist-view-icon {
            width: 32px;
            height: 32px;
            background-color: #009b4c;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .prolist-view-icon i {
            color: white;
            font-size: 14px;
        }
        
        .prolist-view-text {
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .prolist-product:hover .prolist-view-text {
            color: #009b4c;
        }
        
        .prolist-product:hover .prolist-view-icon {
            background-color: #009b4c;
            transform: translateX(5px);
        }
        
        /* 平板设备适配 */
        @media (max-width: 1024px) {
            .prolist-product {
                width: calc(33.333% - 20px);
                margin: 0 10px 20px;
            }
            
            .prolist-products {
                margin: 0 -10px;
            }
            
            .prolist-product-title {
                font-size: 1.15rem;
            }
        }
        
        /* 移动设备适配 */
        @media (max-width: 768px) {
            .prolist-product {
                width: calc(50% - 15px);
                margin: 0 7.5px 15px;
            }
            
            .prolist-products {
                margin: 0 -7.5px;
            }
            
            .prolist-product-title {
                font-size: 1.1rem;
                padding: 15px 10px 8px;
            }
            
            .prolist-view-more {
                padding: 8px 10px 15px;
            }
            
            .prolist-title {
                font-size: 1.6rem;
            }
        }
        
        /* 小屏幕移动设备适配 */
        @media (max-width: 480px) {
            .prolist-product {
                width: calc(50% - 12px);
                margin: 0 6px 12px;
            }
            
            .prolist-products {
                margin: 0 -6px;
            }
            
            .prolist-container {
                padding: 15px;
            }
            
            .prolist-product-title {
                font-size: 1rem;
            }
            
            .prolist-view-text {
                font-size: 0.9rem;
            }
            
            .prolist-view-icon {
                width: 32px;
                height: 32px;
            }
        }
        
        /* 超小屏幕设备适配 */
        @media (max-width: 360px) {
            .prolist-product {
                width: calc(100% - 20px);
                margin: 0 10px 15px;
            }
            
            .prolist-products {
                margin: 0 -10px;
            }
        }
	/* ————————————————————————————内页产品内容——————————————————————————— */	
        
        .pro_show_container {
      
            margin: 0 auto;
            padding: 20px 0;
        }
        
        /* 顶部区域样式 */
        .pro_show_top {
            display: flex;
            margin-bottom: 40px;
            background: white;
            border-radius: 0px;
            box-shadow-: 0 12px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .pro_show_top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
        }
        
        /* 左侧轮播图 */
        .pro_show_slider {
            width: 40%;
            position: relative;
            padding: 20px 0;
            background-: linear-gradient(145deg, #f8fafc, #f1f5f9);
            border: 1px solid #eaeff5;
        }
        
        .pro_show_slides {
            position: relative;
            height: auto;
            overflow: hidden;
            border-radius: 0px;
            box-shadow-: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        
        .pro_show_slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background-: linear-gradient(45deg, #f8f8f8, #f5f5f5);
        }
        
        .pro_show_slide.active {
            opacity: 1;
        }
        
        .pro_show_slide img {
            max-width: 90%; border: 1px solid #cccccc;
            max-height: 90%;
            object-fit: contain;
            border-radius: 0px;
            transition: transform 0.5s ease;
        }
        
        .pro_show_slide.active img {
            transform: scale(1.03);
        }
        
        .pro_show_prev, .pro_show_next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            color: #333;
			padding-top:4px;
            font-size: 35px;
        }
        
        .pro_show_prev:hover, .pro_show_next:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            color: #009b4c;
         
        }
        
        .pro_show_prev {
            left: 15px;
        }
        
        .pro_show_next {
            right: 15px;
        }
        
        .pro_show_dots {
            display: flex;
            justify-content: center;
            margin-top: 22px;
            gap: 8px;
        }
        
        .pro_show_dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pro_show_dot.active {
            background: #009b4c;
            transform: scale(1.3);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }
        
        /* 右侧信息区 */
        .pro_show_info {
            width: 60%;
            padding: 40px 50px;
            display: flex;
            flex-direction: column;
            background: white;
        }
        
        .pro_show_title {
            font-size: 36px;
            font-weight: 800;
            color: #22222;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        
        .pro_show_divider {
            height: 2px;
            width: 80px;
            background: linear-gradient(90deg, #eeeeee, #eeeeee);
            margin-bottom: 25px;
            border-radius: 4px;
        }
        
        .pro_show_description p{
            font-size: 16px;
            color: #666666;
            margin-bottom: 0px;
            line-height:2;
        }
        
        .pro_show_features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .pro_show_feature {
            background: #eeeeee;
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: #333333;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .pro_show_buttons {
            display: flex;
            gap: 20px;
            margin-top: 10px;
			width:300px;
        }
        
        .pro_show_btn {
            flex: 1;
            padding: 16px 20px;
            border: none;
            border-radius: 10px;
            font-size: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .pro_show_btn_left {
            background: linear-gradient(135deg, #009b4c, #009b4c);
            color: white;
            box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
        }
        
        .pro_show_btn_right {
            background: linear-gradient(135deg, #333333, #666666);
            color: white;
            box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
        }
        
        .pro_show_btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            z-index: -1;
        }
        
        .pro_show_btn:hover::before {
            transform: translateX(0);
        }
        
        .pro_show_btn:hover {
            transform: translateY(-4px); color: white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* 底部产品详情 */
        .pro_show_bottom {
            background: white;
            border-radius: 0px;
            box-shadow0: 0 12px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .pro_show_tabs {
            display: flex;
            background: linear-gradient(to right, #fcfcfc, #fcfcfc);
            border-bottom: 1px solid #eeeeee;
        }
        
        .pro_show_tab {
            padding: 20px 35px;
            font-size: 18px;
            font-weight: 700;
            color: #222222;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pro_show_tab.active {
            color: #009b4c;
        }
        
        .pro_show_tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #009b4c;
            border-radius: 4px 4px 0 0;
        }
        
        .pro_show_tab:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .pro_show_tab_content {
            padding: 40px 0;
        }
        
        .pro_show_content_item {
            display: none;
        }
        
        .pro_show_content_item.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .pro_show_content_title {
            font-size: 28px;
            margin-bottom: 25px;
            color: #1a365d;
            position: relative;
            padding-bottom: 15px;
        }
        
        .pro_show_content_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #009b4c;
            border-radius: 3px;
        }
        
        .pro_show_content_text {
            line-height: 1.8;
            color: #4a5568;
            font-size: 17px;
            margin-bottom: 20px;
        }
        
        .pro_show_table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .pro_show_table th, 
        .pro_show_table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .pro_show_table th {
            background: linear-gradient(to right, #009b4c, #2c80c5);
            color: white;
            font-weight: 600;
        }
        
        .pro_show_table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        .pro_show_table tr:hover {
            background-color: #edf2f7;
        }
        
        .pro_show_dimension_img {
            max-width: 85%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #eaeff5;
            transition: transform 0.4s ease;
        }
        
        .pro_show_dimension_img:hover {
            transform: scale(1.02);
        }
        
        /* 相关产品 */
        .pro_show_related_container {
            position: relative;
            padding: 20px 0;
        }
        
        .pro_show_related_title {
            font-size: 26px;
            margin-bottom: 30px;
            color: #222222;
            position: relative;
            padding-bottom: 15px;
        }
        
        .pro_show_related_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #ffffff;
            border-radius: 3px;
        }
        
        .pro_show_related_products {
            display: flex;
            overflow-x: hidden;
            scroll-behavior: smooth;
            gap: 20px;
            padding: 15px 5px;
            margin-bottom: 20px;
        }
        
        .pro_show_related_product {
            min-width: calc(25% - 15px);
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }
        
        .pro_show_related_product:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 0px rgba(0, 0, 0, 0.05);
        }
        
        .pro_show_related_img {
            height: 320px;
            background0: linear-gradient(145deg, #eeeeee, #eeeeee);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        
        .pro_show_related_img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
        
        .pro_show_related_product:hover .pro_show_related_img img {
            transform: scale(1.01);
        }
        
        .pro_show_related_info {
            padding: 25px 20px;
        }
        
        .pro_show_related_name {
            font-size: 18px;
			text-align:center;
            font-weight: 500;
            margin-bottom: 12px;
            color: #222222;
        }
        
        .pro_show_related_price {
            color: #009b4c;
            font-size: 22px;
            font-weight: 800;
        }
        
        .pro_show_related_dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
        }
        
        .pro_show_related_dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #cbd5e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pro_show_related_dot.active {
            background: #009b4c;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }
        
        /* 移动端适配 */
        @media (max-width: 900px) {
            .pro_show_top {
                flex-direction: column;
            }
            
            .pro_show_slider, 
            .pro_show_info {
                width: 100%;
            }
            
            .pro_show_slider {
                border-right: none;
                border-bottom: 1px solid #eaeff5;
            }
            
            .pro_show_slides {
                height: auto
            }
            
            .pro_show_tabs {
                overflow-x: auto;
                white-space: nowrap;
            }
            
            .pro_show_related_product {
                min-width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 600px) {
            .pro_show_slides {
                height: auto
            }
            
            .pro_show_buttons {
                flex-direction: column;
            }
            
            .pro_show_related_product {
                min-width: calc(100% - 15px);
            }
            
            .pro_show_tab {
                padding: 16px 25px;
                font-size: 16px;
            }
            
            .pro_show_info {
                padding: 30px 25px;
            }
            
            .pro_show_title {
                font-size: 28px;
            }
            
            .pro_show_tab_content {
                padding: 30px 20px;
            }
            
            .pro_show_related_product {
                min-width: calc(100% - 20px);
            }
        }		
			
		
 /* -----------------------内页新闻列表------------------------ */
         .newslist {
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0 auto;
            padding: 15px 0;
        }
        
        .newslist-item {
            display: flex;
            background-color: #f9f9f9;
            margin-bottom: 15px;
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .newslist-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .newslist-date {
            background-color: #009b4c;
            color: white;
            width: 100px;
            min-height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px;
            flex-shrink: 0;
        }
        
        .newslist-day {
            font-size: 32px;
            font-weight: bold;
            line-height: 1;
        }
        
        .newslist-month {
            font-size: 16px;
            line-height: 1.2;
            margin-top: 5px;
        }
        
        .newslist-content {
            flex: 1;
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-left: 1px solid #e0e0e0;
            overflow: hidden;
        }
        
        .newslist-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            transition: color 0.3s ease;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }
        
        .newslist-item:hover .newslist-title {
            color: #009b4c;
        }
        
        .newslist-desc {
            font-size: 14px;
            color: #777;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .newslist-image {
            width: 200px;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
        }
        
        .newslist-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .newslist-item:hover .newslist-image img {
            transform: scale(1.05);
        }
        
        .newslist-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            text-decoration: none;
            z-index: 1;
        }
        
        /* 桌面端 - 标题1行，描述3行 */
        .newslist-title {
            -webkit-line-clamp: 1;
        }
        
        .newslist-desc {
            -webkit-line-clamp: 3;
        }
        
        /* 平板端适配 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .newslist-image {
                width: 180px;
            }
            
            .newslist-date {
                width: 90px;
                min-height: 90px;
            }
            
            .newslist-day {
                font-size: 28px;
            }
            
            .newslist-title {
                font-size: 17px;
            }
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .newslist-item {
                flex-wrap: wrap;
            }
            
            .newslist-date {
                width: 80px;
                min-height: 80px;
            }
            
            .newslist-day {
                font-size: 24px;
            }
            
            .newslist-month {
                font-size: 14px;
            }
            
            .newslist-content {
                width: calc(100% - 80px);
                padding: 10px 15px;
                min-height: 80px;
            }
            
            .newslist-image {
                width: 100%;
                height: 180px;
                order: -1;
            }
            
            /* 移动端 - 标题1行，描述1行（总共2行） */
            .newslist-title {
                font-size: 16px;
                -webkit-line-clamp: 1;
                margin-bottom: 5px;
            }
            
            .newslist-desc {
                font-size: 13px;
                -webkit-line-clamp: 1;
                line-height: 1.4;
            }
        }
        
        /* 小屏幕手机适配 */
        @media (max-width: 480px) {
            .newslist {
                padding: 10px;
            }
            
            .newslist-date {
                width: 70px;
                min-height: 70px;
            }
            
            .newslist-day {
                font-size: 22px;
            }
            
            .newslist-month {
                font-size: 13px;
            }
            
            .newslist-content {
                width: calc(100% - 70px);
                padding: 8px 12px;
                min-height: 70px;
            }
            
            .newslist-title {
                font-size: 15px;
                line-height: 1.3;
            }
            
            .newslist-desc {
                font-size: 12px;
                line-height: 1.3;
            }
            
            .newslist-image {
                height: 150px;
            }
        }
 
  /* -----------------------内页新闻内容------------------------ */
	        .news_view_container {
            margin: 0 auto;
            background: #fff;
            border-radius: 0px;

            padding: 30px;
            position: relative;
            overflow: hidden;
        }
        
        /* 标题 */
        .news_view_title {
            color: #000;
            font-size: 24px;
            text-align: center;
            margin: 20px 0 15px;
            font-weight: 500;
            line-height: 1.3;
            padding: 0 10px;
        }
        
        /* 元信息 */
        .news_view_meta {
            text-align: center;
            color: #666;
            font-size: 14px;
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            gap: 25px;
        }
        
        .news_view_meta span {
            display: flex;
            align-items: center;
        }
        
        .news_view_meta span----::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 4px;
            background: #999;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        /* 分割线 */
        .news_view_hr {
            height: 1px;
            background: linear-gradient(90deg,  #eee, #eee,  #eee);
            border: none;
            margin: 25px 0;
        }
        
        /* 新闻内容 */
        .news_view_content {
            color: #444;
            font-size: 16px;
            line-height: 1.8;
        }
        
        .news_view_content p {
            margin-bottom: 0px;
            text-indent: 0em;
        }
        
        .news_view_content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 25px auto;
            border-radius: 0px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        
        /* 底部导航 */
        .news_view_footer {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-top: 10px;
        }
        
        .news_view_nav {
            flex: 1;
        }
        
        .news_view_prev, .news_view_next {
            margin-bottom: 15px;
        }
        
        .news_view_nav_label {
            display: inline-block;
            padding: 5px 15px;
            border: 1px dotted #aaa;
            border-radius: 50px;
            color: #999999;
            font-size: 14px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .news_view_nav a {
            color: #999999; font-size: 14px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .news_view_nav a:hover {
            color: #009b4c;
            text-decoration: none;
        }
        
        .news_view_nav_label:hover {
            background: #f5f5f5;
            border-style: solid;
        }
        
        /* 返回按钮 */
        .news_view_back {
            align-self: center;
        }
        
        .news_view_back_btn {
            display: inline-block;
            background: #009b4c;
            color: white !important;
            padding: 10px 30px;
            border-radius:50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(50, 100, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .news_view_back_btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20px;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(25deg);
            transition: all 0.5s;
        }
        
        .news_view_back_btn:hover {
            background: #009b4c;
            box-shadow: 0 6px 12px rgba(50, 100, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .news_view_back_btn:hover::after {
            left: 120%;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .news_view_container {
                padding: 20px 15px;
                border-radius: 10px;
            }
            
            .news_view_title {
                font-size: 24px;
                margin-top: 10px;
            }
            
            .news_view_meta {
                font-size: 14px;
                gap: 15px;
                flex-wrap: wrap;
            }
            
            .news_view_content {
                font-size: 16px;
            }
            
            .news_view_footer {
                flex-direction: column;
            }
            
            .news_view_nav {
                width: 100%;
                margin-bottom: 25px;
            }
            
            .news_view_back {
                width: 100%;
                text-align: center;
            }
            
            .news_view_back_btn {
                display: block;
                width: 40%;
                padding: 14px;
            }
        }
        
        /* 平板适配 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .news_view_container {
                max-width: 700px;
            }
            
            .news_view_title {
                font-size: 28px;
            }
            
            .news_view_content {
                font-size: 16.5px;
            }
        }
        
  /* -----------------------内页下载中心------------------------ */
 
          .down-container {
            width: 100%;
           padding:0px 0;
            margin: 0 auto;
        }
        
        /* 下载列表 - PC端双列 */
        .down-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            list-style: none;
            width: 100%;
        }
        
        .down-item {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #eaeff5;
        }
        
        .down-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .down-link {
            display: flex;
            text-decoration: none;
            color: inherit;
            padding: 22px;
            transition: background-color 0.3s ease;
            height: 100%;
        }
        
        .down-link:hover {
            background-color: #f8fafd;
        }
        
        .down-left {
            display: flex;
            align-items: center;
            flex: 1;
            padding-right: 20px;
        }
        
        .down-icon {
            width: 48px;
            height: 48px;
            background-color: #009b4c;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            transition: all 0.3s ease;
        }
        
        .down-icon i {
            color: white;
            font-size: 25px;
			padding-top:6px;
            transition: all 0.3s ease;
        }
        
        .down-content {
            flex: 1;
            min-width: 0; /* 防止内容溢出 */
        }
        
        .down-title {
            font-size: 18px;
            font-weight: 600;
            color: #222222;
            transition: all 0.3s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .down-file-info {
            font-size: 14px;
            color: #999999;
            margin-top: 8px;
            display: flex;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .down-file-size {
            margin-left: 15px;
            position: relative;
        }
        
        .down-file-size::before {
            content: "•";
            margin-right: 15px;
        }
        
        .down-right {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .down-download {
            width: 48px;
            height: 48px;
            background-color: #f0f5ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .down-download i {
            color: #7f8c8d;
            font-size: 24px;
			padding-top:5px;
            transition: all 0.3s ease;
        }
        
        /* 鼠标悬停效果 */
        .down-link:hover .down-title {
            color: #009b4c;
        }
        
        .down-link:hover .down-icon {
            background-color: #009b4c;
            transform: rotate(0deg);
        }
        
        .down-link:hover .down-icon i {
            transform: scale(1);
        }
        
        .down-link:hover .down-download {
            background-color: #009b4c;
            transform: scale(1.1);
        }
        
        .down-link:hover .down-download i {
            color: white;
            transform: translateY(0px);
        }
        
        /* 响应式设计 - 平板和移动端 */
        @media (max-width: 992px) {
            .down-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .down-link {
                padding: 18px;
            }
            
            .down-icon, .down-download {
                width: 42px;
                height: 42px;
            }
            
            .down-title {
                font-size: 17px;
            }
        }
        
        @media (max-width: 768px) {
            .down-list {
                grid-template-columns: 1fr; /* 移动端单列 */
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .down-link {
                padding: 16px;
            }
            
            .down-icon, .down-download {
                width: 40px;
                height: 40px;
            }
            
            .down-icon {
                margin-right: 15px;
            }
            
            .down-title {
                font-size: 16px;
            }
            
            .down-file-info {
                font-size: 13px;
            }
        }
        
        /* 动画效果 */
        @keyframes down-fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .down-item {
            animation: down-fadeIn 0.5s ease-out forwards;
            opacity: 0;
        }
        
        .down-item:nth-child(1) { animation-delay: 0.1s; }
        .down-item:nth-child(2) { animation-delay: 0.2s; }
        .down-item:nth-child(3) { animation-delay: 0.3s; }
        .down-item:nth-child(4) { animation-delay: 0.4s; }
        .down-item:nth-child(5) { animation-delay: 0.5s; }
        .down-item:nth-child(6) { animation-delay: 0.6s; }
   /* -----------------------内页联系我们------------------------ */ 
 
        /* 主容器 */
        .contact-container {
            width: 100%;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        /* 标题样式 */
        .contact-title {
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
        }
        
        .contact-title h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .contact-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #009b4c;
            border-radius: 2px;
        }
        
        .contact-title p {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-top: 20px;
        }
        
        /* 联系信息容器 - 使用Flex布局 */
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0 -15px;
        }
        
        /* 每个联系信息块 */
        .contact-item {
            flex: 1 1 25%;
            padding: 15px;
            min-width-: 250px;
            max-width-: 300px;
        }
        
        .contact-item-inner {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-item-inner:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        
        /* 图标容器 */
        .contact-icon {
            width: 80px;
            height: 80px;
            background-color: #ecf0f1;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 25px;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .contact-icon i {
            font-size: 32px;
            color: #009b4c;
            transition: all 0.4s ease;
        }
        
        /* 鼠标悬停效果 */
        .contact-item-inner:hover .contact-icon {
            background-color: #009b4c;
            transform: rotateY(180deg);
        }
        
        .contact-item-inner:hover .contact-icon i {
            color: #fff;
            transform: rotateY(-180deg);
        }
        
        /* 内容区域 */
        .contact-content {
            padding-top: 10px;
        }
        
        .contact-content h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .contact-content p {
            color: #7f8c8d;
            font-size: 1.05rem;
            line-height: 1.5;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .contact-item {
                flex: 1 1 50%;
                max-width: 50%;
            }
        }
        
        @media (max-width: 768px) {
            .contact-item {
                flex: 1 1 100%;
                max-width: 100%;
            }
            
            .contact-title h1 {
                font-size: 1.8rem;
            }
            
            .contact-title p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .contact-container {
                padding: 10px;
            }
            
            .contact-title h1 {
                font-size: 1.6rem;
            }
            
            .contact-item-inner {
                padding: 20px 15px;
            }
            
            .contact-icon {

                width: 70px;
                height: 70px;
            }
            
            .contact-icon i {
                font-size: 28px;
            }
        }
        
/* -----------------------内页留言表单------------------------ */

        .guest-container {

            margin: 0 auto;
            padding: 0px 0 30px 0;
            color: #333;
            box-sizing: border-box;
        }

        .guest-header {
            margin-bottom: 30px;
        }

        .guest-main-title {
            font-size: 2rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .guest-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 25px;
        }

        .guest-divider {
            height: 4px;
            width: 80px;
            background-color: #009b4c;
            margin-bottom: 40px;
            transition: width 0.5s ease;
        }

        .guest-divider:hover {
            width: 150px;
        }

        /* 表单样式 */
        .guest-form {
            background-color-: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            box-shadow----: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .guest-form-row {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
            gap: 20px;
        }

        .guest-form-group {
            flex: 1;
            min-width: 250px;
        }

        .guest-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }

        .guest-input-wrapper {
            position: relative;
        }

        .guest-input-wrapper i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }

        .guest-form-input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            box-sizing: border-box;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .guest-form-input:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }

        .guest-form-input::placeholder {
            color: #aaa;
        }

        /* 留言内容区域 */
        .guest-textarea-wrapper {
            position: relative;
        }

        .guest-textarea-wrapper i {
            position: absolute;
            left: 15px;
            top: 20px;
            color: #777;
        }

        .guest-form-textarea {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            min-height: 150px;
            resize: vertical;
            box-sizing: border-box;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .guest-form-textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }

        /* 验证码区域 */
        .guest-captcha-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 15px;
        }

        .guest-captcha-input {
            flex: 1;
            min-width: 200px;
        }

        .guest-captcha-image {
            height: 50px;
            border-radius: 4px;
            border: 1px solid #ddd;
            background-color: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #333;
            padding: 0 15px;
            user-select: none;
        }

        .guest-orange-btn {
            background-color: #f39c12;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        .guest-orange-btn:hover {
            background-color: #009b4c;
            transform: translateY(-2px);
        }

        /* 提交按钮 */
        .guest-submit-row {
            text-align: center;
            margin-top: 30px;
        }

        .guest-red-btn {
            background-color: #009b4c;
            color: white;
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        .guest-red-btn:hover {
            background-color: #f07119;
            transform: translateY(-3px);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .guest-container {
                padding: 15px 0px 15px 0px;
            }
            
            .guest-main-title {
                font-size: 2rem;
            }
            
            .guest-subtitle {
                font-size: 1.1rem;
            }
            
            .guest-form {
                padding: 20px;
            }
            
            .guest-form-group {
                min-width: 100%;
            }
            
            .guest-captcha-row {
                flex-direction: column;
                align-items: stretch;
            }
            
            .guest-captcha-input {
                min-width: 100%;
            }
            
            .guest-orange-btn, .guest-red-btn {
                width: 100%;
                padding: 18px 20px;
            }
        }

        @media (max-width: 480px) {
            .guest-main-title {
                font-size: 1.7rem;
            }
            
            .guest-form {
                padding: 5px;
            }
            
            .guest-form-input, .guest-form-textarea {
                padding-left: 40px;
            }
        }


        /* 主容器前缀 contact2-container */
        .contact2-container {
          
            margin: 0 auto;
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            /* 内部使用flex布局，无grid/gap */
        }

        /* 内部双栏flex布局 (移动端默认列向，平板/桌面行向) */
        .contact2-row {
            display: flex;
            flex-direction: column;
        }

        /* 左侧区域：公司信息 + 联系方式 + 二维码区 + 名片图片 */
        .contact2-left {
            background: #ffffff;
            padding: 32px 28px;
            flex: 1.2;
            border-bottom: 1px solid #ede9df;
        }

        /* 右侧区域：在线留言表单 */
        .contact2-right {
            background: #ffffff;
            padding: 32px 28px;
            flex: 1;
        }

        /* 公司名称样式 */
        .contact2-brand h1 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1e3c4c;
            letter-spacing: -0.3px;
            margin-bottom: 8px;
        }
        .contact2-brand .contact2-tagline {
            color: #5f6c72;
            font-size: 0.9rem;
            border-left: 3px solid #009b4c;
            padding-left: 12px;
            margin-top: 6px;
            margin-bottom: 28px;
        }

        /* 多行联系方式 用flex列表 */
        .contact2-info-list {
            margin-bottom: 32px;
        }
        .contact2-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            font-size: 1rem;
            color: #2c3e2f;
            flex-wrap: wrap;
        }
        .contact2-info-item i {
            width: 32px;
            font-size: 1.3rem;
            color: #009b4c;
            margin-right: 12px;
            text-align: center;
        }
        .contact2-info-item span {
            line-height: 1.8;
			font-size: 1.2rem;
            word-break: break-word;
        }
        .contact2-info-item a {
            color: #2c3e2f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .contact2-info-item a:hover {
            color: #009b4c;
        }

        /* 双二维码区域 */
        .contact2-qr-card {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 12px;
            margin-bottom: 28px;
        }
        .contact2-qr-item {
            flex: 1;
            min-width: 110px;
            text-align: center;
            background: #ffffff;
            border-radius: 20px;
            padding: 14px 8px;
            margin-right: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0e9de;
            transition: transform 0.2s ease, box-shadow 0.2s;
        }
        .contact2-qr-item:last-child {
            margin-right: 0;
        }
        .contact2-qr-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 18px -8px rgba(0, 0, 0, 0.1);
        }
        .contact2-qr-code {
            width: 100%;
            max-width: 110px;
            height: auto;
            margin: 0 auto 10px;
            display: block;
            background: #f9f9f9;
            padding: 6px;
            border-radius: 16px;
        }
        .contact2-qr-item p {
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 6px;
            color: #4b5b44;
        }
        .contact2-qr-item i {
            font-size: 2.8rem;
            color: #2c6e2f;
            margin-bottom: 4px;
            display: inline-block;
        }
        /* 名片图片区域 - 替换原有名片样式为图片 */
        .contact2-business-card-img {
            margin-top: 8px;
            border-radius: 24px;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
            background: #ffffff;
        }
        .contact2-business-card-img:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 24px -8px rgba(0, 0, 0, 0.12);
        }
        .contact2-card-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 24px;
            transition: all 0.2s ease;
        }
        
        /* 右侧留言表单样式 */
        .contact2-form-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e3c4c;
            margin-bottom: 5px;
        }
        .contact2-form-sub {
            color: #6c7a66;
            border-bottom: 1px solid #f9f9f9;
            padding-bottom: 18px;
            margin-bottom: 24px;
            font-size: 0.9rem;
        }
        .contact2-form-group {
            margin-bottom: 22px;
        }
        .contact2-form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #2c4b3e;
            font-size: 0.9rem;
        }
        .contact2-form-group label i {
            margin-right: 6px;
            color: #009b4c;
            width: 20px;
        }
        .contact2-input, 
        .contact2-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd8cd;
            border-radius: 28px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            background: #fefefe;
            outline: none;
            font-family: inherit;
        }
        .contact2-input:focus,
        .contact2-textarea:focus {
            border-color: #009b4c;
            box-shadow: 0 0 0 3px rgba(224, 157, 50, 0.1);
        }
        .contact2-textarea {
            min-height: 100px;
            resize: vertical;
            border-radius: 24px;
        }
        .contact2-btn {
            background: #009b4c;
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.1s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            max-width: 220px;
        }
        .contact2-btn i {
            font-size: 1rem;
        }
        .contact2-btn:hover {
            background: #333333;
            transform: scale(0.98);
        }
        /* 提示信息 */
        .contact2-feedback {
            margin-top: 16px;
            font-size: 0.85rem;
            padding: 6px 12px;
            border-radius: 40px;
            display: inline-block;
            transition: opacity 0.2s;
        }
        .contact2-feedback.success {
            color: #2b6e3c;
            background: #e4f3e3;
        }
        .contact2-feedback.error {
            color: #b13e3e;
            background: #ffe8e6;
        }

        /* 平板设备宽度 (≥768px) 使用flex行布局 */
        @media (min-width: 768px) {
            .contact2-row {
                flex-direction: row;
            }
            .contact2-left {
                border-bottom: none;
                border-right: 1px solid #ede9df;
            }
            .contact2-right {
                padding: 32px 36px;
            }
            .contact2-qr-item {
                margin-right: 20px;
            }
        }

        /* 小屏手机优化 (≤480px) 更紧凑 */
        @media (max-width: 480px) {
            .contact2-left, .contact2-right {
                padding: 24px 20px;
            }
            .contact2-brand h1 {
                font-size: 1.5rem;
            }
            .contact2-btn {
                max-width: 100%;
            }
            .contact2-qr-item {
                margin-right: 10px;
            }
        }

        /* 二维码模拟占位样式 */
        .contact2-qr-sim {
            width: 100px;
            height: 100px;
            background: repeating-linear-gradient(45deg, #2c2c2c 0px, #2c2c2c 4px, #e0d6c6 4px, #e0d6c6 8px);
            border-radius: 12px;
            margin: 0 auto;
        }
        .contact2-wa-sim {
            background: repeating-linear-gradient(135deg, #075e54 0px, #075e54 5px, #25d366 5px, #25d366 10px);
        }
        .contact2-qr-code {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }




