@charset "utf-8";
*:before,
*:after,
*{
	margin: 0;
	padding: 0;
	list-style: none;
	transition-property: color, border-color,background-color;
    transition-duration:0.3s;
    transition-timing-function:linear;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
input[type="button"], 
input[type="submit"], 
input[type="reset"] {
    -webkit-appearance: none;
}
input[type="submit"],
input[type="button"]{
     box-sizing:content-box;
}
input[type="button"], 
input[type="text"], 
input[type="submit"], 
input[type="reset"],
textarea {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
}
p{
	line-height: inherit;
}
a {
	text-decoration: none;
	color: inherit;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th {
	font-weight: 400;
}
img {
	border: 0;
}
textarea,
select,
option,
input {
	outline: none;
}
textarea{
    resize:none;
}
.clearBoth,
.clearboth {
	clear: both;
}
.bordernone {
	border: none!important;
}

.centerBox{
	margin:0 auto;
	width:80%;
}
.centerBox:after{
	content:"";
	display:block;
	clear:both;
}
@font-face {
  font-family: 'AlibabaPHT';
  src: url('../fonts/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2'),
       url('../fonts/AlibabaPuHuiTi-3-55-Regular.woff') format('woff'),
	   url('../fonts/AlibabaPuHuiTi-3-55-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* 推荐设置，控制加载时的显示行为 */
}

body {
    /* -webkit-user-select: none;禁止选中文本 */
    -webkit-text-size-adjust: 100%;
    /* 设置webkit内核下文字大小不小于12px */
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    /* 设置点击链接时遮罩层为全透明 */
    -webkit-overflow-scrolling: touch;
    font-family: "AlibabaPHT", system-ui;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    /* letter-spacing: -.035em; */
	/* background: #F5F7F9; */
	color: #222222;
	line-height: 1.5;
}