@import "normalize.css";
/*前缀兼容样式 start*/
/*单行省略*/
/*多行省略*/
/*背景线性渐变*/
/*opacity*/
/*gray*/
.gray {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
/*前缀兼容样式 end*/
* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    height: 100%;
}
html,
body {
    width: 100%;
    min-width: 1300px;
    min-height: 100%;
    font-family: SourceHanSansCN-Medium, "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    color: #333333;
    margin: 0;
    background-color: #fff;
}
body {
    position: relative;
}
.container-wrap {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.inner-container {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}
.clearfix {
    *zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    clear: both;
    position: relative;
}
ol,
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 1;
    filter: alpha(opacity=100);
}
a:hover {
    color: inherit;
    opacity: 0.9;
    filter: alpha(opacity=90);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}
input,
select,
textarea,
button {
    outline: none;
}
input[type="checkbox"]:disabled {
    cursor: not-allowed;
}
input::-ms-clear,
input::-ms-reveal,
::-ms-clear,
::-ms-reveal {
    display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"] {
    width: 120px;
    -moz-appearance: textfield;
}
button {
    border: none;
    background: none;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
button:disabled,
a:disabled {
    cursor: not-allowed;
    color: #666 !important;
    background-color: #eee !important;
}
a,
img {
    display: inline-block;
    border: none;
}
::-webkit-input-placeholder {
    font-size: 14px;
    color: #888888;
}
:-moz-placeholder {
    font-size: 14px;
    color: #888888;
}
::-moz-placeholder {
    font-size: 14px;
    color: #888888;
}
:-ms-input-placeholder {
    font-size: 14px;
    color: #888888;
}
/*
 * placeholder自定义
*/
.placeholder {
    position: relative;
}
.placeholder .placeholder-word {
    height: 1em;
    font-size: 14px;
    line-height: 1em;
    color: #888888 !important;
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
}
.float-left,
.child-float-left > * {
    float: left;
}
.float-right,
.child-float-right > * {
    float: right;
}
.o-f {
    overflow: hidden;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
/*
 * 首字母大写
*/
.text-cap {
    text-transform: capitalize;
}
/*
 * 大写
*/
.text-up {
    text-transform: uppercase;
}
/*
 * 小写
*/
.text-low {
    text-transform: lowercase;
}
/*
 * 单行省略
*/
.text-overflow {
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
}
/*
 * 蒙版
*/
.mask {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
    filter: alpha(opacity=20);
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
/*
 * 背景图居中
*/
.bg-CM {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*
 * 元素居中
*/
.pos-CM {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto ;
}
/*
 * 图标初始化
*/
.icon {
    position: relative;
    display: inline-block;
    /*background-position: center;*/
    background-repeat: no-repeat;
    background-size: auto;
}
/*
 * 图片居中显示
*/
.cover-img {
    position: relative;
    background-color: #f9f9f9;
    overflow: hidden;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.cover-img .img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.cover-img .cover,
.cover-img .contain {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}
.cover-img .contain {
    background-size: contain;
}
/*创建字体*/
/*-------------------------------*/

.scroll .container {
    background-color: #0C0C0C;
}
/*分页*/
.pageWrap {
    margin-top: 30px;
    text-align: center;
}
.pageWrap .layui-laypage a,
.pageWrap .layui-laypage span,
.pageWrap .layui-laypage button,
.pageWrap .layui-laypage input {
    height: 32px;
    line-height: 30px;
    font-size: 14px;
    border: solid 1px #ededed;
    background-color: #ffffff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.pageWrap .layui-laypage a,
.pageWrap .layui-laypage span {
    color: #888;
    margin: 0 5px;
    padding: 0 11px;
}
.pageWrap .layui-laypage button {
    padding: 0 13px;
    color: #404040;
    background-color: #fcd24a;
}
.pageWrap .layui-laypage input {
    width: 32px;
    padding: 0;
    text-align: center;
}
.pageWrap .layui-laypage input:focus {
    border-color: #a3204a !important;
}
.pageWrap .layui-laypage a:hover,
.pageWrap .layui-laypage a:active {
    color: #999999;
}
.pageWrap .layui-laypage .layui-laypage-em {
    background-color: #3874f4 !important;
    color: #fff;
}
.pageWrap .layui-laypage .layui-laypage-curr em {
    color: #fff;
}
.pageWrap .layui-laypage .layui-laypage-count,
.pageWrap .layui-laypage .layui-laypage-limits,
.pageWrap .layui-laypage .layui-laypage-refresh,
.pageWrap .layui-laypage .layui-laypage-skip {
    padding: 0;
    border: none;
    background: none;
}
.pageWrap .layui-laypage .icon_1 {
    width: 8px;
    height: 12px;
    background: url("../img/icon_arrow_02.png") center no-repeat;
    background-size: contain;
    background-size: 5px 10px;
}
.pageWrap .layui-laypage .icon_2 {
    width: 8px;
    height: 12px;
    background: url("../img/icon_arrow_01.png") center no-repeat;
    background-size: contain;
    background-size: 5px 10px;
}
.pop {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.5);
}
.pop .contain {
    width: 884px;
    height: 408px;
    background-color: #ffffff;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 0;
}
.pop .contain .img {
    width: 358px;
    height: 408px;
    background-color: #e6ecff;
    border-radius: 8px 0px 0px 8px;
    display: inline-block;
    vertical-align: middle;
}
.pop .contain .right {
    width: 526px;
    height: 408px;
    padding-top: 65px;
    display: inline-block;
    vertical-align: middle;
}
.pop .contain .right .top {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 55;
    text-align: right;
    cursor: pointer;
}
.pop .contain .right .top .icon-clear {
    width: 65px;
    height: 65px;
    background: url("../img/icon_clear.png") center no-repeat;
    background-size: 20px;
}
.pop .contain .right .title {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    text-align: center;
}
.pop .contain .right .list {
    padding: 10px 30px;
}
.pop .contain .right .list .item {
    border-bottom: 1px solid #dcdcdc;
}
.pop .contain .right .list .item .label {
    font-size: 14px;
    color: #333333;
    vertical-align: middle;
}
.pop .contain .right .list .item .input {
    padding: 20px 30px;
    width: 375px;
    color: #333;
    font-size: 16px;
    border: none;
    vertical-align: middle;
}
.pop .contain .right .btn {
    width: 298px;
    height: 40px;
    margin: 40px auto 0;
    background-image: linear-gradient(90deg, #3874f4 0%, #689ffa 50%, #96c7ff 100%), linear-gradient(#000000, #000000);
    background-blend-mode: normal,
    normal;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    line-height: 40px;
    text-align: center;
}
/*# sourceMappingURL=common.css.map */