﻿/* 初始化样式 */

* {
    margin: 0;
    padding: 0
}

/* button黑色边框清除 */

* button {
    outline: none !important;
}

input:focus {
    outline: none;
}

:focus {
    outline: 0;
}

form .radio input:focus {
    outline: none;
}

.container {
    margin: 0;
    padding: 0
}


/*让所有斜体 不倾斜*/

em,
i {
    font-style: normal;
}


/*去掉列表前面的小点*/

li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}


/*图片没有边框   去掉图片底侧的空白缝隙*/

img {
    border: 0;
    /*ie6*/
    vertical-align: middle;
}


/*让button 按钮 变成小手*/

button {
    cursor: pointer;
}


/*取消链接的下划线*/

a {
    text-decoration: none !important;
    outline: none;
    color: #333;
}

button,
input {
    font-family: 'Microsoft YaHei';
    /*取消轮廓线 蓝色的*/
    outline: none;
    border: 0;
}

body {
    background-color: #fff;
    font-family: 'Microsoft YaHei';
    font-size: 14px;
    font-weight: 400;
    color: #666
}

.hide,
.none {
    display: none;
}

.block {
    display: block;
}


/*清除浮动*/

.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0
}


.clearfix{
    clear: both;
  }

  .w1200,.w {
    width: 1200px;
    margin: 0 auto;
  }

  .w980{
    width: 980px;
    margin: 0 auto;
  }

  .none{
    display: none;
  }


/* 去除bootstrap input组件高亮 */

.form-control:focus {
    border-color: #004099;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)'

}


/* 省略号 */

.overfow-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.overfow-text3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}
.overfow-text1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
}
input {
    color: #333 !important;
}