Winglau14-lotusAddress.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .lotus-address-picker {
  2. font-size:30rpx;
  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. z-index: 999;
  67. }
  68. .lotus-address-action {
  69. font-size: 30rpx;
  70. /*display: -webkit-box;
  71. display: -webkit-flex;*/
  72. display: flex;
  73. align-items: center;
  74. justify-content: center;
  75. justify-content: space-between;
  76. padding: 25rpx 30rpx;
  77. position: relative;
  78. }
  79. .lotus-address-action:after {
  80. content: " ";
  81. position: absolute;
  82. left: 0;
  83. top: 0;
  84. right: 0;
  85. height: 1px;
  86. border-top: 1px solid #eee;
  87. color: #eee;
  88. transform-origin: 0 0;
  89. transform: scaleY(0.5);
  90. }
  91. .lotus-address-action:before {
  92. content: " ";
  93. position: absolute;
  94. left: 0;
  95. bottom: 0;
  96. right: 0;
  97. height: 1px;
  98. border-bottom: 1px solid #eee;
  99. color: #eee;
  100. transform-origin: 0 100%;
  101. transform: scaleY(0.5);
  102. }
  103. .lotus-address-action-cancel {
  104. color: #969696;
  105. }
  106. .lotus-address-action-affirm {
  107. color: #e93b3d;
  108. }