.layout {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

/*  header  */
input:focus-visible {
	outline: 0;
}

.head {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.head .logo_top {
	width: 350px;
	line-height: 100px;
}
.head nav {
	width: calc(100% - 400px);
}
nav .nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.nav-list .nav-item {
	position: relative;
	padding: 0 60px;
	margin: 0 5px;
}
.nav-item a {
	display: block;
	font-size: 14px;
	color: #333;
	font-weight: 600;
	line-height: 100px;
}
.nav-list .nav-list {
	display: none;
	position: fixed;
	width: 100%;
	right: 0;
	z-index: 999;
	background: #fff;
	padding: 10px 0;
	border-top: 1px solid #eee;
}
.nav-list .nav-item:hover, .nav-list .active {
	background-image: linear-gradient(115deg,#C9C5B9,#808173);
}
.nav-list .nav-item:hover>a, .nav-list .active>a{
	color: #fff;
}
.nav-item:hover .nav-list{
	display: flex;
}
/*.nav-item {

}*/
.nav-item .nav-list a {
	font-weight: 400;
	line-height: 50px;
}
.head .search {
	width: 50px;
	position: relative;
	line-height: 100px;
}
.search .fa-search {
	font-size: 24px;
	width: 50px;
	text-align: center;
}
.search .search-cont {
	display: none;
	position: fixed;
	width: 100%;
	right: 0;
	z-index: 999;
	background: #fff;
	padding: 20px 0;
	border-top: 1px solid #eee;
	flex-wrap: wrap;
	justify-content: center;
}
.search-cont #search-txt {
	line-height: 30px;
	border-radius: 3px;
	width: 400px;
	max-width: calc(100% - 50px);
	padding: 5px;
	border: 1px solid #ccc;
}
.search-cont #search-txt:focus {
	border-color: #808173;
}
.search-cont .fa-search {
    line-height: 42px;
    width: 42px;
    border: 1px solid #ccc;
    color: #666;
}

/* main */

/*main {
	background-image: linear-gradient(115deg,#C9C5B9,#808173);
}*/
main {
	padding: 30px 0;
}
.index {
	padding: 20px 0;
}
.title h2 {
	background-image: linear-gradient(115deg,#C9C5B9,#808173);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	font-size: 28px;
	text-align: center;
	font-weight: bold;
}
.title small {
	font-size: 14px;
	color: #666;
	text-align: center;
	display: block;
	text-transform: uppercase;
	margin-top: 15px;
}
.pro-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
}
.pro-list .pro-item {
	width: 33%;
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 10px;
	position: relative;
}

.pro-item .pro-img {
	border: 1px solid #ccc;
	overflow: hidden;
}
.pro-item .pro-info {
	position: absolute;
	background: rgba(0,0,0,0.6);
	box-sizing: border-box;
	transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    top: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0;
}
.pro-info a {
	text-align: center;
	font-size: 24px;
	line-height: 40px;
	color: #fff;
	display: none;
}
.pro-item:hover .pro-info {
	display: flex;
	height: 100%;
}
.pro-item:hover .pro-info a{
	display: block;
}
.pro-item:hover img,.pro-item:hover a {
	transform: scale(1.05);
}

.index_about {
	background-image: linear-gradient(115deg,#808173,#C9C5B9);
	margin: 20px 0;
}
.about {
	padding: 40px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
} 
.index_about .title h2 {
	background-image: linear-gradient(115deg,#fff,#fff);
}
.index_about .title h2, .index_about .title small {
	text-align: left;
	color: #fff;
}
.about-info {
	width: 40%;
}
.about-info .about-desc {
	margin-top: 20px;
}
.about-info .about-desc p{
	font-size: 16px;
	text-indent: 32px;
	line-height: 1.5;
	margin-top: 5px; 
	color: #fff;
}
.about-img {
	width: 54%;
	border-radius: 10px;
	position: relative;
	z-index: 99;
}
.about-img:before, .about-img:after {
	content: "";
	display: block;
	position: absolute;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	
}
.about-img:before {
	width: calc(100% - 10px);
	top: 5px;
	z-index: -1;
	background: rgba(255,255,255,0.6);
}
.about-img:after {
	width: calc(100% - 20px);
	top: 10px;
	z-index: -1;
	background: rgba(255,255,255,0.5);
}



.news-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
}
.news-list .news-item {
	width: 32%;
}
.news-img img {
	width: 100%;
}
.news-item .news-info {
    border: 1px solid #ccc;
    background-color: #fff;
    width: calc(100% - 20px);
    transform: translate(20px,-40px);
    padding: 15px 15px 20px 15px;
}
.news-info h3 {
	font-size: 20px;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 10px;
}
.news-info p {
	line-height: 1.5;
	margin-top: 10px;
	font-size: 14px;
	color: #666;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.news-info a {
	margin-top: 20px;
	display: block;
}

.news-item .news-info:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(-15deg,#808173,#C9C5B9);
    background-image: linear-gradient(115deg,#808173,#C9C5B9);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: -1;
}
.news-item:hover .news-info {
	border: 0;
}
.news-item:hover .news-info:before {
	opacity: 1;
}
.news-item:hover .news-info p, .news-item:hover .news-info h3, .news-item:hover .news-info a {
	color: #fff;
}


.index_process .title {
	background-image: linear-gradient(115deg,#808173,#C9C5B9);
	padding: 40px 0 70px;
}
.index_process .title h2 {
	background-image: linear-gradient(115deg,#fff,#fff);
}
.index_process .title small {
	color: #fff;
}
.process {
	transform: translateY(-40px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.process .process-nav {
	width: 48%;
	background: #fff;
	box-shadow: 0 0 5px #ccc;
	border-radius: 5px;
}
.process .process-cont {
	width: 50%;
}
.process-nav li {
	cursor: pointer;
	display: flex;
	padding: 25px 10px;
}
.process-nav li.current {
	background-image: linear-gradient(115deg,#808173,#C9C5B9);
}
.process-nav li.current h3 {
	color: #fff;
}
.process-cont li {
	display: none;
	position: relative;
}
.process-cont li.current {
	display: block;
}
.process-time {
	text-align: center;
	padding: 0 20px 0 10px;
	margin-right: 20px;
	position: relative;
}
.process-time:after {
	content: "";
	display: block;
	position: absolute;
	width: 2px;
	height: 60%;
	background-image: linear-gradient(115deg,#808173,#C9C5B9);
	top: 20%;
	right: 0;
}
.process-nav li.current .process-time:after {
	background-image: linear-gradient(115deg,#ccc,#ccc);
}
.process-time span {
	display: block;
	font-size: 56px;
	color: #555;
}
.process-time time {
	display: block;
	font-size: 14px;
	color: #666;
	margin-top: 5px;
}
.process-info {
	padding: 5px 0;
}
.process-info h3 {
	font-size: 20px; 
	color: #444;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
} 
.process-info p {
	line-height: 1.5;
	margin-top: 10px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.process-cont .process-info {
	position: absolute;
	bottom: 0;
	background: rgba(0,0,0,0.8);
	padding: 20px 10px;
}
.process-cont .process-info h3, .process-cont .process-info p {
	color: #fff;
	overflow: visible;
	display: block;
}


#myfooter .panel4 {
    width: 70%;
}
.panel4 ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.panel4 li {
    width: 33.33333333%;
    text-align: center;
    padding: 50px 30px;
}
.panel4 li p {
    font-size: 14px;
}
.panel4 li img {
    margin-bottom: 5px;
}
.panel4 li a {
    font-size: 14px;
}
.panel4 li span {
    margin-bottom: 5px;
    display: block;
}
.panel4 li p, .panel4 li span, .panel4 li a{
    color: #fff;
}
#myfooter .container {
    background-image: linear-gradient(115deg,#808173,#C9C5B9);
    color: #fff;
    max-width: 100%;
    width: 100%;
    padding: 30px;/*
    border-top: 1px solid #ccc;*/
}
#myfooter .quick-nav {
    padding: 30px 0;
}
.quick-nav ul {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.quick-nav li {
    padding: 0 10px;
}
#myfooter {
    border-top: 8px solid #72c2c1;
    padding: 0;
    position: relative;
}
#myfooter:before {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	background-image: linear-gradient(115deg,#808173,#C9C5B9);
	position: absolute;
	top: -8px;
	left: 0;
} 
#myfooter .foot-center {
    border-bottom: 1px solid #ccc;
}
#myfooter .container-f {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    
}
.container-f .panel1{
    padding: 50px 0;
    border-right: 1px solid #ccc;
    background-image: url(../images/foot-bg.png);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position-x: 105%;
    background-position-y: 80%;
}
#myfooter {
	color: #fff;
	position: relative;
	background-image: linear-gradient(115deg,#808173,#C9C5B9);
}

#myfooter .container-f {
	display: flex;
	justify-content: space-between;
	max-width: 1400px;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
	width: 100%;
}

#myfooter>.container {
	text-align: center;
	position: relative
}

#myfooter h3 {
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255,255,255,.8)
}

#myfooter .panel1 {
	width: 30%;
}
#myfooter .panel1 img {
	max-width: 350px;
}
#myfooter .panel4 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.panel4 ul {
	width: 100%;
}
.panel4 i {
	font-size: 30px;
	margin-bottom: 10px;
}
.panel4 li i {
	color: #fff;
}

