/*公共样式*/

/*1.样式重置*/
html,body,ul,li,img,a,p,div,input,textarea,button,form,h1,h2,h3,h4,h5,h6,dl,dt,dd,br,hr{
    margin:0;
    padding:0;
    box-sizing: border-box;/*设置盒模型*/
    -webkit-tap-highlight-color: transparent;/*防止用户在点击的时候会有高亮效果*/
}
body{
    font-size:16px;
    font-family: 'PingFangSC-Regular','Microsoft YaHei','Arial';
    font-weight:400;
    color: #666;
    min-width:1200px;
    background-color: #fff;
}
.txt_content {
    font-size: 14px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2; 
}
/* --ie清除--*/

select::-ms-expand{ display: none; }

/* --火狐、谷歌清除--*/

select{
     appearance:none;  
    -moz-appearance:none;  
    -webkit-appearance:none;
}
em {
    font-style: normal;
}
h2{
    font-size: 36px;
    font-weight: 600;
    color: #444;
    line-height: 50px;
    text-align: center;
}
h3{
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;
    color: #444;
}
h4{
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #444;
}
p{
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    color: #444;
}
.w{
    width: 1250px;
    margin: 0 auto;
}
.index_w{
    max-width: 1440px;
    margin: 0 auto;
}
a,a:hover{
    color: #666;
    text-decoration: none;
    -webkit-transform: ease all 0.3s;
    -moz-transform: ease all 0.3s;
    -ms-transform: ease all 0.3s;
    -o-transform: ease all 0.3s;
    transition: ease all 0.3s;
}
ul{
    list-style: none;
}
input{
    /*1.清除文本框获取焦点时默认的边框阴影*/
    outline:none;
    /*2.去除边框*/
    border:none;
    /*3.添加边框*/
    border:1px solid #EAEAEA;
    font-size: 14px;
    color: #222;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
} 
textarea{
    resize:none;
    outline:none;
    font-size: 14px;
    color: #444;
    font-family: "PingFangSC-Regular";
    border:1px solid #EAEAEA;
    overflow: auto;
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder { /* WebKit browsers */ 
    color: #999;   
} 
input:-moz-placeholder,textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */   
    color: #999;   
} 
input::-moz-placeholder,textarea::-moz-placeholder { /* Mozilla Firefox 19+ */    
    color: #999;  
}    
input:-ms-input-placeholder,textarea:-ms-input-placeholder { /* Internet Explorer 10+ */ 
    color: #999 !important;
} 
/* 去掉默认的小× */
input::-webkit-search-cancel-button{
    display: none;
}
/* ie兼容到10 */
input::-ms-clear,input::-ms-reveal{
    display:none
}
:focus{
    /*1.清除文本框获取焦点时默认的边框阴影*/
    outline:none;
    /*2.去除边框*/
    border:none;
}
i{
    font-style: normal;
}
/*图片没有边框   去掉图片底侧的空白缝隙*/
img {
    border: 0;  /*ie6*/
    vertical-align: middle;
    -webkit-transform: ease all 0.5s;
    -moz-transform: ease all 0.5s;
    -ms-transform: ease all 0.5s;
    -o-transform: ease all 0.5s;
    transition: ease all 0.5s;
}
.pic_box{
    overflow: hidden;
}
.pic_box img{
    width: 100%;
    height: 100%;
}
.img_box{
    display: block;
    overflow: hidden;
}
.img_box img{
    width: 100%;
    height:auto;
}
.img_box img:hover{
    transform: scale(1.1);
    -webkit-transform: ease all 0.5s;
    -moz-transform: ease all 0.5s;
    -ms-transform: ease all 0.5s;
    -o-transform: ease all 0.5s;
    transition: ease all 0.5s;
}
/*2.添加新的样式*/
.f_left{
    float: left;
}
.f_right{
    float:right;
}
.clearfix::before,
.clearfix::after{
    content:"";
    display: block;
    height:0;
    line-height: 0px;
    clear:both;
    visibility: hidden;
}
@font-face {font-family: 'iconfont';
    src: url('../font/iconfont.eot');
    src: url('../font/iconfont.eot') format('embedded-opentype'),
    url('../font/iconfont.woff') format('woff'),
    url('../font/iconfont.ttf') format('truetype'),
    url('https://static.westarcloud.com/5ffe64706e74cd00a47f6b8c/file/iconfont.svg') format('svg');
}
.iconfont{
    font-family:"iconfont" !important;
    font-size:16px;font-style:normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}