@charset "UTF-8";

* {
    font-family: "Microsoft YaHei";
    padding: 0;
    margin: 0;
}

/* 禁用iPhone中Safari的字号自动调整 */
html {
    size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
}

/* 禁止缩放表单 */
input[type=submit],
input[type=reset],
input[type=button],
input {
    resize: none;
    border: none;
}

/* 取消链接高亮 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 设置HTML5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei", "宋体", Tahoma, Arial, sans-serif;
    color: #000;
    background-color: #fff;
}

em,
i {
    font-style: normal;
}

ul,
li {
    list-style-type: none;
}

strong {
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

textarea {
    resize: none;
    /*禁用了文本的拖拉，尤其在谷歌下*/
}

p {
    word-wrap: break-word;
    /* 不够的单词自动换行 而不会被截掉 */
}

.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}

a {
    text-decoration: none;
    color: #000;
    font-family: "Microsoft YaHei", Tahoma, Arial, sans-serif;
}

    a:hover {
        text-decoration: none;
    }

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-family: "Microsoft YaHei";
}

img {
    border: none;
}

input {
    font-family: "Microsoft YaHei";
}

/*单行溢出*/
.one-txt-cut {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

/*多行溢出 手机端使用*/
.txt-cut {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
}

/* 移动端点击a链接出现蓝色背景问题解决 */
a:link,
a:active,
a:visited,
a:hover {
    background: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

.overflow {
    overflow: hidden;
}

.w50 {
    width: 50%;
}

.w25 {
    width: 25%;
}

.w20 {
    width: 20%;
}

.w33 {
    width: 33.333333%;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.db {
    display: block !important;
}

.dn {
    display: none;
}

.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
}

    .header-container .header-container--logo-container {
        /*width: 100%;*/
    /*    margin-right: 0.8rem;*/
    }

        .header-container .header-container--logo-container h1 {
            float: left;
            background: url(/static/imgs/logo.png) no-repeat;
            height: 35px;
            width: 145px;
            text-indent: -9999em;
            cursor: pointer;
            background-size: 84% 64%;
            margin-top: 12px;
        }
        .header-container .header-container--logo-container .logo-w {
            width: 100%;
        }

        .header-container .header-container--logo-container .logo {
            width: 70%;
            height: auto;
            padding-top: 2px;
        }

    .header-container .header-container--search-container {
        width: 35rem;
        height: 1.6rem;
        display: flex;
        align-items: center;
    }

        .header-container .header-container--search-container .search-container {
            border-radius: 5px;
            overflow: hidden;
            display: inline-block;
            outline: 1px solid #c4c4c4;
        }

            .header-container .header-container--search-container .search-container .search-container--input {
                display: inline-block;
                vertical-align: middle;
                height: 1.8rem;
                font-size: 12px;
                padding: 0 0.3rem;
                /*width: 10rem;*/
            }

            .header-container .header-container--search-container .search-container .search-container--button {
                display: inline-block;
                vertical-align: middle;
                height: 1.333rem;
                line-height: 1.333rem;
                color: #ff4757;
              /*  padding: 0 0.6rem;
                margin-left: 0.05rem;*/
                font-size: 12px;
                letter-spacing: 0.1rem;
                background-color: #fff;
            }

        .header-container .header-container--search-container .search-list {
            font-size: 0.5rem;
            margin-top: 0.5rem;
            width: 11rem;
            white-space: nowrap;
            overflow: hidden;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
        }

            .header-container .header-container--search-container .search-list .search-item {
                color: #fff;
            }

                .header-container .header-container--search-container .search-list .search-item.is-active {
                    color: #ffa502;
                }

.header-container__nav-list {
    width: 100%;
    background-color: #fff;
    white-space: nowrap;
    font-size: 16px;
    overflow-x: auto;
    padding: 10px;
    -webkit-box-shadow: 1px 3px 10px #e0e0e0;
    box-shadow: 1px 3px 10px #e0e0e0;
}

    .header-container__nav-list .header-container--nav-item {
        display: inline-block;
        text-align: center;
        padding: 0 0.2rem;
    }

        .header-container__nav-list .header-container--nav-item.is-active {
            color: #ff4757;
        }

.crumbs {
    padding: 0.6rem;
}

    .crumbs .crumbs--item {
        display: inline-block;
        font-size: 14px;
        padding: 0 0.4rem;
        position: relative;
        color: #000;
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
    }

        .crumbs .crumbs--item::after {
            content: "＞";
            position: absolute;
            top: 50%;
            right: -0.4rem;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .crumbs .crumbs--item:last-of-type {
            color: #ff4757;
        }

            .crumbs .crumbs--item:last-of-type::after {
                content: "";
            }

.ui-tag {
    font-size: 0.4rem;
    border-width: 0.02rem;
    border-style: solid;
    border-color: #1e90ff;
    color: #1e90ff;
    display: inline-block;
    padding: 0 0.2rem;
    border-radius: 0.1rem;
}

    .ui-tag.success {
        border-color: #2ed573;
        color: #2ed573;
    }

    .ui-tag.primary {
        border-color: #1e90ff;
        color: #1e90ff;
    }

    .ui-tag.danger {
        border-color: #ff4757;
        color: #ff4757;
    }

    .ui-tag.warning {
        border-color: #ffa502;
        color: #ffa502;
    }

hr {
    margin-top: 1rem;
}

.copyright-container {
    padding: 0.2rem 0.2rem 0.5rem;
    font-size: 12px;
    line-height:22px;
    text-align: center;
}
.newsite {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}