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

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


svg{
    display: inline-block;
    fill: var(--main-color);
}

/*---------- 网页置灰代码 ----------*/
.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 {
    width: 100%;
    height: 65px;
    position: relative;
}

@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: var(--main-color);
}

.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;
}

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

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

.main-nav-btn {
    height: 56px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.02);
    backdrop-filter: blur(2px);
}

.main-nav-btn ul {
    overflow: hidden;
    /*position: relative;*/
    
}

.main-nav-btn ul li {
    position: relative;
    float: left;
    padding: 0 15px;
    margin-right: 88px;
    line-height: 54px;
}

.main-nav-btn ul li.right{
    position: absolute;
    right: 0;
    top: 0;
    /*bottom: 0;*/
    margin: auto;
}

.main-nav-btn ul li:last-child{
    margin-right: 0;
}

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

.main-nav-btn .child_nav ul li:hover{
    border-bottom: 2px solid var(--main-color);
}

.main-nav-btn .child_nav ul li:hover a{
    color: var(--main-color);
}

.main-nav-btn .child_nav ul li a {
    display: block;
    font-size: 16px;
    color: #000000;
    transition:all 0.8s linear;
    font-weight: 500;
}

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

.main-nav-btn ul li a img {
    height: 35px;
}
.nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/*导航———更多*/
.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;
    height: calc(100% - 10px);
}

/*搜索框*/
.main-search-section {
    position: relative;
    float: left;
    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 , .close-search-btn {
   width: 18px;
   height: 18px;
   position: absolute;
}

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

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



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

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

.open-search-btn svg,
.close-search-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff !important;
}

.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;
    width: 100%;
    height: 35px;
    padding: 3px 60px 3px 40px;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-size: 14px;
    color: #fff !important;
    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: rgba(255,255,255,0.7) !important;
}

.main-search-box input::-moz-input-placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.main-search-box input::-ms-input-placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.main-btn-search {
    display: none;
    position: absolute;
    right: -1px;
    top: 0;
    z-index: 999;
    width: 60px;
    height: 34px;
    margin: 0;
    font-size: 14px;
    color: #003c88;
    text-align: center;
    border: none;
    border-radius: 0 18px 18px 0;
    background: #fff !important;
    -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;
}

.search-drop-box {
    position: absolute;
    left: 0;
    top: 34px;
    width: 440px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0 3px 10px 8px rgba(0, 0, 0, .1);
    background: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 135px;
    display: none;
    z-index: 999;
}

.top-keywords-box {
    margin-bottom: 20px;
}

.top-keywords-box h5 {
    height: 24px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
    line-height: 24px;
}

.top-keywords-box ul {
    margin-left: -10px;
    overflow: hidden;
}

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

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

.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: #fff !important;
    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%;
    padding: 13px 0;
    box-sizing: border-box;
}

.main-nav .sub-nav > ul {
    /* padding: 10px 0; */
    display: inline-block;
}

.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 !important;
    margin: 2px 0;
    border-radius: 4px;
    font-size: 16px;
    color: #fff !important;
    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 !important;
    top: 13px;
    display: block;
    content: "";
    border-top: 5px solid #fff !important;
    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);
    z-index:8888;
}

.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: #fff !important;
}

.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("../../../resources/images/mix-portal/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;*/
    background: var(--main-color);
}


.footer-box {
    position: relative;
    padding: 30px 0 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);
    }
}

.child_nav{
    width: 1200px;
    height: 56px;
    margin: 0 auto;
    position: relative;
}

