@charset "utf-8";

/* CSS Document */
@font-face {
	font-family: 'mont';
	src: url('../fonts/montserrat-regular.ttf');
}

@font-face {
	font-family: 'monl';
	src: url(' ../fonts/Montserrat-Light.otf');
}

@font-face {
	font-family: 'montb';
	src: url(' ../fonts/Montserrat-Bold.otf');
}

@font-face {
	font-family: 'monsb';
	src: url(' ../fonts/Montserrat Semi Bold.otf');
}

@font-face {
	font-family: 'moneb';
	src: url(' ../fonts/Montserrat Extra Bold.otf');
}

@font-face {
	font-family: 'montm';
	src: url(' ../fonts/Montserrat-Medium.otf');
}

body {
	color: #333;
	font-size: 16px;
	font-family: "monl" !important;
	box-sizing: border-box !important;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td,
a {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var,
optgroup {
	font-style: inherit;
	font-weight: inherit;
}

del,
ins {
	text-decoration: none;
}

p {
	line-height: 30px;
}

li {
	list-style: none;
}

caption,
th {
	text-align: left;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
	font-variant: normal;
}

sup {
	vertical-align: top;
}

sub {
	vertical-align: baseline;
}

input,
button,
textarea,
select,
optgroup,
option,
button {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	outline: none;
	border: none;
}

input,
button,
textarea,
select {
	*font-size: 100%;
}

input,
select {
	vertical-align: middle;
}

i,
em {
	font-style: normal;
}

img {
	padding: 0;
	border: 0;
	margin: 0;
	vertical-align: middle;
}

select,
input,
button,
textarea,
button {
	font: 99% arial, helvetica, clean, sans-serif;
}

table {
	font-size: inherit;
	font: 100%;
	border-collapse: collapse;
}

pre,
code,
kbd,
samp,
tt {
	font-family: monospace;
	*font-size: 108%;
	line-height: 100%;
}

dl,
dt {
	font-weight: normal;
}

a {
	color: #666;
	text-decoration: none;
}

a:focus,
input,
button,
textarea,
select {
	outline: 0;
}

a:hover {
	text-decoration: none;
}

input::placeholder {
	opacity: 0.4;
}

input:focus::placeholder {
	opacity: 0;
}

textarea::placeholder {
	opacity: 0.4;
}

textarea:focus::placeholder {
	opacity: 0;
}

/* 公共样式 - start */
:root {
	--line80: 80px;
}

.c {
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.rota img {
	-webkit-transition: 2s ease;
	-moz-transition: 2s ease;
}

.rota:hover img {
	-webkit-transform: rotatey(360deg);
	-moz-transform: rotatey(360deg);
}

.imgfd {
	overflow: hidden;
	position: relative;
	padding-top: 75%;
}

.imgfd img {
	width: 100%;
	height: 100%;
	transition: all 0.5s ease;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.imgfd:hover img {
	transform: scale(1.1);
}

.imgfdd {
	overflow: hidden;
}

.imgfdd img {
	width: 100%;
	height: auto;
	transition: all 0.5s ease;
	object-fit: cover;
	display: block;
}

.imgfdd:hover img {
	transform: scale(1.1);
}

.c-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center
}

.t-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start
}

h1,
h2,
h3,
h4 {
	color: #333;
	font-weight: normal;
}

.more_btn {
	display: inline-block;
	text-align: center;
	overflow: hidden;
	min-width: 180px;
	position: relative;
	z-index: 1;
	border: 1px solid #e60012;
	padding: 3px 3px 3px 30px;
	border-radius: 27px;
	box-sizing: border-box;
}

.more_btn i.icon-youjiantou3 {
	display: inline-block;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #e60012;
	text-align: center;
	line-height: 46px;
	color: #fff;
	margin-left: 15px;
	font-size: 18px;
	float: right;
}

.more_btn.on,
.more_btn:hover {
	background: #e60012;
}

.more_btn.on i.icon-youjiantou3,
.more_btn:hover i.icon-youjiantou3 {
	background: #fff;
	color: #e60012;
}

.more_btn.on:hover {
	text-decoration: underline;
}

.more_btn {
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}

.more_btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #37474f;
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.7, 1, 1);
	transform: scale3d(0.7, 1, 1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.more_btn::before {
	background: #e60012;
}

.more_btn,
.more_btn::before {
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.more_btn:hover,
.more_btn.wb:hover {
	background: none;
}

.more_btn:hover a,
.more_btn:hover span,
.more_btn.on a,
.more_btn.on span {
	color: #fff;
}

.more_btn:hover::before,
.more_btn.on::before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.more_btn.wb {
	border-color: #fff;
}

.more_btn a,
.more_btn span {
	display: block;
	width: 100%;
	line-height: 48px;
	color: #e60012;
	text-align: center;
}

.more_btn.wb a,
.more_btn.wb span {
	color: #fff;
}

.more_btn.wb i.icon-youjiantou3 {
	background: #fff;
	color: #e60012;
}

.more_btnw {
	width: 233px;
	transition: all 0.5s ease;
	display: inline-block;
	background: url(../images/btnbg_07.png) no-repeat center;
	background-size: cover;
}

.more_btnw a,
.more_btnw span {
	display: block;
	width: 100%;
	line-height: 71px;
	color: #fff;
	text-align: center;
	font-size: 18px;
}

.more_btn:hover a,
.more_btn:hover span,
.more_btn.on a,
.more_btn.on span {
	color: #fff;
}

.gray_bg {
	background: #f3f3f3;
}

.ul3 {
	overflow: hidden;
}

.ul3 li {
	width: 32%;
	float: left;
	margin-right: 2%;
}

.ul3 li:nth-child(3n) {
	margin-right: 0;
}

.ul4 {
	overflow: hidden;
}

.ul4 li {
	width: 24%;
	float: left;
	margin-right: 1.33%;
}

.ul4 li:nth-child(4n) {
	margin-right: 0;
}

.pagination>li>a,
.pagination>li>span,
.pagination .page-num {
	padding: 0 12px;
	border: 1px solid #bbb;
	color: #000;
	margin-right: 8px;
	display: block;
	font-size: 14px;
	text-align: center;
	line-height: 30px;
	border-radius: 5px;
	transition: all .3s;
}

.pagination span{
    display: none !important;
}

.pagination li.first,
.pagination li.last {
	display: none;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus,
.pagination .page-num-current,
.pagination .page-num:hover {
	background: #e60012;
	border-color: #e60012;
	color: #fff;
}

.pagination>li>a:hover {
	color: #e60012;
}


.pagination li,
.pagination a.page-num,
.pagination a.page-num-current {
	float: left;
}

.pagination {
	margin: 0;
	margin-top: 40px;
	display: inline-block !important;
}

.pages {
	text-align: center;
	width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
	text-align: center;
	top: auto;
	z-index: 8;
	font-size: 80px;
	color: #666;
	background: none;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {
	outline: none !important;
}

.swiper-button-prev i,
.swiper-button-next i {
	font-size: 40px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	color: #27943b;
}

.swiper-button-prev {
	left: 3%;
}

.swiper-button-next {
	right: 3%;
}

#toolbar {
	z-index: 98;
	padding: 5px 0 10px;
	border-top: 1px solid #192a75;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #fff;
	display: none;
}

#toolbar ul li {
	float: left;
	width: 25%;
	text-align: center;
}

#toolbar ul li .iconfont {
	font-size: 18px;
}

#toolbar ul li span {
	display: block;
	font-size: 12px;
}

.foot .f-nav .follow_list {
	margin-top: 40px;
}

.follow_list a,
.follow_list a i {
	display: block;
	margin-right: 5px;
	float: left;
	width: 28px;
	height: 28px;
	border-radius: 14px;
	text-align: center;
	line-height: 28px;
	color: #fff;
	padding: 0;
	border: none;
	font-size: 14px;
}

.follow_list a.icon-facebook,
.follow_list a.icon_facebook {
	background: #4267b2;
	color: #fff;
}

.follow_list a.icon-instagram1,
.follow_list a.icon-instagram {
	background: linear-gradient(to top right, #fdbd50, #e63d7f, #68428e);
	color: #fff;
}

.follow_list a.icon-linkedin-in,
.follow_list a.icon_linkedin,
.follow_list a.icon-linkedin {
	background: #0e76a8;
	color: #fff;
}

.follow_list a.icon-twitter-fill,
.follow_list a.icon_twitter,
.follow_list a.icon-twitter {
	background: #333;
	color: #fff;
}

.follow_list a.icon-Youtube-fill,
.follow_list a.icon_youtube {
	background: #ff0000;
	color: #fff;
}

.follow_list a.icon-google {
	background: #db4437;
	color: #fff;
}

.follow_list a .icon-facebook {
	background: #4267b2;
	color: #fff;
}

.follow_list a .icon-instagram1,
.follow_list a .icon-instagram {
	background: linear-gradient(to top right, #fdbd50, #e63d7f, #68428e);
	color: #fff;
}

.follow_list a .icon-linkedin-in {
	background: #0e76a8;
	color: #fff;
}

.follow_list a .icon-twitter-fill {
	background: #1da1f2;
	color: #fff;
}

.follow_list a .icon-Youtube-fill {
	background: #ff0000;
	color: #fff;
}

.follow_list a svg {
	fill: #fff;
	height: 18px;
	width: 18px;
	color: #fff;
	padding: 5px;
}

.follow_list a {
	font-size: 14px !important;
}

a.icon_pinterest {
	background: #e60023;
}

a.icon_instagram {
	background: linear-gradient(to top right, #fdbd50, #e63d7f, #68428e);
	color: #fff;
}

.right_online {
	position: fixed;
	top: 40%;
	right: 20px;
	z-index: 999;
}

.right_online li {
	text-align: center;
	position: relative;
	margin-bottom: 5px;
	cursor: pointer;
}

.right_online li span {
	font-size: 26px;
	color: #fff;
	background: #e60012;
	position: relative;
	z-index: 2;
	border-radius: 100%;
	display: block;
	line-height: 55px;
	width: 55px;
	height: 55px;
	/* transition: .3s ease; */
}

.right_online li .box {
	position: absolute;
	right: 25px;
	top: 0;
	max-width: 0px;
	height: 55px;
	line-height: 55px;
	background: #e60012;
	border-radius: 30px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	overflow: hidden;
	-webkit-transition: max-width 0.3s linear;
	-moz-transition: max-width 0.3s linear;
	transition: max-width 0.3s linear;
}

.right_online li:hover .box {
	max-width: 300px;
	z-index: 1;
}

.right_online li .box .p {
	color: #fff;
	font-size: 16px;
	width: 100%;
	white-space: nowrap;
	padding-left: 30px;
	padding-right: 40px;
	display: flex;
}

.right_online li.inq .addnum {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	line-height: 18px;
	background: red;
	color: #fff;
	border-radius: 500px;
	display: block;
	font-size: 12px;
	z-index: 9;
}

.right_online li .ewmtp {
	width: 120px;
	height: 120px;
	right: 55px;
	background: none;
	border-radius: 0;
}

.right_online li .ewmtp .p {
	padding: 0;
}

.right_online li .ewmtp img {
	width: 120px;
	height: 120px;
}

.shopcart {
	position: relative;
}

.addnum {
	position: absolute;
	right: 12px;
	top: 14px;
	display: inline-block;
	height: 16px;
	width: 16px;
	font-size: 10px;
	border-radius: 8px;
	background: #ff0000;
	line-height: 16px;
	color: #fff;
	text-align: center;
}

@media (max-width: 600px) {
	.pagination {
		margin-top: 20px;
	}
}

.center {
	width: 1600px;
	margin: 0 auto;
}

.padd65 {
	padding: 85px 0;
}

.ny_center {
	width: 1400px;
	margin: 0 auto;
}

@media (max-width: 1600px) {
	.center {
		width: 96% !important;
	}

	.swiper-button-prev {
		left: 10px;
	}

	.swiper-button-next {
		right: 10px;
	}
}

@media (max-width: 1400px) {
	.padd65 {
		padding: 65px 0;
	}

	h2 {
		font-size: 32px;
	}

	.ny_center {
		width: 96% !important;
	}

	.swiper-button-prev,
	.swiper-button-next {
		bottom: 120px;
	}
}

@media (max-width: 1281px) {
	.padd65 {
		padding: 50px 0;
	}

	.ul4 {
		overflow: hidden;
	}

	body {
		font-size: 16px;
	}

	.ul4 li {
		width: 32%;
		margin-right: 2%;
	}

	.ul4 li:nth-child(4n) {
		margin-right: 2%;
	}

	.ul4 li:nth-child(3n) {
		margin-right: 0;
	}
}

@media (max-width: 1024px) {
	.ul3 li {
		width: 49%;
		float: left;
		margin-right: 2%;
	}

	.ul3 li:nth-child(3n) {
		margin-right: 2%;
	}

	.ul3 li:nth-child(2n) {
		margin-right: 0;
	}

	.more_btn {
		min-width: 120px;
	}

	.more_btn a,
	.more_btn span {
		line-height: 38px;
	}

	#toolbar {
		display: block;
	}
}

@media (max-width: 768px) {
	p {
		font-size: 14px;
		line-height: 24px;
	}

	.ul4 {
		overflow: hidden;
	}

	.ul4 li {
		width: 49%;
	}

	.ul4 li:nth-child(3n) {
		margin-right: 2%;
	}

	.ul4 li:nth-child(2n) {
		margin-right: 0;
	}

	#toolbar {
		display: block;
	}
}

@media (max-width: 540px) {}

@media (max-width: 450px) {
	.more_btn {
		min-width: 90px;
	}

	.more_btn a,
	.more_btn span {
		font-size: 12px;
		line-height: 30px;
	}

	.more_btn i {
		margin-left: 5px;
	}
}


.tab {}

.tab-hd,
.tab-hdd,
.tab-hd1,
.tab_hd {
	overflow: hidden;
	zoom: 1;
}

.tab-hd li,
.tab-hd1 li {
	cursor: pointer;
}

.tab-bd li,
.tab-bdd li,
.tab-bd1 li {
	display: none;
}

.tab-bd li.thisclass,
.tab-bdd li.thisclass,
.tab-bd1 li.thisclass {
	display: list-item;
}

.tab_bd li {
	display: none;
}

.tab_bd li.thisclass {
	display: block;
}

/* flex布局 */
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*默认 主轴为水平方向，起点在左端*/
.f-dr {
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

/*主轴为水平方向，起点在右端*/
.f-dr-r {
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

/*主轴为垂直方向，起点在上沿*/
.f-dc {
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

/*主轴为垂直方向，起点在下沿*/
.f-dc-r {
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

/* 交叉轴的起点对齐 */
.f-as {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

/* 交叉轴的中点对齐 */
.f-ac {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

/* 交叉轴的终点对齐 */
.f-ae {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

/* 项目的第一行文字的基线对齐 */
.f-ab {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

/* 交叉轴拉伸对齐 */
.f-ast {
	-webkit-align-items: stretch;
	-moz-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

/* 左对齐 */
.f-js {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

/* 居中 */
.f-jc {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/* 右对齐 */
.f-je {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

/* 两端对齐，项目之间的间隔都相等 */
.f-jsb {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/* 每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍 */
.f-jsa {
	-webkit-box-pack: distribute;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

/* 换行，第一行在上方 */
.f-warp {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/* 换行，在第一行的下方 */
.f-warp-r {
	-webkit-flex-wrap: wrap-reverse;
	-moz-flex-wrap: wrap-reverse;
	-ms-flex-wrap: wrap-reverse;
	-o-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}