@charset "utf-8";
/*reset css  重置默认的一些样式  浏览器子自带的  目的是保持各种终端显示一致*/
/*所有的标签和伪类  before after*/
*,
::before,
::after{
    padding: 0;
    margin: 0;
 	-webkit-touch-callout: none;
    /*在移动端特殊的设置*/
    /*清除点击高亮效果*/
    -webkit-tap-highlight-color: transparent;
    /*设置所有的盒子的宽度以边框开始计算*/
    -webkit-box-sizing: border-box;
    /*要兼容 webkit 浏览器内核厂商 这种情况一般是老的移动端浏览器*/
    box-sizing: border-box;
/*     设置内嵌的元素在 3D 空间如何呈现：保留3D
 	-webkit-transform-style: preserve-3d;
	设置进行转换的元素的背面在面对用户时是否可见：隐藏 */
	 
	-webkit-backface-visibility:hidden;
}
html,body{
    font-size: 14px;
    color: #333;
    font-family: "PingFangSC-Medium","MicroSoft YaHei","sans-serif";/*是设备默认的字体*/
    height:100%;
}
.zb_body{overflow-y:scroll!important}
/*上下拉动滚动条时卡顿、慢*/
body {
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

ul,ol{
    list-style: none;
}
a{
    text-decoration: none;
    color: #333;
}
a:hover{
    color: #19bcf9;
}
input,textarea{
    border: none;
    outline: none;
    resize: none;
    /*特殊的属性定义  清除浏览器给input自带的样式*/
    -webkit-appearance: none;/*组件默认的样式空*/
}
/*common css  也就是我们公用的css*/
.f_left{
    float: left;
}
.f_right{
    float: right;
}
.clearfix::after,
.clearfix::before{
    content: ".";
    line-height: 0;
    height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}
.p10{padding:10px;}
.m_r10{
    margin-right: 10px;
}
.m_l10{
    margin-left: 10px;
}
.m_t10{
    margin-top: 10px;
}
.m_b10{
    margin-bottom: 10px;
}

.m_b20{
    margin-bottom: 20px;
}
.mianColor{
    color: #d8505c;
}
.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}
.ellipsis3{
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;  
    display: -webkit-box;
   -webkit-box-orient: vertical;
   color:#666;
   vertical-align: middle;
}
.main{
    min-width: 300px;
    padding-bottom:80px;
  /*   padding-top:90px; */
}
/*所有使用精灵图的 class  以icon_开始的所有class都有这些属性*/
[class^="icon_"]{
    display: block;
    background: url("../images/sprites.png") no-repeat;
    /*压缩背景图*/
    background-size: 160px 288px;
}

/*全局颜色*/
.color{color:#19bcf9!important;}
/*版心样式*/
body{
    
}



