body {
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
    font-weight: 400;
    background-color: #181818;
    padding: 0;
    margin: 0;
}

.nav {
    padding: 28px 6%;
    font-size: 18px;
    color: #fff;
    display: flex;
    /*background-color: #787878;*/
    justify-content: space-between;
}

.logo {
    width: 140px;
    height: 27px;
}

.action {
    /*display: flex;*/
    /*justify-content: flex-end;*/
}

.action-signup {
    margin-right: 32px;
}

.div {
    color: red;
    font-size: 16px;
}

/* background img*/
.container {
    background-image: url(assets/background.e439b1.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

/* main */
.main {
    display: flex;
    flex-wrap: wrap;
}

.main-left {
    width: 50%;
    display: flex;
    justify-content: center;
    margin-top: 94px;
}

.main-left-text {
    font-size: 16px;
    font-weight: 300;
    color: rgba(237,237,237,1);
    padding: 10px;
}

.main-left-text-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 70px;
    margin-bottom: 20px;

}

.main-left-text-detail {
    padding-top: 20px;
}

.main-right {
    margin-top: 94px;
    width: 50%;
}

.main-right-login {
    display: flex;
    align-content: center;
    justify-content: center;
}

.main-right-login-wrapper {
    width: 70%;
    padding-bottom: 34px;
}

.main-right-login-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: rgba(255,240,240,1);
}

.main-right label {
    margin-bottom: 0.25rem;
    display: block;
    color: #FFFFFF;
    font-size: 10px;
}

.main-right-input-wrapper {
    margin-bottom: 1rem;
}

.main-right-input-wrapper .star {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 87, 51, 1);
    /*margin-right: 4px;*/
}

.main-right-input-wrapper input {
    width: 95%;
    height: 40px;
    opacity: 1;
    border-radius: 4px;
    background: #FFFFFF;
    border: none;
    padding: 0 18px;
}

.main-right-input-wrapper input::-moz-placeholder {
    color: rgba(136, 136, 136, 1);
    font-size: 10px;
    /*padding-left: 18px;*/
}

.main-right-input-wrapper input::placeholder {
    color: rgba(136, 136, 136, 1);
    font-size: 10px;
    /*padding-left: 18px;*/
}

.verify-code-input-wrapper {
    position: relative;
}

.verify-code-input-wrapper button {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 12px;
    border: none;
    background: none;
    height: 16px;
}

.color-1 {
    color: rgba(41, 117, 239, 1);
}

.verify-code-input {
    display: inline-block;
}

.main-right-signup {
    display: flex;
    flex-wrap: wrap;
}

.main-right-signup .signup button {
    border-radius: 4px;
    border: none;
    background: #2E0E7B;
    box-shadow: 5px 5px 5px 0 #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 36px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.main-right-signup .go-login {
    margin-left: 16px;
}

.main-right-signup .go-login button {
    display: flex;
    height: 36px;
    align-items: flex-end;
    border: none;
    color: #FFFFFF;
    background: none;
    font-size: 12px;
    font-weight: 400;
}

.main-right-message {
    margin-top: 16px;
    font-size: 12px;
    color: #DF1125;
}

.main-right-service {
    margin-top: 40px;
    display: flex;
}

.main-right-service .quote {
    margin-left: 24px;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 12px;
}

.main-right-service .quote div:nth-child(2) {
    margin-top: 8px
}

.main-right-service-qrcode {
    height: 80px;
    width: 80px;
}

/* footer */
.footer {
    background-color: #181818;
    padding-top: 88px;
    padding-bottom: 88px;
    padding-left: 17%;
    display: flex;
    justify-content: center;
}

.footer-detail {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
}

.footer-item {
    font-size: 14px;
    font-weight: 500;
    color: rgba(163, 163, 163, 1);
    width: 10%;
    padding: 0 10px;
}

.footer-item .title {
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 20px;
    margin: 16px 0;
    padding: 8px 0;
}

.footer-item p {
    margin: 8px 0;
    line-height: 1.8;
}

.footer-item a {
    text-decoration: none;
    color: inherit;
}

.footer-email {
    font-size: 18px;
    line-height: 1.1;
    font-weight: bold;
    color: #FFFFFF;
}

.footer-qrcode {
    width: 164px;
    height: 164px;
}


/* mobile */
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .main{
        flex-direction: column;
    }
    .main-left {
        width: 100%;
        /*margin-left:6%;*/
    }
    .main-right{
        width: 100%;
    }
    .main-right-input-wrapper input{
        width: 90%;
    }
    .main-right-login-wrapper{
        width: 100%;
        padding: 10px
    }

    .hidden-mobile{
        display: none!important;
    }

    .footer-item{
        width: 100%;
    }
}

/* 弹框 */
.npm-com-toast {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    z-index: 100;
    line-height: 1;
}
.npm-com-toast .mask {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    animation: npm-com-toast-mask-animation 0.3s forwards;
}
.npm-com-toast .mask .box {
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 15px;
    min-width: 200px;
    max-width: 400px;
    min-height: 40px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.65);
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    animation: npm-com-toast-mask-box-animation 0.3s forwards;
}
.npm-com-toast .mask .box .html {
    display: inline-block;
    text-align: center;
}
@keyframes npm-com-toast-mask-box-animation {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}
@keyframes npm-com-toast-mask-animation {
    0% {
        background: rgba(0, 0, 0, 0);
    }

    100% {
        background: rgba(0, 0, 0, 0.1);
    }
}

