| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* pages/login/login.wxss */
- .container {
- background: #FFFFFF;
- }
- .appInfo {
- display: flex;
- align-items: center;
- flex-direction: column;
- padding-top: 150rpx;
- image {
- width: 148rpx;
- height: 148rpx;
- overflow: hidden;
- }
- .appname {
- padding-top: 46rpx;
- font-weight: 600;
- font-size: 44rpx;
- color: #333333;
- line-height: 60rpx;
- line-height: 56rpx;
- }
- }
- .login-section {
- padding: 128rpx 40rpx 0;
- button {
- width: 100%;
- line-height: 88rpx;
- background: linear-gradient( 90deg, #544F4A 0%, #302F2B 100%);
- border-radius: 44rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #FBEAC9;
- padding-top: 0;
- padding-bottom: 0;
- &[disabled][type=primary] {
- color: #fff;
- background: linear-gradient( 90deg, #544F4A 0%, #302F2B 100%);
- opacity: 0.3;
- }
- }
- .protocol-section {
- position: absolute;
- bottom: 100rpx;
- left: 0;
- width: 100%;
- text-align: center;
- font-size: 26rpx;
- color: #777777;
- line-height: 36rpx;
- .radioSection {
- height: 36rpx;
- display: inlin-flex;
- align-items: center;
- justify-content: center;
- }
- .radio {
- width: 28rpx;
- height: 28rpx;
- margin-right: 12rpx;
- transform: translateY(4rpx)
- }
- .protocol {
- color: #A76D1C;
- }
- }
- }
|