@charset "utf-8";

/*------------------通用样式-------------------*/
/* 社交媒体图标样式 */
.social-icons-bar {
  background: #f8f8f8;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.social-title {
  color: #333;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.social-icon.instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf);
}

.social-icon.facebook {
  background: linear-gradient(45deg, #1877f2, #0d5cb6);
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}


.videos-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .video-wrapper {
            flex: 1;
            min-width: 300px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
        }
        
        .video-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        }
        
        .video-container {
            position: relative;
            padding-top: 56.25%; /* 16:9 宽高比 */
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-info {
            padding: 20px;
        }
        
        .video-info h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #ff9d6c;
        }
        
        .video-info p {
            line-height: 1.6;
            opacity: 0.85;
        }
        
        footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .videos-container {
                gap: 25px;
            }
            
            .video-wrapper {
                min-width: calc(50% - 25px);
            }
            
            h1 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 600px) {
            .video-wrapper {
                min-width: 100%;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            width: 200px;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #ff9d6c;
        }
        
        .feature-card h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }






#alla{width: 100%;overflow: hidden;}
h1,
h2,
h3,
h6,
h5,
h6 {
	font-weight: normal;
	margin: 0;
	padding: 0;
}

body {
	font-family: "微软雅黑";
	background-color: #FFF;
	min-width: 320px;
}

* {
	margin: 0;
	padding: 0;
}

ul,
ol,
li {
	list-style: none
}

a {
	text-decoration: none;
	font-size: 12px;
	color: #333;
}

a:hover {
	color:#14a44d;
}

img {
	margin: 0;
	padding: 0;
	border: none;
}

.clear {
	clear: both;
	margin: 0px;
	padding: 0px;height: 0;
}

form {
	display: block;
}

#all {
	min-width: 320px;
	width: 100%;
	margin: 0px auto;
	height: auto;
	overflow: hidden;
	background-color: #FFFFFF;
	min-width: 320px;
}

#alla {
	min-width: 320px;
	width: 100%;
	margin: 0px auto;
	height: auto;
	overflow: hidden;
	background: #f5f5f5;
	min-width: 320px;
}


.clearfix:before,.clearfix,.clearfix:after{
	clear: both;content: "";
}
@media (min-width: 1600px){.containersm{width: 80%;}}

