﻿@charset "UTF-8";

/*css 初始化 */
html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img {
    margin: 0;
    padding: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
main,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
hgroup {
    display: block;
}

ol,
ul {
    list-style: none
}

textarea {
    resize: none
}

/*防止拖动*/

table {
    border-collapse: collapse;
    border-spacing: 0
}

img {
    border: 0;
    vertical-align: middle
}

/*  去掉图片低测默认的3像素空白缝隙*/

p {
    word-break: keep-all;
}

/*去掉表单背景色*/

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

i {
    font-style: normal;
}

/*滚动条*/
::-webkit-scrollbar {
    /*血槽宽度*/
    width: 10px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    /*拖动条*/
    background-color: rgba(36, 81, 138, 1);
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    /*背景槽*/
    background-color: #ddd;
    border-radius: 6px;
}

/*公共类*/
.fl {
    float: left
}

.fr {
    float: right
}

.al {
    text-align: left
}

.ac {
    text-align: center
}

.ar {
    text-align: right
}

.hide {
    display: none
}

.clearfix:after,
.clearfix:before {
    content: "";
    display: table;
    clear: both;
}

.clearfix {
    zoom: 1;
}

* {
    box-sizing: border-box;
}

b{
    font-weight: normal!important;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

a.ie6:hover {
    zoom: 1
}

a,
a:focus,
a:hover,
a:active {
    outline: none;
    text-decoration: none;
}

a:hover {
    color: #49AEEA;
}

/* 文字溢出隐藏 */
.clip {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/*.article-content img{width: 100%;}*/
