﻿@charset "UTF-8";
/*css 初始化 */
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form,img {
    margin: 0;
    padding: 0;
}
html{font-size:62.5%;} 
body{font-size:12px;font-size:1.2rem ;} 
 /*各浏览器显示不同，去掉蓝色边框*/
img, input, button {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}
 ul, ol {
    list-style: none;
}
 /*统一组合框的默认样式*/
input {
    padding-top: 0;
    padding-bottom: 0;
}
 select, input, button {
    vertical-align: middle;
}
 select, input, textarea {
    font-size: 12px;
    margin: 0;
}
 /*防止拖动 影响布局*/
textarea {
    resize: none;
}
 /*去掉行内替换元素空白缝隙*/
img {
    border: 0;
    vertical-align: middle;
}
 body {
    background: #fff;
}
 /*清除浮动*/
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}
 .clearfix:after {
    content: "";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
    overflow: hidden;
}
.clearfix{
    *zoom: 1; /*IE/7/6*/
}
 a {
    color: #666;
    text-decoration: none;
}

 h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}
 s, i, em {
    font-style: normal;
    text-decoration: none;
}
 /*新浪*/
.col-red {
    color: #ff8400 !important;
}
 /*公共类*/
.w {
    /*版心 提取 */
    width: 1200px;
    margin: 0 auto;
}

 .fl {
    float: left;
}
 .fr {
    float: right;
}
 .al {
    text-align: left;
}
 .ac {
    text-align: center;
}
 .ar {
    text-align: right;
}

 @keyframes scaleDraw {  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0%{
        transform: scale(1);  /*开始为原始大小*/
    }
    25%{
        transform: scale(1.5); /*放大1.1倍*/
    }
    50%{
        transform: scale(1);
    }
    75%{
        transform: scale(1.5);
    }
}

.showImg {
  width: 20px;
  height: 20px;
  animation: scaleDraw 5s ease-in-out infinite;
}
/*超过一行显示...*/
.textCss{
    white-space:nowrap;

overflow:hidden;

text-overflow:ellipsis;
}
/*超过多行显示...*/
.textCssMore{
    overflow:hidden;

text-overflow:ellipsis;

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:3;
}
body .layerdemo .layui-layer-title{
	color:red
}