addcustomer.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* pages/customermanage/addcustomer.wxss */
  2. .customer-add {
  3. border-top: 1rpx solid #eee;
  4. }
  5. .customer-add .h1 {
  6. font-size: 48rpx;
  7. color: rgba(0, 145, 255, 1);
  8. margin: 100rpx 0;
  9. }
  10. .customer-add .cell {
  11. height: 100rpx;
  12. line-height: 100rpx;
  13. border-bottom: 2rpx solid rgba(224, 225, 227, 0.3);
  14. padding: 0;
  15. display: flex;
  16. align-items: center;
  17. font-size: 24rpx;
  18. font-weight: 400;
  19. color: rgba(66, 70, 86, 1);
  20. position: relative;
  21. }
  22. .customer-add input {
  23. height: 80rpx;
  24. width: calc(100% - 140rpx);
  25. padding: 0;
  26. font-size: 28rpx;
  27. }
  28. .customer-add .cell .code {
  29. border-left: none;
  30. position: absolute;
  31. right: 0;
  32. font-size: 24rpx;
  33. font-weight: 400;
  34. color: rgba(117, 217, 255, 1);
  35. }
  36. .customer-add .tips {
  37. height: 148rpx;
  38. background: rgba(249, 250, 252, 1);
  39. border-radius: 16rpx;
  40. border: 2rpx solid rgba(241, 241, 241, 1);
  41. padding: 40rpx;
  42. margin-top: 60rpx;
  43. }
  44. .customer-add .tips text {
  45. display: block;
  46. font-size: 28rpx;
  47. color: rgba(104, 107, 120, 1);
  48. line-height: 40rpx;
  49. margin-bottom: 10rpx;
  50. }
  51. .customer-add .tips .q {
  52. color: rgba(0, 145, 255, 1);
  53. }
  54. .customer-add button {
  55. margin-top: 140rpx;
  56. }
  57. /* 定制弹窗样式 */
  58. .customer-popup .scc-popup-box view {
  59. display: flex;
  60. justify-content: flex-start;
  61. padding: 0 30px;
  62. text-align: left;
  63. }