| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /* 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 {
- padding-top: 44rpx;
- 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;
- }
- }
- }
|