* {
    margin: 0;
    cursor: default;
    box-sizing: content-box;
}

body {
    font-family: "PingFangSC-Regular";
    /*overflow: hidden;*/
}

html {
    font-size: 20px;
}

/*取消ul浏览器的默认值*/
ul,
ol {
    padding: 0;
    margin: 0;
}

/*清除浮动类 给浮动元素的父类添加类名*/
.float-class:after {
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.float-class {
    zoom: 1;
}

/*按钮类改变鼠标样式*/
.btn-cursor {
    cursor: pointer;
}

/*覆盖bootstrap的a样式*/
a {
    text-decoration: none;
}

/*覆盖bootstrap样式*/
a,
body a:link,
body a:visited,
body a:hover,
body a:active {
    text-decoration: none;
    /*color:inherit;*/
}

/*全局通用按钮类*/
.common-btn {
    display: block;
    width: 240px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    font-size: 20px;
    border-radius: 28px;
    cursor: pointer;
}

/*header部分*/
.header {
    background-color: #fff;
    width: 100%;
    height: 80px;
}

.header-warp {
    width: 1000px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
/*屏幕宽度大于1400px时，中心位置展示1200px*/
@media screen and (min-width: 0) {
    .header-warp {
        width: 1200px;
        height: 100%;
        display: flex;
        justify-content: space-between;
        font-size: 16px;
    }
}

.header-warp a {
    cursor: pointer;
    color: #0a104a;
    font-size: 16px;
}

.header-middle {
    width: 100%;
    height: 80px;
    float: left;
}
/* .header-container {
} */
.header-left {
    display: flex;
    justify-content: flex-start;
}
.header-menu-logo {
    width: 194px;
    height: 40px;
    margin-right: 52px;
}

.header-menu-logo img {
    width: 100%;
    height: 100%;
}

.header-menu {
    display: flex;
    min-width: 470px;
    justify-content: flex-start;
}

.header-menu-item {
    position: relative;
    float: left;
    width: auto;
    margin: 0 40px 0 0;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-family: "PingFangSC-Regular";
}

.header-menu-item:hover a {
    color: #0253ff;
    cursor: pointer;
}

.header-menu-item:hover > span {
    border-color: #fff;
}

.header-menu-item:nth-child(4):hover > span {
    border-color: transparent;
}

.header-menu-item .active-tab {
    box-sizing: border-box;
    font-weight: bold;
    color: #0253ff;
    border-bottom: 2px #0253ff solid;
    height: 100%;
    display: inline-block;
}

.header-menu-item .active-tab + span {
    border-color: #0253ff;
}

.header-menu-children {
    box-sizing: border-box;
    width: 120px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    z-index: 99;
    background-color: #fff;
    position: absolute;
    top: 80px;
    left: -28px;
    padding: 16px 0;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.10);
    /*box-shadow: inset 0 0 14px 2px rgba(32,84,208,0.30);*/
}

.header-menu-item > .header-menu-children a {
    color: #333;
}

.header-menu-children-item {
    height: 36px;
    line-height: 36px;
    /* border-bottom: 1px dashed #ccd9e5; */
}

.header-menu-children-item a {
    font-size: 14px;
}

.header-menu-children > div:last-child {
    border-bottom: 1px dashed transparent;
}

.header-menu-item:hover > .header-menu-children {
    display: flex;
}

.header-menu-children:hover {
    display: flex;
}

.header-menu-children-item a:hover {
    color: #2054d0;
}

.header-login {
    display: flex;
    justify-content: space-between;
    min-width: 80px;
}

.header-login > div {
    display: inline-block;
    color: #0a104a;
}

.header-login-menu {
    height: 80px;
}

.header-login-menu a {
    color: #0a104a;
}

.header-login-menu > a:hover {
    color: #0d5bff;
}

/*退出*/
.show-logout {
    position: relative;
}
.show-logout:hover > .header-logout-children {
    display: block;
}
.header-logout-children {
    display: none;
    z-index: 99;
    position: absolute;
    top: 70px;
    left: 50%;
    margin: auto;
    width: 116px;
    background: #fff;
    box-shadow: 0 2px 6px 0 #d1deff;
    border-radius: 3px;
    padding: 8px 0;
    transform: translateX(-50%);
}
.header-user-name {
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    white-space: nowrap;
}

.header-user-name img {
    margin-right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.header-user-name .header-user-name-text {
    font-size: 14px;
    color: #0a104a;
    cursor: pointer;
}

.header-logout-line {
    display: block;
    height: 1px;
    background: #edf1fc;
    margin: 8px auto 0;
    width: 84px;
}

.header-logout-children > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 16px;
    width: 116px;
    height: 36px;
    line-height: 20px;
    font-family: "PingFangSC-Regular";
    font-size: 14px;
    color: #333;
    text-align: center;
    background-color: #fff;
}

.header-logout-children > a:hover {
    background: #edf1fc;
}

.header-logout-children > a > span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.header-logout-children .header-account-info,
.header-logout-children .header-logout-icon,
.header-logout-children .header-identify {
    box-sizing: border-box;
}

.header-logout-icon > span {
    background: url(../../images/home/logout.svg) center/100% 100% no-repeat;
}

.header-logout-icon:hover > span {
    background: url(../../images/home/logout-hover.svg) center/100% 100% no-repeat;
}

.header-account-info > span {
    background: url(../../images/home/basic-info.svg) center/100% 100% no-repeat;
}

.header-account-info:hover > span {
    background: url(../../images/home/basic-info-hover.svg) center/100% 100% no-repeat;
}

.header-identify > span {
    background: url(../../images/home/safety-auth.svg) center/100% 100% no-repeat;
}

.header-identify:hover > span {
    background: url(../../images/home/safety-auth-hover.svg) center/100% 100% no-repeat;
}

.header-logout-children a:hover {
    color: #2054d0;
}
.header-login-center {
    line-height: 79px;
}

.separator {
    font-size: 16px;
    display: inline-block;
    margin: 0 8px;
}
/*侧边栏*/
.page-sidebar {
    width: 40px;
    height: 140px;
    position: fixed;
    right: 0;
    top: 70%;
    z-index: 999;
}

.page-sidebar > a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #1067F2;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    border-bottom: 1.5px solid #E9E9E9;
    text-decoration: none;
}