p,a{transition: all linear 0.3s;}
img{transition: all linear 1s;}



 .tagline {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        

 /* Why Us Section Styles */
        .why-section {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 40px 30px;
            margin-bottom: 40px;
            position: relative;
        }
        
        .why-tit {
            font-size: 2.8rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .why-tit::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .why-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }
        
        .why-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .why-box {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
            display: flex;
            flex-direction: column;
            height: 100%;
            border: #eee solid 1px;
        }
        
        .why-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border-left: 4px solid var(--accent);
        }
        
        .why-box-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .why-box-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .why-box:hover .why-box-img img {
            transform: scale(1.05);
        }
        
        .why-box-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .why-box-tit {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .why-box-tit::before {
            /*content: "•";*/
            color: var(--accent);
            font-size: 2rem;
            margin-right: 10px;
        }
        
        .why-box p {
            color: var(--gray);
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .feature-highlight {
            background: var(--light);
            border-left: 3px solid var(--primary);
            /*padding: 12px 15px;*/
            border-radius: 0 8px 8px 0;
            margin: 10px 0;
            font-style: italic;
            color: var(--dark);
        }
        
        /* Special full width box */
        .why-box-full {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            display: flex;
            color: white;
            margin-top: 20px;
            border-left: 4px solid var(--accent);
            transition: var(--transition);
            border: #eee solid 1px;
        }
        
        .why-box-full:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .why-box-img-full {
            flex: 1;
            min-height: 300px;
        }
        
        .why-box-img-full img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .why-box-content-full {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #333;
        }
        
        .why-box-tit-full {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .why-box-full p {
            color: #333;
            line-height: 1.8;
        }
        
        /* How to Choose Section */
        .choose-section {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 40px 30px;
            margin-bottom: 40px;
            background: linear-gradient(to bottom, #ffffff, var(--light));
            border: 1px solid var(--light-gray);
        }
        
        .choose-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .choose-header b {
            display: block;
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .choose-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .choose-title {
            font-size: 2rem;
            color: var(--primary);
            text-align: center;
            margin: 40px 0 30px;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }
        
        .choose-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .choose-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .choose-part {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border-top: 3px solid var(--primary);
        }
        
        .choose-part:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-top: 3px solid var(--accent);
        }
        
        .choose-part-title {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .choose-part-title::before {
            content: "✓";
            color: var(--accent);
            font-size: 1.5rem;
            margin-right: 10px;
            font-weight: bold;
        }
        
        .choose-part p {
            color: var(--gray);
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .diameter-list {
            list-style-type: none;
            margin: 15px 0;
        }
        
        .diameter-list li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--light-gray);
            display: flex;
        }
        
        .diameter-list li:last-child {
            border-bottom: none;
        }
        
        .diameter-list li::before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .why-container {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
            
            .choose-title {
                font-size: 1.8rem;
            }
            
            .why-box-full {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .why-tit {
                font-size: 2.2rem;
            }
            
            .container {
                padding: 15px;
            }
            
            .why-section, .choose-section {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .why-tit {
                font-size: 1.8rem;
            }
            
            .why-subtitle {
                font-size: 1.1rem;
            }
            
            .choose-title {
                font-size: 1.6rem;
            }
            
            .logo {
                font-size: 2rem;
            }
        }
        
        /* Footer */
        /*.footer {*/
        /*    background: linear-gradient(135deg, var(--primary-dark), var(--primary));*/
        /*    color: white;*/
        /*    text-align: center;*/
        /*    padding: 30px 20px;*/
        /*    border-radius: var(--border-radius) var(--border-radius) 0 0;*/
        /*    margin-top: 40px;*/
        /*}*/
        
        /*.footer-content {*/
        /*    max-width: 1200px;*/
        /*    margin: 0 auto;*/
        /*    display: grid;*/
        /*    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
        /*    gap: 30px;*/
        /*    text-align: left;*/
        /*}*/
        
        /*.footer-section h3 {*/
        /*    font-size: 1.4rem;*/
        /*    margin-bottom: 20px;*/
        /*    position: relative;*/
        /*    padding-bottom: 10px;*/
        /*}*/
        
        /*.footer-section h3::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    bottom: 0;*/
        /*    left: 0;*/
        /*    width: 50px;*/
        /*    height: 3px;*/
        /*    background: var(--accent);*/
        /*    border-radius: 2px;*/
        /*}*/
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent);
            width: 20px;
        }
        
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Decorative elements */
        .decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(20, 164, 77, 0.05);
            z-index: 0;
        }
        
        .dec-1 {
            top: -80px;
            left: -80px;
        }
        
        .dec-2 {
            bottom: -100px;
            right: -100px;
            width: 250px;
            height: 250px;
        }




:root {
            --primary-blue: #111;
            --accent-red: #E74C3C;
            --text-dark: #2C3E50;
            --light-bg: #f8f9fa;
        }

        

       
        .contact-container {
            max-width: 1000px;
            margin: 4rem auto;
            padding: 2rem;
             box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }

        .company-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .company-header h1 {
            color: var(--primary-blue);
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            text-align: center;
        }

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

        .card-icon {
            font-size: 2.5rem;
            color: var(--accent-red);
            margin-bottom: 1.5rem;
        }

        .card-content h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .card-content p {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .card-content a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .card-content a:hover {
            color: var(--accent-red);
        }

        .address-block {
            grid-column: 1 / -1;
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
        }

        @media (max-width: 768px) {
            .company-header h1 {
                font-size: 2rem;
            }
            
            .contact-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-container {
                padding: 1rem;
                margin: 2rem auto;
            }
            
            .card-icon {
                font-size: 2rem;
            }
        }
/*-------------------------------------------------------------------------*/
@media (max-width: 768px){
	#w_grid-1573265972119{min-height: 12rem;overflow: hidden;}	
}

/*首页开始*/
.sygs{padding-top: 5rem;padding-bottom: 0rem;}
.sygstit{
	    font-weight: bold;font-size: 36px;
}
.sygstit2{
	font-weight: bold;    font-size: 26px;    line-height: 1.8;
}
.sygsline{background: #14a44d;
    height: 2px;width: 4rem;margin-top: 1rem;margin-bottom: 2rem;}
.sygsys{font-weight: bold;    font-size: 20px;}
.sygs-dec{font-size: 14px;line-height: 2;word-wrap: break-word !important; word-break: break-all !important;margin: 2rem 0;}
.sygsysbtn{display: block;padding: 1rem 3rem;color: #FFFFFF;background: #14a44d;border: 1px solid #FFFFFF;    font-size: 14px;text-align: center;display: inline-block;}
.sygsysbtn:hover{background: #FFFFFF;border: 1px solid #14a44d;}
.sy-gser{padding-top: 3rem;}
.sygsimgbox{overflow: hidden;}
.sygsimgbox img{width: 100%;}
.sygsimgbox img:hover{transform: scale(1.05);}

.f-cb{color: #FFFFFF;text-align: center;
	    margin-top: 0px;
    padding-top: 46px;
    padding-bottom: 40px;
    background: url(jss.jpg);
    background-size: 100% 100%;
}
.counter{
	font-family: 'Rubik', sans-serif;
    font-size: 36px;
    color: #fff;
    line-height: 30px;
    display: inline-block;
}
.count-unit{
	font-size: 18px;
    text-align: right;
    display: inline-block;
    font-style: normal;
}
.f-cb li p{
	color: rgba(248, 248, 248, 0.7);
    font-size: 14px;
    font-family: Airal;
    line-height: 36px;
}

@media (max-width: 991px){
	.sygs{padding-bottom: 2rem;padding-top: 2rem;}
}





/*首页产品中心*/
.sy-cp{background: #f2f4f3;padding: 8rem 0;}
@media (max-width:768px){
	.f-cb
	.f-cb li{margin-bottom: 1rem;}
	.sygstit{font-size: 2.6rem;}
	.sygstit2{font-size: 1.8rem;}
	.sygsys{font-size: 1.8rem;}
	.sycp-wz{word-break: break-word !important;}
	.sy-cp{padding: 4rem 0;margin-top: 4rem;}
	.synews{    padding-top: 4rem;    padding-bottom: 4rem;}
	
}

.sycptit{font-size: 36px;line-height: 1.2;}
.sycpline{background: #14a44d;
    height: 2px;
    width: 4rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.sycp-wz{font-size: 16px;}
.sycplink{float: right;padding: 1rem 3rem;   
padding: 1rem 3rem;
    color: #14a44d;
    border: 1px solid #14a44d;
    font-size: 14px;
    text-align: center;margin-top: 2rem;
    }
.sycplink:hover{    background: #14a44d;
    border: 1px solid #FFFFFF;color: #FFFFFF;}

.sycp-ul{}
.sycp-ul li{margin-top: 4rem;}
.sycp-ul li a{display: block;}
.sycpboxnei-top{box-sizing: border-box;background: #FFFFFF;padding: 2rem;}
.sycpboxtopline{
	background: #14a44d;
    height: 2px;
    width: 4rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.sycpboxtit{font-weight: bold;font-size: 1.8rem;line-height: 2rem;height: 2rem;overflow: hidden;}
.sycpboxdec{font-size: 1.4rem;line-height: 2rem;color: #666666;height: 4rem;overflow: hidden;margin-top: 1rem;}
.sycpbox-img{overflow: hidden;}
.sycpbox-img img{width: 100%;}
.sycpbox-img img:hover{transform: scale(1.05);}




.sy-fwbox{background: url(lx.jpg) no-repeat;padding: 8rem 0;background-size: 100%;background-attachment: fixed;color: #FFFFFF;text-align: center;}
.syfwbox-bot{margin-top: 4rem;}
.syfwboxbotlist{margin-bottom: 1rem;}
.syfwboxbotlistbox{border-bottom: 1px solid #FFFFFE;}
.syfwtit{
	   font-size: 4rem;
}
.syfwline{width: 2rem;height: 2px;background: #FFFFFF;margin: 0 auto;margin-top: 2rem;margin-bottom: 2rem;}
.syfw-wz{font-size: 1.6rem;line-height: 3rem;}
.syfwboxbotlist-nei{width: 90%; display: block;font-size: 1.6rem;padding-bottom: 0.5rem;text-align: left !important;color: #FFFFFF !important;}
.syfwboxbotlist-nei:after{
	    content: '→';
    position: absolute;
    width: 15px;
    height: 100%;
    color: #fff;
    right: 17px;
    top: 0px;
}




/*首页新闻开始*/
.synews{padding-top: 8rem;padding-bottom: 8rem;}
.synewswztit{font-size: 4rem;text-align: center;}
.synewsline{text-align: center;
	background: #14a44d;margin: 0 auto;
    height: 2px;
    width: 4rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    }

.synewswz-wz{text-align: center;font-size: 16px;}


.synews-ul{margin-top: 2rem;}
.synews-ul li{margin-top: 2rem;}
.synews-ul li a{display: block;background: #ffffff;box-sizing:border-box;padding: 2rem;}
.synews-ul li a:hover{box-shadow: 3px 2px 3px #999999;}
.syewslist-tit{
	font-size: 1.8rem;color: #333333;line-height: 2rem;height: 2rem;overflow: hidden;
}
.synewslist-dec{
	font-size: 1.4rem;color: #666666;line-height: 2rem;height: 4rem;overflow: hidden;margin-top: 1rem;word-break: break-all !important;
}
.synewslist-data{
	font-size: 1.4rem;color: #666666;line-height: 2rem;margin-top: 1rem;
}



/*foot*/

.footer {
	width: 100%;
	position: relative;
	background-color: #4c4d4c;color: #ffffff;
}

.footerlf {
	text-align: right;
	
	padding-top: 3rem;
	padding-bottom: 7rem;
}

.footerlf img {
	margin-top: 42px;width: 90%;
}
.footerlfi {
	text-align: right;
	
	padding-top: 3rem;
	padding-bottom: 7rem;
	padding-right:8rem;
}

.footerlfi img {
	margin-top: 42px;width: 33%;
}

.footer-zj {
	padding-top: 3rem;
	padding-bottom: 3.5rem;
}

.footer-zj ul {
	float: left;
	
	font-size: 18px;
	color: #FFFFFF;
	box-sizing: border-box;
	padding-right: 4rem;
}
.footer-zjul{
	width: 32%;
}
.footer-zjul1{
	width: 64%;
}
.footer-zj ul .foot-name {
	line-height: 20px;
	margin-bottom: 25px;
}

.footer-zj ul li {
	margin-top: 15px;
	padding-left: 34px;
}

.footer-zj ul li a {
	display: block;
	position: relative;
	color: #FFFFFF;
	font-size: 14px;
	padding-left: 20px;
	    height: 2rem;
    line-height: 2rem;
    overflow: hidden;
}

.footer-zj li a::after {
	content: '';
	width: 6px;
	height: 10px;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	left: 0;
	background: url(foot-ico.png) no-repeat;
}

.footer-zj li a:hover {
	color: #14a44d;
}

.c-btn {
	margin-top: 20px;
	margin-left: 35px;
}

.c-btn a.btn1 {
	background-color: #0173af;
}
.c-btn a.btn1:hover{
	background-color: #066394;
}
.c-btn a {
	display: inline-block;
	width: 112px;
	height: 40px;
	border-radius: 5px;
	color: #fff;
	line-height: 40px;
	text-align: center;
	font-size: 13px;
}

.c-btn a img {
	width: 10px;
	height: 8px;
	margin-left: 10px;
	vertical-align: middle;
}

.c-btn a.btn2 {
	background-color: #269e20;
}
.c-btn a.btn2:hover{
	background-color: #168211;
}
.footerrt-bk {
	border-left: 1px solid #d5d5d8;
}
.foot-name{font-size: 18px !important;}
.footerrt-bk ul li{font-size: 14px;}
.foot-bot {
	width: 100%;
	padding: 10px 0;
	color: #FFFFFF;
	text-align: center;
	background-color: #333333;
	line-height: 150%;
	color: #fff;
	font-size: 12px;
}

.foot-bot a {
	color: #FFFFFF;
}

.foot-bot a:hover {
	color: #999999;
}


@media (max-width: 1200px){
	.footer-zjul{width: 45%;}
	.footer-zjul1{width: 52%;}
}
@media (max-width: 768px){
	.footerrt-bk{border: none;text-align: center;}
	.footerrt-bk ul{width: 100%;padding-right: 0;}
	.sy-fwbox{background-size:cover ;}
}



/*分页样式开始*/

.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: #14a44d;
	border: 1px solid #14a44d;
	color: #FFF;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	/*过渡效果*/
}


/*分页样式结束*/



/*产品列表页*/
.bannernei img{width: 100%;min-height: 12rem;}
.zxmaintop{background: #f0eeee;padding: 2rem 0;}
.cp-ul{display: flex;flex-wrap: wrap;}
.cp-ul li{margin-bottom: 0.5rem;margin-right: 0.5rem;margin-top: 0.5rem;}
.cp-ul li a{display: block;padding:0.5rem 2rem;font-size: 1.4rem;border: 1px solid #14a44d;border-radius: 1rem;}
.cpli-active a{background: #14a44d;color: #FFFFFF;}
.cp-ul li a:hover{background: #14a44d;color: #FFFFFF;}

.cpmain{padding: 8rem 0;}
.cpmain-ul li{margin-bottom: 2rem;}
.cpmain-ul li a{display: block;box-sizing: border-box;border: 1px solid #CCCCCC;}
.cpmainimg{overflow: hidden;}
.cpmainimg img{width: 100%;}
.cpmin-wz{box-sizing: border-box;border-top: 1px solid #CCCCCC;padding: 1rem;}

.cpmin-tit{
	font-size: 1.4rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 10px;
}
.cpmaindecbox{
	position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    color: #777;
    height:  3.8rem;
    line-height:  3.8rem;
    border-top: 1px solid #e5e5e5;
}

.cpmin-dec{color: #777;line-height: 3.8rem;}
.cpmaindecbox img{height: 8px;width: 24px;}
.cpmain-ul li a:hover{border: 1px solid #14a44d;}
.cpmain-ul li a:hover .cpmainimg img{transform: scale(1.05);}
.zxmaintopflex{display: flex;align-items: center;}
.xzwzms{
	width: 80%;
	padding-top: 20px;
	margin: 20px auto;
	border-top: 1px #dddddd solid;
}



@media (max-width: 991px){
	.zxmaintopflex{display: block;}
	.zxmaintop{background: none;}
	.nei-address{
		    padding: 1rem 2rem;
    		background: #dedcdc;
	}
	.cpmain{padding: 2rem 0;}
}

@media (max-width:768px){
    .zxmaintop{display:none;}
}



/*产品内页*/
.cpmainbox{display: flex;align-items: stretch;}
.cpnei-img img{width:100%;}
.cpnei-rt .mm{font-size: 2.2rem;color: #000000;font-weight: bold;line-height: 4rem;}
.cpnei-rtp{padding-bottom: 1rem;border-bottom:1px dotted #CCCCCC;margin: 2rem 0 1rem 0;font-size: 1.4rem;color: #666666;line-height: 2rem;word-break: break-word !important;}
.tagbox{}
.tagbox a{font-size: 1.4rem;color: #666666;line-height: 2rem;margin-right: 2rem;}
.cpneirt-btnbox{margin-top: 2rem;}
.cpneirt-btnbox a{
	display: inline-block;
    width: 112px;
    height: 40px;
    border-radius: 5px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    font-size: 13px;
}
.cpneirt-btn1{background-color: #0173af;}
.cpneirt-btn2{background-color: #269e20;}
.cpneirt-btn2:hover{    background-color: #066394;}
.cpneirt-btn1:hover{    background-color: #168211;}
.cpneirt-btnbox a img{    width: 10px;
    height: 8px;
    margin-left: 10px;
    vertical-align: middle;
}

.cpnei-bot{margin-top: 3rem;}
.cpneibotbox{border-bottom: 1px solid #CCCCCC;}
.cpneiboxtit{
	display: inline-block;color: #ffffff;background: #14a44d;font-size: 1.4rem;text-align: center;padding: 1rem 2rem;
}

.cpneiboxt-dec{margin-top: 2rem;font-size: 1.4rem;line-height: 3rem;color: #333333;/*text-indent: 2rem;*/}

.cpneiboxt-dec h2{font-size:18px;font-weight:bold; line-height:40px;}
.cpneiboxt-dec h3{font-size:14px;font-weight:bold; line-height:30px;}
.cpneiboxt-dec table{ width:1000px;}

@media (max-width: 991px){
	.cpmainbox{display: block;}
	.cpnei-rtp{margin-top: 1rem;}
	.cpneiboxt-dec img{width:100%;}
	.cpneiboxt-dec table{width:100%;}
}
@media (max-width: 767px) {
    .cpneiboxt-dec table{width:100%;}
}






/*新闻列表页*/
.cpmain{padding-top: 5rem;padding-bottom: 5rem;}
.newsneilist{display: flex;border: 1px solid #CCCCCC;margin-bottom: 2rem;align-items: stretch;box-sizing: border-box;padding: 2rem 0;}
.newslistboxlf img{width: 100%;}
.newslisttit{margin-top: 2rem;margin-bottom: 2rem; font-size: 2rem;color: #000000;font-weight: bold;line-height: 2rem;height: 2rem;overflow: hidden;}
.newslistdec{font-size: 1rem;color: #666666;height: 2rem;height: 4rem;overflow: hidden;}
.newslistdata{font-size: 1rem;color: #666666;margin-top: 1rem;}
.newsneilist:hover .newslistboxlf img{transform: scale(1.05);}
.newsneilist:hover .newslisttit{color: #14a44d;}


@media (max-width: 991px){
	.newsneilist{display: block;}
}


/*新闻内页*/
.newsneiimg{text-align: center;margin: 2rem 0;}
.newsneiimg img{width: 30%;}
.newsnei-top{
	padding: 2rem 0;border-bottom: 1px solid #CCCCCC;text-align: center;
}
.newsnei-top h1{font-size: 2.2rem;color: #000000;font-weight: bold;line-height: 4rem;}
.newsnei-top p{font-size: 1.2rem;color: #666666;line-height: 4rem;}
.newsnei-main{
	    margin-top: 2rem;
    font-size: 16px;
    line-height:28px;
    color: #333333;
  /*  text-indent: 4rem ;*/
}
.newsnei-main h2{
    font-size:20px ;
    font-weight: bold;
    line-height: 38px;
}
.newsnei-main h3{
    font-size:18px ;
    font-weight: 400;
    line-height: 36px;
}
.newsnei-main img{
    float: left;
    padding-right: 20px;
}
.newsnei-main p{word-wrap: break-word !important;word-break: break-word !important;}
.newsnei-main a{
    font-weight: bold;
    font-size: 16px;
}





/*新加*/
   .swiper-container {
        width: 100%;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .swiper-slide {
        background-size: cover;
        background-position: center;
    }
    .gallery-top {
        height: 80%;
        width: 100%;
    }
    .gallery-thumbs {
        height: 20%;
        box-sizing: border-box;
        padding: 10px 0;
    }
    .gallery-thumbs .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
    }
    .gallery-thumbs .swiper-slide-active {
        opacity: 1;
    }





/* 动画效果 */
#sygslf,#sycptoplf{position: relative;left: -100%;opacity: 0;}
#sygsrt,#sycptoprt{position: relative;right: -100%;opacity: 0;}
#sysz,#sycptop,#synewstit,#synewsul{position: relative;top: 100px;opacity: 0;}



