/* reset */
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margin:0;padding:0;}
header,footer,section,article,aside,nav,hgroup,address,figure,figcaption,menu,details{display:block;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;font-weight:normal;}
html,body,fieldset,img,iframe,abbr{border:0;}
i,cite,em,var,address,dfn{font-style:normal;}
[hidefocus],summary{outline:0;}
li{list-style:none;}
h1,h2,h3,h4,h5,h6,small{font-size:100%;}
sup,sub{font-size:83%;}
pre,code,kbd,samp{font-family:inherit;}
q:before,q:after{content:none;}
textarea{overflow:auto;resize:none;}
label,summary{cursor:default;}
a,button{cursor:pointer;}

del,ins,u,s,a,a:hover{text-decoration:none;}
body,textarea,input,button,select,keygen,legend{font:12px/1.14 arial,\5b8b\4f53;color:#000;outline:0; font-family: ''} 
body{background:#fff;}
a,a:hover{color:#333;}
a:hover{color:#333;}
a,a:hover{text-decoration: none;}
a:link, a:visited, a:active, a {
    text-decoration: none !important;
}
.clearfix,.clearfix:before,.clearfix:after{
	display: table;
	clear: both;
	content: "";
}
@media screen and (min-width: 1200px) {
	.container-wd{width: 85%;margin: 0 auto;}
}

.clear{clear: both;}
body,html{min-width: 320px;}
#alla,#content{width: 100%;overflow: hidden;}
.space-4{width: 100%;height: 4rem;}
.space-6{width: 100%;height: 6rem;}
@media (max-width: 768px) {
.space-6,.space-4{width: 100%;height: 2rem;}
}

/* ----------------------------------------------------通用样式-------------------------------------------------------------- */

.product-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 30px 30px;
  box-sizing: border-box;
  flex-wrap: nowrap;      /* 始终不换行，一行3个 */
}

.product-btn {
  flex: 1 1 0;            /* 三个按钮等宽均分 */
  min-width: 0;           /* 允许收缩，防止溢出 */
  max-width: 300px;
  padding: 15px 10px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #ffffff;
  background: #FC8459;    /* 按钮颜色 */
  border: 2px solid #FC8459;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .3s ease;
}

.product-btn:hover {
  background: #ffffff;
  color: #FC8459;
  border-color: #FC8459;
}

/* 手机端：保持一行3个，缩小字号/间距防止文字挤爆 */
@media (max-width: 768px) {
  .product-btn-group {
    gap: 10px;
    padding: 12px 12px;
  }
  .product-btn {
    max-width: none;
    font-size: 12px;      /* 小屏字号自适应缩小 */
    padding: 10px 4px;
  }
}



/* 手机端：屏幕小于768px生效 */
@media screen and (max-width:767px){
  .cpnei_content img{
    width: 100% !important;
    height: auto; /* 高度自适应，防止图片拉伸 */
    display: block;/* 去除图片默认下边距 */
  }
}

 /* main card container — fully responsive */
        .contact-card {
            max-width: 1080px;
            width: 100%;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 2rem;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.2s ease;
        }

        /* Brand header — primary color (lighter blue) */
        .brand-header {
            background: #374bad;    /* softer, lighter blue */
            padding: 2rem 2rem 1.8rem;
            text-align: center;
            color: white;
            border-bottom: 4px solid #FC8459;   /* accent color */
        }

        .company-name {
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.3;
            margin-bottom: 0.5rem;
            word-break: break-word;
        }

        .company-tag {
            font-size: 0.85rem;
            opacity: 0.9;
            font-weight: 400;
            letter-spacing: 0.5px;
            border-top: 1px solid rgba(255,255,255,0.25);
            display: inline-block;
            padding-top: 0.5rem;
            margin-top: 0.4rem;
        }

        /* contact list area */
        .contact-list {
            padding: 1rem 2rem 2rem;
            background: #fff;
        }

        /* each contact row — responsive flex layout */
        .contact-item {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid #edf2f7;
            transition: background 0.2s, padding 0.2s;
        }
        .contact-item:last-child {
            border-bottom: none;
        }
        .contact-item:hover {
            background: #fefaf7;
            border-radius: 1rem;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
            margin: 0 -0.5rem;
            border-bottom-color: transparent;
        }

        /* icon area */
        .contact-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: #eef3fc;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2C5FCE;    /* primary color for icon */
            font-size: 1.5rem;
            transition: all 0.2s;
        }
        .contact-item:hover .contact-icon {
            background: #2C5FCE;    /* primary on hover */
            color: #FC8459;         /* accent icon color */
            transform: scale(1.02);
        }

        /* text area */
        .contact-content {
            flex: 1;
            min-width: 180px;
        }
        .contact-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            color: #5b7a93;
            /*margin-bottom: 0.35rem;*/
        }
        .contact-value {
            font-size: 1rem;
            font-weight: 500;
            color: #1a2c3e;
            line-height: 1.45;
            word-break: break-word;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
        }
        .contact-value a {
            color: #1e5f7a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s, border-bottom 0.2s;
            border-bottom: 1px dotted transparent;
        }
        .contact-value a:hover {
            color: #FC8459;   /* accent color on hover */
            border-bottom-color: #FC8459;
        }
        /* WhatsApp specific link style */
        .whatsapp-link {
            background: #eef3fc;
            padding: 0.2rem 0.7rem;
            border-radius: 40px;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-bottom: none !important;
            transition: all 0.2s;
        }
        .whatsapp-link i {
            font-size: 1rem;
            color: #25D366;
        }
        .whatsapp-link:hover {
            background: #2C5FCE;
            color: white;
        }
        .whatsapp-link:hover i {
            color: white;
        }
        .separator {
            color: #cbd5e1;
            font-weight: 300;
        }

        /* address section: plain text */
        .address-text {
            font-size: 1rem;
            font-weight: 500;
            color: #1a2c3e;
            line-height: 1.5;
        }

        /* responsive fine-tuning */
        @media (max-width: 640px) {
            .contact-card {
                border-radius: 1.5rem;
            }
            .brand-header {
                padding: 1.5rem 1rem;
            }
            .company-name {
                font-size: 1.35rem;
            }
            .contact-list {
                padding: 1.2rem 1.2rem 1.8rem;
            }
            .contact-item {
                gap: 0.8rem;
                padding: 1rem 0;
            }
            .contact-icon {
                width: 42px;
                height: 42px;
                font-size: 1.3rem;
            }
            .contact-label {
                font-size: 0.7rem;
            }
            .contact-value {
                font-size: 0.9rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            .separator {
                display: none;
            }
            .whatsapp-link {
                margin-left: 0;
                padding: 0.2rem 0.6rem;
            }
            .address-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .contact-item:hover {
                padding-left: 0.2rem;
                padding-right: 0.2rem;
                margin: 0 -0.2rem;
            }
        }

        .break-all {
            word-break: break-word;
        }
        

        

/* 头部开始 */
.headerbox{background: rgba(255,255,255,1);width: 100%;border-bottom: 1px solid rgba(162,162,162,0.4);z-index:99;position:fixed !important;}
.headerbox:hover{background: rgba(255,255,255,1);}
.headerwd{padding: 0 4rem;width: 100%;}
.headlogo{display: block;margin-top: 0.8rem;}
.headlogoimg2{display: none;}
.headnav{position: unset !important;}
.headnav ul{display: flex;flex-wrap: wrap;margin-bottom: 0; float:right;}
.headnav ul h2{padding: 0;margin: 0;}
.headnav ul li a{
	display: block;
	font-size: 16px;
	color: #000000;
	text-align: left;
	padding: 1.5rem 1.8rem;
	
	}
.headnav ul li:hover h2 a{color: #fc8459 !important;}


.headerbox:hover .headnav ul li a{color: #333333;}
.nav-menu{background: #ffffff;background: url(sjbj1.jpg);background-size: 100% 100%;  width: 100%;position: absolute;top: 100%;left: 0;z-index: 9; display: none; border-top: 1px solid #fc8459;padding:2rem 4rem;box-sizing: border-box;}
.headnav ul li:hover .nav-menu{display: block;}
.nav-menu:hover{display: block;}
.mavmenu-tit{font-size: 1.4rem;color: #333333;}
.mavmenu-dec{font-size: 0.67rem;color: #666666;line-height: 3rem;}
.navmenurt{box-sizing: border-box;padding: 1rem;}
.navmenulf{padding-left:3rem;}
.navmenurt img{width: 80%;border:5px solid #ffffff;}
.navmenu-ul{display: flex;width: 90%;margin-top: 2rem;}
.navmenu-ul li{width: 30%;box-sizing: border-box;padding: 0 1rem;overflow: hidden;}
.navmenu-ul li a{position:relative; display: block;border-bottom: 1px solid #CCCCCC;font-size: 0.67rem;color: #666666;height: 4rem;line-height: 3rem;width: 100%;overflow: hidden;padding-left: 3px !important;padding-right: 1rem !important;}
.navmenu-ul li a:hover{color:#fc8459 !important;}
.navmenu-ul li a span{position:absolute;right:5px;top: 1.4rem;color:#999999;}
.headnav-rt{margin-top: 1rem;line-height: 1.2rem;}
.headssicon{cursor: pointer; display: inline-block;width: 1.5rem;height: 1.5rem;background: url(head-ss01-02.png);background-size: 100% 100%;}
.headlangeicon{cursor: pointer;display: inline-block;width: 1.5rem;height:1.5rem;background: url(lang02.png);background-size: 100% 100%;margin-left: 1rem;}

.headmobi-menu{float: right;width: 2rem;height: 2rem;margin-top: 1rem;}
.headmobi-menu img{width: 100%;}
.headssbox{
	position: absolute;top: 0;left: 0;background: #ffffff;padding: 3rem 0;width: 100%;display: none;
}
.headssbox form{display: block;width: 70%;margin: 0 auto;border-bottom: 1px solid #CCCCCC;padding: 0.5rem;}
.headssbox form input{border: none;font-size: 0.8rem;color: #333333;width: 80%;}
.search_btn{width: 1rem;height: 1rem;background: url(head-ss02.png);background-size: 100%;border: none;float: right;}
.search_btn:hover{background: url(head-ss02-02.png);background-size: 100%;}
.headss-close{cursor: pointer; width: 1rem;height: 1rem;background: url(headss-close.png);background-size: 100%;position: absolute;top: 2rem;right: 2rem;}
.headss-close:hover{background: url(headss-close02.png);background-size: 100%;}

.headnav-mobi{width: 100%;position: fixed;z-index: 999;height: 100%;background: rgba(0,0,0,0.6);top: 0;right: -200%;}
.headnavmobirt{background: #FFFFFF;width: 80%;float: right;height: 100%;padding-top: 3rem;}
.headnavmobi-close{width: 2rem;height: 2rem;background: url(mobi-close.png);background-size: 100%;position: absolute;left: 2rem;top: 2rem;}
.heanavmobiti{text-align: center;font-size: 2rem;line-height: 3rem;color: #333333;}
.headnavmobirt ul{padding: 0 2rem;}
.headnavmobirt ul li a {display: block;font-size: 1.2rem;line-height: 3rem;height: 3rem;overflow: hidden;color: #333333;text-align: left;border-bottom: 1px dashed #CCCCCC;}
.headnavmobirt ul li a span{float: right;color: #999999;}

			
@media (max-width: 1200px) {
	.headerwd{padding: 0 1rem;}
	.headnav ul li a{padding: 1.3rem 1rem;}
	.headlogo img{width: 100%;}
}

@media (max-width: 991px) {
	.headerwd{padding-bottom: 0.5rem;}
	.headlogo{margin-bottom: 0.5rem;}
	.headnav-rt{float: left;}
}
@media (max-width: 768px) {
.banner .swiper-container .swiper-wrapper .swiper-slide .text{opacity:0;}
.banner .swiper-container .pagination-all{    bottom: 20%;}
.banner .slide-next{display:none;}
.headnav-rt{margin-bottom: 1rem;margin-left: 1rem;}
.headmobi-menu{margin-right: 2rem;}
}
.text p{width: 100%;}
.text h2{margin-bottom: 2rem;}
.banner-btnbox{margin-top: 4rem;}
.bannerbtn{	
	
	display: inline-block;
	    font-size: 0.75rem;
	    font-weight: 600;
	    color: #ffffff;	  

	    line-height: 2.5rem;
	    text-align: center;
	    padding:0 3rem;
	    text-transform: uppercase;
	    -webkit-border-radius: 8px;
	    -moz-border-radius: 8px;
	    border-radius: 8px;
	    position: relative;
	    z-index: 1;
	    overflow: hidden;
		
}
.bannerbtnlf{
	background: #24c373;transition:all 0.3s ease;
}
.bannerbtnrt{
	background: #fc8459;margin-left: 2rem;transition:all 0.3s ease;
}
.bannerbtnlf:hover{
	background: #02351b;color: #FFFFFF;
}
.bannerbtnrt:hover{
	background: #2d0c00;color: #FFFFFF;
}
/*分页样式开始*/
.ye_ma{text-align: center;margin: 0px;clear: none;width: 100%;padding-top:30px; font-size:14px; color:#666;}
.ye_ma a{line-height: 35px;clear: none; height: 35px; font-size:14px; color:#333; padding:0 15px; border:1px solid #cccccc; border-radius:6px; display:inline-block; margin:0 3px;}
.ye_ma a:hover{background-color:#f18713; border:1px solid #f18713; color:#FFF;-webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; transition: all 0.5s ease;/*过渡效果*/}
/*分页样式结束*/
@media (max-width: 768px) {
	.ye_ma a{margin: 5px 0px;line-height: 25px;height: 25px;}
	.mainspace100{height: 2rem;}
	.new_des{padding: 2rem 4rem;}
}


/* 内页banner */
.bannernei{width: 100%;padding: 7rem; background-size: 100% 100%;margin-top: 3.5rem;}
.banner-cp{background: url(banner_nei.jpg) no-repeat;background-size: 100% 100%;}
	@media (max-width: 768px) {
		.bannernei{width: 100%;padding: 8rem; background-size: 100%;}
	}
	@media (max-width: 516px) {
		.bannernei{width: 100%;padding: 6rem; background-size: 100%;}
	}



/* 首页关于我们开始 */

.syaboutimg{
	width: 100%;
	overflow: hidden;
}
.syaboutimg img{
	width: 100%;
}

.syabouttit{
	/*margin-top: 2rem;*/
	color: #FC8459;
	font-size: 0.75rem;
	line-height: 3rem;
	font-weight: bold;
}
.syabputwzbt{
	font-size: 1.5rem;
	color: #000000;
	line-height: 2rem;
	/* margin-top: 2rem; */
	font-weight: bold;
	margin-top: 1rem;
}
.syaboutp1{
	font-size: 0.75rem;
	color: #3333333;
	line-height: 1.5rem;
	margin-top: 1.5rem;
	font-weight: bold;
}
.syaboutp2{
	font-size: 0.75rem;
	color: #999999;
	line-height:1.5rem;
	margin-top: 1rem;
}


/* 首页产品开始 */
.sycpbox{
	width: 100%;
	background: url(sycp-bg.jpg);
	background-size: 100% 100%;
}
.sycptit{
	text-align: center;
	color: #FC8459;
	}
.sycptitp1{
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: bold;
}
.sycptitp2{
	font-size: 0.75rem;
	line-height: 2rem;
}
.sycpboxmain{
	margin-top: 1rem;
}
.sycplist{
	margin-bottom: 2rem;
}
.sycplistbox{
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: 2px solid rgba(255,255,255,0.8);
}
.sycplisttop{
	width: 100%;
	overflow: hidden;
}
.sycplisttop img{
	width: 100%;
	transition: all 0.3s ease;
}
.sycplistbox:hover .sycplisttop img{
	transform: scale(1.1);
}

.sycplistwz{
	width: 100%;
	background-color: rgba(255,255,255,0.8);
	display: flex;
	box-sizing: border-box;
	padding: 0.5rem;
}
.sylistwzlf{
	width: 85%;
}
.sylistwzrt{
	width: 10%;
}
.sycpwzp1{
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
	overflow: hidden;
	font-size: 0.85rem;
	color: #333333;
	font-weight: bold;
	box-sizing: border-box;
	display: block;
	padding-right: 0.5rem;
}

.sycpwzp2{
	width: 100%;
	height: 1.5rem;
	line-height: 1.5rem;
	overflow: hidden;
	font-size: 0.65rem;
	color: #666666;
	box-sizing: border-box;
	display: block;
	padding-right: 0.5rem;
}
.sylistwzrt{
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	font-size: 1rem;
	color: #000000;
	background-color: #fced03;
	margin-top: 0.5rem;
	transition: all 0.3s ease;
}
.sycplist:hover .sylistwzrt{
	background-color: #090461;
	color: #ffffff;
}
@media (max-width: 768px) {
	.sycpbox{
		background-size: cover;
	}
}

/* 优势开始 */
.syyoushitit{
	color: #FFFFFF;
}
.syyoushi{
	width: 100%;
	background: url(syfuwu-bj.jpg);
	background-size: 100% 100%;
	padding-bottom: 12.5rem;
}
.syyoushiwz{
	width: 100%;
	font-size: 0.75rem;
	color: #FFFFFF;
	line-height: 1.5rem;
	text-align: center;
	font-weight: bold;
	margin-top: 1rem;
}
.syyoushihz{position: relative;}
.syyslistwzbox{
	width: 90%;
	margin: 0 auto;
	background-color: #FFFFFF;
	box-sizing: border-box;
	position: relative;
	top: -1.5rem;
	padding: 2rem;
	text-align: center;
	box-shadow: 0px 3px 8px #efecec;
}

.syyslistp1{
	font-size: 0.85rem;
	height: 2rem;
	line-height: 2rem;	
	overflow: hidden;
	color: #333333;
	margin-top: 0.6rem;
	font-weight: bold;
}
.syyslistp2{
	font-size: 0.65rem;
	line-height: 1.5rem;
	margin-top: 0.2rem;
	color: #888888;
}
.syyslisticon{
	width: 3.5rem;
	height: 3.5rem;	
	line-height: 3.5rem;
	border-radius: 5px;
	background-color: #FC8459;
	position: absolute;
	top: -1.7rem;
	left: 50%;
	transform: translateX(-50%);transition: all 0.3s ease;
}

.syyslisticon img{
	width: 55%;
}

.syysdw{position: absolute;top: 0;left: 0;}
.syyslistimgbox{width: 100%;overflow: hidden;}
.syyslistimgbox img{width: 100%;transition: all 0.3s ease;}
.syyslist:hover .syyslistimgbox img{
	transform: scale(1.1);
}
.syyslist:hover .syyslisticon{
	top: -2.3rem;
}
.syyslist:hover .syyslistp1{color: #555555;}


@media (max-width: 768px) {
	.syyoushi{background-size: cover;padding-bottom: 4rem;}
	.syysdw{position: static;}
}


/* 首页新闻开始 */
.synews{
	width: 100%;
	background-color: #f8f7f7;
}
.syysspace{height: 12rem;}
.synewsbox{
	display: flex;
	flex-wrap: wrap;
	align-self: center;
}
.synewsboxul{
	margin-top: 2rem;
}
.synewsboxlf{
	width: 30%;
	overflow: hidden;
}
.synewsbox{
	width: 100%;
	background-color: #FFFFFF;
	display: inline-flex;
}
.synewsboxlf img{width: 100%;transition: all 0.3s ease;}
.synewsboxrt{
	width: 70%;
	box-sizing: border-box;
	padding: 0.5rem;
}
.synewslist{
	margin-bottom: 2rem;
}

.synewsboxrq{
	padding: 0.3rem;
	background-color: #24c373;
	color: #ffffff;
	border-radius: 5px;
	  font-weight: bold;
		display: inline-block;
}
.synewsboxtit{
	width: 100%;
	height: 2rem;
	line-height: 2rem;
	font-size: 0.85rem;
	color: #333333;
	overflow: hidden;
	font-weight: bold;
	transition: all 0.3s ease;
}
.synewsboxdec{
	height: 2.4rem;
	line-height: 1.2rem;
	font-size: 0.65rem;
	color: #666666;
	overflow: hidden;
}
.synewsboxmore{
	margin-top: 0.5rem;
	text-align: right;
font-weight: bold;
	color: #FC8459;

}
.synewslist:hover .synewsboxtit{
	color: #FC8459;
}
@media (max-width: 768px) {
	.synewsboxdec{height: 1.2rem;}
}



/* 首页案例开始 */
.sycaselist{margin-bottom: 2rem;}
.sycaselistbox{
	width: 100%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
.sycaseimg{
	width: 100%;
}
.sycaselistbox-zz{
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-image: linear-gradient(180deg, rgba(34, 35, 40, 0) 0%, #222328 100%);
	transition: all 0.3s ease;
}

.sycaselistbox:hover .sycaselistbox-zz{
	opacity: 1;
}
.sycasewz{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	color: #FFFFFF;
	box-sizing: border-box;
	padding: 0.5rem 1rem;
	transform: translateY(4rem);transition: all 0.3s ease;
	
}
.sycasep1{
	font-size: 1rem;
	font-weight: bold;
	line-height: 2rem;
}
.sycasep2{
	font-size: 0.75rem;	
	line-height: 2rem;
	width: 100%;
	height: 2rem;
	overflow: hidden;
}

.sycaselistbox:hover .sycasewz{
	transform: translateY(0);
}


/* foot开始 */

.footbox{
	width: 100%;
	background: #fc8459;
	color: #FFFFFF;font-size: 0.65rem;
}
.footbox a{color: #FFFFFF;}
.footboxbj{
	width: 100%;
	background-image: url(foot-map.png);
	background-size: cover;
}

.footlftit{
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 2rem;
	margin-top: 2rem;
	color: #FFFFFF;
}
.footlogo{
	width: 60%;
}
.footlx{
	margin-top: 0rem;
}
.footlx li{
	line-height: 2rem;
	
}

.footlistnav{
	width: 100%;
	border-bottom: 1px solid #FFFFFF;
}

.footlistnav ul{display: flex;flex-wrap: wrap;}
.footlistnav ul li a{display: block;padding: 1rem 6rem 1rem 0;font-size: 0.75rem;font-weight: bold;}

.footlx li a{
	display: block;
	line-height: 2rem;
}

.footbotboxewm{
	width: 40%;
	text-align: center;
	margin-top: 1rem;
}
.footbotboxewm img{width: 100%;}
.footbotwz{
	line-height: 1.5rem;
	font-size: 0.65rem;
}

.footdb{text-align: center;font-size: 0.65rem;color: #FFFFFF;line-height: 2rem;}

.footdb a{font-size: 0.65rem;color: #FFFFFF;line-height: 2rem;}
.footdb a:hover{color: #999999;}





/* 产品列表页 */
.cppagelbbox{
	width: 100%;
	border: 1px solid #e6e5e5;
	padding: 1.5rem;
	margin-bottom: 2rem;
}
.cpul li h3{
	border-bottom: 1px solid #e6e5e5;	display: flex;	justify-content: space-between;flex-wrap: nowrap;align-items: center;
}
.cpul li a{
	font-size: 0.75rem;
	font-weight: bold;
	color: #555555;
	line-height: 3rem;
	height: 3rem;
	
	width: 80%;
	overflow: hidden;

}
.cppagelbicon{
	width: 1rem;height: 1rem;

}

.cpul li:hover a{
	color: #F18713;
}

.cppagertlistbox{
	display: block;
	width: 100%;
	background-color: #f5f4f4;
}
.cppagerttop{
	width: 100%;
	overflow: hidden;
}
.cppagerttop img{
	width: 100%;
	transition: all 0.3s ease;
}
.cppagehezi{
	margin-bottom: 2rem;text-align: center;
}
.cppagehezi:hover .cppagerttop img{
	transform: scale(1.1);
}
.cppagerttit{
	line-height: 2rem;
	height: 2rem;
	width: 100%;
	overflow: hidden;
}
.cppagehezi:hover .cppagerttit{
	color: #F18713;
} 



.cppagelfbtn{
	display: flex;
	    justify-content: space-between;
	    align-items: center;
	    font-size: 14px;
	    font-weight: 500;
	    /* font-family: "Rubik", sans-serif; */
	    color: #ffffff;
	    background: #0a4c48;
	    text-transform: uppercase;
	    height: 66px;
	    line-height: 66px;
	    padding: 0 40px;
	    padding-right: 10px;
		font-weight: bold;
}
.cppagelflxicon{
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	background-color: #FFFFFF;
	text-align: center;
}
.cppagelflxicon img{
	width: 50%;
}

.cppagelfbtn2{
	margin-top: 1rem;
	    background: #fad105;
	    color: #222222;
		
}
.cppagelfbtn:hover .cppagelfbtnlfwz{
	color: #FFFF00;
}


@media (max-width: 1468px) {
	.cppagelfbtn{padding: 0 10px;}
}


@media (max-width: 1268px) {
	.cppagelflxicon{display: none;}
}
@media (max-width: 1010px) {
	.cppagelflxicon{display: none;}
}












/* 新闻列表开始 */
.cppagelbbox .cppagehezi{
	margin-bottom: 0.5rem;
	margin-top: 0.5rem;
}
.cplistrt .synewsbox{
	background-color: #f8f8f8;
}

.cplistrt .synewsboxlf{width: 20%;}

.cplistrt .synewsboxrt{width: 80%;}


@media (max-width: 768px) {
	.cplistrt .synewsboxlf{width: 30%;}
	
	.cplistrt .synewsboxrt{width: 70%;}
}





/* 产品内页开始 */
.cpneibox{
	width: 100%;
	box-sizing: border-box;
	padding: 1.5rem;
	border: 1px solid #CCCCCC;
}
.cpneibox img{width: 100%;}
.cpneilistrt h1{
	font-size: 1.5rem;
	line-height: 2rem;
	color: #000000;
	border-bottom: 1px solid #ececec;
	padding-bottom: 1rem;font-weight: bold;
	margin-top: 1rem;
}
.cpneitag{
	margin-top: 1rem;
	line-height: 2rem;
}
.cpneitag{font-size: 0.75rem;}
.cpneitag a{margin-left: 2rem;color: #f18713;font-size: 0.75rem;}
.cpneirttit{font-weight: bold;color: #000000;}
.cpneitag a:hover{color: #999999;}
.cpneidec{
	font-size: 0.75rem;
	line-height: 2rem;
	color: #666666;
	border-bottom: 1px solid #ececec;
	padding-bottom: 1rem;
}

.cpneilx_btn{
	float: left;
	    margin-top: 2rem;
	    padding: 0.6rem 2rem;
	    text-align: center;
	    background-color: #f18713;
	    color: #FFFFFF;
	    font-size: 0.75rem;
	    border-radius: 5px;
		transition: all 0.3s ease;
}
.cpneilx_btn:hover{
	background-color: #dddada;
}
.cpnei_content{
	border-top: 1px solid #CCCCCC;
	margin-top: 4rem;
	font-size: 0.75rem;
	color: #333333;
	line-height: 1.5rem;
	padding-top: 2rem;	
	padding-bottom: 2rem;
	padding: 2rem;
	
}
.cpnei_content h2{
		font-size: 1rem;
		font-weight: bold;
		line-height: 3rem;
}
.cpnei_content h3{
		font-size: 0.85rem;
		font-weight: bold;
		line-height: 2rem;
}
.cpneinews{
	margin-top: 2rem;
}
.cptel{
	font-weight: bold;
	font-size: 2.5rem;
	color: #F18713;
	margin-top: 2rem;
	width: 100%;
	display: block;
}






/* 新闻内页 */
.newsneitop{
	text-align: center;
	
	border-bottom: 1px solid #CCCCCC;
}
.newsneitop h1{
	font-size: 1.5rem;
	font-weight: bold;
	color: #000000;
	line-height: 2rem;
	
}
.newsneitopwz{
	font-size: 0.65rem;
	color: #999999;
	line-height: 2rem;margin-top: 1rem;
}
.newsneitopwz span{margin-right: 2rem;}

.newsneinr{
	font-size: 0.75rem;
	color: #333333;
	line-height: 2rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #CCCCCC;
}

.newsneinr h2{
	font-size: 1.2rem;
	line-height: 3rem;
	font-weight: bold;

}
.newsneinr h3{
	font-size: 1rem;
	line-height: 2rem;
	font-weight: bold;
	

}
.newsneinr p{
	
	line-height: 1.5rem;
	
}
/*.newsneinr p{*/
/*	text-indent: 2rem;*/
/*}*/

.newsneicp{
	margin-top: 4rem;
}

.newspage{
	margin-top: 2rem;
	color: #999999;
	font-size: 0.65rem;
	line-height: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.newspage a{
	color: #999999;font-size: 0.65rem;
}
.newspage a:hover{
	color: #f18713;
}

/* 单独栏目页 */
.ddlmnr{
	font-size: 0.75rem;
	color: #333333;
	line-height: 2rem;
	padding-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #CCCCCC;
}
.ddlmnr  p{
	text-indent: 2rem;
}



/* 手机端横幅文字优化 - 只显示一行标题 */
@media (max-width: 767px) {
  /* 强制显示文字层 */
  .banner .swiper-slide .text {
    display: block !important;
    opacity: 1 !important;
    width: 90% !important;          /* 左右留边距 */
    max-width: 90% !important;
    bottom: 15% !important;          /* 垂直位置调整 */
    left: 5% !important;
    right: 5% !important;
    padding: 8px 12px !important;
    background: rgba(0, 0, 0, 0.45) !important; /* 半透明背景，保证文字清晰 */
    border-radius: 6px !important;
    text-align: center !important;
    z-index: 10 !important;
  }

  /* 只显示标题（h2），并强制单行显示 */
  .banner .text h2 {
    display: block !important;
    font-size: 6vw !important;      /* 根据屏幕宽度自适应，比如4vw在375px屏上是15px */
    line-height: 3 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;  /* 强制不换行 */
    overflow: hidden !important;
    text-overflow: ellipsis !important; /* 如果实在太长，末尾显示... */
    font-weight: bold !important;
  }

  /* 隐藏描述（p标签）和按钮，保持界面干净 */
  .banner .text p,
  .banner .banner-btnbox {
    display: none !important;
  }
}