12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /* pages/login/login.wxss */
- .container {
- background: #FFFFFF;
- }
- .appInfo {
- display: flex;
- align-items: center;
- flex-direction: column;
- padding-top: 210rpx;
- image {
- width: 148rpx;
- height: 148rpx;
- border-radius: 32rpx;
- overflow: hidden;
- }
- .appname {
- padding-top: 40rpx;
- font-weight: 600;
- font-size: 44rpx;
- color: #333333;
- line-height: 60rpx;
- }
- }
- .login-section {
- padding-top: 180rpx;
- padding: 180rpx 40rpx 0;
- button {
- width: 100%;
- line-height: 94rpx;
- background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
- box-shadow: 0rpx 14rpx 14rpx 0rpx rgba(0, 0, 0, 0.18);
- border-radius: 30rpx;
- border: 8rpx solid #FFFFFF;
- font-weight: 600;
- font-size: 36rpx;
- color: #FEFFCA;
- padding-top: 0;
- padding-bottom: 0;
- &[disabled][type=primary] {
- color: #FEFFCA;
- background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
- opacity: 0.7;
- }
- }
- .protocol-section {
- padding-top: 80rpx;
- font-size: 26rpx;
- color: #3C3C3C;
- width: 100%;
- text-align: center;
- 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;
- }
- }
- }
|