* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    /* -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; */
}
input, textarea {
    -webkit-user-select: auto; /*webkit浏览器*/
    user-select: auto;
    -o-user-select: auto;
    -ms-user-select: auto;
}
ol, ul, li {
    list-style: none;
}
body {
    width: 100%;
    min-width: 1200px;
    font-size: 16px;
    min-height: 100vh;
}
.auto-size {
    width: 100%;
    height: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: #000;
}
#header,
#footer {
    width: 100%;
    min-width: 1200px;
    height: auto;
}
/* 字体图标引入 */
@font-face {
    font-family: 'iconfont';
    src: url('../fonts/iconfont.eot');
    src: url('../fonts/iconfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/iconfont.woff2') format('woff2'),
    url('../fonts/iconfont.woff') format('woff'),
    url('../fonts/iconfont.ttf') format('truetype'),
    url('../fonts/iconfont.svg#iconfont') format('svg');
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* 常用样式 */
.flex-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
}
.flex-wrap-center {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.flex-middle {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.flex-jus {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex-center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
.flex-top {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.flex-bottom {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.flex-top-middle {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.one-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.more-text {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* end */
/* 分页 */
.pagination {
    width: auto;
    height: auto;
    margin-top: 30px;
    margin-left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    overflow: hidden;
}
.pagination > div {
    float: left;
}
.pagination-first,
.pagination-last,
.pagination-prev,
.pagination-next,
.pagination-li {
    width: auto;
    min-width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
}
.pagination-first,
.pagination-last {
    width: 48px;
}
.pagination > div > a {
    font-size: 16px;
    color: #9B9B9B;
    display: block;
    width: 100%;
    height: 100%;
}
.pagination > div > a > i {
    font-weight: 600;
    font-size: 18px;
}
.pagination > div:last-child {
    margin-right: 0;
}
.pagination > div:hover {
    background-color: #FF7C06;
    /*  border: 0; */
}
.pagination > div:hover a {
    color: #fff;
}
.pagination-li.active {
    border: 0;
    background-color: #FF7C06;
}
.pagination-li.active a {
    color: #fff;
}
/* end */
/* 面包屑 */
.base-crumbs {
    margin-bottom: 20px;
}
.base-crumbs-item > a,
.base-crumbs-item > i {
    color: #999;
    font-size: 14px;
}
.base-crumbs > div:nth-child(2n) {
    margin: 0 10px;
}
/* end */
/* 播放中动画效果 */
@-webkit-keyframes stars {
    0%, 100% {
        transform:scaleY(0.6);
        transform-origin:bottom left;
        -ms-transform:scaleY(0.6);
        -ms-transform-origin:20% 40%;
        -webkit-transform:scaleY(0.6);
        -webkit-transform-origin:bottom left;
        -moz-transform:scaleY(0.6);
        -moz-transform-origin:bottom left;
        -o-transform:scaleY(0.6);
        -o-transform-origin:bottom left
    }
    80% {
        transform:scaleY(1.1);
        transform-origin:bottom left;
        -ms-transform:scaleY(1.1);
        -ms-transform-origin:20% 40%;
        -webkit-transform:scaleY(1.1);
        -webkit-transform-origin:bottom left;
        -moz-transform:scaleY(1.1);
        -moz-transform-origin:bottom left;
        -o-transform:scaleY(1.1);
        -o-transform-origin:bottom left
    }
}
@keyframes stars {
    0%, 100% {
        transform:scaleY(0.6);
        transform-origin:bottom left;
        -ms-transform:scaleY(0.6);
        -ms-transform-origin:20% 40%;
        -webkit-transform:scaleY(0.6);
        -webkit-transform-origin:bottom left;
        -moz-transform:scaleY(0.6);
        -moz-transform-origin:bottom left;
        -o-transform:scaleY(0.6);
        -o-transform-origin:bottom left
    }
    80% {
        transform:scaleY(1.1);
        transform-origin:bottom left;
        -ms-transform:scaleY(1.1);
        -ms-transform-origin:20% 40%;
        -webkit-transform:scaleY(1.1);
        -webkit-transform-origin:bottom left;
        -moz-transform:scaleY(1.1);
        -moz-transform-origin:bottom left;
        -o-transform:scaleY(1.1);
        -o-transform-origin:bottom left
    }
}
.zb-player {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
}
.zb-player .zb-play-icon svg {
    width: 14px;
    height: 14px;
    fill: #FF6600;
    animation: stars .4s .2s ease-in-out infinite;
}
.zb-player.down .zb-play-icon svg {
    fill: #fff;
    animation: none;
}
.zb-player.play .zb-play-icon svg {
    fill: #fff;
}
/*滑动验证*/
#slide_box {
    width: 248px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-size: 12px;
    color: #333;
    background-color: #E8E8E8;
    border: none;
    margin: 0 auto 40px;
}
#slide_xbox {
    width: 40px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    color: #fff;
    position: absolute;
    background: #ff7c06;
}
#btn {
    cursor: pointer;
    width: 40px;
    height: 32px;
    background-color: #fff;
    float: right;
    -webkit-box-shadow: 0 0 15px 0 #ddd;
    box-shadow: 0 0 15px 0 #ddd;
    color: #8a8c97;

}
#btn > .iconfont {
    font-size: 20px;
}
