.layout {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}
.head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #eee;
}
.head .head-left, .head .head-right {
	display: flex;
}
.head-left a {
	display: flex;
	align-items: center;
	padding: 0 40px;
	border-right: 1px solid #eee;
}
.head-left span {
	display: block;
	font-size: 12px;
	line-height: 40px;
	color: #999;
}
.head-left i {
	font-size: 14px;
	margin-right: 8px;
	line-height: 40px;
}
.head-left i.fa-mobile {
	font-size: 18px;
}

.head-right .search, .head-right .lang {
	padding: 0 40px;
	border-left: 1px solid #eee;
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}
#search_switch, .lang i {
	font-size: 14px;
	line-height: 40px;
	color: #999;
}
.search .search-cont {
	display: none;
	margin-right: 30px;

}
.search-cont input {
	border: 1px solid #ccc;
	outline: 0;
	line-height: 20px;
}
.search-cont i {
	border: 1px solid #ccc;
	line-height: 20px;
	width: 20px;
	text-align: center;
}
.lang .lang-cont {
	display: none;
}
.lang-cont a {
	display: flex;
	align-items: center;
	padding: 0 10px;
}
.lang-cont a img {
	margin-right: 5px;
}


nav {
	padding: 10px 0;
}
nav .layout {
	display: flex;
	flex-wrap: wrap;
}
.logo-top {
	width: 200px;
	max-height: 60px;
}
.logo-top img {
	max-width: 100%;
	max-height: 100%;
}
.nav-list {
	width: calc(100% - 260px);
	margin-left: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.nav-item a {
	display: block;
	font-size: 16px;
	font-weight: bold;
	line-height: 60px;
	padding: 0 10px;
	color: #2e2e2e;
	position: relative;
}
.nav-item a:after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 2px;
	background: #c80d0d;
	bottom: 0;
	left: 50%;
}
.nav-item>a:hover:after {
	width: 100%;
	left: 0;
}
.banner img {
	width: 100%;
}

