/*base.css start*/
body{
	-webkit-touch-callout: none;  /*禁止用户长按出现系统菜单栏*/
	-webkit-user-select:none      /*禁止用户选择粘贴*/
}
@font-face {
	font-family: 'kyFont';
	src: url("ardinsansdb.ttf");
	unicode-range: U+30-39;
}
html,body{ font-weight: normal; font-family: PingFang SC,Helvetica,Arial,sans-serif;}
html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,p,input,article{
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4{
	font-weight: normal;
	font-style: normal;
}
ul,li,dl,dt,dd{
	list-style: none;
}
aside,footer,header,nav,section{
	display: block;
}
a{
	text-decoration: none;
	outline: none;
}
a:active{
	outline: none;
}
*{
	-webkit-tap-highlight-color: rgba(255,0,0,0);
}
img{
	vertical-align: middle;  /*移动端样式*/
}
i,em{
	font-style: normal;
}
/*文字不模糊*/
@media screen and (max-device-width:320px) {
	body{
		-webkit-text-size-adjust: none;
	}
}
@media screen and (max-device-width:480px) {
	body{
		-webkit-text-size-adjust: none;
	}
}
@media only screen and (-webkit-min-device-pixel-ratio:2) {
	body{
		-webkit-text-size-adjust: none;
	}
}
@media only screen and (min-device-width:768px) and (max-device-width:1024px)  {
	body{
		-webkit-text-size-adjust: none;
	}
}
/*公用类名*/
/*文字处理样式   当文字需要隐藏时调用此类名*/
.text-nowrap{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #666666;
}
/*清除浮动*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.ovH{
	overflow: hidden;
}
.floL{
	float: left;
}
.floR{
	float: right;
}
.texal-L{
	text-align: left;
}
.texal-R{
	text-align: right;
}
.marR{
	margin-right: 0.6rem;
}
.marL{
	margin-left: 0.6rem;
}
.marT{
	margin-top: .5rem;
}
/*颜色公用————字体*/
.f-color-t{
	color: #999999 !important;
}
.f-color-f{
	color: #FFB20B;
}
.f-color-ei{
	color: #6CC253;
}
.f-color-ni{
	color: #E32E2D;
}
.f-color-ten{
	color: #4BB942 !important;
}
/*涨-颜色*/
.f-color-fiv{
	color: #E22C2B;
}
/*增持*/
.f-color-seve{
	color: #ffb20b;
}
/*跌-颜色*/
.f-color-six{
	color: #1DA712;
}
/*股东变动 增 减 边框颜色*/
.f-border-m{
	border: 1px solid #4BB942;
}
.f-border-a{
	border: 1px solid #E32E2D;
}
/*清楚伪类*/
.clear-before:before{
	border: none !important;
}
.clear-before-bottm:before{
	border-bottom: none !important;
}
.clear-before-right:before{
	 border-right: none !important;
 }
.clear-before-left:before{
	border-left: none !important;
}
.clear-before-top:before{
	 border-top: none !important;
 }
/*tap切换*/
.f-water-bg{
	color: #FFFFFF;
	background-color: #FFB20B;
}
/*tap切换动画*/
@keyframes myfirst
{
	0% {opacity: 0;}
	25% {opacity: .25;}
	50% {opacity: .5;}
	75% {opacity: .75;}
	100% {opacity: 1;}
}

@-moz-keyframes myfirst /* Firefox */
{
	0% {opacity: 0;}
	25% {opacity: .25;}
	50% {opacity: .5;}
	75% {opacity: .75;}
	100% {opacity: 1;}
}

@-webkit-keyframes myfirst /* Safari 和 Chrome */
{
	0% {opacity: 0;}
	25% {opacity: .25;}
	50% {opacity: .5;}
	75% {opacity: .75;}
	100% {opacity: 1;}
}

@-o-keyframes myfirst /* Opera */
{
	0% {opacity: 0;}
	25% {opacity: .25;}
	50% {opacity: .5;}
	75% {opacity: .75;}
	100% {opacity: 1;}
}

.f-animate {
	animation: myfirst 0.5s;
	-moz-animation: myfirst 0.5s;	/* Firefox */
	-webkit-animation: myfirst 0.5s;	/* Safari 和 Chrome */
	-o-animation: myfirst 0.5s;	/* Opera */
	animation-timing-function: linear;
	/*开启硬件加速*/
	webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);  /* 此属性会影响fixed定位 */
}
.f-animatee {
	animation: myfirst 0.2s;
	-moz-animation: myfirst 0.2s;	/* Firefox */
	-webkit-animation: myfirst 0.2s;	/* Safari 和 Chrome */
	-o-animation: myfirst 0.2s;	/* Opera */
	animation-timing-function: linear;
	/*开启硬件加速*/
	webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}