|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /* pages/mobileVerification/mobileVerification.wxss */
- image{
- display: block;
- }
- view{
- -webkit-overflow-scrolling: touch;
- }
- .main{
- height: calc(100vh - 120rpx);
- overflow: auto;
- }
- .bg {
- position: fixed;
- top: 0;
- left: 0;
- width: 750rpx;
- height: 1111rpx;
- }
- .msgFrame{
- position: absolute;
- left: 0;
- bottom: 120rpx;
- width: 750rpx;
- padding: 30rpx 20rpx;
- background-color: white;
- box-sizing: border-box;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
- }
- .mobilepagelogo{
- width: 50rpx;
- height: 50rpx;
- }
- .titleGroup{
- display: flex;
- align-items: center;
- }
- .goodsName{
- margin-left: 5rpx;
- font-size:30rpx;
- line-height: 30rpx;
- font-family:PingFangSC;
- font-weight:bold;
- color:rgba(30,27,28,1);
- }
- .goodsText{
- margin-left: 24rpx;
- font-size:24rpx;
- line-height: 24rpx;
- font-family:PingFangSC;
- font-weight:400;
- color:rgba(30,27,28,1);
- }
- .inputFrame{
- margin-top: 30rpx;
- }
- .mobileFirst{
- font-size:32rpx;
- line-height: 32rpx;
- font-family:NissanBrand;
- font-weight:300;
- color:rgba(30,27,28,1);
- }
- .inputGroup{
- display: flex;
- align-items: center;
- padding: 0 22rpx;
- box-sizing: border-box;
- background-color: #F0EDF1;
- border: 1rpx solid #DEDBDE;
- height: 70rpx;
- border-radius: 20rpx;
- }
- .mobilepagedown{
- width: 21rpx;
- height: 11rpx;
- margin-left: 17rpx;
- margin-right: 55rpx;
- }
- .inputText{
- width: 500rpx;
- line-height: 26rpx;
- font-size:26rpx;
- font-family:PingFangSC;
- font-weight:400;
- color:black;
- }
- .codeSty{
- width:162rpx;
- height:50rpx;
- background-color: #345482;
- border-radius: 20rpx;
- line-height: 50rpx;
- text-align: center;
- font-size:26rpx;
- font-family:PingFangSC;
- font-weight:400;
- color:rgba(255,255,255,1);
- }
- .submitBtn{
- width:711rpx;
- height:70rpx;
- }
- .agreementGroup{
- display: flex;
- align-items: center;
- margin-top: 35rpx;
- margin-bottom: 60rpx;
- }
- .agreeIcon{
- width: 29rpx;
- height: 28rpx;
- margin-right: 17rpx;
- }
- .agreementText{
- line-height: 24rpx;
- font-size:24rpx;
- font-family:PingFangSC;
- font-weight:300;
- color:rgba(156,157,157,1);
- display: flex;
- align-items: center;
- }
- .getMobileBtn{
- position: absolute;
- left: 0;
- top: 0;
- z-index: 2;
- opacity: 0;
- }
- .starRule{
- width: 81rpx;
- height: 81rpx;
- position: fixed;
- right: 29rpx;
- top: 175rpx;
- }
|