add-account.scss 2.83 KB
.add-account-page {
    .add-form {
        margin: 30px 0 80px;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        overflow: hidden;
        box-sizing: border-box;

        li {
            width: 100%;
            height: 86px;
            border-top: 1px solid #e0e0e0;
            margin-left: 30px;
            box-sizing: border-box;
        }

        li:first-child {
            border-top: none;
        }

        label {
            color: #444;
            font-size: 34px;
            float: left;
            line-height: 86px;
        }

        input {
            font-size: 28px;
            height: 40px;
            line-height: 40px;
            color: #b0b0b0;
            float: left;
            border: none;
            background: transparent;
            margin: 23px 0 0 60px;
            width: 380px;
        }

        input::-webkit-input-placeholder {
            color: #e0e0e0;
        }

        input:-moz-placeholder {
            color: #e0e0e0;
        }

        input::-moz-placeholder {
            color: #e0e0e0;
        }

        input:-ms-input-placeholder {
            color: #e0e0e0;
        }

        .notice {
            float: left;
            font-size: 28px;
            color: #444;
            height: auto;
            width: auto;
            margin-top: 25px;
            padding: 2px 10px 10px;
            border-bottom: none;
        }

        .username {
            color: #b0b0b0;
            float: left;
            font-size: 28px;
            width: 410px;
            height: 40px;
            margin: 23px 0 0 60px;
            line-height: 40px;
        }

        .bank-info {
            padding-left: 165px;
            margin-top: 26px;

            img {
                width: 32px;
                height: 32px;
                display: inline-block;
            }

            span {
                line-height: 32px;
                position: absolute;
                margin-left: 10px;
                margin-top: 1px;
            }
        }
    }

    .disabled {
        opacity: 0.5;
    }

    .success {
        display: none;

        .success-icon {
            margin-top: 208px;
        }

        .success-txt {
            text-align: center;
            font-size: 24px;
            color: #444;
            margin-bottom: 90px;
        }
    }

    .error {
        display: none;

        .error-txt1 {
            color: #444;
            font-size: 24px;
        }

        .error-txt2 {
            color: #b0b0b0;
            font-size: 22px;
            line-height: 36px;
            margin: 10px 0 105px;
        }

        .contact-cs {
            width: 100%;
            position: fixed;
            bottom: 45px;
            text-align: center;
            color: #444;
            font-size: 28px;
        }
    }
}