.index {
	margin: 80px 0;
	position: relative;
}
.index .title {
	margin-bottom: 50px;
	width: 100%;
}
.title h2 {
	text-transform: uppercase;
	letter-spacing: 5px;
	text-align: center;
	font-weight: bold;
	font-size: 28px;
	position: relative;
}
.title h2:before {
	content: "";
	display: block;
	position: absolute;
	width: 150px;
	height: 1px;
	background: #c80d0d;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}
.new-pro {
	position: relative;
	padding-bottom: 30px;
}
.new-pro .swiper-container {
	padding: 10px 10px 10px 0;
}
.new-pro:before {
	content: "";
	display: block;
	position: absolute;
	width: 380px;
	height: 100%;
	background: #2e2e2e;
	left: 0;
	top: 0;
}
.new-pro:after {
	content: "";
	display: block;
	clear: both;
}
.npro-list .npro-item {
	box-shadow: 0 0 8px 0 #ccc;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.new-pro .swiper-container {
	width: calc(100% - 200px);
	float: right;
} 

.new-pro .slider_swiper_control {
	position: absolute;
	width: 180px;
	height: 100%;
	top: 0;
}
.new-pro .slider_swiper_control span {
	padding: 0 5px;
}
.new-pro .slider_swiper_control span.swiper-pagination-current {
	color: #fff;
	font-size: 40px;

}
.new-pro .slider_swiper_control span.swiper-pagination-total {
	color: #aaa;
	font-size: 16px;
}
.new-pro .slider_swiper_control i {
	color: #fff;
	font-size: 16px;
}
.npro-item .npro-img {
	border-bottom: 1px solid #ccc;
}
.npro-item .npro-info {
	padding: 20px;
}
.npro-info h3 {
	font-size: 18px;
	font-weight: bold;
	color: #555;
	margin-bottom: 10px;
} 
.npro-info p {
	font-size: 14px;
	line-height: 1.5;
	color: #666;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.npro-btn {
	display: flex;
	padding: 0 20px 20px;
	justify-content: flex-end;
}
.npro-btn a {
	display: block;
	padding: 0 20px;
	line-height: 30px;
	font-size: 14px;
	border-radius: 5px;
	border: 1px solid #ccc;
	color: #666;
}
.npro-btn a:hover {
	color: #fff;
	background: #c80d0d;
	border-color: #c80d0d;
}
.new-pro .swiper-pagination-custom {
    bottom: 70px;
}
.new-pro .swiper-button-next, .new-pro .swiper-button-prev{
    right: 50%;
    left: auto;
    width: 50px;
    height: 50px;
    border: 1px solid #666;
    border-radius: 50%;
    --swiper-navigation-size: 20px;
}
.new-pro .swiper-button-next{
    top: calc(50% + 40px);
}
.new-pro .swiper-button-prev {
    top: calc(50% - 40px);
}

.index-about {
	padding: 80px 0;
	background: url(../images/about_bg.jpg);
	background-attachment: fixed;
}
.index-about .about-cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index-about .about-txt {
	width: 45%;
}
.index-about .title {
	margin-bottom: 40px;
}
.index-about .title h2 {
	text-align: left;
	color: #fff;
}
.index-about .title h2:before {
	left: 0;
	background: #fff;
	transform: translateX(0);
}
.about-txt .desc {
	font-size: 16px;
	color: #ddd;
	line-height: 2;
}
.about-txt .about-btn {
	display: flex;
	margin-top: 40px;
}
.about-btn a {
	display: block;
	color: #fff;
	border-radius: 3px;
	border: 1px solid #c80d0d;
	background: #c80d0d;
	padding: 0 30px;
	line-height: 30px;
}
.about-btn a:hover {
	border-color: #fff;
	background: inherit;
}
.index-about .about-img {
	width: 52%;
}

.index-case .title h2 {
	text-align: left;
}
.index-case .title h2:before {
	left: 0;
	transform: translateX(0);
}
.index-case:before {
	content: "";
	display: block;
	position: absolute;
	background: #edeeed;
	width: calc(100% - 260px);
	height: 240px;
	right: 0;
	top: 14px;
	z-index: -1;
}

.case-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.case-list .case-item {
	width: 32%;
}
.case-txt h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	margin-top: 10px; 
	text-align: center;
}
.case-btn {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.case-btn a {
	display: block;
	padding: 20px 30px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 5px;
	border: 1px solid #2e2e2e;
	color: #2e2e2e;
	border-radius: 5px;
}
.case-btn a:hover {
	border-color: #c80d0d;
	background: #c80d0d;
	color: #fff;
}

.hot-pro {
	padding: 80px 0;
	background: #ecedeb;
	margin: 0;
}
.hot-pro .hpro-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.hpro-list .hpro-item {
	display: block;
	width: 24%;
	margin-bottom: 15px;
}
.hpro-txt h3 {
	font-size: 16px;
	line-height: 30px;
	margin-top: 10px;
	text-align: center;
} 

.custom {
	margin: 0;
	padding: 100px 0 80px;
	background: url(../images/custom_bg.jpg);
}
.title p {
	text-align: center;
	margin-top: 20px;
}

.custom-list {
	display: flex;
	flex-wrap: wrap;
}
.custom-list p {
	width: 100%;
	margin-bottom: 15px;
}
.custom-list .custom-item {
	margin-bottom: 15px;
}
.custom-item textarea {
	line-height: 38px;
    border-radius: 5px;
    border: 1px solid #999;
    padding: 0 10px;
    height: 40px;
    width: 98%;
    box-sizing: border-box;
    font-size: 14px;
    resize: none;
    background-color: rgba(255,255,255,0.7);
}
.custom-item textarea:focus {
	outline: 0;
	border-color: #12bff1;
}
.col-r-2 {
	width: 50%;
	text-align: right;
}
.col-l-2 {
	width: 50%;
	text-align: left;
}
.col-1 {
	width: 100%;
}
.col-1 textarea {
	width: 100%;
	height: 80px;
}
.custom-btn {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.custom-btn a {
	display: block;
    padding: 20px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    border: 1px solid #999;
    color: #2e2e2e;
    border-radius: 5px;
    /*background-color: rgba(255,255,255,0.7);*/
}
.custom-btn a:hover {
    border-color: #c80d0d;
    background: #c80d0d;
    color: #fff;
}


footer {
	/*background: #2e2e2e;*/
	background: url(../images/foot_bg.jpg);
}
.foot {
	text-align: center;
	color: #aaa;
	line-height: 20px;
	padding: 30px 20px;
	border-top: 1px solid #333;
}
.footer-link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-link .footer-nav,  .footer-link .footer-sns{
	display: flex;
	flex-wrap: wrap;
}
.footer-nav a {
	display: block;
	color: #999;
	line-height: 70px;
	font-size: 12px;
	margin-right: 20px;
}
.footer-sns a {
	display: block;
	margin-left: 20px;
} 
.footer-sns i {
	font-size: 14px;
	line-height: 70px;
	color: #999;
}
.footer-wrapper {
	border-top: 1px solid #333;
}
.footer-list {
	display: flex;
	flex-wrap: wrap;
}
.footer-list .footer-item {
	width: 14%;
	padding: 50px 0;
}
.footer-list .center {
	border-right: 1px solid #333;
	width: 36%;
}
.footer-list .center li {
	justify-content: space-between;
}
.footer-list .center li a {
	width: calc(100% - 40px);
}
.footer-list .shop {
	border-right: 1px solid #333;
	width: 36%;
	padding: 50px 20px;
}
.footer-item h3 {
	font-size: 24px;
	line-height: 30px;
	position: relative;
	margin-bottom: 30px;
	color: #fff;
	cursor: pointer;
}
.footer-item h3:after {
	content: "";
	display: block;
	position: absolute;
	width: 50px;
	height: 2px;
	background: #C90D0D;
	left: 0;
	top: 45px;

}
.footer-item li {
	display: flex;
	flex-wrap: wrap;
}
.footer-item li a {
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #ddd;
	padding: 10px 0;
	cursor: pointer;
}
.footer-item li i {
	display: block;
	font-size: 24px;
	line-height: 20px;
	padding: 10px 0;
	color: #bbb;
	text-align: center;
	width: 30px;
	text-align: center;
	cursor: pointer;
}
.footer-list .right li {
	justify-content: center;
	color: #fff;
	text-align: center;
	line-height: 1.5;
	font-size: 14px;
	padding: 0 20px;
}
.footer-list .right li img {
	margin-bottom: 10px;
}
.footer-item p {
	color: #ddd;
	width: 100%;
	line-height: 40px;
}
.shop li a {
	padding: 0px 20px;
	background: #C90D0D;
	line-height: 30px;
	margin-top: 10px;
	border-radius: 5px;
	border: 1px solid #C90D0D;
}
.shop li a:hover {
	background: inherit;
	border: 1px solid #fff;
}
.footer-list .right li img {
	max-width: 150px;
}
.footer-list .left li {
	justify-content: center;
}
.footer-list .left li img {
	max-width: 160px;
}


/* inner-about */

.inner {
	padding: 40px 0;
}
.inner-title h1 {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	color: #333;
}
.about-info {
	margin-top: 30px;
}
.about-item {
	margin-bottom: 30px;
}
.about-item h3 {
	font-size: 18px;
	color: #555;
	margin-bottom: 10px;
	line-height: 1.8;
	font-weight: bold;
}
.about-item p {
	font-size: 16px; 
	line-height: 1.5;
	color: #666;
	margin-bottom: 10px;
}

/* products */

.page {
	display: flex;
	margin-top: 40px;
	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: #CA0D0D;
	color: #fff;
}

.inner-nav {
	margin-top: 40px;
}

.inner-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.inner-type li {
	margin: 10px;
}
.inner-type li a {
	display: block;
	font-size: 18px;
	padding: 20px 30px;
	border: 1px solid #ccc;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	font-weight: bold;
}
.inner-type li a:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: #CA0D0D;
	z-index: -1;
}
.inner-type li.active a,.inner-type li:hover a {
	color: #fff;
	border-color: #CA0D0D;
}
.inner-type li.active a:before,.inner-type li:hover a:before {
	width: 100%;
}

.inner-model {
	margin-top: 20px;
}
.inner-model li {
	margin: 10px;
}
.inner-model li a {
	display: block;
	font-size: 14px;
	padding: 5px 20px;
	border: 1px solid #ccc;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.inner-model li.active a,.inner-model li:hover a {
	color: #CA0D0D;
	border-color: #CA0D0D;
}

.pro-list {
	display: flex;
	flex-wrap: wrap;
}

.pro-list .pro-item {
	width: 23%;
	margin: 1%;
}
.pro-txt a {
	display: block;
	text-align: center;
	padding: 10px 20px;
	background: #555;
	color: #fff;
	font-size: 16px;
	line-height: 20px;
}
.pro-item:hover .pro-txt a {
	background: #CA0D0D;
}

/* product-show */
.pro-cont {
	/*padding: 0 60px;*/
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pro-cont .pro-left {
	width: 38%;
}
.pro-cont .pro-right {
	width: 58%;
	background: #f2f2f2;
	padding: 40px 60px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
}
.pro-right h1 {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 10px;
}
.pro-right p {
	font-size: 16px;
	color: #666;
	line-height: 2;
}
.color-item {
	display: none;
}
.current {
	display: block;
}
.pro-color {
	position: relative;
	padding: 0 80px;
}
.pro-color .swiper-button-next, .pro-color .swiper-button-prev{
	--swiper-theme-color: #333;
}
.mySwiper .swiper-slide:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.3);
}
.mySwiper .swiper-slide-thumb-active:after {
	background: rgba(0,0,0,0);
	border: 1px solid #ccc;
}
.mySwiper {
	padding: 2px;
}
.pro-desc {
	margin-top: 40px;
	padding: 0 30px;
}
.desc-title h3 {
	width: 100%;
	color: #fff;
	padding: 10px 20px;
	font-size: 20px;
	background: #E60012;
	text-transform: uppercase;
}

.inner-title time {
	display: block;
	text-align: center;
	color: #666;
	font-size: 14px;
	margin-top: 10px;
}
.case-cont {
	margin-top: 30px;
}
.inner-btn {
	display: flex;
	margin-top: 40px;
	justify-content: space-between;
}
.inner-btn i {
	font-size: 20px;
	width: 20px;
	height: 20px;
	overflow: hidden;
	transform: scaleX(2);
	position: relative;
	color: rgba(0,0,0,0);
}
.inner-btn i:before {
	position: absolute;
	height: 50%;
	top: 50%;
	color: #666;
}
.inner-btn a.prev i {
	left: 10px;
	margin-right: 25px;
}
.inner-btn a.next i {
	right: 10px;
	margin-left: 25px;
}
.inner-btn a:hover {
	color: #f3040b;
}
.inner-btn a:hover i:before {
	color: #f3040b;
}

