/*=========
    通用样式
  ==========*/

@charset "utf-8";
@media only screen and (min-width: 800px) {
     ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        background-color: #b79a7c;
    }
    /*定义滚动条轨道 内阴影+圆角*/
     ::-webkit-scrollbar-track {
        border-radius: 0px;
        background: #222222;
    }
    /*定义滑块 内阴影+圆角*/
     ::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background-color: #d80d00;
    }
}


/*=========
  基本默认值
  ==========*/

* {
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    color: #000000;
    background: #ffffff;
    font-family: "Arial", "Microsoft Yahei";
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    min-width: 320px;
    overflow-x: auto;
}

img {
    border: none;
    max-width: 100%;
    vertical-align: middle;
}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 取消链接高亮 */
    text-decoration: none;
    color: #000000;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}

li {
    list-style: none;
}

table {
    border-collapse: collapse;
}

input,
textarea,
select,
button {
    font-family: Arial, "Microsoft YaHei";
    font-size: 12px;
    outline: none;
    margin: 0;
    padding: 0;
    resize: none;
    border: none;
    transition: color .5s, background .5s, opacity .5s, border .5s;
    -moz-transition: color .5s, background .5s, opacity .5s, border .5s;
    /* Firefox 4 */
    -webkit-transition: color .5s, background .5s, opacity .5s, border .5s;
    /* Safari and Chrome */
    -o-transition: color .5s, background .5s, opacity .5s, border .5s;
    /* Opera */
}

input:disabled,
input[disabled],
textarea:disabled,
textarea[disabled] {
    color: #404141;
    -webkit-text-fill-color: #404141;
    -webkit-opacity: 1;
    opacity: 1;
    background-color: #fafafa;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-size: 14px;
    color: #919d9d;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    font-size: 14px;
    color: #919d9d;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    font-size: 14px;
    color: #919d9d;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
}

.clearfix:after {
    clear: both;
}


/*94%的内容*/

.container {
    margin-left: auto;
    margin-right: auto;
    width: 94%;
    max-width: 1400px;
    position: relative;
}

.wrap {
    margin-left: auto;
    margin-right: auto;
    width: 94%;
    max-width: 1200px;
    position: relative;
}


/*Flex居中样式*/

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


/*图片通用样式*/

.img-common {
    background-repeat: no-repeat;
    background-position: center;
    -moz-background-size: cover;
    background-size: cover;
    -webkit-background-size: cover;
}