index.wxss 781 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .content {
  2. width: 100%;
  3. height: auto;
  4. padding: 0 50rpx;
  5. box-sizing: border-box;
  6. }
  7. .phone-box {
  8. width: 100%;
  9. height: 89rpx;
  10. border-bottom: 1rpx solid #efefef;
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: flex-start;
  14. align-items: center;
  15. }
  16. .phone {
  17. color: #333;
  18. margin-right: 60rpx;
  19. font-size: 28rpx;
  20. }
  21. .number {
  22. color: #333;
  23. font-size: 28rpx;
  24. width: 200rpx;
  25. }
  26. .getNum {
  27. width: 210rpx;
  28. height: 48rpx;
  29. background: #f87039;
  30. border-radius: 8rpx;
  31. font-size: 28rpx;
  32. font-family: PingFang-SC-Medium;
  33. color: #ffffff;
  34. line-height: 48rpx;
  35. margin-right: 36rpx;
  36. text-align: center;
  37. }
  38. .submit {
  39. width: 480rpx;
  40. height: 80rpx;
  41. background: #f87039;
  42. border-radius: 8rpx;
  43. margin-top: 80rpx;
  44. color: #fff;
  45. font-size: 32rpx;
  46. }