| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- @import "/css/form.wxss";
- /* 根目录按钮样式 */
- .login-custom-class {
- font-size: 42rpx !important;
- font-family: PingFangSC-Medium, PingFang SC !important;
- font-weight: 500;
- line-height: 58rpx;
- box-shadow: 0px 0px 20rpx 0px rgba(0, 0, 0, 0.2);
- }
- /* 输入提示定位 */
- .input_text_tips {
- position: absolute;
- top: 0;
- left: 200rpx;
- transform: translate(0, -63%);
- }
- /* logo */
- .login_logo {
- width: 186rpx;
- height: 160rpx;
- margin: 60rpx auto 0;
- }
- .login_logo>image {
- width: 100%;
- height: 100%;
- }
- /* 按钮 */
- .input_text_but {
- width: 340rpx;
- height: 98rpx;
- margin: 70rpx auto 0;
- border-radius: 49rpx;
- }
- /* 跳过 */
- .jump-over {
- display: flex;
- justify-content: center;
- width: 100vw;
- font-size: 32rpx;
- margin-top: 15rpx;
- color: #000000;
- opacity: .5;
- }
- /* 用户隐私协议 */
- .rules {
- height: 44rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- line-height: 44rpx;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: -15rpx;
- color: #4CBECF;
- margin-bottom: -40rpx;
- }
- .rules .view {
- margin-left: -20rpx;
- }
- .rules text {
- text-decoration: underline;
- }
|