/*
Theme Name: Oraxis
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Architecture & Interior Html Template
Version: 1.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

 /* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';n facts */


/*header-search button*/

.lenis.lenis-smooth{
	height: auto;
	scroll-behavior: auto !important;
}


.fl, .left {
	float: left;
}
.fr, .right {
	float: right;
}
.cle{*zoom: 1;clear: both; zoom: 1;}
.cle:after{content: ".";display: block;height: 0;clear: both;visibility: hidden;font-size: 0px;}


.sy_banner{
	background: url(/uploads/home/index/sy_banner_bg.jpg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
	position: relative;
	}
.sy_banner .swiper-dot{
	position: absolute;
    bottom: 45%;
    width: auto;
    z-index: 1;
    left: 10px;
}
.sy_banner .swiper-dot .dot{
	display: flex;
    flex-direction: column;
}

.sy_banner .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: 8px;
	height: 51px;
}
.sy_banner .swiper-dot .swiper-pagination-bullet{
	width: 8px;
	height: 12px;
}
.sy_banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
	margin:  var(--swiper-pagination-bullet-horizontal-gap, 4px) 0;
}



.sy_banner .container{
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
}

.sy_banner_fl{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 40%;
	background: url(/uploads/home/index/sy_banner_flbg.jpg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}


.sy_banner_video{
width: 65%;
 position: relative;   
}

.sy_banner_bt{
	z-index: 1;
    position: relative;
	width: 35%;
}

.sy_banner_bt h3{
	font-size: 60px;
	color:#fff;
}

.sy_banner_bt .hr{
	width: 82px;
	height: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
	background: #fff;
}

.sy_banner_bt p{
	font-size: 20px;
	color:#fff;
}
.sy_banner_bt h6{
	font-size: 24px;
	color:#fff;
	font-weight: 500;
}

.sy_banner .scroll-down{
	position: absolute;
    z-index: 10;
    bottom: 60px;
    width: 100%;
    left: 0;
	display: flex;
}
.sy_banner .scroll-down a{
	display: block;
    color: #fff;
	margin: auto 60px auto auto;
}
.sy_banner .scroll-down .scroll-title{
	margin-bottom: 8px;
    font-weight: 500;
    font-size: 13px;
}
.sy_banner .scroll-down .scroll-mouse{
	width: 30px;
    height: 50px;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    border: 2px solid #fff;
}
.sy_banner .scroll-down .scroll-mouse .whell{
	position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    top: 4px;
    -webkit-animation: scroll 1s linear .5s infinite backwards;
    animation: scroll 1s linear .5s infinite backwards;
    background-color: #fff;
}
@keyframes scroll {
    0% {
        top: 4px;
        opacity: 1
    }

    100% {
        top: 21px;
        opacity: 0
    }
}



.ba_video_qywh{
	display: flex;
	position: absolute;
    right: 0;
	bottom:0px;
	align-items: center;
}

.video_qywh_bt{
	padding: 10px 50px;
	margin-right: 20px;
	background: linear-gradient(to right, rgba(236, 236, 236, 1), rgba(255, 255, 255, 0));
	border-radius: 30px;
	position: relative;
}
.video_qywh_bt::before{
	
	content: "";
    position: absolute;
    inset: 0;
	
	width: 100%;
	height: 100%;
	padding: 1px; 
	border-radius: 30px;
	background: linear-gradient(to right, #bcbcbc, #ffffff);
	-webkit-mask: 
    linear-gradient(#fff 0 0) content-box,  /* 保留内容区域 */
    linear-gradient(#fff 0 0); /* 覆盖整个区域 */
  -webkit-mask-composite: xor; /* 裁剪中间，只留边框（WebKit浏览器） */
  mask-composite: exclude; /* 标准语法（Firefox等） */
  pointer-events: none; /* 避免描边影响内部交互（如点击） */
}



.video_qywh_bt h5{
	font-size: 24px;
	color:#0d52a8;
}
.video_qywh_bt p{
	font-size: 12px;
	color:#0d52a8;
	line-height: 1;
}




.video_qywhwz{
padding-left: 30px;
}
.video_qywhwz h4{
	font-size: 22px;
	color:#f95800;
}

.video_qywhwz span{
	font-size: 12px;
	color:#f95800;
	font-weight: 300;
}



/*About - Section */
.about-section .about-icon-box{

	padding: 30px 0px;
    margin-top: 20px;
}

.about-icon-box .row{
	margin-right:0;
	margin-left: 0;
}

.about-icon-box-lb{
	padding: 0;
}


.about-icon-box-lb .wk{
	padding: 0 30% 0 0;
	display: inline-block;
    border-right: 1px solid #b1b1b1;
}
.about-icon-box-lb:nth-child(3) .wk{
	border-right:none;
}

.abouts_titles h4 {
    font-size: 45px;
    line-height: 30px;
    color: #bf0008;
    font-weight: 700;
	font-family: 'Noto Sans SC', sans-serif;
    margin: 0;
	padding-bottom: 20px;
	display: inline;
	position: relative;
}

.abouts_titles h4 i{
	font-size: 14px;
	font-weight: 300;
	position: absolute;
	top: -5px;
	right: -20px;
	font-style: normal;
}


.abouts_titles p {
    font-size: 12px;
    line-height: 26px;
    color: #666;
    font-weight: 200;
    font-family: "Poppins";
    margin: 0;
}

.abouts_icon {
	padding-left: 40px;
}

/*四大优势 - Section */
.syjj_sdys{
	display: flex;
	padding-top: 120px;
}
.syjj_sdys_lb{
	display: inline-block;
	width: 25%;
	padding-top: 35px;
	position: relative;
	cursor: pointer;
}

.syjj_sdys_lb::before{
	width: 100%;
	height: 0%;
	position:absolute;
	content: "";
	background: linear-gradient(90deg, rgba(0, 30, 74, 1), rgba(1, 97, 180, 1), rgba(112, 166, 234, 1));
	bottom: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}
.syjj_sdys_lb:hover::before{
	
	height: 100%;
}



.syjj_sdys_lbwk{
	text-align: center;
}
.syjj_sdys_lbimg{
	border: 1px dashed #fff;
	border-radius: 60px; 
	padding: 10px;
	display: inline-block;
}

.syjj_sdys_lb:hover .syjj_sdys_lbimg{
	transition: all 0.4s ease-in-out;
	border: 1px dashed #fff0;
}



.syjj_sdys_lbimg img{
	max-width: 100%;
    padding: 5px;
	width: 55px;
	
}

.syjj_sdys_lbwk h4{
	font-size: 25px;
	font-weight: 500;
	color:#fff;
	padding-top: 30px;
}
.syjj_sdys_lbjs{
	padding: 40px 60px 70px 60px;
		
}
.syjj_sdys_lbjs p{
	font-size: 15px;
	color:#fff;
	line-height: 27px;
	font-weight: 200;
}
/*资质证书 - Section */
.about-zzzs{
	padding-bottom: 0;
}

.zzzs-content .section-title h2{
	padding-top:10px;
}
.zzzs-content-wz p{
	font-size: 18px;
	line-height: 36px;
	color:#000;
} 
.zzzs-img img{
	width: 100%;
}

.zzzs-xspzzs{
 position: relative;
 padding-top:60px;
 padding-bottom: 160px;	
}
.xspzzs_img img{
	max-width: 100%;
}
.xspzzs-wk{
padding: 0 3%;	
}
.xspzzs-bg{
	position: absolute;
	bottom: 0px;
	display: flex;
    justify-content: center;
	z-index: -1;
}
.xspzzs-bg img{
	width: 100%;
}

.about-zzzry{
	
}
.about-zzzry .section-title h2{
	padding-top: 10px;
	padding-bottom: 30px;
}
.about-zzzry .section-title h5{
	font-size: 32px;
	line-height: 1.8;
}
.zzzry-img .counter-area{
	display: flex;
	margin: 0 -10px;
}
.zzzry-img-lb{
	padding: 0 10px;
}
.zzzry-img-lb img{
width: 100%;
 	
}

.about-zlzs{
	background: url(/uploads/home/jsyyf/zlzs_bg.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.mKeBanner,.mKeBanner div{text-align:center;}
.imageflow img{ -webkit-box-shadow: 2px 2px 2px 2px hsla(0,0%,0%,0.1); box-shadow: 2px 2px 2px 2px hsla(0,0%,0%,0.1); }
.imageflow{overflow:hidden; position:relative; text-align:left; visibility:hidden; width:100%; margin:0 auto}
.imageflow img{border:none; position:absolute; top:0px; visibility:hidden; -ms-interpolation-mode:bicubic}
.imageflow p{margin:0 auto; text-align:center}
.imageflow .loading{border:1px solid #ccc; height:15px; left:50%; margin-left:-106px; padding:5px; position:relative; visibility:visible; width:200px}
.imageflow .loading_bar{background:#ccc; height:15px; visibility:visible; width:1%}
.imageflow .caption{font-weight:bold; position:relative; text-align:center; z-index:10000}
.imageflow .scrollbar{border-bottom:1px solid #b3b3b3; position:relative; visibility:hidden; z-index:10001; height:1px}
.imageflow .slider{background-image:url(../../Images/Index/slider.png); background-repeat:no-repeat; height:14px; margin:-6px 0 0 -7px; position:absolute; width:14px; z-index:10002}
.imageflow .images{overflow:hidden; white-space:nowrap}
.imageflow .button{cursor:pointer; height:17px; position:relative; width:17px}
.imageflow .previous{background:url(../../Images/Index/button_left.png) top left no-repeat; float:left; margin:-7px 0 0 -30px}
.imageflow .next{background:url(../../Images/Index/button_right.png) top left no-repeat; float:right; margin:-7px -30px 0 30px}

.ppjs_mgpp_zs .brand-image img{
	max-width: 100%;
}



/*企业优势 - Section */

.qyys-section{
	background: url(/uploads/home/index/sy_qyys_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.qyys-section .section-title span{
	font-size: 30px;
	font-weight: 600;
}

.qywh_img{
	margin-top: 60px;
}
.qyys-sfqlb{
	margin-top: -80px;
}

.qyys-sfqlb-wk{
	position:relative;
	
}
.qyys-sfqlb_js{
padding-top: 180px;
}

.qyys-sfqlb_img{
	display: flex;
	align-items: center;
}
.qyys-sfqlb_img img{
	width: 100%;
}

.qyys-lbjs_bt{
	padding-right: 60px;
}
.qyys-lbjs_bt h3{
	font-size: 35px;
	font-weight: 600;
	color:#292929;
}
.qyys-lbjs_bt .js p{
	color:#666666;
	font-size: 18px;
	line-height: 40px;
	margin-top: 30px;
}
 
.qyys-slider .array-button.radius-none .array-prev, .qyys-slider .array-button.radius-none .array-next{
	border-radius: 30px !important;
}
.qyys-slider .array-button .array-prev{
	color:#fff;
	background: #00378a;
}
.qyys-slider .array-button .array-next{

	background: #fff;
	color:#00378a;
}
.qyys-slider .array-button{
	justify-content: flex-start;
	margin-top: 40px;
}

.qyys-nav{
	margin-top: 100px;
	width: 120%;
}


.qyys_nav_lb{
	position:relative;
	display: inline-block;
	text-align: center;
}
.qyys_nav_lb p{
	padding-top: 20px;
    color: #000;
    font-size: 18px;
    position: absolute;
    display: block;
    bottom: -40px;
    width: 100%;
}


.qyys_nav_lbbg .a{
	display: inline;
	opacity: 1;
	transform: rotate(0deg);
	transition: all 0.4s ease-in-out;
}
.qyys_nav_lbbg .b{
	display: none;
	opacity: 0;
	
	transition: all 0.4s ease-in-out;
	animation: spin180 2s ease-in-out infinite;
}

.swiper-slide-thumb-active .qyys_nav_lbbg .b{
	display: inline;
	opacity: 1;
	transform: rotate(0deg);
	
}
.swiper-slide-thumb-active .qyys_nav_lbbg .a{
	display: none;
	opacity: 0;
	animation: spin180 2s ease-in-out infinite;
	
}
.qyys_navfl{
	display: flex;
	align-items: center;
	padding-bottom: 40px;
}
.qyys_navfl:nth-child(4) .qyys_nav_hr{
	display: none;
}
.qyys_nav_hr{
	display: inline-block;
	width: 100%;
    height: 2px;
	background: #93a2b9;
	margin: 0 10%;
}

.qyys_nav_lbimg{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.ny_qywh .about-list{
	display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 40px;
}

.ny_qywh .about-list ul li{
	display: flex;
	font-size: 18px;
}
.ny_qywh .about-list ul li p{
	margin-bottom: 0px;
	font-size: 18px;
	line-height: normal;
}

.sy_cccd{
	height: 100vh;
	position: relative;
}


.sy_cccd .mySwiper2{
	height: 100%;
    width: 100%;
}
.sy_cccd_nr{
	position: relative;
}

.cccd_nrlb{
    width: 100%;
    height: 100%;  
}
.cccd_nrlb .container{
	 height: 100%;
	display: flex;
}
.cccd_nrwk{
	margin: auto 0;
}

.sy_cccd_bt{
	position: absolute;
    right: 0;
    top: 20%;
    width: 100%;
    z-index: 11;
}
.sy_cccd_bt .section-title span{
	color:#fff;
	font-size: 45px;
	font-weight: 600;
}

.cccd_nrtxt{
	width: 46%;
}

.cccd_nrtxt h3{
	font-size: 30px;
	color:#fff;
	font-weight: 500;
}
.cccd_nrtxt p{
	color:#fff;
	font-size: 18px;
	line-height: 40px;
	margin-top: 40px;
}
.cccd_nrtxt ul{
	margin-top: 20px;
}
.cccd_nrtxt ul li{
	font-size: 18px;
	color:#fff;
	font-weight: 200;
	margin-bottom: 10px;
}
.cccd_nrtxt ul li .far{
	display: none;
}

.cccd_button{
	margin: auto 0 auto auto;
}


.cccd_button .theme-btn::before,.cccd_button .theme-btn::after{
	background-color: #fc6501;
	border-radius:0;
}

.cccd_button .theme-btn:hover::before, .cccd_button .theme-btn:hover::after{
	background: #fc6501;
	
}


.sy_cccd_dh{
	width: 33.33%;
	height: 100%;
	position: absolute;
	left: 0;
	border-right: 1px solid #999999;
	z-index: 2;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.0));
}
.cccd_dh_nav{
	position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
	
}
.cccd_dh_nav .swiper-slide{
	height: 80px;
}

.sy_cccd_dh .section-title{
	margin-top: 100px;
}
.sy_cccd_dh .section-title span{
	color:#fff;
}

.sy_cccd_dh .section-title h3{
	font-size: 36px;
	color:#fa7000;
	font-weight: 600;
	line-height: 1;
	padding-top: 0px 
}
.sy_cccd_dh .section-title .dhbt_1{
	padding-top: 30px 
}
.sy_cccd_dh .section-title .dhbt_2{
	padding-top: 20px;
	color:#fff;
}

.sy_cccd_dh .section-title a{
	color:#fff;
	margin-top: 40px;
	display: block;
}


.cccd_dh_container{
	padding-left: 20%;
}
.cccd_nav{
	background: rgb(0 0 0 / 60%);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;	
	width: 100%;
}

.cccd_nav_lb{
	padding: 20px 0px;
	position: relative;
	width: 100%;
	cursor: pointer;
	z-index: 1;
}
.cccd_nav_lb:hover::before{
	width: 100%;
}
.cccd_nav_lb::before{
	content: "";
    opacity: 0.86;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
	background: linear-gradient(to right, rgba(252, 101, 1, 1), rgba(255, 166, 51, 1));
}

.cccd_nav_lb .wk{
	border-right: 1px solid #999999;
	padding: 20px 30px 20px 20%;
	display: flex;
	
}
.cccd_nav_lb .wk .img{
	margin: auto 0;
	padding-right: 50px;
}
.cccd_nav_lb .wk .img img{
	max-width: 100%;
}

.cccd_nav_lb .wk h3{
	font-size: 20px;
	color:#fff;
	line-height: 35px;
	font-weight: 500;
}

.cccd_nav_lb .wk p{
	font-weight: 100;
	font-size: 14px;
	color:#fff;
	line-height: 1;
}
.cccd_nav_lb:hover .wk .fa-long-arrow-right{
	opacity: 1;
}
.cccd_nav_lb .wk .fa-long-arrow-right{
	color:#fff;
	margin: auto 0 auto auto;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}
/*行业成就 - Section */
.counter-section{
	padding: 120px 0 60px 0;
}
.about_ny .counter-section{
	padding: 0px 0 120px 0;
}
.counter-section .section-title{
	text-align: center;
	margin-bottom: 50px;
}
.counter-section .counter-box-items h2{
	font-size: 40px;
}
.counter-section .counter-box-items h2 i{
	font-size: 18px;
	font-weight: 300;
	font-style: normal;
}

/*生产设备 - Section */



.scsb-bd{
	background: #f8f8f8;
	padding: 60px 0;
}

.scsb-bd .firstRow{
	background: linear-gradient(90deg, rgba(70, 179, 156, 1), rgba(28, 142, 207, 1));
	border:none;
}
.scsb-bd .firstRow th{
	color:#fff;
	padding: 10px;
	font-size: 18px;
	border-right: 1px solid #fff;
}

.scsbbd tr{
	border: 1px solid #151b24;
} 
.scsbbd table{
	display: flex;
    justify-content: center;
}


.scsbbd tr td{
	padding: 10px 10px;
	font-size: 16px;
	color: #333;
	border: 1px solid #151b24;
}


.scsb_lbwk{
	margin-bottom: 30px;
}

.scsb_lbwk .wk{
	overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 5px;
}
.scsb_lbimg {
	overflow: hidden;
}
.scsb_lbimg img{
	width: 100%;
	transition: .5s;
}

.scsb_lbwk:hover .scsb_lbimg img{
	transform: scale(1.1);
}
.scsb_lbnr{
	padding: 20px 20px;
    border-top: 1px solid #e6e6e6;
}
.scsb_lbnr h3{
	font-size: 18px;
}
.scsb_lbnr p{
	font-size: 16px;
	color:#333;
	line-height: 28px;
	margin-top: 10px;
	height: 168px;
}


/*发展历程 - Section */
.nyfzlc-section{
	position: relative;
	
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
	
}
.nyfzlc-section .swiper{
	background:url(/uploads/home/about/fzlcbg_12.png)repeat-x left top;
	overflow: visible;
	position: relative;
	margin: 100px 0 40px;
	padding: 0 60px;
}

.nyfzlc-section .hero-content{
	background: linear-gradient(to bottom, #2368cf 20%, #00317b 80%);
    padding: 155px 0 155px 15%;
	height: 100%;
}

.nyfzlc-section .hero-content h5{
	font-family: 'Source Han Serif SC', serif;
	text-transform: uppercase;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #a7b6f0 20%, #ffffff 80%);
	font-size: 26px;
	font-weight: 800;
	padding: 40px 0px;
}
.nyfzlc-section.hero-3 .hero-content h1{
	margin-bottom: 0px;
	color:#fff;
	font-size: 40px;
}
.nyfzlc-section.hero-3 .hero-content span{
	font-size: 16px;
	font-weight: 200;
	color:#fff;
	margin-bottom: 20px;
	display: block;
}

.nyfzlc-section.hero-3 .hero-slider-items{
	margin-left:0px;
	position: relative;
	padding: 255px 0 0;
}
 
.nyfzlc-section .swiper-wrapper{
	
	
	
}

.nyfzlc-section .swiper-slide:nth-child(odd) .nyfzlc-lb{
	margin-top: 10px;
	border-left: 1px solid #6c83c8;
}

.nyfzlc-section .swiper-slide:nth-child(even) .nyfzlc-lb{
	
	border-left: 1px solid #6c83c8;
	position: absolute;
    top: -300px;
	
}

.nyfzlc-section .swiper-slide:nth-child(even) .nyfzlc-lb-img{
	bottom: auto;
	top:-10px;
}


.nyfzlc-lb{
	position: relative;
	padding: 20px;
	width: 110%;
	height: 300px;	
	
	
}


.nyfzlc-nr{
	
	
}
.nyfzlc-nr h3{
	color:#000;
	font-size: 20px;
	padding-bottom: 20px;
	padding-top: 0px;
}

.nyfzlc-nr p{
	font-size: 16px;
	color:#333;
	line-height: 30px;
	
}
.nyfzlc-nr h5{
	padding-bottom: 10px;
	margin-top: 20px;
	padding-left: 0px;
	font-size: 26px;
	font-weight: 500;
	background: linear-gradient(90deg, #6a81c7, #354ab0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}



.nyfzlc-lb-img{
	position: absolute;
	left: -20px;
	bottom: 0px;
}

.nyfzlc-lb-img img{
	width: 40px;
	max-width: 100%;
}

.nyfzlc-section .array-button.radius-none .array-prev, .nyfzlc-section .array-button.radius-none .array-next{
	border-radius: 30px !important;
}



/*研发团队 - Section */
.ny_yftd{
	
}
.yftd_lb{
	margin-top: 40px;
	text-align: center;
}
.yftd_lb img{
	max-width: 100%;
}


/*生产基地 - Section */
.scjd-section{
	background:#fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	padding: 0 0 120px 0;
}
.nyfzlc-section.hero-3{
	
}
.sy_scjd_nav{
	margin: auto 0;
}
.scjd-section .sy_gsyj_gd{
	justify-content: flex-end;
	align-items: center;
}
.sy_scjd_nav ul{
	
}
.sy_scjd_nav ul li{
	display: inline-block;
	padding-left: 50px;
}
.sy_scjd_nav ul li a{
	font-size: 22px;
	font-weight: 300;
	color:#101010;
	position: relative
}
.sy_scjd_nav ul li a::before{
	position: absolute;
    content: "";
	bottom:-10px;
	left: 0;
	width: 0%;
	height: 1px;
	background: #003f8b;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.sy_scjd_nav ul li:hover a{
	color:#003f8b;
	
}
.sy_scjd_nav ul li:hover a::before{
	width: 100%;
}

.sy_scjd_nav ul .on a, .sy_scjd_nav ul li:hover a,.category-item.active {
	color:#003f8b;
   
}
.sy_scjd_nav ul .on a::before, .sy_scjd_nav ul li:hover a::before,.category-item.active::before {
	width: 100%;
   
}



.scjd-wrapper{
	
}
.scjd-img{
	height: 460px;
}
.scjd-img a{
	display: block;
    width: 100%;
    height: 100%;
}


.scjd-img img{
	width: 100%;
}

.scjd-imgfr{
	margin-top: 25px;
}

.scjd-imgfr .row{
	height: 100%;
	align-content: space-between;
}

.scjd-nimgfr{
	
}
.scjd-nimgfr img{
	width: 100%;
}



.hidden{
	display: none;
}
.category-content{
	visibility: inherit!important;
	animation-name: fadeInUp!important;
}


/*产品展示 - Section */

.main-sidebar{
	margin-top: 0px;
}
.h_left {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-shadow: var(---box-shadow);	
}
.cp_type .hd {
  
  width: 100%;
  height: auto;
  margin: 0 auto 0px;
  padding: 30px;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -moz-box-sizing: border-box
}
.cp_type .hd p {
  width: 100%;
  height: 30px;
  line-height: 30px;
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 0px;
  padding: 0
}
.cp_type .hd p img {
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px 10px 3px 0;
  padding: 0;
  float: left
}
.cp_type .hd span {
  display: block;
  height: 24px;
  line-height: 24px;
  color: #aaa;
  font-size: 14px
}
.cp_type .hd em {
  display: block;
  width: 50px;
  height: 2px;
  margin: 6px 0 0;
  padding: 0;
  background: url(../image/line05.png) 0 0 no-repeat
}
.cp_type .hd i {
  display: none
}
.cp_type .bd {
  padding: 0
}
.cp_type .bd ul li {
 background-color: #0076d6;
    padding: 0;
    
}
.cp_type .bd ul li p {
  height: 60px;
  line-height: 60px;
  padding: 0 50px;
  position: relative;
  border-bottom: 1px dashed rgba(241, 241, 241, 0.3);
  background: url(../image/ico13.png) 20px 28px no-repeat;
  transition: all .4s ease
}
.cp_type .bd ul li p a {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  line-height: 60px;
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}
.cp_type .bd ul li p span {
  display: block;
  width: 40px;
  height: 100%;
  background: url(../image/mulu1.png) center center no-repeat;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 10px
}
.cp_type .bd ul li div {
  display: none;
  padding: 15px 40px;
  background: #002787;
	transition: all 0.3s;
}
.cp_type .bd ul li div a {
  display: block;
  height: 32px;
  line-height: 32px;
  color: rgb(255 255 255 / 60%);
  font-size: 15px;
  border-top: 0px solid #eaeaea;
  padding: 0 0 0 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../image/ico14.png) 8px 10px no-repeat;
  transition: all .4s ease
}
.cp_type .bd ul li div a:hover,.cp_type .bd ul li div a.on {
  color: rgba(255, 255, 255, 1)
}
.cp_type .bd ul li div a:first-child {
  border-top: 0
}

.cp_type .bd ul li.on .submenu{
	display: inherit;
	margin-top: 0px;
}


.cp_type .bd ul li:hover p, .cp_type .bd ul li.on p {
  background-color: #1a4bb9;
}
.cp_type .bd ul li:hover p a, .cp_type .bd ul li.on p a {
  color: #fff
}
.cp_type .bd ul li:hover p span {
  background: url(../image/mulu1.png) center center no-repeat
}
.cp_type .bd ul li.expanded p span {
  background: url(../image/mulu2.png) center center no-repeat
}
.cp_type .bd ul a.ckqb {
  display: block;
  height: 34px;
  line-height: 34px;
  font-size: 16px;
  color: #333;
  background: #f1f1f1;
  width: 92%;
  margin: 10px auto;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer
}
.cp_type .bd ul a.ckqb:hover {
  background: #4121c7;
  color: #fff
}

.wmtd_lb{
	margin-top: 20px;
}
.wmtd_lb .wk{
	box-shadow: 0 0px 6px 3px rgba(0,0,0,.08);
    padding: 20px 10px;
	border-radius: 10px;
} 
.wmtd_lbimg {
	overflow: hidden;
    border-radius: 50%;
    width: 66px;
    height: 66px
}
.wmtd_lbimg img{
	width: 100%;
}



.wmtd_lbnr {
	
}

.wmtd_lbbt{
	display: flex;
	align-items: center;
}



.wmtd_lbbtwz{
	margin-left: 10px;
}
.wmtd_lbnr h2{
	font-size: 18px;
	text-transform: uppercase;
}
.wmtd_lbnr h2 span{
	font-weight: 300;
}
.wmtd_lbnr h3{
	font-size: 16px;

    color: #fff;
    font-weight: 200;
    padding: 5px 20px;
    background: #008ed8;
    border-radius: 20px;
    margin-top: 5px;
}


.wmtd_lbnr_wz{
	padding-top: 10px 
}
.wmtd_lbnr_wz p{
	font-size: 16px;
	color:#000;
}

.contact-info-items{
	display: flex;
    border-bottom: 1px solid #dde3e3;
    align-items: center;
    padding-bottom: 10px;
}

.lcwm_wmtd_lb{
	
}

.lcwm_wmtd_lb .wmtd_lbnr{
	display: flex;
}
.lcwm_wmtd_lb .wmtd_lbbt{
	width: 40%;
}
.lcwm_wmtd_lb .wmtd_lbnr_wz{
	padding-top:0;
	width: 60%;
	padding-left: 20px;
}
.lcwm_wmtd_lb .wmtd_lbnr_wz p{
	font-size: 14px; 
	line-height: 1.8;
}
.lcwm_wmtd_lb .wmtd_lbnr h3{
	font-size: 14px;
    text-align: center;
}
.content-js{
margin-top: 10px;	
}
.content-js p{
	font-size: 14px;
}








.sy_project_bt{
	margin-bottom: 40px;
}

.sy_project_bt .dhbt_1{
	color:#fff;
	margin-top: 0;
	padding-top: 0;
}
.sy_project_bt h4{
	font-size: 30px;
	color:#fff;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.sy_project_bt .section-title{
	margin-bottom: 0px;
    margin-top: 0px;
	text-align: center;
}

.project-section .swiper-dot .swiper-pagination-bullet{
	width: 8px;
    height: 8px;
	background-color: #cccccc;
}
.project-section  .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #008ed8;
}

.project-section .swiper-dot{
	margin-top: 20px;
}


.sy_cpzs_bt{
	margin-top: 0px;
    margin-bottom: 40px;
	position: relative;
	
	background: #f5f5f5;
}

.sy_cpzs_bt .eypro_left{
	display: none;
}

.sy_cpzs_bt .wk{
	display: flex;
	justify-content: center;
}
.sy_cpzs_bt .col-lg-4{
	display: flex;
}

.cpzx_nav_fl{
	padding: 30px 0;
}
.project-section .sy_cpzs_bt .hendrio-button{
	margin: auto 0;
	text-align: right;
}

.sy_cpzs_bt .cpzx_nav_fr{
	padding-left: 70px;
}

.project-section .sy_cpzs_bt .section-title h1{
	font-size: 30px;
	color:#000000;
	line-height: 1.2;
	margin: 0;
    font-weight: 400;
}
.project-section .sy_cpzs_bt .section-title h1 span{
	padding-left: 0px; 
	margin-top: 0;
	font-size: 25px;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
}

.sy_cpzx_nav{
	height: 100%;
}
.sy_cpzx_nav ul{
	height: 100%;
}
.sy_cpzx_nav ul li{
	display: inline-block;
	padding:0px 0px 0px 10px;
	height: 100%;
}

.sy_cpzx_nav ul li a{
	font-size: 16px;
    font-weight: 400;
    color: #000000;
    padding: 0px 35px;
    letter-spacing: .025em;
	border-radius: 0px;
    text-decoration: none;
    position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

.sy_cpzx_nav ul li a i{
	position: absolute;
    font-size: 15px;
    font-weight: 600;
    margin-left: 0;
    bottom: 20%;
    text-align: center;
    left: 0;
    width: 100%;
	color:#e99b00;
	display: none;
} 


.sy_cpzx_nav ul .on a, .sy_cpzx_nav ul li:hover a{
	color: #fff;
    background: #008ed8;
}

.sy_cpzx_nav ul .on a i, .sy_cpzx_nav ul li:hover a i{
	display: inline;
}


.portfolio-area .sy_cpzs_bt .hendrio-button{
	margin: auto 0;
	text-align: right;
}

.ny_Shop .single-sidebar-widget{
	margin-bottom: 20px;
}

/* table
================*/

table.category-table {
    padding: 2px 0 0;
    display: inline-block;
	width: 100%;
}
table.category-table tbody{
	width: 100%;
	display: block;
}
table.category-table td.table-title {
    font-size: 16px;
    color: #062461;
    font-weight: 600;
	border-right: 1px solid rgba(6, 36, 98, 0.1);
	width: 30%;
}
table.category-table tr{
	border: 1px solid rgba(6, 36, 98, 0.1);
	width: 100%;
    display:flex;
}
table.category-table tr td {
    padding: 12px 25px;
}



table.category-table td.table-text {
    color: #000;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter';
	width: 70%;
}
table.category-table td.table-text p{
	margin-bottom:0;
}


/*Tab Items
=======================*/




/*行业应用 - Section */
.hyyy-section{}

.hyyy-nr{
	margin-top: 60px;
	display: flex;
}
.hyyy-nrlb{
	width: 25%;
}
.hyyy-nr .hyyy-nrlb{
	background-size: cover!important;
    background-position: center!important;
    background-repeat: no-repeat!important;
}
.hyyy-nrlb-bt{
	text-align: center;
}
.hyyy-nrlb-bt h5{
	font-size: 33px;
	color:#fff;
	font-weight: 500;
}
.hyyy-nrlb .wk{
	padding: 145px 10%;
}
.hyyy-nrlb-hr{
	position: relative;
	width: 100%;
	display: flex;
    justify-content: center;
	padding: 80px 0 60px;
}
.hyyy-nrlb-hr::before{
	content: "";
	position: absolute;
	width: 30px;
	height: 1px;
	background: #fff;
}

.hyyy-nrlb-wz{
	text-align: center;
	height: 140px;
}
.hyyy-nrlb-wz p{
	font-size: 18px;
	color:#fff;
	font-weight: 300;
	line-height: 35px;
}

.hyyy-nrlb-gd{
	text-align: center;
}

.hyyy-nrlb-gd a{
	font-size: 28px;
	color:#fff;
	width: 60px;
    height: 60px;
	font-weight: 200;
    line-height: 52px;;
	border: 2px solid #fff;
	display: inline-block;
    text-align: center;
	border-radius: 30px;
}

.hyyy-nrlb-sz{
	margin-top: 180px;
	text-align: center;
}

.hyyy-nrlb-sz h1{
	font-size: 190px;
	color:#fff;
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: transparent;
}



/*产品中心 - Section */


.absolute {
  position: absolute
}
.relative {
  position: relative
}
.inset-0 {
  inset: 0px
}
.bottom-0 {
  bottom: 0px
}
.left-0 {
  left: 0px
}
.left-3 {
  left: 0.75rem
}
.right-0 {
  right: 0px
}
.right-3 {
  right: 0.75rem
}
.top-3 {
  top: 0.75rem
}
.mx-auto {
  margin-left: auto;
  margin-right: auto
}
.mb-1 {
  margin-bottom: 0.25rem
}
.mb-3 {
  margin-bottom: 0.75rem
}
.mb-8 {
  margin-bottom: 2rem
}
.ml-2 {
  margin-left: 0.5rem
}
.mr-1 {
  margin-right: 0.25rem
}
.flex {
  display: flex
}
.grid {
  display: grid
}
.aspect-square {
  aspect-ratio: 1 / 1
}
.h-1 {
  height: 0.25rem
}
.h-full {
  height: 100%
}
.w-0 {
  width: 0px
}
.w-full {
  width: 99%
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr))
}
.items-center {
  align-items: center
}
.justify-between {
  justify-content: space-between
}
.gap-6 {
  gap: 1.5rem
}
.overflow-hidden {
  overflow: hidden
}
.rounded {
  border-radius: 0.25rem
}
.rounded-full {
  border-radius: 9999px
}
.rounded-xl {
  border-radius: 0.75rem
}
.bg-black\/20 {
  background-color: rgb(0 0 0 / 0.2)
}
.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5)
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1))
}
.bg-neutral-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1))
}
.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1))
}
.bg-primary\/10 {
  background-color: rgb(37 99 235 / 0.1)
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1))
}
.bg-secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1))
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
.object-cover {
  object-fit: cover
}
.p-4 {
  padding: 1rem
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem
}
.font-inter {
  font-family: Inter, system-ui, sans-serif
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem
}
.font-bold {
  font-weight: 700
}
.font-medium {
  font-weight: 500
}
.text-neutral-400 {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1))
}
.text-neutral-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1))
}
.text-neutral-900 {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1))
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1))
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}
.line-through {
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through
}
.cp-opacity-0 {
  opacity: 0
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}
.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}
.duration-200 {
  transition-duration: 200ms
}
.duration-300 {
  transition-duration: 300ms
}
.duration-500 {
  transition-duration: 500ms
}
.product-card-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.video-grab {
  cursor: grab;
}



