12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* pages/login_page/index.wxss */
- page {
- width: 100%;
- background: rgb(31,228,220);
- 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%;
- color: #fff;
- }
- .quanxian view{
- color:#fff;
- opacity: 1;
- 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: 30rpx;
- }
- .login_text image{
- width: 240rpx;
- height: 240rpx;
- border-radius:50%;
- }
|