/*  css reset */
* {
    box-sizing: border-box;
}

body {
    font-family: '微软雅黑', arial, helvetica, sans-serif;
    font-size: 13px;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1.4;
}

body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
fieldset,
legend,
input,
textarea,
select,
button,
th,
td {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

table {
    font-size: inherit;
}

input,
select {
    font-family: arial, helvetica, clean, sans-serif;
    font-size: 100%;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: normal;
}

button {
    overflow: visible;
}

th,
em,
strong,
b,
address,
cite {
    font-style: normal;
    font-weight: normal;
}

li {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
}

img,
fieldset {
    border: 0 none;
}

ins {
    text-decoration: none;
}

.bg-active {
    background: #305F4D;
}

.color-active {
    color: #305F4D;
}

a {
    text-decoration: none;
    color: #666666;
}

a:hover {
    /* color: #075bb3; */
}

img {
    width: 100%;
    height: 100%;
    display: block;
}

input {
    background: none;
    outline: none;
    border: none;
}


.content {
    height: 100%;
    /* min-width: 1312px; */
    margin: 0 auto;
    position: relative;
}

/* 单行 */
.single-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

/* 多行 */
.more-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.more-tow-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 箭头 */
.arrows {
    width: 30px;
}

/* 浮动 */
.left {
    float: left;
}

.right {
    float: right;
}

.clearfix:after {
    /*伪元素是行内元素 正常浏览器清除浮动方法*/
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
    /*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}