addAddress.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. .popup-section {
  2. .popup-mask {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. background-color: rgba(0, 0, 0, 0.6);
  9. z-index: 99999;
  10. }
  11. .popup-container {
  12. position: fixed;
  13. left: 0;
  14. right: 0;
  15. top: 50%;
  16. transform: translateY(-50%);
  17. z-index: 999999;
  18. margin: 0 40rpx;
  19. padding: 40rpx;
  20. background: #FFFFFF;
  21. border-radius: 32rpx;
  22. .tit {
  23. font-weight: 600;
  24. font-size: 34rpx;
  25. color: #131415;
  26. line-height: 44rpx;
  27. text-align: center;
  28. }
  29. .fromBox {
  30. margin-top: 30rpx;
  31. .fromCon {
  32. display: flex;
  33. align-items: center;
  34. justify-content: space-between;
  35. padding: 16rpx 0;
  36. border-bottom: 2rpx solid #F2F2F2;
  37. .fromTit {
  38. flex-shrink: 0;
  39. font-weight: 600;
  40. font-size: 28rpx;
  41. color: #666666;
  42. line-height: 40rpx;
  43. position: relative;
  44. }
  45. .fromIpt {
  46. margin-left: 20rpx;
  47. flex-grow: 1;
  48. .van-field {
  49. padding: 0;
  50. --cell-line-height: 80rpx;
  51. .van-cell__right-icon {
  52. color: #cccccc;
  53. }
  54. }
  55. .van-field__body {
  56. .van-field__control {
  57. color: #000000;
  58. font-weight: 400;
  59. font-size: 28rpx;
  60. }
  61. }
  62. }
  63. }
  64. }
  65. .closeBtn {
  66. right: 26rpx;
  67. top: 30rpx;
  68. position: absolute;
  69. width: 80rpx;
  70. height: 80rpx;
  71. background: url("https://oss.dayaedu.com/ktyq/1739246513167.png") no-repeat;
  72. background-size: 52rpx 52rpx;
  73. background-position: center center;
  74. }
  75. .subBtn {
  76. margin-top: 100rpx;
  77. font-weight: 600;
  78. font-size: 32rpx;
  79. color: #FFFFFF;
  80. line-height: 88rpx;
  81. text-align: center;
  82. background: url("https://oss.dayaedu.com/ktyq/1738898417485.png") no-repeat;
  83. background-size: 100% 100%;
  84. }
  85. }
  86. }