addAddress.less 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. font-weight: 600;
  39. font-size: 28rpx;
  40. color: #666666;
  41. line-height: 40rpx;
  42. position: relative;
  43. }
  44. .fromIpt {
  45. .van-field {
  46. padding: 0;
  47. --cell-line-height: 80rpx;
  48. .van-cell__right-icon {
  49. color: #cccccc;
  50. }
  51. }
  52. .van-field__body {
  53. .van-field__control {
  54. color: #000000;
  55. font-weight: 400;
  56. font-size: 28rpx;
  57. }
  58. }
  59. }
  60. }
  61. }
  62. .closeBtn {
  63. right: 26rpx;
  64. top: 30rpx;
  65. position: absolute;
  66. width: 80rpx;
  67. height: 80rpx;
  68. background: url("https://oss.dayaedu.com/ktyq/1739246513167.png") no-repeat;
  69. background-size: 52rpx 52rpx;
  70. background-position: center center;
  71. }
  72. .subBtn {
  73. margin-top: 100rpx;
  74. font-weight: 600;
  75. font-size: 32rpx;
  76. color: #FFFFFF;
  77. line-height: 88rpx;
  78. text-align: center;
  79. background: url("https://oss.dayaedu.com/ktyq/1738898417485.png") no-repeat;
  80. background-size: 100% 100%;
  81. }
  82. }
  83. }