.right-float {
	position: fixed;
	bottom: 150px;
	right: 20px; 
	z-index: 999;

}
.right-img>img {
	width: 50px;
	border: 1px solid #666;
	border-radius: 5px;
	padding: 10px;
	background: #fff;
}
.right-float .show-code {
	display: none;
	position: absolute;
	right: 100%;
	bottom: 0;
	width: 200px;
	background: #fff;
	z-index: 999;
	border-radius: 5px;
	overflow: hidden;
}
.right-float:hover .show-code{
	display: block;
}
.about-btn a {
	display: block;
    line-height: 30px;
    color: #fff;
    margin-top: 40px;
    width: 150px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 5px;
    position: relative;
    z-index: 99;
}
					
.about-btn a:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	left: 50%;
	width: 0;
	height: 0;
	background: #fff;
	box-sizing: border-box;
	transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
	z-index: -1;
}
.about-btn a:hover:after {
	width: 100%;
	height: 100%;
}

.about-btn a:hover {
	color: #333;
}	

.quick-nav a {
	color: #eee;
}

.swiper-button-next:after, .swiper-button-prev:after {
    color: #fff;
}


/*内页*/

/*about*/

.n-main {
	background: #eceae3;
	padding: 50px 0;
}
.n-title h3 {
	text-align: center;
	font-size: 28px;
	line-height: 30px;
	color: #333;
	font-weight: bold;
}
.about-list {
	margin-bottom: 40px;
}
.about-list:last-child {
	margin-bottom: 0;
}
.about-cont {
	margin-top: 20px;
}
.about-cont p {
	font-size: 18px;
	color: #555;
	line-height: 1.5;
	margin-top: 10px;
	text-indent: 36px;
}
.about-cont .center {
	text-align: center;
	text-indent: 0;
}

