
@import "./vant.css";
@import "./margin.css";
@import "./padding.css";

html {
  	font-family: 'SourceHanSansCN-Regular';
  	position: relative;
  	min-height: 100%;
	line-height: 1;
}
body{
  	color: #1F1F1F;
  	-webkit-text-size-adjust:100%;
  	-moz-text-size-adjust:100%;
  	-ms-text-size-adjust:100%;
  	text-size-adjust:100%;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}

#header{
	position: sticky;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #FFFFFF;
}
@media screen and (max-width: 1260px) {
	@import "./fontmin.css";
    #main{
		padding: 0 6%;
	}
}
@media screen and (min-width: 1260px) and (max-width: 1366px) {
	@import "./fontmin.css";
    #main{
		padding: 0 8%;
	}
}
@media screen and (min-width: 1367px) and (max-width: 1600px) {
	@import "./font.css";
    #main{
		padding: 0 10%;
	}
}
@media screen and (min-width: 1601px) {
	@import "./font.css";
    #main{
		padding: 0 12%;
	}
}

@font-face {
	font-family: 'SourceHanSansCN-Regular';
	src: url('https://shopdata.kgu.cn/static/font/SourceHanSansCN-Regular.otf') format('opentype')
}

@font-face {
	font-family: 'SourceHanSansCN-Medium';
	src: url('https://shopdata.kgu.cn/static/font/SourceHanSansCN-Medium.otf') format('opentype')
}

.font-medium{
	font-family: 'SourceHanSansCN-Medium';
}
.fw600{
	font-weight: 600;
}

* {
  	box-sizing: border-box;
  	flex-shrink: 0;
	padding: 0;
	margin: 0;
}
img{
	vertical-align: middle;
}
ul,li{
  	list-style: none;
}
a{
  	text-decoration: none;
	color: #222;
}
.overflow{
	overflow: hidden;
}
.clear {
    clear: both;
}
.clearfix:after {
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    overflow: hidden;
    content: ".";
}
input{
    outline: none;
    border: none;
}

input::-webkit-input-placeholder{
	font-family: 'SourceHanSansCN-Regular';
	color: rgba(31, 31, 31, 0.3);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0;
}

.pointer{
	cursor: pointer;
}

/* 布局 */
.width-full{
	width: 100%;
}
.height{
	height: 100%;
}
.height100vh{
	height: 100vh;
}
.flex{
	display: flex;
}
.flex-1{
	flex: 1;
}
.flex-column{
	flex-flow: column;
}
.align-item-start{
	align-items: flex-start;
}
.align-item-end{
	align-items: flex-end;
}
.align-item-center{
	align-items: center;
}
.flex-around{
	justify-content: space-around;
}
.flex-between{
	justify-content: space-between;
}
.flex-center{
	justify-content: center;
}
.flex-right{
	justify-content: right;
}
.flex-wrap{
	flex-wrap: wrap;
}
.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}
.relative{
	position: relative;
}
.absolute{
	position: absolute;
}
.zindex{
	z-index: 1;
}
.fixed{
	position: fixed;
}
.inline-block{
	display: inline-block;
}
.hide{
	display: none;
}
.show{
	display: block;
}
.nowrap{
	white-space: nowrap;
}
.nowrap1 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}
.lh15{
	line-height: 1.5;
}
.float{
	float: left;
}

/* 颜色 */

.color-red{
	color: #DE0515;
}
.color-main{
	color: #1F1F1F;
}
.color-black{
	color: black;
}
.color-white{
	color: white;
}
.color-blue{
	color: #005AAC;
}
.bg-main{
	background-color: #F7F7F7;
}
.bg-red{
	background-color: #DE0515;
}
.bg-white{
	background-color: white !important;
}
.bg-black{
	background-color: black !important;
}
.bg-grey{
	background-color: #F5F5F7;
}
.b-red-1{
	border: 1px solid #DE0515;
}
.b-main-1{
	border: 1px solid #1F1F1F;
}
.b-grey-1{
	border: 1px solid rgba(31, 31, 31, 0.3);
}
.b-b-1{
	border-bottom: 1px solid rgba(31, 31, 31, 0.1);
}

/* 透明度 */
.opacity3{
	opacity: 0.3;
}
.opacity5{
	opacity: 0.5;
}
.opacity6{
	opacity: 0.6;
}
.opacity8{
	opacity: 0.8;
}
.opacity10{
	opacity: 1;
}

/* 阴影 */
.box-shadow{
	box-shadow: 4px 4px 8px rgba(203, 203, 203, 0.25);
}

/* 圆角 */
.br4{
	border-radius: 4px;
}
.br8{
	border-radius: 8px;
}
.br12{
	border-radius: 12px;
}
.br72{
	border-radius: 72px;
}

.hoverBtn{
	position: relative;
    background-color: #000000;
    transition: all 200ms ease-out;
    background-size: 200% 100%;
    background-position: right bottom;
    background-image: linear-gradient(to right, #DE0515 50%, #000000 50%);
	line-height: 1;
}
.hoverBtn:hover {
	background-position: left bottom;
}

table{
	text-align: left;
	border-spacing: 0;
	border-collapse: collapse;
}
table tr:first-child{
	background: #F1F1F1;
}
table th:last-child,table td:last-child{
	text-align: right;
}
table tr{
	border-bottom: 1px solid #F1F1F1;
}
table th,table td{
	padding: 20px 15px;
	font-size: 14px;
	opacity: 0.8;
}

.popStyle{
	position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 200px;
    z-index: 9999;
	display: none;
	min-width: 500px;
	border: none;
	border-radius: 8px;
}
.card{
	transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
    transform: translate3d(0, 0, 0);
	transition-delay: 0.2s;
}
.card img{
	transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.card:hover img{
	transform: scale(1.06);
}