@charset "UTF-8";
/**
 *  @name: 新版门户--头部主导航、底部版权信息、侧边固定导航、返回顶部和浏览器滚动条公共样式
 *  @version: 3.0
 *  @author: wqg
 *  @date: 2021-01-08
 */

html,body {
    min-width: 1200px;
}

/*---------- 网页置灰代码 ----------*/
.gray {
    -webkit-filter:grayscale(100%);
    -moz-filter:grayscale(100%);
    -ms-filter:grayscale(100%);
    -o-filter:grayscale(100%);
    filter:grayscale(100%);
    filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}

/*---------- -webkit-内核浏览器默认滚动条样式----------*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    border: 1px #d3d3d3 solid;
    box-shadow: 0 0 3px #dfdfdf inset;
    border-radius: 10px;
    background: #eee;
}

::-webkit-scrollbar-thumb {
    border: 1px #808080 solid;
    border-radius: 10px;
    background: #999;
}

::-webkit-scrollbar-thumb:hover {
    background: #7d7d7d;
}

/*---------- 修改miniui样式 ----------*/
.mini-tabs-bodys {
    padding: 0 !important;
    box-sizing: border-box;
}

/* 消息弹窗z-index */
.mini-window-z-index {
    z-index: 99999 !important;
}

/*---------- 主导航 ----------*/
.main-nav {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 65px;
}

@media all and (max-width: 1200px) {
    .main-nav {
        width: 1200px;
    }
}

.pure-color-bg,
.transparent-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.pure-color-bg {
    display: block;
    background: #003c88;
}

.transparent-bg {
    display: none;
    background-color: rgba(0, 0, 0, .1);
    backdrop-filter: blur(6px);
}

.main-nav-inner {
    position: relative;
    height: 65px;
    padding: 5px 0;
    box-sizing: border-box;
    background: none;
}

/*@media all and (max-width: 1200px) {*/
/*    html, body {*/
/*        min-width: 100vw;*/
/*    }*/

/*    .main-nav,*/
/*    .main-nav-inner {*/
/*        width: 100vw !important;*/
/*    }*/
/*}*/
@media only screen and (min-width: 1200px) {
    html, body {
        width: 100vw;
    }

    .main-nav,
    .main-nav-inner {
        min-width: 1200px;
    }
}

@media only screen and (max-width: 1199px) {
    html, body {
        width: 100%;
    }

    .main-nav,
    .main-nav-inner {
        width: 100%;
    }
}

.logo {
    position: relative;
    float: left;
    height: 100%;
    width: auto;
    margin-right: 20px;
}

.logo img {
    float: none;
    display: block;
    height: 55px;
}

.main-nav-btn {
    float: left;
    width: auto;
    height: 100%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.main-nav-btn ul {
    float: left;
    padding: 10px 0;
}

.main-nav-btn ul li {
    position: relative;
    float: left;
    height: 35px;
    padding: 0 15px;
}

.main-nav-btn ul li.active:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    display: block;
    content: "";
    height: 2px;
    background: #edc78e;
}

.main-nav-btn ul li a {
    display: block;
    height: 35px;
    font-size: 16px;
    color: #edc78e;
    line-height: 35px;
}

.main-nav-btn ul li.active a {
    font-weight: bold;
}

.main-nav-btn ul li a img {
    height: 35px;
}

/*导航———更多*/
.nav-more-wrap {
    float: left;
    display: none;
}

.main-nav-btn .nav-more {
    position: relative;
}

.main-nav-btn .nav-more a {
    position: relative;
}

.main-nav-btn .nav-more a span {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 15px 2px;
    border-radius: 50%;
    background: #edc78e;
}

