/*加载中*/

#bqloading,
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    /*padding-top: 50%;*/
    background: rgb(255, 255, 255);
    z-index: 200;
}

.loading-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 46px;
}

.loading-box>div {
    background: #c5a359;
    height: 20px;
    width: 5px;
    display: inline-block;
    border-radius: 100%;
}

#bqloading p,
#loading p {
    font-size: 14px;
    color: #58606D;
}

.loading-item1 {
    animation: b 1.4s infinite ease-in-out both;
    animation-delay: -.32s;
}

.loading-item2 {
    animation: b 1.4s infinite ease-in-out both;
    animation-delay: -.16s;
}

.loading-item3 {
    animation: b 1.4s infinite ease-in-out both;
}

@-webkit-keyframes b {
    0%,
    80%,
    to {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes b {
    0%,
    80%,
    to {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

#profits-note {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
}

#profits-note>div {
    width: 80%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#profits-note .profits-box {
    position: relative;
}

#profits-note img {
    width: 100%;
}

#profits-note .profits-top {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -38%);
    width: 100%;
    z-index: 10;
}

#profits-note .profits-down {
    position: absolute;
    bottom: 0;
    padding-bottom: 20px;
}

#profits-note .profits-down img.person-img {
    position: relative;
    left: -10px;
    z-index: 5;
}

#profits-note td {
    border: none;
    padding: 0;
    width: 33.333%;
    position: relative;
    text-align: center;
}

#profits-note .profits-box>p {
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(218, 218, 218);
    position: absolute;
    right: -13px;
    top: -13px;
    color: rgb(87, 87, 87);
    line-height: 27px;
    font-size: 20px;
    z-index: 20;
}

#profits-note td button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #fdf4d2;
    color: #b32019;
    border: none;
    outline: none;
    z-index: 10;
    /*background: none;*/
    font-size: 16px;
    padding: 10px 30px;
    white-space: nowrap;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    /*width: 120%;*/
}

@media only screen and (max-width: 320px) {
    #profits-note td button {
        font-size: 14px;
    }
}