binding-phone.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* pages/binding-phone/binding-phone.wxss */
  2. page {
  3. background: #f4f4f4;
  4. }
  5. .binding-phone {
  6. height: 100%;
  7. margin-top: 20rpx;
  8. background: #fff;
  9. }
  10. .binding-phone .item {
  11. display: flex;
  12. padding: 20rpx 0;
  13. height: 60rpx;
  14. line-height: 60rpx;
  15. border-bottom: 2rpx solid #e1e1e1;
  16. }
  17. .binding-phone .item:last-child {
  18. border: none;
  19. }
  20. .binding-phone .item input {
  21. flex: 1;
  22. height: auto;
  23. padding: 0 20rpx;
  24. font-size: 28rpx;
  25. }
  26. .binding-phone .item .item-tip {
  27. width: 140rpx;
  28. font-size: 28rpx;
  29. padding-left: 20rpx;
  30. }
  31. .binding-phone .item .get-code {
  32. font-size: 30rpx;
  33. color: #999;
  34. margin-right: 20rpx;
  35. text-align: center;
  36. }
  37. .binding-phone .item .get-code.gray {
  38. color: #3eb370;
  39. }
  40. .btn-box {
  41. padding: 0 20rpx;
  42. margin-top: 60rpx;
  43. }
  44. .btn-box .sure-btn {
  45. display: block;
  46. font-size: 32rpx;
  47. color: #fff;
  48. background: #3eb370;
  49. width: 100%;
  50. margin: auto;
  51. text-align: center;
  52. padding: 20rpx 0;
  53. border-radius: 50rpx;
  54. }
  55. .btn-box .sure-btn.gray {
  56. background: #e1e1e1;
  57. margin-bottom: 30rpx;
  58. }