| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- .sign-page{
- min-height: 100vh;
- background: #F5F7FB;
- .view-wrap{
- padding-top: 34rpx;
- padding-bottom: 60rpx;
- }
- .card{
- padding: 26rpx 30rpx 20rpx;
- background-color: #fff;
- margin: 0 35rpx;
- border-radius: 20rpx;
- box-shadow: 0 0 8rpx 0 rgba(144,144,144,.1);
- }
-
- .form-item{
- padding-bottom: 30rpx;
- .form-item__title{
- display: flex;
- align-items: center;
- height: 68rpx;
- .name{
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #212121;
- }
- .extra{
- margin-left: auto;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #79A9CE;
- }
- }
- .form-item__input__wrap{
- .form-item__input{
- display: flex;
- height: 80rpx;
- background: #F5F7FB;
- border-radius: 10rpx;
- .input{
- flex: 1;
- height: 100%;
- padding-left: 10px;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #000;
- }
- .icon{
- align-self: center;
- margin-right: 10px;
- }
- .input-placeholder{
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #B8BBBF;
- }
- }
- }
- }
-
- .inlne-button-wrap{
- padding-right: 15rpx;
- padding-left: 15rpx;
- align-self: center;
- .button{
- padding: 10rpx 20rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #79A9CE;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FEFEFE;
- border-radius: 10rpx;
- &.button-hover{
- position: relative;
- top: 3px;
- }
- }
- }
-
- .button-wrap{
- padding-top: 30rpx;
- }
- .sing-btn{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 300rpx;
- height: 80rpx;
- background: #79A9CE;
- border-radius: 10rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FEFEFE;
- &.button-hover{
- position: relative;
- top: 3px;
- }
- }
-
- .tip-btn{
- position: relative;
- top: -6rpx;
- text-align: right;
- min-width: 178rpx;
- padding-right: 10rpx;
- flex-shrink: 0;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: $u-primary;
- &.disable{
- color: #999;
- }
- }
- }
|