| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- /* pages/login/login.wxss */
- page {
- height: 100%;
- }
- .container {
- height: 100%;
- padding-top: 282rpx;
- position: relative;
- box-sizing: border-box;
- }
- .container-top {
- width: 750rpx;
- height: 406rpx;
- position: fixed;
- left: 0;
- top: 0;
- z-index: -1;
- }
- .container-top image {
- height: 407rpx;
- width: 628rpx;
- position: absolute;
- right: 0;
- top: 0;
- }
- .content {
- padding: 0 64rpx;
- }
- .logo image {
- width: 140rpx;
- height: 78rpx;
- margin-left: 2rpx;
- }
- .title {
- font-size: 48rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #000000;
- margin: 20rpx 0;
- }
- .content-main-input {
- width: 622rpx;
- height: 104rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- background: #ffffff;
- border-bottom: 1rpx solid #e8e8e8;
- margin-bottom: 40rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .content-main-input text {
- font-size: 26rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #096dd9;
- }
- text.color {
- color: rgba(0, 0, 0, 0.25);
- }
- .placeholder-class {
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.25);
- }
- .tips {
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- display: flex;
- align-items: center;
- }
- .tips text {
- color: #096dd9;
- }
- .checkbox {
- width: 24rpx;
- height: 24rpx;
- border-radius: 4rpx;
- border: 2rpx solid #8c8c8c;
- margin-right: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .checked {
- width: 14rpx;
- height: 14rpx;
- background: #1890ff;
- border-radius: 2rpx;
- }
- .container-bottom {
- width: 750rpx;
- height: 529rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: -1;
- }
- .container-bottom image {
- height: 100%;
- width: 100%;
- }
- .bottom {
- width: 100%;
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.45);
- position: absolute;
- left: 0;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- margin-bottom: 91rpx;
- }
- .bottom .button {
- width: 622rpx;
- height: 102rpx;
- border-radius: 18rpx;
- line-height: 102rpx;
- text-align: center;
- background: #d9d9d9;
- font-size: 38rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #ffffff;
- margin-bottom: 20rpx;
- }
- .bottom .button-login {
- background: #1890ff;
- }
|