back-email-new.page.scss 1.86 KB
@mixin padding-75 {
    padding-left: 75px;
    padding-right: 75px;
}

$top-bar-font-color: #444;
$disable-gray: #b0b0b0;

.back-email-new-page {
    @include padding-75;

    .active {
        background-color: #444 !important;
    }

    .hide {
        display: none;
    }

    .iconfont {
        color: #444;
    }

    .top-operation-bar {
        width: 600px;
        height: 50px;
        margin-top: 50px;
        color: $top-bar-font-color;

        > button {
            width: 50px;
            background-color: transparent;
            font-size: 45px;
            overflow: hidden;
            padding: 0;
            text-align: center;

            &.back {
                float: left;
            }

            &.close {
                float: right;
            }
        }

        > .page-title {
            width: 500px;
            font-size: 34px;
            text-align: center;
            display: inline-block;
            margin-top: 7px;
        }
    }

    .back-email-form {
        margin-top: 100px;

        > .form-group {
            border-bottom: 1px solid #e0e0e0;
            height: 50px;
            margin-bottom: 56px;

            > label {
                font-size: 26px;
                margin-right: 36px;
            }

            > input {
                width: 400px;
                border: none;
                box-shadow: none;
                background-color: transparent;
            }

            > i {
                float: right;
            }

            &.email > .clear {
                color: #e0e0e0;
                margin-right: 8px;
            }
        }

        .back-email-reset-btn {
            width: 600px;
            height: 70px;
            border-radius: 4px;
            background-color: $disable-gray;
            margin-top: 100px;
            font-size: 32px;
            color: #fff;
        }
    }
}