| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- @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%);
- }
- .firm .input_text_input .password-css {
- width: 300rpx !important;
- }
- .get-password {
- display: flex;
- align-items: center;
- width: 148rpx;
- height: 50rpx;
- line-height: 50rpx;
- font-size: 24rpx;
- color: #69D0DD;
- }
- .get-password>text {
- width: 2rpx;
- height: 26rpx;
- background: #4BBECF;
- margin-right: 18rpx;
- }
- .get-password>view {
- flex: 1;
- text-align: center;
- }
- /* 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;
- }
- /* 用户隐私协议 */
- .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: 25rpx;
- color: #4CBECF;
- margin-bottom: -40rpx;
- }
- .rules .view {
- margin-left: -20rpx;
- }
- .rules text {
- text-decoration: underline;
- }
- .model {
- position: fixed;
- width: 100vw;
- height: 100vh;
- background-color: rgba(0, 0, 0, 0.6);
- top: 0;
- left: 0;
- z-index: 9999;
- }
- .role-selector {
- position: absolute;
- width: 590rpx;
- height: 570rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- }
- .role-selector .title {
- width: 100%;
- height: 50rpx;
- font-size: 36rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 550;
- color: #000000;
- line-height: 50rpx;
- text-align: center;
- margin-top: 40rpx;
- }
- .role-selector .scroll-view {
- width: 510rpx;
- height: 410rpx;
- margin: 30rpx auto 0;
- }
- .user_text_box {
- display: flex;
- align-items: center;
- width: 510rpx;
- height: 100rpx;
- background: rgba(233, 234, 236, 0.7);
- border-radius: 70rpx;
- margin-bottom: 40rpx;
- }
- .user_text_box .input_text_img {
- width: 76rpx;
- height: 76rpx;
- margin-left: 24rpx;
- }
- .text_box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 366rpx;
- height: 64rpx;
- margin-left: 10rpx;
- }
- .user_identity {
- text-align: right;
- flex-shrink: 0;
- width: 130rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #000000;
- opacity: .7;
- }
- .user_name {
- width: 230rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #333333;
- }
- .pitch-on {
- background-color: #7AC9D4;
- }
- .pitch-on .user_name,
- .pitch-on .user_identity {
- color: #FFFFFF;
- }
|