@charset 'utf-8';
.md-wrapper {
	position: relative;
	/* max-width: 1920px; */
	margin: 0 auto;
}

.sm-wrapper {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}

.max-wid {
	position: relative;
	width: 88%;
	max-width: 1400px;
	margin: auto;
}

.tea_case {
	position: relative;
	width: 67.71%;
	max-width: 1200px;
	margin: auto;
}

/*分页*/
#pages {
    text-align: center;
}

#pages li {
    margin: 0 2px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #e6e6e6;
    color: #333;
    display: inline-block;
}
#pages li a{
    font-size: 14px;
    display: block;
    padding: 0 12px;
}
#pages li span{
    font-size: 14px;
    display: block;
    padding: 0 12px;
}
#pages li.active {
    text-align: center;
    background: #f90712;
    color: #fff;
    display: inline-block;
}

#pages li:hover {
    background: #f90712;
}

#pages li:hover a {
    color: #fff;
}

.flex {
	display: box;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
}

.flex1 {
	-webkit-box-flex: 1;
	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 1;
	/* OLD - Firefox 19- */
	width: 20%;
	/* For old syntax, otherwise collapses. */
	-webkit-flex: 1;
	/* Chrome */
	-ms-flex: 1;
	/* IE 10 */
	flex: 1;
	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.gradient {
	background: linear-gradient(180deg,
			rgba(189, 0, 46, 1),
			rgba(255, 161, 184, 1));
	background: -webkit-linear-gradient(180deg,
			rgba(189, 0, 46, 1),
			rgba(255, 161, 184, 1));
	background: -moz-linear-gradient(180deg,
			rgba(189, 0, 46, 1),
			rgba(255, 161, 184, 1));
	background: -o-linear-gradient(180deg,
			rgba(189, 0, 46, 1),
			rgba(255, 161, 184, 1));
	background: -ms-linear-gradient(180deg,
			rgba(189, 0, 46, 1),
			rgba(255, 161, 184, 1));
}

.gradient-FE {
	background: linear-gradient(180deg,
			rgba(255, 241, 174, 1),
			rgba(232, 197, 118, 1));
	background: -webkit-linear-gradient(180deg,
			rgba(255, 241, 174, 1),
			rgba(232, 197, 118, 1));
	background: -moz-linear-gradient(180deg,
			rgba(255, 241, 174, 1),
			rgba(232, 197, 118, 1));
	background: -o-linear-gradient(180deg,
			rgba(255, 241, 174, 1),
			rgba(232, 197, 118, 1));
	background: -ms-linear-gradient(180deg,
			rgba(255, 241, 174, 1),
			rgba(232, 197, 118, 1));
}

/* 图片隐藏 显示 */
.pic-hide {
	transition: all 1.2s ease-out;
	-webkit-transition: all 1.2s ease-out;
	-moz-transition: all 1.2s ease-out;
	-o-transition: all 1.2s ease-out;
	-ms-transition: all 1.2s ease-out;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	filter: blur(30px);
	visibility: visible !important;
}

.pic-show {
	opacity: 1;
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	-ms-transform: none;
	filter: blur(0);
}


/* bar-bf-red 红色横杠延迟 */
.bar-bf-red {
	position: relative;
}

.bar-bf-red::before {
	content: "";
	position: absolute;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #bd002e;
}

.bar-bf-white {
	position: relative;
}

.bar-bf-white::before {
	content: "";
	position: absolute;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #fff;
}

.custom-bar::before {
	width: 100%;
	transition: all 1.2s ease-out;
	-webkit-transition: all 1.2s ease-out;
	-moz-transition: all 1.2s ease-out;
	-o-transition: all 1.2s ease-out;
	-ms-transition: all 1.2s ease-out;
}

/* bar-bf-## end */
/* 椭圆特效 */
.oval::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	z-index: 1;
	border-width: 3px;
	border-color: #ffa1b8;
	background: transparent;
	pointer-events: none;
}

.oval:hover:before {
	border-style: solid;
	transform: scaleX(1.2);
	-webkit-transform: scaleX(1.2);
	-moz-transform: scaleX(1.2);
	-o-transform: scaleX(1.2);
	-ms-transform: scaleX(1.2);
	opacity: 0;
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
}

/* 清除动效 */
.clr-transition {
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
}

.clr-transform {
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	-ms-transform: none;
}

/* 清除浮动 */
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}