.page-sidebar > a:last-child {
    border-bottom: none;
}

.page-sidebar > a > span {
    display: none;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    padding: 4px 0;
    background-color: #249cfa;
    text-align: center;
    cursor: pointer;
}

.sidebar-server {
    background-image: url(../../images/home/ico-sidebar-server.png);
}

.sidebar-server:hover > span {
    display: block;
}

.sidebar-refer {
    background-image: url(../../images/home/ico-sidebar-refer.png);
}

.sidebar-refer:hover > span {
    display: block;
}
.sidebar-refer:hover > div {
    display: block;
}
.sidebar-top {
    background-image: url(../../images/home/ico-sidebar-top.png);
}

.sidebar-top:hover > span {
    display: block;
}

/* 侧边栏 */
.floating {
    position: fixed;
    bottom: 126px;
    width: 56px;
    height: 170px;
    right: 8px;
    display: flex;
    flex-direction: column;
}

.floating .floating-box {
    width: 100%;
    height: 56px;
    margin: 0 0 1px;
    position: relative;
}

.floating-box,
.floating-box img,
.floating-box a,
.floating-box div {
    cursor: pointer;
}

.floating-box .floating-img {
    width: 100%;
    height: 100%;
    background: #fff;
}

.floating-box .floating-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.floating-text img {
    width: 100%;
    height: 100%;
}

.floating-box:hover .floating-text {
    display: block;
    z-index: 99;
}
/*footer样式*/
/* 页面底部 */
.page-footer {
    height: 326px;
    background: #111425;
}

.footer-content {
    width: 86%;
    min-width: 1000px;
    height: 268px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-text {
    width: 40.5%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-text-part {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 40px 0 0;
}

.footer-text-part a:nth-child(1),
.footer-text-part p:nth-child(1) {
    font-family: "PingFangSC-Regular";
    color: #fff;
    margin: 0 0 6px;
    height: 36px;
    font-size: 16px;
    line-height: 30px;
}

.footer-text-part a:nth-child(n+2) {
    margin: 0 0 6px;
    font-family: "PingFangSC-Regular";
    font-size: 14px;
    color: #8b90aa;
    line-height: 30px;
    height: 30px;
    cursor: pointer;
}

.footer-email,
.footer-phone {
    font-size: 14px;
    color: #8b90aa;
    line-height: 30px;
    height: 30px;
    margin: 0 0 6px;
}

.footer-qr {
    margin: 39px 0 8px;
    width: 150px;
    height: 227px;
}

.footer-qr img {
    width: 150px;
    height: 150px;
}

.footer-qr p {
    margin: 0 auto;
    font-family: "PingFangSC-Regular";
    font-size: 14px;
    color: #8b90aa;
    line-height: 30px;
    width: 70px;
    height: 30px;
}

.footer-hr {
    background: rgba(255, 255, 255, .2);
    height: 1px;
    border: none;
    margin: 0;
}

.footer-icp {
    margin: 20px 0 0;
    height: 21px;
    font-family: "PingFangSC-Regular";
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    text-align: center;
    line-height: 21px;
    display: block;
}

.footer-icp:link,
.footer-icp:visited,
.footer-icp:active,
.footer-icp:hover {
    color: rgba(255, 255, 255, .8);
    cursor: pointer;
}

@media screen and (min-width: 1400px) {
    .footer-content {
        width: 1200px;
    }
}