.child-bannercontainer{
    width: 1200px;
    /*margin: 180px auto 0;*/
    margin: 80px auto 0;
    overflow: hidden;
}
.baisc_mes{
    float: left;
    width: 245px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(20px);
    padding: 25px 20px 16px;
    box-sizing: border-box;
}
.baisc_mes h3 {
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.baisc_mes h3 img{
    width: 18px;
    margin-right: 6px;
}
.baisc_mes p{
    margin: 8px 0;
    color: #000;
    font-size: 12px;
}
.baisc_mes ul li {
    color: #000;
}
.baisc_mes ul li span{
    font-weight: bold;
}

.resource_and_meet{
    float: right;
    overflow: hidden;
    position: relative;
}
.resources_list{
    padding: 16px 12px;
    box-sizing: border-box;
    float: right;
    width: 344px;
    height: 396px;
    background: rgba(255,255,255,0.6);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    position: relative;
}
.resources_list .tablist{
    overflow: hidden;
    margin-bottom: 6px;
}
.resources_list .tablist li{
    width: 104px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    float: left;
    /*cursor: pointer;*/
}
/*.resources_list .tablist li.on , .resources_list .tablist li:hover{*/
/*    background: rgba(255,255,255,0.7);*/
/*    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);*/
/*    border-radius: 6px;*/
/*    backdrop-filter: blur(20px);*/
/*    transition: all 0.8s ease-in;*/
/*}*/
.resources_list .tablist li.on , .resources_list .tablist li svg{
    vertical-align: middle;
}



.resources_list  .swiper_vert {
    height: 290px;
    overflow: hidden;
}
.resources_list  .swiper_vert .swiper-slide a{
    display: block;
    overflow: hidden;
    padding: 6px 12px;
    box-sizing: border-box;
    transition: all 0.8s ease-in;

    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.resources_list  .swiper_vert .swiper-slide a svg{
    width: 16px;
    margin-right: 8px;
    vertical-align: middle;
    float: left;
    margin-top: 12px;
    color: var(--main-color);
}
.resources_list  .swiper_vert .swiper-slide a div{
    float: left;
    width: 90%;
}
.resources_list  .swiper_vert .swiper-slide a div h4{
    font-size: 14px;
    color: rgba(0,0,0,0.88);

}
.resources_list  .swiper_vert .swiper-slide a div  em{
    font-size: 12px;
    color: #666666;
    display: block;
    margin-top: 4px;
}
.resources_list  .swiper_vert .swiper-slide a:hover {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border-radius: 4px;
    /*box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);*/
}


.resources_list  .swiper_vert .swiper-slide1{
    padding: 4px 0;
}
.resources_list  .swiper_vert .swiper-slide1 a{
    display: block;
    overflow: hidden;
    padding: 6px 12px;
    box-sizing: border-box;
    transition: all 0.8s ease-in;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.resources_list  .swiper_vert .swiper-slide1 a svg{
    width: 16px;
    margin-right: 8px;
    vertical-align: middle;
    float: left;
    margin-top: 12px;
    color: var(--main-color);
}
.resources_list  .swiper_vert .swiper-slide1 a div{
    float: left;
    width: 90%;
}
.resources_list  .swiper_vert .swiper-slide1 a div h4{
    font-size: 14px;
    color: rgba(0,0,0,0.88);

}
.resources_list  .swiper_vert .swiper-slide1 a div  em{
    font-size: 12px;
    color: #666666;
    display: block;
    margin-top: 4px;
}
.resources_list  .swiper_vert .swiper-slide1 a:hover {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border-radius: 4px;
    /*box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);*/
}


.watchall{
    position: absolute;
    right: 16px;
    bottom: 8px;
    font-size: 12px;
    color: #0D2F6E;
}
.watchall img{
    vertical-align: middle;
    width: 13px;
}

/* 配置 */
.shutter{
    height: 100% !important;
}
.weekcalendar{
    width: 350px;
    height: 396px;
    float: right;
    background: rgba(255,255,255,0.4);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    margin-left: 12px;
    padding: 10px 8px;
    box-sizing: border-box;
}
.callist{
    height: 240px;
    overflow: hidden;
}
.callist .swiper-slide a{
    display: flex;
    width: 300px;
    height: 100%;
    background: rgba(255,255,255,0.4);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    margin-left: 15px;
    padding: 8 10px;
    box-sizing: border-box;
    position: relative;
}
.callist .swiper-slide {
    display: flex;
    justify-content: flex-end;
}

.callist .swiper-slide::before{
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: #0D2F6E;
    border-radius: 50%;
    margin-right: 9px;
    margin-top: 10px;
    margin-left: 13px;
}
.callist .swiper-slide::after{
    content: '';
    display: block;
    width: 1px;
    height: 46px;
    border-left: 1px dashed #fff;
    position: absolute;
    left: 16px;
    top: 21px;
}
.callist .swiper-slide a img{
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right: 15px;
}
.callist .swiper-slide a div{
    flex-grow: 0;
    width: 88%;
}
.callist .swiper-slide a div h4{
    font-size: 14px;
    color: rgba(0,0,0,0.88);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.callist .swiper-slide a div span{
    font-size: 12px;
    color: #666666;
}
.all_module_one{
    width: 1200px;
    position: relative;
    z-index: 99;
    margin: 0px auto 0;
}
.often_use{
    padding: 0 10px 14px 10px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.7);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(20px);
    /*margin-top: -56px;*/
    margin-top: -160px;
}
.often_use_tab{
    height: 40px;
    line-height: 40px;
}
.often_use_tab li{
    cursor: pointer;
    font-size: 18px;
    color: #5A5E62;
    transition: all 0.3s ease-in;
    position: relative;
    float: left;
    padding: 0 12px;
    box-sizing: border-box;
    min-width: 80px;
    text-align: center;
    width: auto;
}
.often_use_tab li.on , .often_use_tab li:hover{
    color: var(--main-color);
    font-weight: bold;
}
.often_use_tab li::after{
    content: '';
    width: 0px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease-out;
}
.often_use_tab li.on::after , .often_use_tab li:hover::after {
    width: 80px;
}
.often_use_list{
    margin-top: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.often_use_list .often_use_item{
    float: left;
    width: 10%;
    margin: 0 1px;
    text-align: center;
}
.often_use_list .often_use_item a .often_use_box{
    width: 44px;
    height: 44px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0px 3px 6px -4px rgba(0,0,0,0.12);
    border-radius: 6px;
}
.often_use_list .often_use_item a .often_use_box img{
    width: 24px;
    height: 24px;
}
.often_use_list .often_use_item a .often_use_box svg{
    width: 24px;
    height: 24px;
}
.often_use_list .often_use_item a h5{
    font-size: 14px;
    color: #333333;
    margin-top: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.often_use_list .often_use_item:hover h5{
   color: #0D2F6E;
}
.specialservice{
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.specialservice > center{
    float: left;
}
.specialservice  > .more{
    width: 66px;
    height: 168px;
    float: right;
    background: rgb(173, 197, 227);
    margin-top: 36px;
}
.specialservice  > .more a{
    display: flex;
    width: 100%;
    height: 168px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.specialservice  > .more a h5{
    width: 18px;
    color: #173D82;
    font-size: 18px;
}
.specialservice  > .more a img{
    width: 18px;
    height: 18px;
    margin-top: 2px;
}
.serviceswiper{
    width: 100%;
    overflow: hidden;
    margin-top: 36px;
    height: 192px;
    position: relative;
    overflow: hidden;
    float: left;
}
.serviceswiper .swiper-pagination{
    bottom: 0 !important;
}
.serviceswiper .swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 4px;
    border-radius: 4px;
    opacity: 0.2;
    background: #173D82;
}

.serviceswiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 12px;
    height: 4px;
    background: #173D82;
    border-radius: 4px;
    opacity: 1;
}
.serviceswiper .swiper-slide{
    height: 168px;
    overflow: hidden;
    border-radius: 4px;
}
.serviceswiper a{
    display: block;
    width: 100%;
    overflow: hidden;
}
.serviceswiper .bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.8s ease-in;
    z-index: 1;
    /*background: linear-gradient(to right , #0D2F6E , transparent);*/
    background: linear-gradient(to right , var(--main-color) , transparent);
}
.serviceswiper a img{
    width: 100%;
    height: 168px;
    object-fit: cover;
    transition: all 0.8s ease-in;
}

.serviceswiper a div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.serviceswiper a div h4{
    font-size: 18px;
    color: #FFFFFF;
    margin: 28px 24px  0 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.serviceswiper a div h5{
    font-size: 14px;
    color: #FFFFFF;
    margin: 10px 0  0 24px;
}
/* .service li{
    width: 285px;
    height: 168px;
    float: left;
} */
.serviceswiper li:hover img{
    transform: scale(1.06);
}
.recommend_services{
    width: 1200px;
    margin: 36px auto 0;
    overflow: hidden;
}
.recommend_services .recommtitle {
    display: flex;
    align-items: center;
    justify-content: center;
}
.recommend_services .recommtitle h3{
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin: 0 9px;
}
.recommendinner{
    margin-top: 40px;
    overflow: hidden;
}
.recommendinner .recommend_list{
    overflow: hidden;
    min-height:232px;
}
.recommendinner .recommend_list li{
    width: 224px;
    height: 96px;
    border-radius: 6px;
    border: 1px solid rgba(13,47,110,0.1);
    margin-right: 20px;
    float: left;
    margin-bottom: 20px;
    transition: all 0.3s ease-out;
}

.recommendinner .recommend_list li:hover {
    border: 1px solid var(--main-color);
}
.recommendinner .recommend_list li .recommend_box{
    width: 54px;

    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px auto 4px;

}
.recommendinner .recommend_list li  a{
    overflow: hidden;
    display: block;
    height: 100%;
}
.recommendinner .recommend_list li .recommend_box img , .recommendinner .recommend_list li .recommend_box svg{
    width: 36px;
    height: 36px;
}
.recommendinner .recommend_list li:nth-child(5n){
    margin-right: 0;
}
.more_recommend{
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
}
.more_recommend:hover .back{
    transform: scale(1.1);
}
.more_recommend h5{
   color: #173D82 !important;
}
.more_recommend .more{
    width: 16px;
}
.recommendinner .recommend_list li  h5{
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 4px;
    box-sizing: border-box;
}
.more_recommend .back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.8s ease-in;
}
.watch_recommend{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.datacal{
    margin-top: 24px;
    margin-left: 32px;
}
.datatitle h3{
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    padding-left: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(57,86,218,0.16);
}
.datacal ul{
    overflow: hidden;
    margin-top: 40px;
}
.datacal ul li{
    width: 224px;
    height: 120px;
    float: left;
    margin-right: 20px;
    overflow: hidden;
    background: #F1F5FB;
    border-radius: 6px;
}

.datacal ul li:nth-child(5n){
    margin-right: 0;
}

.datacal ul li a{
    display: block;
    height: 100%;
    overflow: hidden;
}

.datacal ul li a .datadesc{
    width: 104px;
    float: left;
    padding-left: 16px;
    padding-top: 22px;
    box-sizing: border-box;
}

.datacal ul li a img{
    float: right;
}

.datacal ul li a .datadesc h5{
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}

.datacal ul li a .datadesc h6{
    font-size: 18px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 18px;
    letter-spacing: 1px;
    margin-top: 12px;
}

.datacal ul li a .datadesc h6 span{
    font-size: 14px;
}

.calbox{
   position: absolute;
   right: 12px;
   bottom: 0;
   width: 120px;
   height: 120px;
}

.calbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.officelist li:nth-child(1) .calbox{
    width: 168px;
    height: 168px;
    right: 0;
    bottom: 0;
}

.all_module_two{
    margin-top: 36px;
    position: relative;
    overflow: hidden;
    height: 445px;
}
.all_module_two .intro{
    width: 40%;
    height: 445px;
    float: left;
}
.all_module_two .office{
    width: 60%;
    float: right;
    height: 445px;
}
.child_two{
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.left_child{
    padding: 34px 24px 34px calc((100% - 1200px) / 2);
    box-sizing: border-box;
    width:  40%;
    height: 445px;
    float: left;
}
.right_child{
    width: 60%;
    height: 445px;
    float: right;
    padding-right: calc((100% - 1200px) / 2);
    box-sizing: border-box;
}
.left_child h3{
    font-size: 38px;
    font-weight: bold;
    color: #000000;
}
.left_child h4 , .left_child h5{
    font-size: 18px;
    margin-top: 22px;
}
.left_child h4 span , .left_child h5 span{
    font-size: 28px;
    font-weight: bold;
    color: #000000;
}
.title{
    padding: 32px 0 0 16px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(57,86,218,0.16);
}
.title h3{
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
}
.title span a{
    font-size: 14px;
    color: #FFFFFF;
}
.right_child  .officelist {
    overflow: hidden;
}
.right_child  .officelist li{
    width: 31.5%;
    height: 120px;
    /* aspect-ratio: 240 / 142; */
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.65);
    /* padding: 3%; */
    box-sizing: border-box;
    float: left;
    margin-right: 2.67%;
    margin-bottom: 18px;
    position: relative;
}

.right_child  .officelist li:nth-child(1){
    width: 31.5%;
    height: 259px;
}

.right_child  .officelist li:nth-child(odd):not(:nth-child(1)){
    margin-right: 0;
}

.right_child  .officelist li h4{
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
}

.right_child  .officelist li span{
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #fff;
    margin-top: 12px;
}
.all_module_three{
    margin-top: 36px;
}
.child_three{
    width: 1200px;
    margin: 0 auto;
}
.businesslist{
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.businesslist li{
    width: 224px;
    height: 84px;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px -4px rgba(0,0,0,0.12), 0px 6px 16px 0px rgba(0,0,0,0.08);
    border-radius: 6px;
    transition: all 0.8s ease-in;
    margin-right: 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease-out;

}

.businesslist li:nth-child(5n){
    margin-right: 0;
}

.businesslist li a{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 12px;
    box-sizing: border-box;
}
.businesslist li img , .businesslist li svg{
    width: 36px;
    flex-shrink: 0;
    margin-right: 12px;
}
.businesslist li h5{
    font-size: 16px;
    font-weight: bold;
    color: #0D2F6E;
    flex-grow: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.businesslist li:hover{
    border: 1px solid #173D82;
}
.servicelist1{
    overflow: hidden;
    margin-top: 40px;
}
.servicelist1 li{
    float: left;
    width: 132px;
    height: 94px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid rgba(23,61,130,0.2);
    transition: all 0.3s ease-in;
    margin-right: 20px;
    margin-bottom: 20px;
}
.servicelist1 li:nth-child(8n){
    margin-right: 0;
}
.servicelist1 li a{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.servicelist1 li img , .servicelist1 li svg{
    height: 32px;
    width: 32px;
    object-fit: cover;
}

.servicelist1 li h4{
    font-size: 16px;
    /* font-weight: bold; */
    color: #000000;
    margin-top: 12px;
}

.servicelist1 li:hover {
    border: 1px solid var(--main-color);
    background: #F6F8FF;
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
}

.servicelist1{
    padding-bottom: 60px;
}

.contact{
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.contact .drag-btn-cont , .rewalcontact .drag-btn-cont{
    right: 0;
}

.message{
    float: left;
    width: 590px;
    position: relative;
}
.rewalcontact{
    width: 590px;
    float: right;
    position: relative;
}
.newstab{
    margin-top: 24px;
    height: 40px;
    overflow: hidden;
}
.newslist , .contactlist{
    margin-top: 16px;
}
.newslist li{
    margin-bottom: 8px;
    padding: 16px 12px;
    box-sizing: border-box;
    transition: all 0.1s ease-in;
}
.newslist li:hover{
    background: rgba(255,255,255,0.7);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
    border-radius: 4px;
}
.newslist li a{
    display: block;
    overflow: hidden;
}
.newslist li a .date{
    float: left;
    width: 80px;
}
.newslist li a .content {
    float: left;
    width: 472px;
}
.newslist li a .date i{
    display: block;
    font-size: 12px;
    color: #000000;
    margin-bottom: 6px;
}
.newslist li a .date em{
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}
.newslist li a .content h4{
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 48px;
}
.newslist li a .content p{
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    line-height: 18px;
    margin-top: 8px;
}
.contactlist li:hover{
    background: rgba(255,255,255,0.7);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12);
    border-radius: 4px;
}
.contactlist li{
    margin-bottom: 8px;
    padding: 16px 12px;
    box-sizing: border-box;
    transition: all 0.1s ease-in;
}

.contactlist li:nth-child(3n) , .newslist li:nth-child(3n){
    margin-bottom: 0;
}

.contactlist li a{
    display: flex;
    align-items: center;
}

.contactlist li a img{
    width: 40px;
    flex-shrink: 0;
    margin-right: 16px;
}

.contactlist li a div h4{
   flex-grow: 1;
   font-size: 16px;
   font-weight: 500;
   color: #000000;
   line-height: 20px;
   margin-bottom: 6px;
}

.contactlist li a div span{
    font-size: 12px;
    color: #666666;
}

.swiperbanner{
    height: 740px;
    overflow: hidden;
}

.swiperbanner img{
    width: 100%;
    height: 740px;
    object-fit: cover;
}

.slide-content-box {
    position: absolute;
    top: 65px;
}

.turnPage img{
    width: 22px;
    cursor: pointer;
    opacity: 0.8;
}

.turnPage img:first-child{
    margin-right: 12px;
}

.turnPage img:last-child{
    margin-left: 12px;
}

.turnPage input{
    width: 41px;
    height: 22px;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #D9D9D9;
    text-align: center;
    font-size: 14px;
    color: rgba(0,0,0,0.88);
    vertical-align: super;
}

.turnPage  span , .turnPage  i{
    font-size: 14px;
    color: rgba(0,0,0,0.88);
    vertical-align: super;
}

.turnPage  span {
    margin: 0 12px;
    padding: 0 !important;
}

.turnPage .nomore{
    opacity: 0.4;
}

.changeOffice{
    float: right;
    height: 100%;
    position: relative;
    margin-right: 56px;
}

.changeOffice span::after{
    position: absolute;
    right: -15px;
    top: 26px;
    display: block;
    content: "";
    border-top: 5px solid #edc78e;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top-color: #fff;
}

.changeOffice span{
    color: #fff;
    display: block;
    padding: 10px 0;
    height: 35px;
    line-height: 35px;
    box-sizing: content-box;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    display: none;
}
.changeOffice ul li{
    padding: 10px 15px 10px;
    box-sizing: border-box;
    transition: all 0.5s linear;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #e9e9e9;
}

.more_recommend_background , .more2{
    display: none;
}

.more_recommend .more_recommend_background{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more_recommend:hover .more_recommend_background ,.more_recommend:hover  .more2{
    display: block;
}

.more_recommend:hover  .more1{
    display: none;
}

.more_recommend:hover h5{
    color: #fff !important;
}

.changeOffice ul li:hover{
    color: var(--main-color);
}
.changeOffice ul{
    width: 176px;
    position: absolute;
    top: 54px;
    left: 0;
    background: #fff;
    border-radius: 4px;
    z-index: 99999999;
}

.changeOffice span + ul{
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: height 0.2s ease-out;
    box-sizing: border-box;
}

.changeOffice:hover ul{
    width: 176px;
    height: 128px;
    overflow: auto;
    box-sizing: border-box;
}

.changeOffice:hover  ul li{
    box-sizing: border-box;
    cursor: pointer;
}

.all_module_two .right_child center{
    color: #fff !important;;
}

#home{
    padding-bottom: 36px;
    /* background: url(../../../resources/images/mix-portal/background1.png) left bottom no-repeat;
    background-size: 100% auto; */
}

.footerhref{
    margin-top: 6px;
    overflow: hidden;
}

.bottomoperlist{
    float: left;
    overflow: hidden;
    margin-left: 112px;
    margin-top: 26px;
}

.bottomoperlist li{
    float: left;
    margin-right: 100px;
}

.bottomoperlist li img{
    height: 80px;
    object-fit: cover;
}

.bottomoperlist li  h5{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 16px;
    text-align: center;
}

.quicklyhref{
    float: right;
}

.quicklyhref  h5{
    font-size: 24px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.quicklyhref .quicklymodule{
    overflow: hidden;
    padding-left: 100px;
    position: relative;
}

.quicklyhref .quicklymodule::after{
    content: '';
    display: block;
    width: 2px;
    height: 190px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 28px;
}

.quicklyhref .quicklymodule ul{
    float: left;
    width: 124px;
}

.quicklyhref .quicklymodule ul li{
    margin-bottom: 24px;
}

.quicklyhref .quicklymodule ul li a{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}

.footerintroduce{
    margin-top: 32px;
    overflow: hidden;
}

.footerintroduce .footlogo{
    float: left;
    width: 289px;
    height: 83px;
    object-fit: cover;
}

.footerintroduce .footdescribe{
    margin-left: 36px;
    float: left;
}

.footerintroduce .footdescribe p{
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 24px;
}

.footerintroduce .footdescribe .imglist{
    overflow: hidden;
    float: right;
}

.footerintroduce .footdescribe .imglist li{
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 30rpx;
    margin-right: 40px;
}

.footerintroduce .footdescribe .imglist li:last-child{
    margin-right: 0;
}

.footerintroduce .footdescribe .imglist li a{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.bq {
    margin-top: 46px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}

.imglist{
    float: right;
    overflow: hidden;
}

.imglist li{
    width: 50px;
    height: 50px;
    margin-left: 40px;
    background: #E9E9E9;
    border-radius: 12px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imglist li:first-child{
    margin-right: 0;
}

.imglist li img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.footerdata{
    overflow: hidden;
}

.otherimglist{
    float: left;
    overflow: hidden;
    margin-top: 46px;
}

.otherimglist li{
    width: 200px;
    height: 134px;
    float: left;
    margin-right: 20px;
}

.otherimglist li a{
    display: block;
    height: 100%;
}

.otherimglist li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hreflist{
    float: left;
    margin-left: 138px;
    width: 232px;
    overflow: hidden;
    margin-top: 30px;
}

.hreflist li {
    min-width: 64px;
    max-width: 128px;
    float: left;
    margin-right: 40px;
    margin-bottom: 22px;
}

.hreflist li:nth-child(even){
    margin-right: 0;
}

.hreflist li a{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}

.footerlogo{
    float: right;
    width: 83px;
    height: 83px;
    object-fit: cover;
}

.bottomtip{
    height: 50px;
    background: rgb(45, 72, 130, 0.6);
    line-height: 50px;
    text-align: center;
    margin-top: 72px;
}

.bottomtip span{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-right: 36px;
}

.police{
    vertical-align: sub;
    margin-right: 6px;
    display: inline-block;
}

#userPhoto1{
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
}

.main-nav-inner .search{
    float: left;
}

.main-nav-inner .search .search_icon{
    width: 18px;
    margin-right: 20px;
    padding: 21px 0;
    box-sizing: border-box;
}

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

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

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

.contact > div.on .newslist , .contact > div.on .contactlist {
    overflow: hidden;
}

.contact > div.on .newslist li:nth-child(odd) , .contact > div.on .contactlist li:nth-child(odd){
    float: left;
}

.contact > div.on .newslist li:nth-child(even) , .contact > div.on .contactlist li:nth-child(even){
    float: right;
}

.contact > div.on .contactlist li:nth-child(even) , .contact > div.on .contactlist li:nth-child(odd){
    width: 50%;
}