/* 媒体查询 */
@media screen and (max-width: 1440px) {
	.page_more a {
		width: 43px;
		height: 43px;
		font-size: 17px;
		line-height: 43px;
	}

	/*  */
	.f-78 {
		font-size: 78px !important;
	}

	.f-43 {
		font-size: 43px !important;
	}

	.f-36 {
		font-size: 36px !important;
	}

	.f-28 {
		font-size: 28px !important;
	}

	.f-16 {
		font-size: 16px !important;
	}

	.f-15 {
		font-size: 15px !important;
	}

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

header {
	z-index: 99;
	position: fixed;
	top: 47px;
	left: 5%;
	width: 90%;
	white-space: nowrap;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 18px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
}

header .head-wrapper {
	padding: 0 4% 0 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* logo */
header .logo {
	width: 210px;
}

header .logo>img {
	width: 100%;
}

/* 导航区域 */
header .head-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .head-nav .item {
	position: relative;
	height: 110px;
	margin: 0 25px;
	font-size: 18px;
	line-height: 110px;
	/* font-weight: bold; */
	cursor: pointer;
	display: block;
}

header .head-nav .item .nav-colums {
	position: absolute;
	top: 100%;
	min-width: 687px;
	padding: 45px 0;
	margin-top: 25px;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	line-height: 1;
	background-color: #fff;
	pointer-events: none;
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-o-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transition: all 0.5s ease-in-out;
	justify-content: space-between;
	display: none;
}

header .head-nav .colums-list {
	width: 255px;
	/* padding-left: 19px; */
	border-right: 1px solid #efefef;
	float: left;
}

header .head-nav .colums-list>a {
	position: relative;
	padding: 17px 0 16px 51px;
	font-size: 16px;
	color: #333;
	font-weight: normal;
	display: block;
}

header .head-nav .colums-list>a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 31px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #dcdddd;
}

header .head-nav .nav-colums::before {
	content: "";
	position: absolute;
	border-top: 14px solid transparent;
	border-left: 14px solid transparent;
	border-bottom: 14px solid #fff;
	border-right: 14px solid transparent;
}

header .head-nav .nav-colums::after {
	content: "";
	position: absolute;
	top: -28px;
	left: 0;
	width: 100%;
	height: 28px;
}

header .head-nav .colums-pic {
	padding: 0 35px;
	box-sizing: border-box;
	float: left;
}

header .head-nav .colums-pic>img {
	width: 100%;
}

header .head-nav .colums-pic>a {
	position: absolute;
	left: 34px;
	bottom: 40px;
	width: 99px;
	height: 33px;
	border-radius: 16px;
	font-size: 12px;
	text-align: center;
	line-height: 32px;
	font-weight: normal;
	color: #fff;
}

/* active */

header.active {
	width: 100%;
	left: 0;
	top: 0;
	background: rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 2px 6px rgrgba(5, 2, 2, 0.2);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	border-radius: 0;
}

header.active .logo {
	width: 210px;
}

header.active .head-nav .item {
	height: 90px;
	line-height: 90px;
}

/* hover */
header .head-nav .item.active {
	color: #1f6713;
}

header .head-nav .item.active:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #1f6713;
}

header .head-nav .item:hover>a {
	display: block;
	color: #1f6713;
}

header .head-nav .item:nth-child(-n + 6):hover .nav-colums {
	display: block;
	left: 0;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
}

header .head-nav .item:nth-child(-n + 6):hover .nav-colums::before {
	top: -28px;
	left: 60px;
}

header .head-nav .item:nth-last-child(2):hover .nav-colums {
	display: flex;
	right: 0;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-ms-transform: translateY(0);
}

header .head-nav .item:nth-last-child(2):hover .nav-colums::before {
	top: -28px;
	right: 60px;
}

header .head-nav .colums-list>a.active,
header .head-nav .colums-list>a:hover {
	color: #fff;
	background-color: #1f6713;
}

header .head-nav .colums-list>a.active::before,
header .head-nav .colums-list>a:hover::before {
	background-color: #fff;
}

/* 添加购物车 */
header .hd-search {
	width: 180px;
	height: 38px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #b3b3b3;
	position: relative;
}

header .hd-search .key {
	height: 38px;
	border: 0;
	outline: none;
	background: none;
	display: block;
	width: 100%;
	text-indent: 20px;
}

header .hd-search .submit {
	width: 50px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	outline: none;
	background: none;
	border: 0;
	cursor: pointer;
}

header .hd-search .submit::before {
	width: 20px;
	height: 20px;
	content: "";
	position: absolute;
	right: 15px;
	top: 10px;
	background-repeat: no-repeat;
	background-image: url(../images/search.png);
	background-size: 20px 20px;
}

.wap-header {
	display: none;
}

.wap-header-height {
	display: none;
}

.wap_nav {
	display: none;
}

