Winglau14-lotusAddress.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .lotus-address-picker {
  2. font-size: 26rpx;
  3. padding-top: 30rpx;
  4. overflow: hidden;
  5. text-overflow: ellipsis;
  6. display: -webkit-box;
  7. -webkit-line-clamp: 1;
  8. -webkit-box-orient: vertical;
  9. line-height: normal;
  10. padding-right: 30rpx;
  11. box-sizing: border-box;
  12. }
  13. .lotus-address-picker-box {
  14. /*display: -webkit-box;
  15. display: -webkit-flex;*/
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. justify-content: flex-start;
  20. padding-top: 10rpx;
  21. padding-bottom: 10rpx;
  22. }
  23. .lotus-address-picker-box-item {
  24. height: 600upx;
  25. overflow-y: auto;
  26. width: 33.333%;
  27. padding-left: 20rpx;
  28. padding-right: 20rpx;
  29. box-sizing: border-box;
  30. }
  31. .lotus-address-picker2 {
  32. color: #e93b3d;
  33. position: relative;
  34. }
  35. .lotus-address-picker2:after {
  36. content: '';
  37. position: absolute;
  38. right: 0;
  39. top: 65%;
  40. transform: translateY(-35%) rotate(-45deg);
  41. width: 20rpx;
  42. height: 10rpx;
  43. border-left-width: 4rpx;
  44. border-bottom-width: 4rpx;
  45. border-left-style: solid;
  46. border-bottom-style: solid;
  47. border-left-color: #e93b3d;
  48. border-bottom-color: #e93b3d;
  49. }
  50. .lotus-address-mask {
  51. position: fixed;
  52. left: 0;
  53. top: 0;
  54. width: 100%;
  55. height: 100%;
  56. z-index: 999;
  57. background: rgba(0, 0, 0, 0.5);
  58. }
  59. .lotus-address-box {
  60. background: #fff;
  61. position: absolute;
  62. left: 0;
  63. bottom: 0;
  64. width: 100%;
  65. height: auto;
  66. }
  67. .lotus-address-action {
  68. font-size: 30rpx;
  69. /*display: -webkit-box;
  70. display: -webkit-flex;*/
  71. display: flex;
  72. align-items: center;
  73. justify-content: center;
  74. justify-content: space-between;
  75. padding: 25rpx 30rpx;
  76. position: relative;
  77. }
  78. .lotus-address-action:after {
  79. content: " ";
  80. position: absolute;
  81. left: 0;
  82. top: 0;
  83. right: 0;
  84. height: 1px;
  85. border-top: 1px solid #eee;
  86. color: #eee;
  87. transform-origin: 0 0;
  88. transform: scaleY(0.5);
  89. }
  90. .lotus-address-action:before {
  91. content: " ";
  92. position: absolute;
  93. left: 0;
  94. bottom: 0;
  95. right: 0;
  96. height: 1px;
  97. border-bottom: 1px solid #eee;
  98. color: #eee;
  99. transform-origin: 0 100%;
  100. transform: scaleY(0.5);
  101. }
  102. .lotus-address-action-cancel {
  103. color: #969696;
  104. }
  105. .lotus-address-action-affirm {
  106. color: #e93b3d;
  107. }