/* Common */
*
{
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
}

html, body
{
    width: 100%;
    min-width: fit-content;
    height: 100%;
    font-size: 14px;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    background: white;
}

body, table, tr, td
{
    margin: 0;
    padding: 0;
}

a
{
    cursor: pointer;
    text-decoration: none;
}

img
{
    border: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}

body::-webkit-scrollbar-thumb
{
    /*滚动条里面小方块*/
    border-radius   : 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

body::-webkit-scrollbar-track
{
    /*滚动条里面轨道*/
    box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
    background   : #ededed;
    border-radius: 10px;
}

.hidden
{
    display: none !important;
}

.header
{
    width: 100%;
    height: 52px;
    position: fixed;
    top: 0;
    z-index: 10;
}

.header:hover, .header-highlight
{
    background: white;
    -moz-box-shadow: 0 5px 10px rgba(215, 215, 215, 1) !important;;
    -webkit-box-shadow: 0 5px 10px rgba(215, 215, 215, 1) !important;;
    box-shadow: 0 5px 10px rgba(215, 215, 215, 1) !important;
}

.content
{
    margin: 0 auto;
    width: 100%;
    max-width: 1920px;
}

.footer
{
    width: 100%;
    height: auto;
    color: #9597B4;
    background-color: #212B3A;
}

.narrow
{
    width: 1180px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.wide
{
    width: 1340px;
    height: 100%;
    margin: 0 auto;
}

.flex-center
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flex-between
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Header */
.header-logo
{
    display: inline-block;
    width: 160px;
    height: 40px;
    margin: 6px 50px 6px 0;
    background: url(/website/web/img/common/logo.png) center 0 no-repeat;
    background-size: contain;
}

.header-logo a
{
    display: block;
    width: 100%;
    height: 100%;
}

.header-menu
{
    display: inline-block;
    vertical-align: top;
}

.header-menu-item
{
    display: inline-block;
    position: relative;
    height: 52px;
    padding: 0 20px;
}

.header-menu-item a
{
    font-size: 14px;
    display: block;
    height: 52px;
    line-height: 52px;
    padding: 0 5px;
    color: black;

    /*禁止选中*/
    -moz-user-select: none;/*火狐*/
    -webkit-user-select: none;/*webkit浏览器*/
    -ms-user-select: none;/*IE10*/
    user-select: none;
}

.header-menu-dropdown
{
    display: none;
    position: absolute;
    padding: 10px 0;
    background: white;
    word-break: keep-all;
    left: 50%;
    transform: translateX(-50%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px #D7D7D7;
}

.header-menu-item:hover>a, .header-menu-active>a
{
    color: #007AFF;
    box-sizing: border-box;
    border-bottom: 3px solid #007AFF;
}

.header-menu-item:hover .header-menu-dropdown, .header-menu-item:active .header-menu-dropdown
{
    display: block;
}

.header-menu-dropdown a
{
    height: 36px;
    line-height: 36px;
    padding: 0 42px;
}

.header-menu-dropdown a:hover
{
    color: #007AFF;
    background-color: #F2F8FF;
}

/* Footer */
.footer a
{
    color: #9597B4;
    font-size: 14px;
}

.footer a:hover
{
    color: white;
}

.footer-top
{
    padding: 50px 0 55px;
}

.footer-content
{
    display: inline-block;
    width: 850px;
}

.footer-logo
{
    width: 160px;
    height: 40px;
    background: url(/website/web/img/common/logo.png) center 0 no-repeat;
    background-size: contain;
}

.footer-link
{
    margin: 25px 0;
}

.footer-link span
{
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-right: 20px;
}

.footer-link a
{
    margin: 0 16px;
}

.footer-qrcode
{
    display: inline-block;
}

.footer-qrcode-picture
{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.2s;
}

.footer-qrcode-picture:hover
{
    transform: scale(1.1);
}

.footer-bottom
{
    height: 60px;
    line-height: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-copyright
{
    display: inline-block;
}

.footer-license
{
    display: inline-block;
}

/* Modal */
.modal
{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
}

.modal-dialog
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 18px;
    border-radius: 18px;
}

.modal-header
{
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-close-button
{
    float: right;
    width: 18px;
    height: 18px;
    cursor: pointer;
    background: url(/website/web/img/common/icon-delete.svg) center / contain no-repeat;
}

.modal-body
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-qrcode-content
{
    width: 390px;
    text-align: center;
}

.modal-qrcode-title
{
    font-size: 20px;
    color: #333333;
    margin: 5px 0 15px 0;
}

.modal-qrcode-image
{
    width: 236px;
    height: 236px;
}

.modal-qrcode-text
{
    font-size: 16px;
    margin: 3px 0 10px 0;
}

/* Loading */
.kd_loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.kd_loading .object {
    float: left;
    width: 15px;
    height: 15px;
    background-color: #fff;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 50% 50% 50% 50%
}

.object:nth-child(2n+0) {
    margin-right: 0
}

.kd_loading span:first-child {
    background-color: #2386ee;
    -webkit-animation: YK1UGk-k 1s -.9s ease-in-out infinite;
    animation: YK1UGk-k 1s -.9s ease-in-out infinite
}

.kd_loading span:nth-child(2) {
    background-color: #00ccfe;
    -webkit-animation: YK1UGk-k 1s -.8s ease-in-out infinite;
    animation: YK1UGk-k 1s -.8s ease-in-out infinite
}

.kd_loading span:nth-child(3) {
    background-color: #05c8c8;
    -webkit-animation: YK1UGk-k 1s -.7s ease-in-out infinite;
    animation: YK1UGk-k 1s -.7s ease-in-out infinite
}

.kd_loading span:nth-child(4) {
    background-color: #a06eff;
    -webkit-animation: YK1UGk-k 1s -.6s ease-in-out infinite;
    animation: YK1UGk-k 1s -.6s ease-in-out infinite
}

@-webkit-keyframes YK1UGk-k {
    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes YK1UGk-k {
    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}