/*factory*/

.fcy-list {
	display: flex;
	flex-wrap: wrap;
}
.fcy-list .fcy-item {
	width: 31.3333333333%;
	margin: 1%;
	height: 300px;
	overflow: hidden;
}
.mask-img {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	display: none;
	z-index: 999;
}
.picture {
	position: fixed;
	width: 80%;
	height: 80%;
	top: 10%;
	left: 10%;
	display: none;
	z-index: 1000;
	text-align: center;
}
.picture .left, .picture .right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	text-align: center;
}
.picture .left i, .picture .right i {
	color: #fff;
	font-size: 30px;
	line-height: 40px;
}
.picture .left {
	left: -20px;
}
.picture .right {
	right: -20px;
}
.height {
	height: 100%;
	max-width: none;
	width: 100%;
}

/*products*/

.n-product {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.n-product .pro-left {
	width: 26%;
}
.n-product .pro-right {
	width: 70%;
}
.pro-nav {
	border: 1px solid #ccc;
	padding: 0 10px;
	background: #f1f1f1;
}
.pro-nav li {
	border-bottom: 1px solid #ccc;
	line-height: 60px;
	padding: 0 10px;
	display: flex;
	align-items: center;
}
.pro-nav li:last-child {
	border-bottom: 0;
}
.pro-left h3 {
	background: #2061C4;
	padding: 0 20px;
	line-height: 60px;
	color: #fff;
	font-size: 24px;
}
.pro-nav li i {
	margin-right: 10px;
}
.pro-nav li i, .pro-nav li a {
	line-height: 60px;
	display: block;
}
.pro-nav li:hover i, .pro-nav li:hover a, .pro-nav li.active a ,.pro-nav li.active i {
	color: #2061C4;
}

.position {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}
.pos-left h3 {
	font-size: 20px;
}
.npro-list {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
}
.npro-list .npro-item {
	width: 31.33333333%;
	margin: 1%;
}
.npro-item .btn {
	display: block;
	line-height: 30px;
	margin-top: 5px;
	text-align: center;
	background: #2061C4;
	color: #fff;
	font-size: 16px;
}
.page {
	display: flex;
	margin-top: 20px;
	justify-content: center;
}
.page a {
	display: block;
	border: 1px solid #ccc;
	width: 30px;
	line-height: 30px;
	text-align: center;
	margin: 0 5px;
}
.page a.active, .page a:hover {
	background: #2061C4;
	color: #fff;
}

/*product-show*/
.npro-desc {
	margin-top: 30px;
}
.desc-title {
	background: #838476;
}
.desc-nav {
	display: flex;
}
.desc-title li {
	display: block;
	font-size: 20px;
	line-height: 40px;
	padding: 0 20px;
	color: #fff;
	cursor: pointer;
}
.desc-title .current {
	background: #2061C4;
}
.detail {
	display: none;
	margin-top: 20px;
}
.current {
	display: block;
}
.detail {
	color: #555;
	text-indent: 28px;
}
.detail p {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 10px;
}
.npro-cont {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.npro-cont .cont-left {
	width: 40%;
}
.npro-cont .cont-right {
	width: 58%;
}
.cont-right h3 {
	font-size: 20px;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
}
.cont-right p {
	font-size: 14px;
	line-height: 1.5;
	color: #555;
	margin-top: 15px;
}
.about-cont span {
	display: block;
	font-weight: bold;
	font-size: 18px;
}


.n-contact .ct {
	    background: #f9f3e9;
	    overflow: hidden;
	}
	.n-contact .l .name span {
	    font-family: 宋体;
	    font-size: 30px;
	    font-weight: bold;
	    color: rgb(0, 0, 0);
	    padding: 0px 10px;
	    border-left: 5px solid rgb(51, 51, 51);
	}
	.n-contact .l {
	    float: left;
	    width: 45%;
	    padding: 50px 0 0px 50px;
	    font-size: 16px;
	    color: #000;
	}
	.n-contact .r {
	    float: left;
	    width: 55%;
	    text-align: right;
	}
	.n-contact .l .english {
	    font-family: "Didot Regular", "Times New Roman", Georgia, 宋体;
	    font-size: 18px;
	    text-transform: uppercase;
	    letter-spacing: 4px;
	    color: rgb(102, 102, 102);
	    margin-top: 10px;
	}
	.n-contact .l li {
	    position: relative;
	    padding: 30px 0 30px 60px;
	    border-bottom: 1px solid #e5dac6;
	}
	.n-contact .l li i {
	    position: absolute;
	    left: 0;
	    top: 30px;
	    width: 50px;
	    height: 50px;
	    display: block;
	    font-size: 44px;
	    text-align: center;
	    color: #555
	}
	.n-contact .l li:nth-child(1) i {
	    background-position: -400px 0;
	}
	.n-contact .l li .p2 {
	    font-size: 18px;
	    line-height: 28px;
	    color: #333;
	}
	.n-contact .l li:nth-child(2) i {
	    background-position: -450px 0;
	}
	.n-contact .l li:nth-child(3) i {
	    background-position: -450px -50px;
	}
	.n-contact .l .ewm {
	    overflow: hidden;
	    margin-top: 40px;
	    padding-bottom: 20px;
	}
	.n-contact .l .ewm .img {
	    float: left;
	    text-align: center;
	    margin-right: 30px;
	    max-width: 120px;
	}
	.n-contact .l .ewm .img p {
	    line-height: 30px;
	}