1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /***** 这里放页面样式 *****/
- // 登录页 padding-bottom: env(safe-area-inset-bottom); box-sizing: unset;
- .ezy-login-page {
-
- width:100%;height:100vh; background-color: #01a1ff;position: relative;overflow:hidden;
- .ezy-login-wrap{width:100%;height: 1623.08rpx;background-image: url("@/static/images/login/login-bj.jpg");@include ezy-no-repeat-cover(top);}
- .login-body-box{
- display: flex;flex-direction: column;display: flex;box-sizing: border-box;
- position: absolute;top:690rpx;left: 50%;transform: translateX(-50%);
- }
- .login-title-img{
- width: 411rpx;height: 73rpx;@include ezy-no-repeat-cover;margin-right: auto;
- background-image: url("@/static/images/login/login-tel.png");
- }
- .phone-input-box{
- width: 644rpx;height: 144rpx;box-sizing: border-box;padding-bottom: 20rpx;
- display: flex;align-items: center;margin-top: 50rpx;
- background-image: url("@/static/images/login/login-tel-bj.png");@include ezy-no-repeat-cover;
- .phone-prefix {
- width: 90rpx;margin-left:18rpx;font-size: 38rpx;color: #ffffffd9;
- font-weight: normal;display: flex;align-items: center;justify-content: space-between;flex-shrink: 0;
- }
- .phone-prefix::after{content: '';width: 1rpx;height: 40rpx;display: inline-block;background-color: #ffffffd9;}
- .phone-input {font-size: 38rpx;padding: 0 22rpx;box-sizing: border-box;color: #fff;flex: 1;}
- .uni-input-placeholder {font-size: 30rpx;color: #ffffffd9;
- }
- .close-btn{width: 42rpx;height: 42rpx;margin-right: 30rpx;@include ezy-no-repeat-cover;
- background-image: url("@/static/images/login/login-close-icon.png");flex-shrink: 0;}
- }
-
- .agreement-checkbox-box {
- display: flex;justify-content: center;margin-top: 10rpx;;
- .agreement-checkbox {
- .uni-checkbox-wrapper{
- color: #ffffffd9;font-size: 27rpx;line-height: 1.3;
- flex-direction: row;display: flex;
- .uni-checkbox-input{
- width: 40rpx;height: 40rpx;border: 0;background-color: unset;@include ezy-no-repeat-cover;
- background-image: url("@/static/images/login/login-checked-bj.png");margin-right: 4rpx;
- svg {width: 28;height: 28rpx;top: 48%;left: 50%;}
- }
- }
- .agreement-text{color: #e3f524;display: contents;}
- }
- }
-
- .yzm-btn-disabled{
- width: 644rpx;height: 106rpx;margin-top: 84rpx;
- background-color: red;
- @include ezy-no-repeat-cover;
- }
- .yzm-btn-normal{background-image: url("@/static/images/login/login-zym-bj.png");}
- .wx-btn-img{
- width: 96rpx;height: 96rpx;position: absolute;bottom:5%;
- left: 50%;transform:translateX(-50%) ;
- background-image: url("@/static/images/login/login-wx-icon.png");@include ezy-no-repeat-cover;
- }
- /* 针对小屏幕设备 */
- @media (max-height: 700px) {
- .phone-input-box{margin-top: 24rpx;}
- .yzm-btn-img{margin-top: 52rpx;}
- .wx-btn-img{bottom:3%;}
- }
- @media (max-height: 480px) {
- overflow:auto;
- .login-body-box{top:660rpx;}
- .ezy-login-wrap{height: 1400rpx;position: relative;}
- }
- }
-
- .lli-develop-expect-page{
- display: flex;flex-direction: column;justify-content: space-between;align-items: center;
- background-color: blue;position: relative;height:$titleBar-tabBar-page;
- .page-content{
- background-color: #9ed5cf;width: 100%;text-align: center;display: block;
- margin-top: 44px;flex: 1;
- span{
- font-size: 24px;padding: 20px 0;display: block;font-weight: 900;color: #09539a;
- -webkit-text-stroke: 1rpx #fff; /* 文字描边(仅webkit内核浏览器支持) */
- text-stroke: 1rpx #fff; /* 未来可能的标准属性,目前支持有限 */
- text-shadow: 4px 4px 4px rgba(110, 229, 249, 0.5); /* 文字阴影 */
- }
- }
- .bottom-word{position: absolute;bottom: 0;margin-top: 0;}
- }
|