|
- /* pages/login/login.wxss */
- .login_box {
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
- .logo_img {
- width: 180rpx;
- height: 180rpx;
- margin-top: 40rpx;
- }
- .login_main {
- width: 100%;
- margin-top: 40rpx;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .location_label {
- font-size: 34rpx;
- font-weight: bold;
- margin-left: 40rpx;
- }
- .select_container {
- width: 100%;
- height: 82rpx;
- background-color: #fff;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
-
- .login_btn {
- margin-top: 80rpx;
- color: #fff;
- font-weight: normal;
- border-radius: 39rpx;
- background-color: #477DF3;
- }
- .footer {
- margin-top: 100rpx;
- width: 100%;
- padding: 60rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .enter_btn {
- width: 400rpx;
- height: 100rpx;
- border-radius: 50rpx;
- background-color: rgba(6, 138, 58, 0.78);
- color: #fff;
- line-height: 100rpx;
- text-align: center;
- }
|