| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* pages/login/login.wxss */
- .container {
- background: #FFFFFF;
- height: 100vh;
- position: relative;
- display: flex;
- flex-direction: column;
- .containerBox {
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- }
- }
- .appInfo {
- position: relative;
- z-index: 2;
- display: flex;
- align-items: center;
- flex-direction: column;
- padding-top: 180rpx;
- .appImg {
- width: 160rpx;
- height: 160rpx;
- }
- .appname {
- margin-top: 50rpx;
- font-weight: 600;
- font-size: 40rpx;
- color: #000000;
- line-height: 56rpx;
- }
- }
- .login-section {
- margin: 180rpx 56rpx 0;
- button {
- width: 100%;
- line-height: 84rpx;
- background: url(https://oss.dayaedu.com/ktyq/1739519619501.png) no-repeat;
- background-size: 100% 100%;
- font-weight: 600;
- font-size: 32rpx;
- color: #FFFFFF;
- padding-top: 0;
- padding-bottom: 0;
- border-radius: 78rpx;
- &[disabled][type=primary] {
- color: #fff;
- opacity: 0.4;
- }
- }
- .protocol-section {
- width: 100%;
- text-align: center;
- font-size: 26rpx;
- padding-top: 50rpx;
- color: #999999;
- line-height: 36rpx;
- .radioSection {
- height: 36rpx;
- display: inlin-flex;
- align-items: center;
- justify-content: center;
- }
- .radio {
- width: 32rpx;
- height: 32rpx;
- margin-right: 12rpx;
- transform: translateY(6rpx)
- }
- .protocol {
- color: #FE462E;
- }
- }
- }
|