@font-face {
	font-family: 'DIN-Bold, DIN';
	font-display: swap;
	src: url("../fonts/DIN-Bold.otf");
	src: url("../fonts/DIN-Bold.ttf")format('truetype');
}
@font-face {
	font-family: 'AlimamaShuHeiTi-Bold';
	font-display: swap;
	src: url("../fonts/AlimamaShuHeiTi-Bold.otf");
	src: url("../fonts/AlimamaShuHeiTi-Bold.ttf")format('truetype'),url("../assets/fonts/AlimamaShuHeiTi-Bold.woff2") format("woff2"), url("../assets/fonts/AlimamaShuHeiTi-Bold.woff") format("woff");
}
@font-face {
	font-family: 'ABCMarfaMonoVariable-Trial';
	font-display: swap;
	src: url("../fonts/ABCMarfaMonoVariable-Trial.ttf");
}
@font-face {
	font-family: 'FREESCPT';
	font-display: swap;
	src: url("../assets/fonts/FREESCPT/FREESCPT.eot");
	src: url("../assets/fonts/FREESCPT/FREESCPT.eot") format("embedded-opentype"), url("../assets/fonts/FREESCPT/FREESCPT.html") format("woff2"), url("../assets/fonts/FREESCPT/FREESCPT-2.html") format("woff"), url("../assets/fonts/FREESCPT/FREESCPT-3.html") format("truetype"), url("../assets/fonts/FREESCPT/FREESCPT-4.html#SangBleuSansRegular") format("svg")
}
html {
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
}