.video-grabbing {
  cursor: grabbing;
  -webkit-user-select: none;
  user-select: none;
}
.hover\:bg-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1))
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}
.hover\:product-card-shadow-hover:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.group:hover .group-hover\:cp-opacity-0 {
  opacity: 0
}
.group:hover .group-hover\:cp-opacity-100 {
  opacity: 1
}
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}
@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }
}








.project_lb{
	padding: 60px 0 120px 0;
}




.sy_cpfl{
	margin-top: 70px;
	display: block;
	position: relative;
}


.cpflnav{
	background: url(/uploads/home/index/cpflnav_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
	transition: all 150ms ease-out;
}

.swiper-slide-active .cpflnav{
	opacity: 1;
}



.cpflnav .wk{
	padding: 70px 20px 70px 60px;
	display: flex;
    align-items: center;
} 
.cpflnav_bt{
	width: 35%;
	display: inline-block;
}
.cpflnav_bt h3{
	font-size: 26px;
	color:#fff;
}
.cpflnav_bt h6{
	font-size: 14px;
	font-weight: 300;
	color:#fff;
	padding-top: 10px;
	height: 60px;
}
.cpflnav_bt p{
	font-size: 16px;
	color:#fff;
	padding-top: 20px;
	height: 96px;
}
.cpflnav_bt .hr{
	width: 40px;
	height: 3px;
	background: #fff;
	margin-top: 40px;
}

.cpflnav_btbt{
	margin-top: 150px;
}
.cpflnav_bt .cpflnav_btbt a{
	font-size: 20px;
	color:#fff;
	font-weight: 600;
	font-family: 'Source Han Serif SC', serif;
}

.cpflnav_bt .cpflnav_btbt:hover a{
	color:#fcb84c;
}


.cpflnav_img{
	width: 65%;
	display: inline-block;
}
.cpflnav_img img{
	width: 100%;
}

.sy_cpflnr .swiper-dot{
	margin-top: 20px
}

.sy_cpflnr  .swiper-dot .swiper-pagination-bullet{
	width: 8px;
    height: 8px;
}
.sy_cpflnr .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #023c95;
}
.cpfl-wrapper{
	position: relative;
}
.sy_cpflnr .array-button{
	position: absolute;
	top: 45%;
	width: 100%;
	justify-content: space-around;
}
.sy_cpflnr .array-button.radius-none .array-prev, .sy_cpflnr .array-button.radius-none .array-next{
	    border-radius: 30px !important;
}

