applyAuth.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* pages/register/register.wxss */
  2. page{background-color: #ffffff;}
  3. .reg_top{ padding: 20rpx 58rpx 28rpx 30rpx; border-bottom: 20rpx solid #F8F8F8; display: flex; justify-content: space-between; align-items: center;}
  4. .reg_top_txt{ flex: none;}
  5. .reg_top_txt view{ font-size: 40rpx; color: #333333; line-height: 56rpx;}
  6. .reg_top_txt text{ font-size: 26rpx; color: #999999; line-height: 56rpx; display: block;}
  7. .reg_top image{ flex: none; width: 142rpx; height: 126rpx;}
  8. .reg_form{ padding: 0 24rpx 50rpx 24rpx;}
  9. .reg_form_item{ border-bottom: 1px solid #F5F5F5; line-height: 100rpx; padding: 10rpx 0; display: flex;justify-content: space-between; align-items: center;}
  10. .reg_form_item view{ font-size: 30rpx; font-weight: 500; color: #333333; flex: none;}
  11. .reg_form_item input{ height: 100rpx; padding-left: 20rpx; width: 100%; flex: auto; text-align: right;}
  12. .reg_form_item .cu-btn{ width: 425rpx;}
  13. input.reg_form_code{text-align: center;}
  14. .reg_form_btn{ width: 610rpx; display: block; line-height: 80rpx; margin:100rpx auto auto auto; border-radius: 10rpx;box-shadow: 0 12rpx 18rpx 0 rgba(45, 89, 230, 0.27);}
  15. .reg_form_tip{ font-size: 24rpx; color: #F22424; line-height: 33rpx; margin: 20rpx auto auto auto;}
  16. .reg_form_item picker {
  17. flex: 1;
  18. padding-right: 40rpx;
  19. overflow: hidden;
  20. position: relative;
  21. }
  22. .reg_form_item picker .picker {
  23. line-height: 100rpx;
  24. font-size: 28rpx;
  25. text-overflow: ellipsis;
  26. white-space: nowrap;
  27. overflow: hidden;
  28. width: 100%;
  29. text-align: right;
  30. }
  31. .reg_form_item picker::after {
  32. font-family: "cuIcon";
  33. display: block;
  34. content: "\e6a3";
  35. position: absolute;
  36. font-size: 34rpx;
  37. color: var(--grey);
  38. line-height: 100rpx;
  39. width: 60rpx;
  40. text-align: center;
  41. top: 0;
  42. bottom: 0;
  43. right: -20rpx;
  44. margin: auto;
  45. }