﻿/* 清除默认样式 */
html,body{
    margin:0;
    padding:0;
    font-size:16px;
    min-width: 360px;
    font-family: "Microsoft YaHei","宋体";
}

body,div,ul,li,h1,h2,h3,h4,h5,h6,input,i,a,img,p,button{
    font-size: 16px;!important;
    font-weight: normal;
	line-height:1.8em;
    margin:0;
    padding:0;
    font-style:normal;
    word-break: break-all;
    vertical-align: top;
    border:none;
    outline: none;
}

img{
    border:none;
}

li{
    list-style-type: none;
}

a{
    font-size:18px;
    text-decoration: none;
    color: #333;
}

.space{
    padding:0 10px;
}

/* 浮动 */
.left{
    float:left;
}

.right{
    float:right;
}

/* 清除浮动 */
.clear:after{
    content: ' ';
    display:block;
    height:0;
    line-height:0;
    visibility: hidden;
    clear: both;
}
.clear{
    zoom: 1;
}

/* 省略号 */
.el{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.el2{
	 overflow: hidden; 
	 text-overflow: ellipsis;
	 -webkit-text-overflow: ellipsis;
	 -moz-text-overflow: ellipsis;
	 -o-text-overflow: ellipsis; 
	 display: -webkit-box; 
	 -webkit-line-clamp: 2; 
	 -webkit-box-orient: vertical;
}
/* 图片放大效果 */
.scale{
    overflow: hidden;
}
.scale img{
    transform-origin: center center;
    -webkit-transform-origin: center center;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.scale img:hover{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
}