@media screen and (max-width: 1440px) {
	header {
		top: 30px;
		border-radius: 12px;
	}
	
	header .head-wrapper{
		padding: 0 3% 0 3%;
	}

	header .logo {
		width: 120px;
	}

	header .head-nav .item {
		height: 83px;
		font-size: 16px;
		line-height: 83px;
	}

	header .head-nav .item .nav-colums {
		min-width: 570px;
		padding: 34px 0;
	}

	header .head-nav .colums-list {
		width: 190px;
	}

	header .head-nav .colums-list>a {
		font-size: 15px;
		padding: 13px 0 12px 38px;
	}

	header .head-nav .colums-list>a::before {
		left: 23px;
	}

	header .head-nav .colums-pic {
		width: 390px;
		padding: 0 28px;
	}

	/* active */
	header.active .logo {
		width: 80px;
	}
}
@media screen and (max-width: 1024px) {
	header{
		top: 30px;
	}
	header .head-wrapper {
	    padding: 0 2% 0 3%;
	}
	header .head-nav .item {
		height: 83px;
		font-size: 15px;
		margin: 0 10px;
		line-height: 83px;
	}
	header .hd-search{
		width: 120px;
	}
	header.active .head-nav .item {
	    height: 85px;
	    line-height: 85px;
	}
}
@media screen and (max-width: 768px) {
	.wap-header-height {
		display: block;
	}

	header .head-wrapper {
		display: none;
	}

	.wap-header {
		display: block;
		height: 64px;
		width: 100%;
	}

	header {
		width: 100%;
		position: static;
		background: rgba(255, 255, 255, 1);
	}

	.wrapper {
		overflow: hidden;
	}

	.wap-header {
		padding: 0 5%;
		width: 100%;
		top: 0;
		position: fixed;
		z-index: 10000;
		background: #fff;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: space-between;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	}

	.wap-header button img {
		width: 40px;
	}

	.wap-header .logo {
		width: 150px;
	}
	
	.wap-header .language {
		font-size: 18px;
		margin-right: 10px;
	}

	.wap_nav {
		position: fixed;
		left: 100%;
		transition: all 0.5s;
		display: block;
		width: 100%;
		top: 0;
		z-index: 9999;
		background: #ecf0f4;
		height: 100vh;
		box-sizing: border-box;
		padding: 80px 24px 64px;
	}

	#wap_dl dd {
		display: none;
		line-height: 32px;
	}

	#wap_dl dt {
		line-height: 60px;
		display: flex;
		justify-content: space-between;
		border-bottom: 1px solid #dcdddd;
		position: relative;
	}
	
	#wap_dl dt:after {
	    content: '';
	    display: block;
	    width: 26px;
	    height: 26px;
	    background: url(../images/jt.png) no-repeat center;
	    background-size: 10px auto;
	    position: absolute;
	    right: 3%;
	    top: 15px;
	}
	#wap_dl dt:last-child:after {
	    display: none;
	}

	#hownav {
		outline: none;
	}

	#wap_dl dt span {
		font-size: 18px;
	}

	#wap_dl dd a {
		line-height: 2.2;
		font-size: 16px;
		padding-left: 16px;
		display: block;
		color: #666666;
	}

	#open2 {
		color: #1f6713;
	}

	#wap_dl .msg {
		padding: 15px 0;
	}

	.wap_navon {
		left: 0;
	}

	#wap_dl i {
		transition: all 0.5s;
	}

	#open2 i {
		transform: rotate(-180deg);
	}

}

footer {
	background-color: #f9f9fa;
}

footer .main {
	padding-top: 70px;
	padding-bottom: 50px;
}

footer .main .column-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

footer .main .left {
	width: 59%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

footer .main .tl {
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

footer .main .column-list {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	font-size: 16px;
}

footer .main .column-list>a {
	padding: 13px 0;
	color: #999;
}

footer .main .right {
	width: 32%;
	/* display: flex;
	align-items: flex-start;
	justify-content: space-between; */
}

footer .main h2 {
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

footer .main p {
	margin-top: 21px;
	font-size: 16px;
	line-height:2;
	color: #999;
}

/* 友情链接 */
footer .main .outer-chain {
	margin-top: 57px;
	padding: 15px 0;
	border-top: 1px solid #dcdddd;
	display: flex;
	align-items: flex-start;
}

footer .main .outer-chain h3 {
	padding: 15px 0;
	margin-right: 49px;
	font-size: 22px;
	font-weight: bold;
	white-space: nowrap;
}

footer .main .chain-list {
	margin-top: 3px;
	display: flex;
	flex-wrap: wrap;
}

footer .main .chain-list>a {
	padding: 15px 0;
	margin-right: 54px;
	font-size: 16px;
	color: #999;
}

footer .main .chain-list>a:hover {
	color: #1f6713;
	text-decoration: underline;
}

footer .main .chain-list>a:nth-last-child(1) {
	margin-right: 0;
}

footer .footer {
	width: 100%;
	padding: 22px 0;
	background-color: #333;
}

footer .enterprise {
	max-width: 1400px;
	margin: 0 auto;
	font-size: 14px;
	color: #e0e0e0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	opacity: 0.5;
}

footer .enterprise a {
	color: #e0e0e0;
}

footer .main .column-list>a:hover {
	color: #1f6713;
	text-decoration: underline;
}

@media (max-width: 1440px) {
	footer .main .chain-list>a {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	footer .enterprise span {
		display: block;
	}

	footer .footer {
		margin-top: 0;
	}

	footer {
		margin-top: 0;
	}

	footer .main {
		max-width: 92%;
		margin: 0 auto;
		padding: 30px 0;
	}

	footer .main .tl{
		font-size: 18px;
	}

	footer .enterprise {
		max-width: 94%;
		display: block;
		font-size: 12px;
		text-align: center;
	}

	footer .footer {
		line-height: 30px;
	}

	footer .main .left {
		display: none;
	}

	.max-wid {
		width: 92%;
	}

	footer .main .right {
		width: auto;
	}
	
	footer .main p{
		margin-top: 15px;
		font-size: 14px;
	}
}
