| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /* 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;
- justify-content: space-between;
- }
- }
- .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: 0 56rpx 252rpx;
- 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;
- }
- }
- }
|