body {
    font-size: 1em;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
        "Microsoft YaHei", Noto Sans, Ubuntu, Droid Sans, Helvetica Neue,
        sans-serif;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    height: 100vh;
    /* background: url("../images/bj.jpg") center center no-repeat; */
    background-size: cover;
    background-attachment: fixed;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#bj {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}

.content .main {
    width: 90%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

.content .main .title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #ffffff;
    padding: 0px 0px 10px 0px;
}

.content .main .deputy-title{
    text-align: center;
    font-size: 1em;
    color: #ffffff;
    padding: 0px 0px 30px 0px;
}

.content .bottom-tips{
    text-align: center;
    font-size: 1em;
    color: #ffffff;
    position: absolute;
    bottom: 50px;
    flex: 1;
}

.content .main .container {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}
.content .main .container .min-title {
    text-align: left;
    font-size: 1.2em;
    font-weight: 700;
    color: #ffffff;
    margin: 10px;
}
.content .main .container .input {
    display: flex;
    margin: 20px 10px;
}
.content .main .container .input input {
    color: #333;
    border: none;
    border-radius: 5px;
    height: 50px;
    flex: 1;
    padding-left: 10px;
    font-size: 0.8em;
}

.content .main .container #submit {
    color: #ffffff;
    border-radius: 5px;
    font-size: 1.2em;
    background: #3c9cff;
    text-align: center;
    line-height: 2.2em;
    margin: 20px 10px;
}

.content .popup {
    display: none;
    width: 90%;
    background-color: #ffffff;
    position: fixed;
    border-radius: 10px;
    /* display: flex; */
    flex-direction: column;
    z-index: 101;
}

.content .popup .main-p {
    margin: 0px 5%;
}

.content .popup .title {
    text-align: center;
    color: #666;
    font-size: 1.5em;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding: 20px;
    /* margin-bottom: 10px; */
}

.content .popup .main-p .good {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.content .popup .main-p .good-border-none {
    border: none !important;
}

.content .popup .main-p .good .label,
.content .popup .main-p .good-copy .left .label {
    margin-bottom: 5px;
}

.content .popup .main-p .good .value,
.content .popup .main-p .good-copy .left .value {
    color: #ccc;
}

.content .popup .main-p .good-copy {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
}

.content .popup .main-p .good-copy .left {
    flex: 9;
}

.content .popup .main-p .good-copy .right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .popup .main-p .good-copy .right span {
    background-color: #3c9cff;
    padding: 5px 10px;
    color: #ffffff;
    border-radius: 3px;
}

.content .popup .close {
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    color: red;
}

#loadingAnimation {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