.sy_cpfl_wk{
    width: 25%;
	height: 540px;
	padding: 0 10px;
	display:inline-block;
	transition: width 0.8s;
}

.sy_cpfl_wk:hover{
	width: 525px;
}

.sy_cpfl_lb{
	width: 100%;
	height: 100%;
	position: relative;
	background: linear-gradient(135deg, rgba(238, 241, 244, 1), rgba(192, 196, 206, 1));
	border-radius: 5px;
    overflow: hidden;
	display: block;
}

.sy_cpfl_wk:hover .sy_cpfl_lb{
	overflow: inherit;
	background: linear-gradient(135deg, rgba(3, 101, 200, 1), rgba(242, 242, 242, 1));
}


.sy_cpfl_lb .bt{
	padding-top: 60px;
	text-align: center;
}



.sy_cpfl_lb .bt h6{
	font-size: 24px;
	color:#000;
	font-weight: 300;
	text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.sy_cpfl_wk:hover .sy_cpfl_lb .bt h6{
	color:#fff;
	font-size: 28px;
}


.sy_cpfl_lb .bt .bta{
	margin-top: 0px;
	line-height: 40px;
	width: 40px;
	height: 40px;
	border-radius: 30px;
	background: #ffffff;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	display: none;
	opacity: 0;
}

.sy_cpfl_lb:hover .bt .bta{
	margin-top: 40px;
	display: inline-block;
	opacity: 1;
}

.sy_cpfl_lb .bt .bta i{
	color:#9faabb;
	font-weight: 400;
}



.cpfl_lbimg{
	position: absolute;
	bottom: 30px;
	right: -60px;
	
}

.sy_cpfl_wk:hover .cpfl_lbimg{
	bottom: -120px;
    right: 20px;
}


.cpfl_lbimg img{
	width: 350px;
	transition: width 0.8s;
}

.sy_cpfl_wk:hover .cpfl_lbimg img{
	width: 400px;
}




/*设备展示 - Section */
.sy_sbzs{
	background: url(/uploads/home/index/sy_sbzs_bg.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.sbzs_nr{
	
}

.sbzs_nav{
	
}
.sbzs_nav_lb{
	cursor: pointer;
	position: relative;
	border-top: 1px solid #999999;
	text-align: center;
}

.sbzs_nav_lb{
	
}

.sbzs_nav_lb::after{
	position: absolute;
    content: "";
    top: -1px;
    width: 0;
    height: 2px;
	background: #e95f23;
    left: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.swiper-slide-thumb-active .sbzs_nav_lb::after,
.sbzs_nav_lb:hover::after{
	width: 100%;
}

.swiper-slide-thumb-active .sbzs_nav_lb .wk p,
.sbzs_nav_lb:hover .wk p{
	color:#e95f23;
}

.sbzs_nav_lb .wk p{
	font-size: 20px;
	color:#000;
	padding-top: 30px;
}

.sbzs_nrlbnr{
display: flex;

}


.sbzs_nrlb_img{
	width: 50%;
	height:auto;
	background-size: cover!important;
    background-position: center bottom!important;
    background-repeat: no-repeat!important;
}

.sbzs_nrlb_img img{
	width: 100%;
}

.sbzs_nrlb{
	margin-top: 50px;
}

.sbzs_nrlb_txt{
	width: 50%;
	background: #fff;
	height:auto;
	position: relative;
}
.sbzs_nrlb_txt::after{
	position: absolute;
    content: "";
    bottom: 0px;
    width: 100%;
    height: 6px;
	background: #e95f23;
    left: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.sbzs_nrlb_txt .wk{
	margin: 10% 12%;
	position: relative;
	height: 100%;
	
}

.nrlb_txt_sz{
	position: absolute;
	top: 0;
    right: 0;  
	color:#e9e9e9;
	font-size: 150px;
	font-family: 'Noto Serif SC', serif;
}

.nrlb_txt_wz{
	margin-top: 30px;
}
.nrlb_txt_wz h3{
	font-size: 30px;
	font-weight: 600;
	color:#e95f23;
}
.nrlb_txt_wz p{
	margin-top: 40px;
	font-size: 18px;
	width: 80%;
	color:#333333;
	line-height: 34px;
	height: 68px;
}

.nrlb_txt_gd{
	margin-top: 50px;
}
.nrlb_txt_gd a{
	font-size: 16px;
	color:#eb703b;
}

/*公司业绩 - Section */

.sy_gsyj{
	background: url(/uploads/home/index/sy_gsyj_bg.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.sy_gsyj_bt{
	
}

.qyys-section .section-title h3::before{
	display: none;
}
.sy_bttxt{
	position: relative;
	z-index: 1;
}

.sy_gsyj_gd{
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: flex-end;
}

.sy_gsyj_nr{
	margin-top: 50px;
}
.gsyj_nrfl{
	padding-right: 0;
}
.gsyj_nrfl a{
	display: block;
	padding: 10px;
}
.gsyj_nrfl a .wk{
	overflow: hidden;
}
.gsyj_nrfl:hover img{
	transform: scale(1.1);
}
.gsyj_nrfl img{
	width: 100%;
	transition: 0.5s;
}

.gsyj_nrfr{
	padding-left: 0;
}
.gsyj_nrfr_nr{
	width: 50%;
}
.gsyj_nrfr_nr a{
	display: block;
	padding: 10px;
}
.gsyj_nrfr_nr a .wk{
	overflow: hidden;
}
.gsyj_nrfr_nr:hover img{
	transform: scale(1.1);
}
.gsyj_nrfr_nr img{
	width: 100%;
	transition: 0.5s;
}

/*产品生产线 - Section */
.nycp_scx{
	border-top: 1px solid rgb(0 0 0 / 14%);
}
.nycp_scx.section-padding{
	padding: 120px 0 0;
}


/*专利证书 - Section */
.sy_zlzs{
	background: url(/uploads/home/index/sy_zlzs_bg.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.sy_zlzs_nr{
	
}

.sy_zlzs_nr img{
	max-width: 100%;
}

/*环境展示 - Section */

.hjzs-section{
	
	background: url(/uploads/home/index/sy_ryzz_bg.jpg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

}

.hjzs-image{

	transition: all 0.4s ease-in-out;
}
.hjzs-image img{
	max-width: 100%;
}
.hjzs-content{
	text-align: center;
	padding-top: 40px;
	padding-bottom: 0px;

}
.hjzs--wrapper{
	margin-top: 30px;
    margin-bottom: 20px;
}

.hjzs--wrapper  .swiper{
	overflow: visible;
}


.hjzs-section .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active{
	
}
.hjzs-section .swiper-dot .swiper-pagination-bullet{
	width: 8px;
    height: 8px;
    background-color: #aaaaaa;
}


.hjzs-section .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #008ed8;
}
.hjzs-section .swiper-dot{
	margin-top: 160px;
}


/*参展信息 - Section */
.about-zhxx{
	
}

.zhxx_jj{
	
}
.zhxx_jj p{
	font-size: 16px;
	color:#333;
	line-height: 30px;
}
.zhxx_lb{
	margin-top: 60px;
}
.zhxx_lbwk{
	margin-bottom: 20px;
}
.zhxx_lbwk .wk{
	overflow: hidden;
	border: 1px solid var(--border);
    border-radius: 5px;
}

.zhxx_lbimg{
	overflow: hidden;
}
.zhxx_lbimg img{
	width: 100%;
	transition: .5s;
}
.zhxx_lbwk:hover .zhxx_lbimg img{
	transform: scale(1.1);
}
.zhxx_lbnr{
	padding: 30px 20px;
}
.zhxx_lbnr h3{
	font-size: 18px;
}


/*新闻动态 - Section */
.sy_news{
	background:#f8f8f8;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.news-card-items{
	border: 2px solid #e1e1e1;
}
.sy_news .news-card-items .news-content{
	background: #fff;
	padding: 30px 20px 30px 20px;
	border: none;
	border-radius: 0px;
}

.sy_news .news-card-items .news-content ul li{
	color:#003f8b;
	font-size: 16px;
}

.sy_news .news-card-items .news-content ul{
	margin-top: 0;
	margin-bottom: 20px;
}

.sy_news .sy_news_sj i{
	width: 30px;
    height: 30px;
    color: #fff;
    border: 1px solid #02337d;
    background: #02337d;
    text-align: center;
    line-height: 30px;
    border-radius: 30px;
}

.sy_news_nr{
	margin-top: 0px;
}

.sy_news_fl{
	
}
.sy_news_fl .wk{display: flex;}

.news_fllb{
	padding-bottom: 40px;
	border-bottom: 1px solid #a9a9a9;
}
.news_fllb:nth-child(2){
	padding-top: 40px;
	border-bottom: none;
}

.news_fllb_img{
	width: 35%;
	overflow: hidden;
    border-radius: 12px;
	height: 240px;
}
.news_fllb_img a{
	display: inline-block;
    height: 100%;
}
.news_fllb_img img{
	height: 100%;
	transition: .5s;
}
.news_fllb:hover .news_fllb_img a img {
	transform: scale(1.1);
}

.news_fllb_wz{
	width: 65%;
	padding-left: 40px;
	padding-top: 10px;
}
.news_fllb_wz h3{
	font-size: 20px;
	color:#333;
	font-weight: 500;
}
.news_fllb_wz p.js{
	font-size: 18px;
	color:#999999;
	line-height: 30px;
	margin-top: 30px;
}

.qyxw_gd{
	margin-top: 50px;
}
.qyxw_gd p.fl{
	font-size: 18px;
	color:#999;
	
}

.qyxw_gd .blog-btn1 a{
	font-size: 18px;
	color:#0066cc;
}


.sy_news_fr{
	padding-left: 10%;
}
.news_frlb_wz{
	padding: 40px 40px 30px 40px;
}
.news_frlb{
	overflow: hidden;
    border-radius: 12px;
	background: #006edd;
}


.news_frlb_img{
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
}
.news_frlb_img a{
	display: inline-block;
    height: 100%;
}
.news_frlb_img img{
	width: 100%;
	transition: .5s;
}

.news_frlb:hover .news_frlb_img a img {
	transform: scale(1.1);
}

.news_frlb_wz h3{
	color:#fff;
	font-size: 20px;
}
.news_frlb_wz p.js{
	font-size: 18px;
	font-weight: 200;
	color:#fff;
	padding-top: 20px;
} 
.news_frlb_wz .qyxw_gd{
	margin-top: 30px;
}
.news_frlb_wz .qyxw_gd .blog-btn1 a{
	color:#fff;
	
}
.sy_news_sjgd .sy_news_sj{
	font-size: 14px;
	color:#999999;
}



/*合作企业 - Section */
.sy_hzqy{
	
	padding: 120px 0 80px 0;
}

.sy_hzqy .section-title h4{
	font-size: 30px;
	color:#333;
} 




.sy_hzqy_nr{
margin-top: 30px;
display: inline-block;	
}
.sy_hzqy_nrlb{
	width: 16.66%;
	float: left;
	cursor: pointer;
	padding: 20px 10px;
}

.hzqy_nrlb_img{
	overflow: hidden;
	width: 100%;
	border: 1px solid #e6e6e6;
}
.hzqy_nrlb_img img{
	width: 100%;
	transition: .5s;
}
.sy_hzqy_nrlb:hover .hzqy_nrlb_img img{
	transform: scale(1.1);
}
.sy_hzqy .about-button{
	margin-top: 40px;
}
.sy_hzqy .about-button .theme-btn{
	background: none;
    color: #333333;
    border: none;
    padding: 5px 10px 5px 20px;
}

.sy_hzqy .about-button .theme-btn i{
	width: 40px;
    height: 40px;
	color:#fff;
    border: 1px solid #02337d;
	background: #02337d;
    text-align: center;
    line-height: 40px;
    border-radius: 30px;
}

.sy_hzqy .theme-btn:hover{
	color: var(--white);
    border: 1px solid #fc6501;
}
.sy_hzqy .about-button .theme-btn:hover i{
	background: none;
	border: 1px solid #fff;
}

/*底部在线留言 - Section */
/*悬浮链接*/
.suspension{position:fixed;z-index:55;right:0;bottom:85px;width:70px;height:240px;}
.suspension-box{position:relative;float:right;}
.suspension .a{display:block;width:44px;height:44px;background-color:#353535;margin-bottom:4px;cursor:pointer;outline:none;
color:#fff;line-height: 44px;text-align: center;
}
.suspension .a.active,
.suspension .a:hover{background:#F05352;}
.suspension .a .i{float:left;width:44px;height:44px;background-image:url(../image/side_icon.png);background-repeat:no-repeat;}
/* .suspension .a-service .i{background-position:0 0;} */
.suspension .a-service .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../image/suspension-bg.png);background-repeat:no-repeat;background-position:0 0;}
.suspension .a-service-phone .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../image/suspension-bg.png);background-repeat:no-repeat;background-position:-27px 0;}
.suspension .a-qrcode .i{background-position:-44px 0;}
.suspension .a-cart .i{background-position:-88px 0;}
.suspension .a-top .i{background-position:-132px 0;}
.suspension .a-top{background:#D2D3D6;display:none;}
.suspension .a-top:hover{background:#c0c1c3;}
.suspension .d{display:none;width:223px;background:#fff;position:absolute;right:67px;min-height:90px;border:1px solid #E0E1E5;border-radius:3px;box-shadow:0px 2px 5px 0px rgba(161, 163, 175, 0.11);}
.suspension .d .arrow{position:absolute;width:8px;height:12px;background:url(../image/side_bg_arrow.png) no-repeat;right:-8px;top:31px;}
.suspension .d-service{top:0;}
.suspension .d-service-phone{top:34px;}
.suspension .d-qrcode{top:78px;}
.suspension .d .inner-box{padding:8px 22px 12px;}
.suspension .d-service-item{border-bottom:1px solid #eee;padding:14px 0;}
.suspension .d-service .d-service-item{border-bottom:none;}
.suspension .d-service-item .circle{width:44px;height:44px;border-radius:50%;overflow:hidden;background:#F1F1F3;display:block;float:left;text-align: center;
    line-height: 44px;}
.suspension .d-service-item .i-qq{width:44px;height:44px;background:url(../image/side_con_icon03.png) no-repeat center 15px;display:block;transition:all .2s;border-radius:50%;overflow:hidden;}
.suspension .d-service-item:hover .i-qq{background-position:center 3px;}
.suspension .d-service-item .i-tel{width:44px;height:44px;background:url(../image/side_con_icon02.png) no-repeat center center;display:block;}
.suspension .d-service-item h3{float:left;width:112px;line-height:44px;font-size:15px;margin-left:12px;}
.suspension .d-service .d-service-item .text{
	width: auto;
}
.suspension .d.d-service{
	width: max-content;
}

.suspension .d-service-item .text{float:left;width:112px;line-height:22px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text .number{font-family:Arial,"Microsoft Yahei","HanHei SC",PingHei,"PingFang SC","Helvetica Neue",Helvetica,Arial,"Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;}
.suspension .d-service-intro{padding-top:10px;}
.suspension .d-service-intro p{float:left;line-height:27px;font-size:12px;width:50%;white-space:nowrap;color:#888;}
.suspension .d-service-intro i{background:url(https://www.17sucai.com/preview/3/2022-03-24/xuanfu_kefu/jQuery%E2%95%99%E2%95%A5%E2%96%93%CE%B1%E2%95%A3%E2%95%A0%E2%95%A2%C2%BF%E2%95%A8%E2%81%BF%E2%95%95%C3%AD%E2%95%98%E2%94%8C%E2%95%A7%E2%96%80%E2%94%90%E2%95%90%E2%95%96%E2%96%A0%E2%94%A4%C2%B7%E2%94%AC%CE%B4%20-%20%E2%95%98%E2%94%A4%E2%94%AC%CE%B4%E2%95%93%C2%AB%E2%95%9D%E2%95%A5/images/side_con_icon01.png) no-repeat center center;height:27px;width:14px;margin-right:5px;vertical-align:top;display:inline-block;}
.suspension .d-qrcode{text-align:center;}
.suspension .d-qrcode .inner-box{padding: 8px 22px 12px;}
.suspension .d-qrcode .inner-box .qrcode-img img{
	width: 100%;
}

.suspension .d-qrcode p{font-size:16px;color:#93959c;}




/*底部 - Section */


.footer-top{
	height: 80px;
	border-bottom: 1px solid #224d90;
	display: flex;
    align-items: center;
}

.footer-top img{
	max-width: 100%;
}
.footer-content{
	margin-top: 50px;
}


.footer-dh .widget-head{
	height: 80px;
	border-bottom: 1px solid #224d90;
	display: flex;
    align-items: center;
}

.footer-dh .list-items{
	margin-top: 30px;
	
}

.footer-lxwm{
	padding-right: 0rem!important
}

.footer-lxwm .list-items{
	padding-top: 50px;
	width: 50%;
	display: flex;
    justify-content: space-between;
}
.footer-lxwm .list-items li{
	width: 48%;
	text-align: center;
}

.footer-lxwm .list-items li img{
	width: 100%;
}

.footer-lxwm .list-items li p{
	font-size: 15px;
	color:#fff;
	font-weight: 300;
	margin-top: 10px;
}

.footer-dhlb{
	padding-right: 0rem!important;
	padding-left: 0rem!important;
}


/*简介页 - Section */

.ny_about.about-section{
	background:#fff;
	padding: 120px 0;
}

.ny_about .about-wrapper .about-content{
	margin-right: 0px;
	margin-left: 40px;
}

.ny_about .about-wrapper .about-left-items .about-image-2{
	max-width: 90%;
}
.ny_about .about-wrapper .section-title h2{
	color: #000;
}

.ny_about.about-section  .syjj_nr p{
	color: #333;
}

.ny_about .about-wrapper .about-left-items .about-counter-items h5 span{
	font-size: 18px;
	padding-top: 20px;
	font-weight: 100;
	display: block;
}


.language_web{
	display: inline-block;
	margin: 0 0px 0 20px;
}

#head .top{ width:100%; height:30px; line-height:30px; color:#fff; background-color: #686868; }
.language_web .langu{ position:relative; padding:0 14px 0 10px; cursor:pointer; transition:all .3s;}
.language_web .langu img{ 
	margin-top:-3px;
    vertical-align: middle;
    border-style: none;
	width: 25px;
}
.language_web .langu span{ padding:0 4px; color:#fff; }
.language_web .langu:after{ position:absolute; content:"";top:50%; right:0; margin-top:-8px; border:6px solid #fff; border-color:transparent transparent #fff transparent ; }
.language_web .langu:hover span{ color:#e85511; transition: all .3s; }
.language_web .langu:hover:after{ margin-top:-2px; border:6px solid #e85511; border-color: #e85511 transparent transparent transparent;transition: all .3s; }
.langu .languageBox{ display:none; position:absolute; width:114px; left:50%;transform:translateX(-50%);top:30px; text-align:center;z-index:10; }
.langu .language{ width:100%; margin-top:6px;border: 1px solid #e6e6e6;background-color: #fff; }
.langu .language a{ display:block; padding:6px 0; color:#808080;text-decoration: none; }
.langu .language a:hover{ color:#333; background-color: #f5f5f5; transition:all .3s; }
.language_web .langu:hover .languageBox{ display:block; transition:all .3s; }

.sticky .language_web .langu span{
	color:#333;
}
.sticky .language_web .langu:after{
	border-color:transparent transparent #333 transparent ;
}


.ny_nav{
	background-color: #f4f4f4;
    text-align: center;
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}

.ny_nav_a{
	font-size: 16px;
    color: #585858;
	padding: 25px 40px 25px;
	text-decoration: none;
	display:inline-block;
}
.ny_nav_a.on{
	background-color: #fff;
}


/*
<!-- ============================================================== -->
<!-- hendrio 视频 Details  Css -->
<!-- ============================================================== -->*/
.ny_video{
	background: url(/uploads/home/about/ny_jjryzz.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	padding: 60px 0px;
}

.qysp_video{
	position: relative;
	height: 400px;
    
	
}

.qysp_video .bt{
	text-align: center;
	padding-bottom: 40px;
	margin-top: 60px;
}

.qysp_video .bt h3{
	color:#fff;
	font-weight: 300;
	font-size: 40px;
}
.qysp_video .bt h5{
	    font-size: 35px;
    color: #fff;
    margin-bottom: 10px;
}


.qysp_video .bt p{
	color:#fff;
	text-transform: uppercase;
}

.video-icon {
    margin: auto;
    text-align: center;
	width: 100%;
    display: block;
}

.animate-border a {
    background-color: #fff;
    color: #075f6e;
    font-size: 25px;
    height: 70px;
    width: 70px;
    line-height: 65px;
    border-radius: 50%;
    position: relative;
    text-align: center;
    z-index: 1;
	display: inline-block;
}
.animate-border a i{
	font-size: 18px;
	padding-left: 2px;
}


.video-vemo-icon .ripple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to right, #fff 0%, #fff 100%);
    background-image: -ms-linear-gradient(0deg, #fff 0%, #fff 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    border-radius: 100%;
}
.video-vemo-icon .ripple::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: 45px;
    height: 45px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    -moz-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    background-image: -moz-linear-gradient(0deg, #fff 0%, #fff 100%);
    background-image: -webkit-linear-gradient(0deg, #fff 0%, #fff 100%);
    border-radius: 100%;
}

.ny_about .section-title h3{
	color:#000;
}
.ny_about .section-title span{
	color:#666;
}



/*
<!-- ============================================================== -->
<!-- hendrio Shop Details  Css -->
<!-- ============================================================== -->*/

.shop-detials {
    padding: 100px 0 70px;
}

.style-three.tab {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6,36,98,0.1);
    padding: 15px 20px 15px;
    border-radius: 10px;
    margin-right: 15px;
    margin-bottom: 20px;
	width:100%;
	display: block;
}

.tabs_item {
    margin-bottom: 10px;
}

.tab_content {
    margin-top: 0px;
}

.tabs_item img {
    width: 100%;
	max-width: 100%;
}

.tabs_itemt {
    display: inline-block;
}

.tabs_items {
    display: inline-block;
}

ul.tabs.active li {
	width: 100%;
    list-style: none;
	margin-bottom: 10px;
    display: inline-block;
}

.style-three .tabs li a {
    background: inherit;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    outline: none;
    padding: 5px;
    transition: all 0.5s ease-in-out;
    margin-right: 20px;
    border-radius: 5px;
}

.style-three .tabs li.current::before {
    background: transparent;
}

.style-three li.current a {
    border: 1px solid #FD8F14;
}

ul.tabs.active li img{
	width: 100%;
}
.cpxq_slt_nav{
	
}
.cpxq_slt_zs{
	margin-bottom: 20px;
}
.cpxq_slt_zs img{
width: 100%;	
}
.cpxq_slt_nav .wk{
	border: 1px solid rgba(6, 36, 98, 0.1);
}
.cpxq_slt_nav .swiper-slide-thumb-active .wk{
	border: 1px solid #FD8F14;
}


.cpxq_slt_nav img{
	width: 100%;
}

.cpxq_slt_video{
	width: 100%;
}




@media (max-width: 1699px) {
	.header-1.header-2 .mega-menu-wrapper .header-right .icon-items{
		gap: 10px;
	}
	
	.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .icon{
		width: 40px;
    height: 40px;
    line-height: 40px;
	}
	
	.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .content h4{
		font-size: 24px;
	}
	.sy_banner_bt h3{
		font-size: 50px;
	}
	.sy_banner_bt p{
		font-size: 18px;
	}
	.sy_banner_bt .hr{
		height: 8px;
	}
	.sy_banner_bt h6{
		font-size: 20px;
	}
	.about-wrapper .about-content{
		margin-right: 40px;
	}
	.about-wrapper .about-left-items .dot-shape{
		right: auto;
	}
	.about-icon-box-lb .wk{
		padding: 0 20% 0 0;
	}
	.about-wrapper .section-title h2{
		font-size: 26px;
	}
	.about-wrapper .about-content .about-button{
		margin-top: 40px;
	}
	
	.hjzs-section .swiper-dot{
		margin-top: 80px;
	}
	
	.syjj_sdys{
		padding-top: 60px;
	}
	
	.swiper-dot{
		margin-top: 60px;
		margin-bottom:20px
	}
	.sy_zzzs .team-slider{
		margin: 0;
	}
	.team-section .light-shape{
		bottom:40px;
	}
	.syjj_sdys_lbjs{
		padding: 40px 30px 60px 30px;
	}
	.sy_cpfl{
		margin-top: 50px;
	}
	.cpflnav .wk{
		padding: 60px 20px 70px 30px;
	}
	.cpflnav_bt h3{
		font-size: 28px;
	}
	.cpflnav_btbt{
		margin-top: 90px;
	}
	
	
	
}
@media (max-width: 1699px) {
	
	.header-main .main-menu ul li a{
		font-size: 18px;
	}
		.header-1.header-2 .mega-menu-wrapper .header-main .header-right{
		gap: 20px;
	}
	
}



@media (max-width: 1600px) {
	.header-1 .mega-menu-wrapper .header-main .header-left{
		gap: 40px;
	}
	.header-main .main-menu ul li{
		margin-inline-end: 20px;
	}
	.header-main .main-menu ul li a{
		font-size: 15px;
	}
	.header-1.header-2 .mega-menu-wrapper .header-right .icon-items .content h4{
		font-size: 20px;
	}

	.video_qywhwz h4{
		font-size: 20px;
	}
	.video_qywhwz span{
		font-size: 11px;
	}
	.video_qywhwz{
		padding-left: 20px;
	}
	.video_qywh_bt{
		padding: 10px 40px;
	}
	.video_qywh_bt h5{
		font-size: 20px;
	}
	.video_qywh_bt p{
		font-size: 10px;
	}
	
	.sy_scjd_nav ul li{
		padding-left: 30px;
	}
	.counter-items{
		gap: 10px;
	}
	.counter-items .icon{
		width: auto;
    line-height: normal;
    height: auto;
		padding: 10px;
		display: flex;
    justify-content: center;
    align-items: center;
	}
	.counter-items .icon img{
		width: 30px;
	}
	
	.counter-items .content{
		width: 80%;
		padding-left: 10px;
	}
	.counter-items h2{
		font-size: 26px;
	}
	.counter-items h2 span{
		font-size: 16px;
	}
	.counter-items h2 i{
		font-size: 16px;
	}
	
	
}



@media (max-width: 1480px){
	.header-1.header-2 .mega-menu-wrapper .header-main .header-right{
		gap: 10px;
		width: 30%;
	}
	.header-1.header-2 .container-fluid{
		padding: 0 60px;
	}
	.header-1 .mega-menu-wrapper .header-main .header-left{
		width: 70%;
		gap: 70px;
	}
	.about-wrapper .about-left-items .about-counter-items{
		padding: 30px 20px;
	}
	.about-wrapper .section-title h2{
		font-size: 22px;
	}
	.about-wrapper .about-left-items .about-counter-items h2{
		font-size: 36px;
	}
	.about-section .syjj_nr p{
		font-size: 16px;
		line-height: 30px;
	}
	.about-wrapper .about-left-items .about-counter-items h5{
		font-size: 18px;
	}
	.ny_about .about-wrapper .about-left-items .about-counter-items h5 span{
		font-size: 16px;
    padding-top: 10px;
	}
	.achievement-section .achievement-content p{
		font-size: 16px;
		line-height: 30px;
	}
	.shop-details-section .container{
		max-width: 100%;
	}
	.team-section .light-shape{
		bottom: 50px;
	}
	.description-items .description-content img{
		max-width: 100%;
	}
	
	.sy_cpfl{
		margin-top: 30px;
	}
	
	.cpflnav_bt h3{
		font-size: 24px;
	}
	.cpflnav_bt .hr{
		margin-top: 10px;
	}
	.cpflnav_btbt{
		margin-top: 40px;
	}
	
	
}
@media (max-width: 1390px){
	.counter-items h2{
		font-size: 22px;
	}
}

@media (max-width: 1300px){
	
	.header-1 .mega-menu-wrapper .header-main .header-left{
		width: 80%;
	}
	.header-1.header-2 .mega-menu-wrapper .header-main .header-right{
		width: 20%;
		gap: 30px;
	}
	.about-wrapper .section-title h2{
		font-size: 18px;
	}
	.sy_scjd_nav ul li{
		padding-left: 10px;
	}
	.sy_scjd_nav ul li a{
		font-size: 20px;
	}
	
	
}
@media screen and (max-width:1079px) {
  .h_left {
    margin: 0 auto 20px
  }
  .cp_type .hd {
    display: block
  }
  .cp_type .hd {
    margin: 0 auto;
    padding: 20px;
    position: relative
  }
  .cp_type .hd p:before {
    display: none
  }
  .cp_type .hd p {
    font-size: 22px;
    margin: 0 auto 2px
  }
  .cp_type .hd p img {
    width: 22px;
    height: 22px;
    margin: 4px 10px 4px 0
  }
  .cp_type .hd span {
    height: 20px;
    line-height: 20px
  }
  .cp_type .hd i {
    display: block;
    width: 40px;
    height: 40px;
	font-size: 18px;
	color:#fff;
	line-height: 40px;  
    margin: 0;
    padding: 0;
	background: #ff6e1b url(../image/mulu1.png) center center no-repeat;  
    position: absolute;
    top: 30px;
    right: 20px;
	text-align: center; 
	  font-style: normal
  }
  .cp_type .hd.on i {
    background: #ff6e1b url(../image/mulu2.png) center center no-repeat
  }
  .cp_type .bd {
    display: none
  }
  .cp_type .bd ul li p span {
    right: 15px
  }
  .proall a {
    padding: 0 15px
  }
  .proall a i {
    right: 15px
  }
  .eyxgwz .eyxgwz_title {
    padding: 15px
  }
  .eyxgwz_title p img {
    display: block;
    width: 26px;
    height: 26px;
    margin: 3px 10px 3px 0;
    padding: 0;
    float: left
  }
  .eyxgwz .eyxgwz_list {
    padding: 10px 15px
  }
}


@media (max-width: 991px) {

	.header-main{
		padding: 5px 0px 10px 0;
	}
	.header-1.header-2 .container-fluid{
		padding: 0 10px;
	}
	.header-1.header-2 .mega-menu-wrapper .header-main .header-right{
		gap: 20px;
		width: 100%;
	}
	.header-1 .mega-menu-wrapper .header-main .header-left .mean__menu-wrapper{
		display: none;
	}
	.hero-1{
		width: 100%;
		height: 100%;
		padding: 0px 0;
		padding-bottom: 60px;
	}
	.sticky.header-1 .mega-menu-wrapper .header-main .header-left .logo_b img{
		max-width: 100%;
	}
	
	.pc_banner{
		
	}
	
	.sy_banner .container{
		justify-content: center;
	}
	.tpban_wzwk{
		text-align: center;
	}
	.tpban_wzwk h3{
		font-size: 4.5vw;
	}
	.tpban_wzwk p{
		font-size: 3.5vw;
	}
	.tpban_wzwk .tel a{
		font-size: 20px;
	}
	.tpban_wzwk .tel{
		margin-bottom: 10px;
	}
	.tpban_wzwk .hr{
		margin: 20px auto;
	}
	.banner-slider .swiper-slide-active .a_button{
		margin: auto;
	}
	.img-banner img{
		height: 100%;
	}
	
	
	.sy_banner_fl{
		width: 100%;
		height: 40%;
	}
	.sy_banner_bt{
		width:100%;
		padding-top: 50px;
	}
	.sy_banner_bt h3{
		font-size: 30px;
	}
	.sy_banner_bt p{
		font-size: 16px;
	}
	
	.sy_banner_bt .hr{
		height: 4px;
		margin-top: 20px;
        margin-bottom: 20px;
	}
	.video-container{
		flex-wrap: wrap;
	}
	
	.sy_banner_video{
		width: 100%;
		margin-top: 20px;
	}
	.ba_video_qywh{
		flex-wrap: wrap;
		position: unset;
		margin-top: 20px;
		justify-content: center;
	}
	.video_qywhwz{
		padding-left: 0px;
		padding-top: 20px;
        text-align: center;
	}
	
	
	.sy_cccd_dh{
		background:none;
		
	}
	.cccd_nrlb{
		width: 100%;
		padding: 0 10px 0 10px;

		
	}
	.cccd_dh_nav{
		position: relative;
		padding-top: 30px;
	}
	.cccd_nrtxt ul li{
		margin-bottom: 0px;
		font-size: 16px;
	}
	.sbzs_nav  .swiper-free-mode>.swiper-wrapper{
		display: inline-block;
	}
	.sbzs_nav .swiper-backface-hidden .swiper-slide{ 
		width: 24%!important;
		display: inline-block;
	}
	.sbzs_nav_lb{
		border-top: none;
		border-bottom: 1px solid #999999;
	}
	.sbzs_nav_lb::after{
		bottom: -1px;
		top:auto;
	}
	.nrlb_txt_sz{
		top: 0px;
		line-height: 1;
		color: #e9e9e94a;
	}
	.gsyj_nrfl{
		padding-right: 0;
        padding-left: 0;
	}
	.gsyj_nrfr{
		padding-right: 0;
        padding-left: 0;
	}
	
	.sy_gsyj_nr{
		margin-top: 30px;
	}

	.sy_cccd{
		height: 660px;
	}
	.cccd_nav_lb .wk{
		padding: 20px 20px 20px 20px;
	}
	.cccd_nav_lb .wk h3{
		font-size: 18px;
	}
	.cccd_nav_lb .wk .img{
		padding-right: 10px;
	}
	.cccd_nav_lb{
		height: auto;
	}
	.about-wrapper .about-left-items .dot-shape{
		bottom: 0px
	}
	
	.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon{
		display: flex;
	}
	.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon img{
		width: 130px;
	}
	.shop-details-wrapper .product-details-content .details-info span{
		width: 25%;
	}
	.shop-details-wrapper .product-details-content .details-info a{
		margin-left: 10px;
		width: 80%;
	}
	.cp_type .hd span{
		display: none;
	}
	.cp_type .hd em{
		display: none;
	}
	.cp_type .hd i{
		top: 20px;
	}
	.breadcrumb-wrapper .page-heading .breadcrumb-items li{
		font-size: 12px;
	}
	.ny_nav_a{
		padding: 10px 15px 10px;
		font-size: 14px;
	}
	.about-icon-box-lb .wk{
		padding: 0 5% 0 0;
	}
	
	.counter-items .icon{
		width: 60px;
    height: 60px;
    line-height: 55px;
	}
	.counter-items h2 span{
		display: block;
	}
	.counter-items .content{
		padding-left:0;
		width: 100%;
	}
	.cccd_nrtxt{
		width: 100%;
	}
	.cta-banner-wrapper .content h2{
		font-size: 30px;
	}
	
	.nyfzlc-section{
		
	}
	.nyfzlc-section .swiper{
		height: 70vh;
		overflow: hidden;
		background: url(/uploads/home/about/fzlcbg_12.png) repeat-Y left top;
	}
	.nyfzlc-section .swiper::after{
		display: none;
	}
	.nyfzlc-section .swiper-wrapper{
		border-top: none;
		
	}
	.nyfzlc-section .swiper-slide:nth-child(even) .nyfzlc-lb{
		position: unset;
		border-left: none;
	}
	.nyfzlc-section .swiper-slide:nth-child(even) .nyfzlc-lb-img{
		bottom: auto; 
        top: -20px;
	}
	.nyfzlc-section .swiper-slide:nth-child(odd) .nyfzlc-lb{
		border-left:none;
	}
	.nyfzlc-section .swiper::after{
	
	position: absolute;
    content: "";
    bottom: 0px;
    width: 1px;
    height: 100%;
    left: 30px;
    background: #006edd;
}
	
.ny_fzlc_img{
		display: none;
	}
	
	.nyfzlc-lb{
		border-top: 1px solid #6c83c8;
	}
	.nyfzlc-lb-img{
		bottom:auto;
		top: -20px;
		left: -30px;
	}
	.ny_fzlc_lb{
		width: 100%;
	}
	.nyfzlc-section{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.nyfzlc-section .hero-content{
		padding: 25px 0 25px 0;
	}
	
	.nyfzlc-section.hero-3 .hero-content h1{
		font-size: 22px;
	}
	
	.nyfzlc-section .hero-content h5{
		padding: 10px 0px;
		font-size: 20px;
	}
	.nyfzlc-section.hero-3 .hero-slider-items{
		padding: 40px 10px;
		margin-right: 0;
		margin-left: 20px;
	}
	.nyfzlc-nr h3{
		font-size: 18px;
		padding-bottom:10px;
	}
	.nyfzlc-nr h5{
		padding-left:0;
		font-size: 22px;
		margin-top: 10px;
	}
	.nyfzlc-section.hero-3 .hero-slider-items:after{
		top: 0%;
		right: -20px;
	}
	.nyfzlc-section.hero-3 .hero-slider-items:before{
		top: 0%;
	}
	.nyfzlc-section .swiper{
		padding: 30px 30px 0px;
	}
	.nyfzlc-lb{
		padding: 30px 60px 30px 10px;
		margin-left: 0px;
		display: block;
	}
	.nyfzlc-nr p{
		font-size: 15px;
	}
	.counter-items h2{
		font-size: 30px;
	}
}
@media (max-width: 768px) {
	.header-1 .mega-menu-wrapper .header-main .header-left{
		gap:0;
		width: 40%;
	}
	.header-1.header-2{
		display: block;
	}
	.header-1.header-2 .mega-menu-wrapper .header-main .header-right{
		width: 60%;
	}
	
	.header-1 .mega-menu-wrapper .header-main .header-left .logo{
		width: 100%;
	}
	
	.hero-1{
		height: 450px;
		margin-top: 0px;
		padding-bottom: 0px;
	}
	.video-container:after{
		height: 30%;
	}
	
	.offcanvas__logo img{
		width: 180px;
	}
	.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li{
		font-size: 15px;
	}
	.section-padding{
		padding: 40px 0;
	}
	.scjd-img{
		height: 180px;
		margin-top: 20px;
	}
	.news-card-items .news-content h3{
		font-size: 16px;
	}
	
	.counter-section{
		padding: 60px 0 0px;
	}
	.scjd-nimgfr{
		margin-bottom: 10px;
	}
	.about-section.section-padding{
		padding: 60px 0 40px 0;
	}
	.about-section.section-padding .mt-5{
		margin-top: 0rem !important;
	}
	.about-wrapper{
		margin-top: 0px;
	}
	.about-wrapper .about-content{
		margin-right: 0px;
	}
	.section-title{
		margin-bottom: 20px;
	}
	
	.about-wrapper .section-title h1{
		font-size: 30px;
	}
	.about-wrapper .section-title h1::before{
		height: 4px;
		bottom: 2px;
	}
	.about-section .section-title h3{
		margin-bottom: 20px;
    padding-top: 30px;
		font-size: 22px;
	}
	.section-title h3{
		padding-top: 10px;
		font-size: 20px;
	}
	.section-title h2{
		font-size: 24px;
	}
	.about-wrapper .section-title h2{
		font-size: 15px;
	}
	
	
	.about-section .syjj_nr p{
		font-size: 16px;
		line-height: 30px;
	}
	.about-icon-box-lb{
		width: 33.33%;
	}
	.abouts_titles h4{
		font-size: 24px;
	}
	.abouts_titles h4 i{
		font-size:12px;
	}
	.abouts_titles p{
		font-size: 12px;
		line-height: 1.5;
	}
	.about-section .about-icon-box{
		margin-top: 0px;
		padding: 30px 0px 0px;
	}
	
	.about-wrapper .about-left-items{
		padding-top: 60px;
		margin-bottom: 0px;
	}
	.about_ny .counter-section{
		adding: 0px 0 60px 0;
	}
	.counter-items .icon img{
		width: 30px;
	}
	.counter-items h2{
		font-size: 24px;
	}
	.counter-items h2 i{
		font-size: 14px;
	}
	
	
	
	.syjj_sdys{
		display: flex;
		flex-wrap: wrap;
	}
	
	.syjj_sdys_lb{
		width: 100%;
		padding-top: 10px;
		border-top: 1px solid #ffffff14;
	}
	.syjj_sdys_lbjs{
		padding: 10px 10px 30px 10px;
	}
	.syjj_sdys_lbwk h4{
		font-size: 18px;
        padding-top: 20px
	}
	.syjj_sdys_lbjs p{
		font-size: 14px;
    color: #fff;
    line-height: 26px;
		text-align: center;
	}
	
	.qyys-sfqlb_js{
		padding-top: 100px;
	}
	.qyys-lbjs_bt{
		padding-right: 0px;
	}
	.qyys-lbjs_bt h3{
		font-size: 20px;
	}
	.qyys-lbjs_bt .js p{
		font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
	}
	.qyys-slider .array-button{
		margin-top: 10px;
	}
	.qyys-nav{
		margin-top: 60px;
    width: 100%;
    margin-bottom: 60px;
	}
	.qyys_navfl{
		display: flex;
    padding-bottom: 40px;
    justify-content: center;
	}
	.qyys_nav_lbbg img{
		width: 70px;
	}
	.qyys_nav_lb p{
		font-size: 15px;
		bottom: -30px;
	}
	.qyys_nav_hr{
		display: none;
	}
	
	.sy_cpfl{
		width: 100%;
		
	}
	.cpflnav{
		background: url(/uploads/home/index/cpflnav_sjbg.jpg);
		background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	}
	.cpflnav_bt{
		width: 45%;
	}
	.cpflnav_img{
		width: 55%;
	}
	
	.cpflnav .wk{
		padding: 30px 20px; 
	}
	
	.cpflnav_bt h3{
		font-size: 16px;
	}
	.cpflnav_bt h6{
		font-size: 12px;
		height: 40px;
		display: none;
	}
	.cpflnav_bt p{
		font-size: 13px;
		padding-top: 10px;
	}
	.cpflnav_bt .cpflnav_btbt a{
		font-size: 16px;
	}
	
	
	
	.sy_cpflnr{
		display: block;
    margin: 0 0px;
	}
	.sy_cpfl_wk{
		width: 50%;
        height: 240px;
		padding: 0 5px;
	}
	.cpfl_lbimg img{
		width: 150px;
	}
	.cpfl_lbimg{
		bottom: 0px;
    right: -10px;
	}
	.sy_cpfl_lb .bt h6{
		font-size: 18px;
	}
	.sy_cpfl_lb .bt{
		padding-top: 40px;
	}
	
	.sy_cpfl_wk:hover{
		width: 50%;
	}
	.sy_cpfl_wk:hover .sy_cpfl_lb{
		overflow: hidden;
	}
	.sy_cpfl_wk:hover .cpfl_lbimg{
		bottom: 0px;
        right: -10px;
	}
	.sy_cpfl_wk:hover .cpfl_lbimg img{
		width: 150px;
	}
	.sy_cpfl_wk:hover .sy_cpfl_lb .bt h6{
		font-size: 18px;
		color:#fff;
	}
	.sy_cpfl_lb:hover .bt .bta{
		display: none;
	}
	
	
	.qyys-lbnr_wzlb{
		width: 100%;	
	}
	.qyys-sfqlb-wk{
		
	}
	.qyys-lbnr{
		width: 100%;
		height: 100%;
		padding: 30px 20px;
	}
	.qyys-lbnr-bt h3{
		font-size: 22px;
	}
	.qyys-lbnr .wk{
		width: 280px;
		
	}
	.qyys-lbnr-wz{
		width: 80%;
	}
	.qyys-lbnr-wz p{
    margin-top: 10px;
    font-size: 16px;
    line-height: 30px;
    height: 300px;
	}
	.qyys-lbnr-gd a{
		font-size: 14px;
	}
	.qyys-lbnr-gd{
		padding-top: 20px;
	}

	.qyys-lbnr_img{
		display: none;
	}
	
	.news_fllb{
		padding-bottom: 20px;
	}
	.sy_news_fl .wk{
		display: block;
	}
	.news_fllb_img{
		width: 100%;
	}
	.news_fllb_wz{
		width: 100%;
		padding-left: 0px;
		padding-top: 20px;
	}
	.news_fllb_wz p.js{
		margin-top: 10px;
		font-size: 14px;
		line-height: 26px;
	}
	.qyxw_gd{
		margin-top: 10px;
	}
	.qyxw_gd p.fl{
		font-size: 12px;
	}
	.qyxw_gd .blog-btn1 a{
		font-size: 12px;
	}
	
	.sy_news_fr{
		padding-left: 0%;
	}
	.news_frlb_wz{
		padding: 20px 10px 20px 10px;
	}
	.sy_hzqy_nr{
		margin-top: 20px;
	}
	.hzqy_nrlb_img{
		padding: 10px 0px;
	}
	
	.blog-wrapper .single-blog-post:last-child{
		display: block;
	}
	.ny_news_lb.blog-wrapper .single-blog-post .post-content{
		width: 100%;
	}
	.page-nav-wrap{
		margin-top: 30px!important;
		margin-bottom: 20px;
	}
	.service-details-wrapper .main-sidebar .bg-image .contact-text{
		display: none;
	}
	.ny_Shop .ny_nav{
		display: none;
	}
	
	
	
	.ny_about .about-wrapper .about-left-items .about-image-2{
		max-width: 100%;
	}
	.ny_about .about-wrapper .about-left-items{
		padding-top: 0px;
	}
	.sy_cccd_bt{
		top: 10%;
	}
	.sy_cccd_dh{
		width: 100%;
		height: 50%;
	}
	.cccd_nrwk{
		margin: 35% 0 auto 0;
	}
	.cccd_button{
		margin: 20px 0 auto auto;
	}
	.cccd_dh_container{
		padding-left: 20px;
	}
	.sy_cccd_dh .section-title{
		margin-top: 40px;
	}
	.sy_cccd_dh .section-title .dhbt_1{
		padding-top: 10px;
	}
	.sy_cccd_dh .section-title h3{
		padding-top: 10px;
		font-size: 20px;
	}
	.section-title h3.dhbt_1 span{
		font-size: 20px;
	}
	.cccd_dh_nav .swiper-slide{
		height: 60px;
	}
	.cccd_nav_lb{
		height: auto;
		
	}
	.cccd_nrtxt p{
		font-size: 16px;
    line-height: 30px;
    margin-top: 10px;
	}
	.cccd_nav_lb .wk{
		
		padding: 10px 10px 10px 10px;
	}
	.cccd_nav_lb .wk .img{
		padding-right: 5px;
		margin: 0 0;
	}
	.cccd_nav_lb .wk .img img{
		max-width: 20px;
	}
	
	.cccd_nav_lb .wk h3{
		font-size: 14px;
		line-height: 1.5;
	}
	
	.sbzs_nrlbnr{
		display: block;
	}
	.sbzs_nrlb_img{
		width: 100%;
		height: 300px;
	}
	.sbzs_nrlb_txt{
		width: 100%;
	}
	.sbzs_nrlb_txt .wk{
		margin: 0;
		padding: 20px 10px;
	}
	.nrlb_txt_wz p{
		margin-top: 20px;
		width: 100%;
	}
	.nrlb_txt_icon img{
		width: 60px;
    height: auto;
	}
	.nrlb_txt_wz{
		margin-top: 20px;
	}
	.nrlb_txt_gd{
		margin-top: 20px;
		padding-bottom: 10px;
	}
	.xspzzs-wk{
		padding: 0 6%;
	}
	.zzzs-img{
		margin-top: 40px;
	}
	.zzzs-xspzzs{
		padding-bottom: 40px;
		padding-top: 20px;
	}
	.ny_about .about-wrapper .about-content{
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 40px;
	}
	.section-title p{
		font-size: 14px;
	}
	.breadcrumb-wrapper .page-heading{
		margin-top: 90px;
		margin-bottom: 20px;
	}
	.contact-info-wrapper .contact-info-content{
		padding: 40px 10px;
	}
	.contact-info-wrapper .contact-info-content h2{
		font-size: 26px;
		padding-bottom: 10px;
	}
	.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items{
		display: flex;
		}
	.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .icon{
	margin: auto 0;	
	}
	.contact-info-wrapper .contact-info-content .contact-info-area .contact-info-items .content{
		margin: auto 0 auto 15px;
	}
	.contact-info-wrapper .contact-info-content h3{
		font-size: 18px;
	}
	.contact-wrapper-3 .contact-content{
		padding: 40px 10px 40px 10px;
	}
	.footer-widgets-wrapper.style-2 .single-footer-widget{
		margin-top: 10px;
    margin-bottom: 20px;
	}
	.footer-dh{
		display: none;
	}
	.footer-section .shape-img{
		bottom: 110px;
		opacity: 0.3;
	}
	.footer-section .shape-img img{
		height: 180px;
	}
	.footer-widgets-wrapper .single-footer-widget .footer-content h3{
		font-size: 25px;
        margin-bottom: 20px;
	}
	.swiper-dot{
		margin-top: 20px;
    margin-bottom: 20px;
	}
	.shop-card-items .shop-nr{
		padding: 15px 10px;
		height: auto;
	}
	.shop-nr_logo img{
		height: 55px;
	}
	.shop-card-items .shop-nr p{
		font-size: 14px;
	}
	.shop-details-wrapper .product-details-content h2{
		font-size: 20px;
	}
	table.category-table td.table-title{
		font-size: 14px;
	}
	table.category-table tr td{
		padding: 12px 10px;
	}
	.single-team-items .team-image{
		height:253px;
	}
	.achievement-section .achievement-content p{
		font-size: 16px;
		line-height: 30px;
	}
	.about-image-items{
	  margin-top: 40px;	
	}
	.project-nav{
		display: block;
	}
	
	.project-nav_a{
		padding: 10px 10px;
		border-radius: 10px;
		margin: 0 5px 10px 5px;
	}
	.cccd_nrtxt{
		width: 100%;
	}
	.cta-banner-wrapper .content h2{
		
		font-size: 26px;
	}
	.cta-banner-wrapper .content p{
		font-size: 14px;
	}
	.qyys-section .section-title span{
		font-size: 26px;
	}
	.section-title span{
		font-size: 20px;
		display: block;
	}
	.section-title h3{
		display: inline-block;
	}
	.section-title h3::before{
		width: 100%;
        height: 3px;
	}
	
	.footer-top img{
		height: auto;
		max-width: 100%;
	}
	
	.sy_gsyj_bt .cccd_button{
		margin: 0;
	}
	
	.shop-card-items .shop-nr p span{
		display: none;
	}
	.scjd-imgfr{
		margin-top: 20px;
	}
	.scjd-section .sy_gsyj_gd{
		margin-bottom: 40px;
        margin-top: -50px;
	}
	
	.sy_gsyj_gd{
		 margin-top: 0px;
		justify-content: flex-end;
	}
	.hjzs--wrapper{
		margin-bottom: -40px;
		padding: 0 10px;
	}
	.sy_scjd_nav ul li{
		padding-left: 20px;
        margin-bottom: 15px;
	}
	.sy_scjd_nav ul li a{
		font-size: 15px;
	}
	
	.sy_hzqy .section-title h4{
		font-size: 26px;
	}
	.sy_hzqy_nrlb{
		width: 33.33%;
		padding: 10px 5px;
	}
	.footer-lxwm .list-items{
		width: 100%;
	}
	
	.ny_yftd .mt-5,.about-zzzs .mt-5{
		margin-top: 0rem !important;
	}
	
	.scsbbd tr td{
		font-size: 14px;
	}
	
	.qysp_video .bt h3{
		font-size: 30px;
	}
	.qysp_video .bt h5{
		font-size: 25px;
	}
	.suspension{
		display: none;
	}
	.sy_banner .scroll-down{
		display: none;
	}
	
	.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content{
		flex-basis: 100%;
	}
}