body {
	overflow-x: hidden;
	margin: 0;
	font-family: Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC, Microsoft YaHei, Hiragino Sans GB, Heiti SC, SimHei, SimSun, sans-serif,DIN-Bold, DIN,AlimamaShuHeiTi-Bold,ABCMarfaMonoVariable-Trial;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.noScroll{
	height: 100%;
	overflow: hidden;
}

a {
	text-decoration: none;
	color: #000000;
	display: inline-block;
}

ul,
li {
	list-style-type: none;
}

ul,
p {
	margin: 0;
	padding: 0;
}

img {
	display: inline-block;
	border-style: none;
}

[class*=' icon-'],
[class^=icon-] {
	font-family: "iconfont";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	speak: none;
	text-transform: none
}

div {
	font-size: 0;
}

a:focus,
div:focus,
input:focus {
	outline: none;
}
canvas {
	padding-top: 35px;
	margin-top: 0;
}

/*新导航*/
.header-nav{
	width: 100%;
	height: 100px;
	background: #FFFFFF;
	box-shadow: 0px 2px 20px 8px rgba(51, 51, 51, 0.08);
	position: fixed;
	/*padding-left: 319px;
    padding-right: 319px;*/
   	/*padding-left: 16.5%;
    padding-right: 16.5%;*/
    z-index: 211;
}

.header-nav .nav-wrap{
	width: 100%;
	height: 100%;
	position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.header-nav .nav-wrap .item-nav{
	position: relative;
	/*width: 192px;*/
	width: calc(100% / 7);
	max-width: 10%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 20px;
	color: #000000;
	line-height: 30px;
	text-shadow: 0px 2px 20px rgba(0,0,0,0.1);
}
.header-nav .nav-wrap .item-nav .item-nav-text{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-nav .nav-wrap .item-nav .subItem-nav-wrap{
	/*width: 100px;*/
	width: 100%;
	position: absolute;
    top: 100px;
    left: 0;
    z-index: 1;
    visibility: hidden;
    border-radius: 0px 0px 10px 10px;
    overflow: hidden;
}
.header-nav .nav-wrap .item-nav .subItem-nav-wrap .subItem-nav-wrap-ani{
	width: 100%;
	max-height: 50px;
	display: flex;
	flex-direction: column;
}
.header-nav .nav-wrap .item-nav:hover,
.header-nav .nav-wrap .item-nav-active{
	background: rgba(231,22,35,0.04);
	/*box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.1);*/
}
.header-nav .nav-wrap .item-nav:hover a,
.header-nav .nav-wrap .item-nav-active a{
	font-weight: 600;
	color: #E60012;
}

.header-nav .nav-wrap .item-nav:hover .subItem-nav-wrap{
	visibility: visible;
}
.header-nav .nav-wrap .item-nav:hover .subItem-nav-wrap .subItem-nav-wrap-ani{
	max-height: 500px;
    transition: max-height .6s;
}
.header-nav .nav-wrap .item-nav .subItem-nav-wrap a{
	text-align: center;
	font-weight: 400;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 25px;
	padding: 20px 0;
	background: #E60012;
	position: relative;
	/*display: flex;*/
}
.header-nav .nav-wrap .item-nav .subItem-nav-wrap a::after{
	transition: opacity .4s ease-out;
    content: "";
    display: block;
    position: absolute;
    /*right: 32px;*/
   	right: calc((100% - 72px) / 2 - 25px );
    top: 22px;
    background: url(../img/common/首页咖啡豆.jpg) no-repeat center center;
    width: 20px;
    height: 20px;
    background-size: 15px 14px;
    opacity:0;
}
.header-nav .nav-wrap .item-nav .subItem-nav-wrap a:hover{
	background: #DC0011;
}
.header-nav .nav-wrap .item-nav .subItem-nav-wrap a:hover::after{
	opacity:1;
}

.header-nav .nav-wrap .nav-logo-wrap{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	width: 126px;
}

.header-nav .nav-wrap .nav-logo-wrap .nav-logo{
	width: 91px;
	height: 97px;
	margin-top: 20px;
    position: relative;
    z-index: 1;
}
.header-nav .nav-wrap .nav-logo-wrap .nav-logo img{
	width: 100%;
	height: 100%;
	object-fit:contain;
}
.header-nav .nav-wrap .nav-logo-wrap svg{
	position: absolute;
    /* bottom: -38px; */
		bottom: -62px;
    /*left: -37px;*/
}

.header-nav .header-nav-right{
	position: absolute;
	right: 90px;
	top: 32px;
	/*width: 176px;*/
	width: 9.2%;
	display: flex;
	flex-direction: row;
	align-items: center;
    justify-content: space-between;
}


@media(max-width: 1300px){
	.header-nav{
		height: 85px;
		/*padding-left: 11.5%;
		padding-right: 11.5%;*/
	}
	.header-nav .nav-wrap .item-nav{
		font-size: 18px;
		width: calc((100% - 95px) / 7);
		/*max-width: 100px;*/
	}
	.header-nav .nav-wrap .item-nav .subItem-nav-wrap{
		top: 85px;
	}
	.header-nav .nav-wrap .item-nav .subItem-nav-wrap a{
		font-size: 16px;
	}
	.header-nav .nav-wrap .item-nav .subItem-nav-wrap a::after{
		right: calc((100% - 72px) / 2 - 15px );
	}
	.header-nav .nav-wrap .nav-logo-wrap{
		width: 128px;
	}
	.header-nav .nav-wrap .nav-logo-wrap .nav-logo{
		margin-top: 5px;
	}
	.header-nav .header-nav-right{
		width: 11.2%;
		top: 24px;
		right: 35px;
	}
}
@media(max-width: 1200px){
	.header-nav .nav-wrap .item-nav .subItem-nav-wrap a{
		padding: 13px 0;
	}
	.header-nav .nav-wrap .item-nav .subItem-nav-wrap a::after{
		top: 15px;
	}
}

@media(min-width: 1024px){
	.header-m{
		display: none;
	}
}
@media(max-width: 1024px){
	.header-nav{
		display: none;
	}
}

/*页面中的模块标题*/
.page-module-title{
	position: relative;
	text-align: center;
	padding-top: 100px;
}

.module-title{
	font-family: AlimamaShuHeiTi-Bold;
	font-size: 56px;
	color: #4D2311;
	line-height: 1.5;
	font-style: normal;
	position: relative;
	z-index: 9;
}
.module-title-white{
	color: #FFFFFF;
}

.module-en-title{
	position: absolute;
	left: 50%;
	top: 100px;
	transform: translateX(-50%);
	white-space: nowrap;
	font-family: ABCMarfaMonoVariable-Trial;
	font-weight: bold;
	font-size: 80px;
	color: rgba(255,255,255,0.2);
	/*line-height: 100px;*/
	/* line-height: 1.08; */
	text-transform: uppercase;
	background: linear-gradient(to bottom, rgba(230,0,18,0.2) -100%, rgba(230,0,18,0) 100%);
	-webkit-background-clip: text;/*将设置的背景颜色限制在文字中*/
  	-webkit-text-fill-color: transparent;/*给文字设置成透明*/
}
.module-en-title-white{
	background: linear-gradient(to bottom, rgba(255,255,255,0.5) -100%, rgba(255,255,255,0) 100%);
	-webkit-background-clip: text;/*将设置的背景颜色限制在文字中*/
  	-webkit-text-fill-color: transparent;/*给文字设置成透明*/
}
@media(max-width:1920px){
	.module-title{
		font-size: 2.91vw;
	}
	.module-en-title{
		font-size: 4.16vw;
	}
}
@media(max-width: 1400px){
	.module-title{
		/*font-size: 52px;*/
		font-size: 2.7vw;
	}
	.module-en-title{
		/*font-size: 72px;*/
		font-size: 3.75vw;
	}
}
@media(max-width:1300px){
	.page-module-title{
		padding-top: 60px;
	}
	.module-en-title{
		top: 60px;
	}
}
@media(max-width:1024px){
	.page-module-title{
		padding-top: 100px;
	}
	.module-title{
		font-size: 54px;
		line-height: 76px;
	}
	.module-en-title{
		font-size: 72px;
		top: 100px;
	}
}
@media(max-width: 475px){
	.page-module-title{
		padding-top: 50px;
	}
	.module-title{
		font-size: 27px;
		line-height: 38px;
	}
	.module-en-title{
		font-size: 36px;
		top: 50px;
	}
}


.img-hover:hover{
	transform: scale(1.2);
	transition: transform .3s;
}
@media(max-width: 1024px){
	.img-hover:hover{
		transform:unset;
		transition:unset;
	}
}
