@charset "utf-8";
/*公用类样式名字*/
body,html{
    width:100%;
    height:100%;
    min-width: 1280px;
    /* display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-around;*/
    font-family:"SF Pro SC","SF Pro Text","SF Pro Icons","PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
    margin: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-size: 14px;
    color: #333;
}
img{
    border:none;
}
ul,ol li{
    display: block;
    list-style: none;
    margin: 0;
}
.hideEle{
    display: none !important;
}
.showEle{
    display: block;
}
*{
    margin: 0;
    padding: 0;
}

p {
    display: block;
    margin: 0;
}
i{
	font-style:normal;
}
a {
    text-decoration: none;
    color: #333;
}
a:hover {
    text-decoration: none;
}
em {
    font-style: normal;
}
img{
    border:none;
    display: block;
}

button {
    font-family: "微软雅黑";
    font-weight: normal;
}
a, button, input, img {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
button{
    cursor: pointer;
}
:focus {
    outline: 0;
}
/* common */
.clearfix {  /* ！！  ----清除浮动----  ！！*/
    zoom: 1
}
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
input,button{
    outline: none;
    border: 0;
}
textarea{
    resize: none;
}
/* visibility:hidden;虽然不显示但仍占据位置，但是也不能响应事件   display:none;不占据位置 */
.hidden {
    visibility: hidden;
}
select{
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #ccc;
}
input:-moz-placeholder, textarea:-moz-placeholder {
    color: #ccc;
}
input::-moz-placeholder, textarea::-moz-placeholder {
    color: #ccc;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #ccc;
}
form{
	display: inline-block;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
/* -----------------  统一样式  ----------------- */
.noMarginRight{   /*无右边距*/
    margin-right: 0 !important;
}
.noMarginLeft{   /*无左边距*/
    margin-left: 0 !important;
}
.noBorderRight{
	border-right: 0 !important;
}
.font_red{   /*红色字体*/
    color: #df131d !important;
}
.font_red_24{   /*红色字体*/    
    display: inline-block;
    margin-left: 45px;
    font-size: 24px;
    color: #df131d !important;
}
/*   2行隐藏  */
.twoEllipsis{
    overflow : hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}
/*   3行隐藏  */
.threeEllipsis{
    overflow : hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}
/* input 聚焦边框变蓝 */
.inputFocuse{
    border-color: #DF131D !important;
}
.common{
	width: 1200px;
	margin: 0 auto;
}
#tcc{
	display:none;
	position:fixed;
	top:0%;
	left:0%;
	width:100%;
	height:100%;
	background-color:black;
	z-index:666;
	-moz-opacity:0.8;
	opacity:.5;
	filter:alpha(opacity=50);
}