| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /* pages/login_page/index.wxss */
- page {
- width: 100%;
- height: 100%;
- }
- .login_con {
- width: 100%;
- height: 100%;
- position: relative;
- overflow: hidden;
- }
- .needLogin {
- width: 100%;
- height: 100%;
- position: absolute;
- }
- .needLogin image {
- width: 100%;
- height: 100%;
- }
- .btn_login {
- background: #fff;
- line-height: 100rpx;
- color: #2d2d2d;
- border: none;
- position: absolute;
- bottom: 10%;
- margin: 0 10%;
- text-align: center;
- width: 80%;
- }
- .login_text{
- position: absolute;
- top: 15%;
- width: 80%;
- margin: 0 10%;
- text-align: center;
- }
- .login_text view{
- color: #fff;
- letter-spacing: 2rpx;
- }
- .login_text image{
- width: 150rpx;
- height: 150rpx;
- border-radius:50%;
- }
|