1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* pages/login/login.wxss */
- .container {
- background: #FFFFFF;
- position: relative;
- }
- .appBg{
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 368rpx;
- background: linear-gradient( 180deg, #76EE12 0%, #FFFFFF 100%);
- opacity: 0.5;
- z-index: 1;
- }
- .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: 24rpx;
- width: 248rpx;
- height: 43rpx;
- }
- }
- .login-section {
- padding: 200rpx 60rpx 0;
- button {
- width: 100%;
- line-height: 88rpx;
- background: url(https://oss.dayaedu.com/ktyq/1738898417485.png) no-repeat;
- background-size: 100% 100%;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- padding-top: 0;
- padding-bottom: 0;
- border-radius: 78rpx;
- &[disabled][type=primary] {
- color: #fff;
- opacity: 0.7;
- }
- }
- .protocol-section {
- width: 100%;
- text-align: center;
- font-size: 26rpx;
- padding-top: 80rpx;
- color: #999999;
- 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: #0AAF20;
- }
- }
- }
|