123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* pages/login/login.wxss */
- page {
- background: #F5F5F5;
- }
- .layout {
- margin: 100rpx 80rpx 0;
- }
- image {
- width: 140rpx;
- height: 140rpx;
- }
- .title {
- display: block;
- font-size: 52rpx;
- margin-top: 14px;
- color: #323233;
- margin-bottom: 2px;
- }
- .hide {
- position: absolute !important;
- z-index: -111111111;
- left: -9999999px;
- top: -9999999px;
- }
- .desc {
- color: #646566;
- line-height: 40rpx;
- font-size: 28rpx;
- padding-bottom: 30rpx;
- }
- view:not(.layout) {
- border-bottom: 1px solid #E8E8E8;
- position: relative;
- }
- view:not(.layout) image {
- position: absolute;
- top: 50%;
- right: 16rpx;
- transform: translateY(-50%);
- width: 32rpx;
- height: 32rpx;
- }
- input {
- padding: 28rpx 16rpx;
- font-size: 28rpx;
- margin-top: 20rpx;
- color: #323233;
- width: 80%;
- }
- .btn {
- margin-top: 100rpx;
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- font-size: 14px;
- color: #fff;
- background: rgba(38, 85, 155, 0.5);
- border-radius: 4px;
- }
- .success {
- background-color: #26559B;
- }
|