*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    /* min-width: 1200px; */
    height: 100%;
}

body{
    width: 100%;
    height: 100%;
}

li{
    list-style: none;
}
p,li,ul,div,img,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
.chosen-single span{
    line-height: 32px !important;
}
/*按钮默认样式*/
button{
    border-radius: 5px;
    border:1px solid #eee;
    background: none;
    color:#232323;
    text-align: center;
    padding: 10px 20px;
}
button:active{
    background: #d4d4d4;
}
a,a:active,a:hover{
    color:#232323;
    text-decoration: none;
}
.wh_cls_100{
    width: 100%;
}
.wh_cls_90{
    width: 90%;
}
.wh_cls_80{
    width: 80%;
}
.wh_cls_70{
    width: 70%;
}
.wh_cls_75{
    width: 75%;
}
.wh_cls_50{
    width: 50%;
}
.wh_cls_60{
    width: 60%;
}
.wh_cls_55{
    width: 55%;
}
.wh_cls_40{
    width: 40%;
}
.wh_cls_33{
    width: 33.3333%;
}
.wh_cls_30{
    width: 30%;
}
.wh_cls_25{
    width: 25%;
}
.wh_cls_20{
    width: 20%;
}
.wh_cls_15{
    width: 15%;
}
.wh_cls_10{
    width: 10%;
}
.wh_padding{
    padding: 10px 15px !important;
}
.wh_margin{
    margin: 10px 15px !important;
}
.wh_cls_1200{
    width: 1200px;
    margin: 0 auto;
}
/*清除浮动*/
.overflow:after{
    display:block;
    clear:both;
    content:"";
    visibility:hidden;
    height:0;
}
.overflow{
    zoom:1;
}
.txt_none,.wh_text_none{
    display: none;
}
/*右浮动*/
.wh_left,.fl{
    float: left;
}
/*左浮动*/
.wh_right,.fr{
    float: right;
}
/*单行溢出显示省略号*/
.txt_overflow{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*多行移出移出*/
.wh_txt_none3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.wh_txt_none2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.wh_txt_none4{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
/*多行移出移出*/
/*引文*/
.wh_text_txt{
    padding: 10px 0;
    line-height: 26px;
    color:#666;
    font-size: 14px;
    text-indent: 2em;
}
/*放大效果*/
.wh_enlarge{
    transition:all 0.2s ease-in-out;
}
.wh_enlarge:hover{
    transform: scale(1.2,1.2);
}
/*放大效果end*/
/*旋转效果*/
.wh_whirl{
    transition: all 0.5s ease-in-out;
}
.wh_whirl:hover{
    transform: rotate(360deg);
}
/*旋转效果end*/
/*模糊边框*/
.wh_shadow{
    box-shadow:0 0 10px 5px #ddd;
}
.wh_shadowhover:hover{
    box-shadow:0 0 10px 5px #ddd;
}
/*模糊边框end*/

/* flex布局 */
.w_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.w_flex_1{
    flex: 1;
}