@charset "UTF-8";
/* 全局初始化样式START */

a,
blockquote,
body,
button,
code,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
li,
ol,
p,
pre,
select,
table,
td,
textarea,
th,
tr,
ul {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-size: 16px;
    font-style: normal;
    font-family: "Microsoft Yahei", Arial;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

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

table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

li {
    list-style: none;
}

fieldset,
img {
    border: 0;
}

img {
    max-width: 100%;
    display: inline-block;
}

a {
    text-decoration: none;
}

a,
button,
input[type="submit"],
input[type="button"] {
    cursor: pointer;
}

.tr_hov:hover {
    background: rgb(245, 245, 245);
}

/* 清除浮动START*/

.clearf {
    zoom: 1;
}

.clearf:after {
    clear: both;
    content: "";
    height: 0;
    font-size: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
}

/* 清除浮动END*/

/* 清除外边距START*/

.clearmt {
    margin-top: 0 !important;
}

.clearmb {
    margin-bottom: 0 !important;
}

.clearml {
    margin-left: 0 !important;
}

.clearmr {
    margin-right: 0 !important;
}

/* 清除外边距END*/

/* 背景颜色START */

.bg_dark {
    background-color: #000;
}

.bg_white {
    background-color: #fff;
}

/* 背景颜色END */

/* 定位START */

.ps_rel {
    position: relative;
}

.ps_abs {
    position: absolute;
}

.ps_fix {
    position: fixed;
}

.fl_left {
    float: left;
}

.fl_right {
    float: right;
}

.text_left {
    text-align: left;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

/* 定位END */

/* 宽度、高度START */

.mx_wh {
    width: 100%;
    height: 100%;
}

.mx_w {
    width: 100%;
}

.mx_h {
    height: 100%;
}

/* 宽度、高度END */

/* 全局初始化样式END */

/* ~~~~~~~~~~~~~~~~~~轮播START~~~~~~~~~~~~~~~~~~ */

.slide_box {
    position: relative;
    overflow: hidden;
}

.slide_arrow,
.slide_box {
    width: 100%;
}

.slide_box,
.slide_imgbox,
.slide_imgbox>img {
    height: 100%;
}

.arrow_next:hover,
.arrow_prev:hover {
    opacity: 0.9;
}

.arrow_prev {
    display: none;
}

.slide_imgbox {
    width: 1000%;
}

.slide_imgbox>img {
    width: 10%;
}

.slide_arrow {
    position: absolute;
    top: 45%;
}

.arrow_next,
.arrow_prev {
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.6s;
    width: 3%;
}

.arrow_prev,
.slide_imgbox>img {
    float: left;
}

.arrow_next {
    float: right;
}

/* ~~~~~~~~~~~~~~~~~~轮播END~~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~~~~~导航栏动画START~~~~~~~~~~~~~~~~~~ */

.header_on {
    position: fixed;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    animation: headerShow .5s;
}

@keyframes headerShow {
    0% {
        top: -100%;
    }
    100% {
        top: 0%;
    }
}

/* ~~~~~~~~~~~~~~~~~~导航栏动画END~~~~~~~~~~~~~~~~~~ */