/*@font-face {
	font-family:SY-B;
	src: url('../font/NotoSansHans-Bold.ttf'),
	     url('../font/NotoSansHansChinese-Bold.woff'),
	     url('../font/NotoSansHansChinese-Bold.eot');
	 font-style: normal;
	 font-weight: normal;
}

@font-face {
	font-family:SY-R;
	src: url('../font/NotoSansHansChinese-Regular.ttf'),
	     url('../font/NotoSansHansChinese-Regular.woff'),
	     url('../font/NotoSansHansChinese-Regular.eot');
	 font-style: normal;
	 font-weight: normal;
}*/



* {
    padding: 0;
    margin: 0;
}

* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition:  0.3s ease;
    -moz-transition:  0.3s ease;
    -ms-transition:  0.3s ease;
    -o-transition:  0.3s ease;
    transition:  0.3s ease;
}


*, *:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body,header{
	margin: 0 auto;
	padding: 0;
}

html,body{
	font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 1.2px;
	color: #3a3a3a;
	/* background-color: #f6f8f9; */
}

li{
	list-style-type:none;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}


a{
	text-decoration:none;
	color: inherit;
	cursor: pointer;
}

a,h1,p{
	letter-spacing: .12em;
}

p{
	font-weight: 500;
}


h1{
	font-size: 36px;
	font-weight: 500;
	line-height: 42px;
	color: #1d2129;
	padding-bottom: 18px;
}

h3{
	font-weight: 300;
	font-size: 14px;
}

/*快捷css*/
.L{
	float: left;
}

.R{
	float: right;
}

.text-R{
	text-align: right;
}

.text-L{
	text-align: left;
}

.text-C{
	text-align: center;
}

.hidden-yesNO{
	display: block;
}

@media (max-width: 720px)  {
	.hidden-yesNO{
		display: none;
	}
}



/* 自定义滑动条样式 */

/*定义滚动条高宽及背景
			 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	background-color: #252525;
}

/*定义滚动条轨道
			 内阴影+圆角*/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
	border-radius: 2px;
	background-color: #262626;
}

/*定义滑块
			 内阴影+圆角*/
::-webkit-scrollbar-thumb {
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #C6C8CA;
}
