﻿/* 些文件约定一些标签的默认样式 */

@import url(anim.css);
* {
	margin: 0;
	padding: 0;
	border: 0;
}

/* rem全局设置，100vw / 设计稿宽度 * 基准值设为10，便于计算 */
html {
  font-size: calc(100vw / 1920 * 10);
}
@media (min-width: 768px) and (max-width: 1280px) {
  html {
    font-size: calc(100vw / 1280 * 10);
  }
}

 /* 750px - 10 375 - 20 */
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 375 * 20);
  }
}

@font-face {
	font-family: "SourceHanSansCN-Normal";
	src: url("font/SourceHanSansCN-Normal.woff2");
}

@font-face {
	font-family: "SourceHanSansCN-Bold";
	src: url("font/SourceHanSansCN-Bold.woff2");
}

@font-face {
	font-family: "SourceHanSansCN-Medium";
	src: url("font/SourceHanSansCN-Medium.woff2");
}

@font-face {
	font-family: "SourceHanSansCN-Regular";
	src: url("font/SourceHanSansCN-Regular.woff2");
}

@font-face {
	font-family: "Alibaba-PuHuiTi-Regular";
	src: url("font/Alibaba-PuHuiTi-Regular.woff2");
}

@font-face {
	font-family: "AlimamaShuHeiTi-Bold";
	src: url("font/AlimamaShuHeiTi-Bold.woff2");
}

@font-face {
  font-family: "AlibabaPuHuiTi-Medium";
	src: url("font/AlibabaPuHuiTi-Medium.woff2");
}

@font-face {
	font-family: "FZLanTingHeiS-R-GB";
	src: url("font/FZLTHJW.woff2");
}

@font-face {
	font-family: "FZLanTingHeiS-B-GB";
	src: url("font/FZLTCHJW.woff2");
}

@font-face {
	font-family: "FZLanTingHeiS-DB-GB";
	src: url("font/FZLTZHJW (1).woff2")
}

* {
	box-sizing: border-box;
}

body {
	background-color: #fff;
	overflow-x: hidden;
	color: #333;
	font-size: 12px;
	font-family: "微软雅黑", "Microsoft YaHei","Arial", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
}
a {
	color: #333;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;/*-webkit-transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s, background 0.3s ease, text-indent 0.3s ease;
  -moz-transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s, background 0.3s ease, text-indent 0.3s ease;
  transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s, background 0.3s ease, text-indent 0.3s ease;*/
}
a:hover {
	/* color: #00a1e9; */
}
input, select, img {
	vertical-align: middle;
}
ul, li {
	list-style: none;
}
em, cite, th {
	font-style: normal;
	font-weight: normal;
	font-style: normal;
}

svg image {
	width: 100%;
	height: 100%;
}