html {
    background: #EFF2F9;
}

.disnone {
    display: none !important;
}

.disblock {
    display: flex !important;
}

.active-bule {
    color: #38f !important;
    position: relative;
    transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
}

.active-bule::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #38f;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -30px;
    transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
}

.active-green {
    color: #fff !important;
    background: rgba(34, 170, 0, 1) !important;
}

.pright {
    right: 0 !important;
}

input::placeholder {
    color: #ccc;
}

label {
    margin: 0;
}

/* 针对WebKit内核的浏览器 */
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 针对Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* 弹窗 */
.close {
    font-size: 18px;
    color: #333;
    font-weight: normal;
}

.close:hover {
    color: #5a6268;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #00000033;
}

.modal-dialog {
    width: 600px;
}

.modal-body {
    font-size: 20px;
    text-align: center;
}

/* 顶部导航 */
.top {
    width: 100%;
    border-bottom: 1px solid #ccc;
    position: relative;
    background: #1E62EC;
    padding: 10px 0;
}

.top-box {
    max-width: 1200px;
    margin: auto;
    /* width: 96%; */
    padding: 0 40px;
}

.top-logined {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top-left {
    width: 200px;
}

.top-left img {
    width: 100%;
    height: 100%;
}

.top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

.top-item {
    font-size: 40px;
    color: #fff;
    letter-spacing: 4px;
    cursor: pointer;
}

.top-item a:hover {
    color: #fff;
    text-decoration: none;
}

.top-item a {
    color: #fff;
}

#bowout {
    cursor: pointer;
}

.top-morenav {
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: none;
}

.top-morenav img {
    width: 100%;
    height: 100%;
}

.index_other {
    display: flex;
    justify-content: center;
    align-items: center;
}

.index_other_list {
    font-size: 22px;
    color: #333;
    margin: 0px 40px;
    cursor: pointer;
    position: relative;
    top: 0;
    text-align: center;
}

.index_other_list:hover {
    top: -3px;
    text-shadow: 1px 1px #000;
}

.msg_window {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
}

.msg_window_txt {
    font-size: 18px;
    color: #fff;
    background: #00000099;
    padding: 5px 20px;
    border-radius: 5px;
}

.top-scroll {
    position: relative;
}

.top-scroll img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
}

.top-scroll p {
    font-size: 32px;
    color: #03672D;
    letter-spacing: 12px;
    text-align: center;
    position: relative;
    z-index: 9;
    line-height: 110px;
}

.top_exit {
    font-size: 18px;
    color: #fff;
    margin-left: 10px;
    cursor: pointer;
}

@media screen and (max-width: 1360px) {}

@media screen and (max-width: 1180px) {
    .top-left img {
        width: 50%;
    }
}

@media screen and (max-width: 1040px) {
    .top-item {
        margin: auto 10px;
        font-size: 20px;
    }
}


@media screen and (max-width: 860px) {
    .top {
        padding: 20px 0;
    }

    .top-box {
        margin: 0;
    }

    .top-morenav {
        display: block;
        width: 30px;
        height: 30px;
    }

    .top-left img {
        width: 50%;
    }

    .top-right {
        position: fixed;
        flex-direction: column;
        justify-content: flex-start;
        right: -100%;
        top: 10%;
        height: 100%;
        width: 200px;
        background-color: #fff;
        z-index: 999;
        box-shadow: -5px 5px 5px 2px #f5f5f5;
    }

    .top-logined {
        flex-direction: column;
    }

    .top-item {
        font-size: 18px;
        padding: 20px 20px;
        margin: 0;
    }

    .index_other_list {
        margin: 0 20px;
        font-size: 18px;
    }
}

@media screen and (max-width: 580px) {
    .top {
        padding: 20px 0;
    }

    .index_other {
        flex-wrap: wrap;
    }

    .index_other_list {
        margin: 10px;
        font-size: 16px;
        width: 33%;
    }
}

@media screen and (max-width: 460px) {
    .top-morenav {
        width: 20px;
        height: 20px;
    }

    .top-box {
        padding: 0 10px;
        width: calc(100% - 20px);
    }
}


/* 底部 */
.footer {
    background: #1E62EC;
    padding: 40px 0;
}

.footer-box {
    max-width: 1200px;
    margin: auto;
}

.footer-item-left {
    margin-right: 20px;
}

.footer-item-left-img img {
    width: 120px;
    height: 120px;
    margin-right: 10px;
}

.footer-item-left-imgt img {
    width: 80px;
    height: 105px;
    margin-right: 10px;
}

.footer-item-left-text {
    font-size: 18px;
    color: #fff;
    line-height: 2;
    opacity: .8;
}

.footer-item-right-text {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    width: 200px;
    opacity: .8;
}

.footer-item-right p {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    opacity: .8;
}



/* 支付弹窗 */
.qrcode_disnone {
    display: none !important;
}

.project_qrcode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000066;
}

.project_qrcode_content {
    padding: 40px 80px;
    background: #fff;
    border-radius: 10px;
    position: relative;
}

.project_qrcode_close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

.project_qrcode_content_text {
    text-align: center;
    color: #05C160;
}

.project_qrcode_content_text h3 {
    font-size: 34px;
    line-height: 2;
}

.project_qrcode_content_text p {
    font-size: 20px;
    line-height: 1.6;
}

.project_qrcode_content_img {
    width: 200px;
    height: 200px;
    margin-top: 40px;
}

.project_qrcode_content_img img {
    width: 100%;
    height: 100%;
}

#goexit:hover {
    color: #78ffb1;
}

/* 弹窗 */
.msg_window {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

.msg_window_txt {
    font-size: 18px;
    color: #fff;
    background: #00000099;
    padding: 5px 20px;
    border-radius: 5px;
}

/* 弹窗 */