123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /* pages/login_page/index.wxss */
- page {
- width: 100%;
- background: #1fe4dc;
- height: 100%;
- overflow: hidden;
- }
- .login_con {
- width: 100%;
- height: 100%;
- position: relative;
- overflow: hidden;
- }
- .needLogin {
- width: 100%;
- height: 100%;
- position: absolute;
- }
- .needLogin image {
- width: 100%;
- height: 100%;
- }
- .quanxian{
- position: absolute;
- font-size: 30rpx;
- border: none;
- bottom: 20%;
- margin: 0 10%;
- text-align: center;
- width: 80%;
- }
- .quanxian view{
- color:404040;
- opacity: 0.6;
- font-size: 28rpx;
- }
- .quanxian view:first-of-type{
- margin-bottom: 10rpx;
- }
- .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: #404040;
- letter-spacing: 2rpx;
- margin-top: 20rpx;
- }
- .login_text view:last-of-type{
- margin-top: 30rpx;
- font-size: 40rpx;
- }
- .login_text image{
- width: 240rpx;
- height: 240rpx;
- border-radius:50%;
- }
|