.drop-down-nav {
    position: absolute;
    left: 16px;
    top: 35px;
    display: none;
    width: 176px;
    min-height: 110px;
    padding: 10px 0;
    box-sizing: border-box;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.drop-down-nav ul {
    float: none;
}

.drop-down-nav ul li {
    float: none;
    height: 30px;
    padding: 2px 15px;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.drop-down-nav ul li:hover {
    background: #003c88;
}

.drop-down-nav ul li a {
    display: block;
    height: 26px;
    line-height: 26px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.drop-down-nav ul li:hover a {
    color: #edc78e;
}

.main-nav-inner > section {
    position: absolute;
    right: 0;
}

/*搜索框*/
.main-search-section {
    position: relative;
    float: right;
    height: 55px;
    padding: 10px 0;
    box-sizing: border-box;
}

.main-search-box {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    height: 35px;
    box-sizing: border-box;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}


.open-search-btn {
    position: relative;
    padding: 7px 12px 7px 32px;
}

.close-search-btn {
    position: absolute;
    left: 0;
    top: 0;
    padding: 7px 12px;
}

.open-search-btn,
.close-search-btn {
    z-index: 999;
    display: block;
    height: 35px;
    box-sizing: border-box;
}

.open-search-btn svg,
.close-search-btn svg {
    width: 20px;
    height: 20px;
    fill: #edc78e;
}

.open-search-btn svg {
    position: absolute;
    left: 12px;
    top: 8px;
}

.open-search-btn b {
    float: left;
    padding-left: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
}

.close-search-btn {
    display: none;
}

.main-search-box {
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 18px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.main-search-box input {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 35px;
    padding: 5px 60px 5px 40px;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-size: 14px;
    color: #edc78e;
    background: transparent;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.main-search-box input::-webkit-input-placeholder {
    color: #edc78e;
}
.main-search-box input::-moz-input-placeholder {
    color: #edc78e;
}
.main-search-box input::-ms-input-placeholder {
    color: #edc78e;
}

.main-btn-search {
    display: none;
    position: absolute;
    right: -1px;
    top: 0;
    z-index: 999;
    width: 60px;
    height: 33px;
    margin: 0;
    font-size: 14px;
    color: #003c88;
    text-align: center;
    border: none;
    border-radius: 0 18px 18px 0;
    background: transparent;
    -webkit-transition: background-color .5s ease;
    -moz-transition: background-color .5s ease;
    -ms-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
}

.main-btn-search:hover {
    background: #edd391;
}

/*搜索框展开效果*/
.main-search-box.search-open {
    width: 500px;
    height: 35px;
    margin-right: 20px;
    border-color: #edc78e;
}

.main-search-box.search-open input {
    display: block;
}

.main-search-box.search-open .main-btn-search {
    display: block;
    background-color: #edd391;
}

.main-keywords-box {
    position: absolute;
    left: 12px;
    top: 35px;
    display: none;
    width: 428px;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.main-keywords-box section:last-child {
    position: relative;
    border-top: 1px solid #e5e5e5;
    padding-top: 10px;
    margin-top: 10px;
}

.main-keywords-box section h5 {
    font-size: 16px;
    color: #666;
}

.main-keywords-box ul {
    position: relative;
    padding: 5px 0;
    overflow: hidden;
}

.main-keywords-box section:last-child ul {
    height: 120px;
}

.main-keywords-box section:first-child ul li {
    position: relative;
    float: left;
    width: 50%;
    height: 30px;
    padding-left: 26px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.main-keywords-box ul li:hover {
    color: #666;
}

.main-keywords-box ul.hot-word-list li:before {
    position: absolute;
    left: 8px;
    top: 12px;
    display: block;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a7a7a7;
}

.main-keywords-box ul.hot-word-list li:nth-child(1):before {
    background: #ff512e;
}

.main-keywords-box ul.hot-word-list li:nth-child(2):before {
    background: #ffaf9f;
}

.main-keywords-box ul.hot-word-list li:nth-child(3):before {
    background: #ffca63;
}

.main-keywords-box section:last-child button {
    position: absolute;
    right: 0;
    top: 10px;
    width: 22px;
    height: 22px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    fill: #999;
}

.main-keywords-box section:last-child button:hover {
    background: #e6e6e6;
}

.main-keywords-box section:last-child button:active {
    background-color: #d4d4d4;
    border-color: #adadad;
}

.main-keywords-box section:last-child button svg {
    display: block;
    width: 18px;
    height: 18px;
    margin: 2px;
    fill: #999;
}

.main-keywords-box section:last-child ul li {
    width: 50%;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    padding-left: 25px;
    margin: 5px 0;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.main-keywords-box section:last-child ul li:nth-child(1),
.main-keywords-box section:last-child ul li:nth-child(2),
.main-keywords-box section:last-child ul li:nth-child(3) {
    position: absolute;
    left: 0;
}

.main-keywords-box section:last-child ul li:nth-child(4),
.main-keywords-box section:last-child ul li:nth-child(5),
.main-keywords-box section:last-child ul li:nth-child(6) {
    position: absolute;
    left: 50%;
}

.main-keywords-box section:last-child ul li:nth-child(1),
.main-keywords-box section:last-child ul li:nth-child(4) {
    top: 5px;
}

.main-keywords-box section:last-child ul li:nth-child(2),
.main-keywords-box section:last-child ul li:nth-child(5) {
    top: 45px;
}

.main-keywords-box section:last-child ul li:nth-child(3),
.main-keywords-box section:last-child ul li:nth-child(6) {
    top: 85px;
}

.main-keywords-box section:last-child ul li .icon-box {
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
}

.main-keywords-box section:last-child ul li .icon-box svg {
    display: block;
    width: 20px;
    height: 20px;
}

.main-keywords-box section:last-child ul li:nth-child(1) .icon-box svg {
    fill: #f26100;
}

.main-keywords-box section:last-child ul li:nth-child(2) .icon-box svg {
    fill: #fdab4d;
}

.main-keywords-box section:last-child ul li:nth-child(3) .icon-box svg {
    fill: #dacaaa;
}

/*登录按钮*/
.main-nav .login-btn {
	position: relative;
    display: none;
    float: right;
    height: 55px;
    padding: 10px 0;
    margin: 0;
    box-sizing: border-box;
}

.main-nav .login-btn a {
    display: block;
    height: 30px;
    margin: 2px 0;
    padding: 0 12px;
    font-size: 16px;
    color: #edc78e;
    line-height: 30px;
    border: none;
    border-radius: 4px;
    background: transparent;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.main-nav .login-btn a:hover,
.main-nav .login-btn a:active {
    background: rgba(20, 20, 20, .2);
}

.main-nav .sub-nav {
    float: right;
    height: 100%;
}

.main-nav .sub-nav > ul {
    padding: 10px 0;
}

.main-nav .sub-nav > ul:after {
    display: block;
    content: "";
    clear: both;
}

.main-nav .sub-nav > ul > li {
    position: relative;
    float: left;
    height: 35px;
    font-size: 16px;
    color: #edc78e;
    line-height: 35px;
}

.main-nav .sub-nav > ul > li:first-child.active:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    display: block;
    content: "";
    height: 2px;
    background: #edc78e;
}

.main-nav .sub-nav > ul > li > a {
    position: relative;
    display: block;
    max-width: 100px;
    height: 30px;
    padding: 0 20px 0 12px;
    margin: 2px 0;
    border-radius: 4px;
    font-size: 16px;
    color: #edc78e;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.main-nav .sub-nav > ul > li:first-child > a {
    padding: 0 12px;
}

.main-nav .sub-nav > ul > li:first-child.active > a {
    font-weight: bold;
}

.main-nav .sub-nav > ul > li > a:hover {
    background: rgba(20, 20, 20, .2);
}

.main-nav .sub-nav > ul > li:last-child > a:after {
    position: absolute;
    right: 6px;
    top: 12px;
    display: block;
    content: "";
    border-top: 5px solid #edc78e;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

/*下拉菜单*/
.main-nav .dropdown-menu {
    position: absolute;
    right: 0;
    top: 30px;
    display: none;
    width: 176px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.main-nav .dropdown-menu .list-section {
    position: relative;
    padding: 5px 0;
    border-top: 1px solid #e5e5e5;
}

.main-nav .dropdown-menu .list-section:first-child {
    border-top: none;
}

.main-nav .dropdown-menu .list-section .user-avatar {
    position: absolute;
    left: 0;
    top: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;
    background: #16a8f8;
    overflow: hidden;
}

.main-nav .dropdown-menu .list-section .user-avatar img {
    display: block;
    width: 30px;
}

.dropdown-menu .list-section:nth-child(1) ul {
    padding-left: 40px;
}

.dropdown-menu .list-section:nth-child(1) ul li {
    height: 20px;
    line-height: 20px;
}

.dropdown-menu .list-section:nth-child(1) ul li:first-child {
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-menu .list-section:nth-child(1) ul li:last-child {
    font-size: 12px;
    color: #999;
}

.dropdown-menu .list-section:nth-child(2) ul li,
.dropdown-menu .list-section:nth-child(3) ul li {
    height: 30px;
    padding: 2px 0;
    box-sizing: border-box;
}

.dropdown-menu .list-section:nth-child(2) ul li a,
.dropdown-menu .list-section:nth-child(3) ul li a {
    position: relative;
    display: block;
    height: 26px;
    border-radius: 4px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.dropdown-menu .list-section:nth-child(2) ul li a:hover,
.dropdown-menu .list-section:nth-child(3) ul li a:hover {
    background: #003c88;
}

.dropdown-menu .list-section:nth-child(2) ul li a span:first-child,
.dropdown-menu .list-section:nth-child(3) ul li a span:first-child {
    position: absolute;
    left: 4px;
    top: 4px;
    display: block;
    width: 18px;
    height: 18px;
}

.dropdown-menu .list-section:nth-child(2) ul li a span:first-child svg,
.dropdown-menu .list-section:nth-child(3) ul li a span:first-child svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: #9d9d9d;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.dropdown-menu .list-section:nth-child(2) ul li a:hover span:first-child svg,
.dropdown-menu .list-section:nth-child(3) ul li a:hover span:first-child svg {
    fill: #fff;
}

.dropdown-menu .list-section:nth-child(2) ul li a span:last-child,
.dropdown-menu .list-section:nth-child(3) ul li a span:last-child {
    display: block;
    height: 26px;
    padding-left: 30px;
    font-size: 14px;
    color: #333;
    line-height: 26px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.dropdown-menu .list-section:nth-child(2) ul li a:hover span:last-child,
.dropdown-menu .list-section:nth-child(3) ul li a:hover span:last-child {
    color: #fff;
}

.btn-exit {
    width: 100%;
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    color: #fff;
    background: #003c88;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btn-exit:hover {
    background: rgba(0, 60, 136, .8);
}

/*---------- miniui 主导航 ----------*/
.mini-layout .main-nav-inner {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.slide-nav-btn {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    width: 35px;
    height: 35px;
    margin: 15px;
    cursor: pointer;
}

@media all and (max-width: 1300px) {
    .slide-nav-btn {
        position: relative;
        float: left;
    }
}

.slide-nav-btn svg {
    width: 35px;
    height: 35px;
    fill: #edc78e;
}

.logo {
    position: relative;
    float: left;
}

/*---------- back-top ----------*/
.back-top {
    position: fixed;
    right: 130px;
    bottom: 100px;
    z-index: 998;
    width: 58px;
    height: 58px;
    border-radius: 4px;
    cursor: pointer;
    background: rgba(0, 0, 0, .1) url("../../images/onewebsitehandle/icon-btn-back-top.svg") no-repeat center/34px 34px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.back-top:hover {
    background-color: rgba(0, 0, 0, .2);
}

@media screen and (max-width: 1440px) {
    .back-top {
        right: 15px;
    }
}

/*---------- 固定导航 ----------*/
.fixed-nav {
    position: fixed;
    z-index: 998;
    right: 0;
    top: 50%;
    width: 80px;
    padding-top: 10px;
    margin-top: -180px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fixed-nav dl {
    position: relative;
    width: 80px;
    height: 80px;
    padding: 10px;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.fixed-nav > div > dl {
    cursor: pointer;
}

.fixed-nav dl:hover {
    background: rgba(238, 200, 143, .4);
}

.fixed-nav dl .remind {
    position: absolute;
    right: 8px;
    top: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    box-sizing: border-box;
    border-radius: 9px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 18px;
    background: #f96262;
    display: none;
}

.fixed-nav dl dt {
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

.fixed-nav dl dt img,
.fixed-nav dl dt svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: #003c88;
}

.fixed-nav dl dd {
    height: 30px;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixed-nav .suspend-box {
    position: relative;
}

.fixed-nav .suspend-box .suspend {
    position: absolute;
    right: 95px;
    top: 0;
    display: none;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    word-break: break-all;
}

.fixed-nav .suspend-box:hover .suspend {
    display: block;
}

.fixed-nav .suspend-box .suspend:before {
    position: absolute;
    right: -12px;
    top: 50%;
    display: block;
    content: "";
    margin-top: -12px;
    border-left: 12px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.fixed-nav .suspend-box .suspend img {
    display: block;
    width: 100%;
}

.fixed-nav .suspend-box .suspend p {
    font-size: 14px;
    color: #333;
    line-height: 30px;
}

.unfold {
    position: absolute;
    left: -24px;
    top: 50%;
    display: none;
    width: 24px;
    height: 62px;
    margin-top: -25px;
    padding: 2px 6px;
    box-sizing: border-box;
    color: #fff;
    border-radius: 4px 0 0 4px;
    background: #003c88;
    cursor: pointer;
    user-select: none;
}

.unfold span {
    position: absolute;
    right: 6px;
    bottom: 4px;
    display: block;
    width: 12px;
    height: 12px;
}

.unfold span svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #fff;
}

.pack-up {
    height: 26px;
    color: #fff;
    text-align: center;
    background: #003c88;
    user-select: none;
    cursor: pointer;
}

/*---------- footer ----------*/
.footer-bg {
    min-height: 236px;
    background: #2b303b;
}

.footer-box {
    position: relative;
    padding: 50px 0 !important;
    background: transparent;
}

.copyright-info {
    width: 850px;
    overflow: hidden;
}

.copyright-info p {
    width: 50%;
    float: left;
    font-size: 14px;
    color: #fff;
}

.qr-code {
    position: absolute;
    right: 0;
    top: 50px;
}

.qr-code dl,
.qr-code ul {
    width: 130px;
}

.qr-code dl dt,
.qr-code ul li:first-child {
    width: 75px;
    height: 75px;
    margin: 0 auto 10px;
}

.qr-code dl dt img,
.qr-code ul li:first-child img {
    display: block;
    width: 75px;
    height: 75px;
}

.qr-code dl dd,
.qr-code ul li:last-child {
    font-size: 14px;
    color: #fff;
    text-align: center;
}

/*---------- 预加载动画 ----------*/
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 1000000;
}

.sk-three-bounce {
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: white;
}

.sk-three-bounce .sk-child {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #003c88;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-three-bounce {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
