MapSelect.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .common-map-select.data-v-7956592f {
  28. background: #fff;
  29. position: absolute;
  30. width: 100%;
  31. height: 100%;
  32. }
  33. .common-map-select .search-wrap.data-v-7956592f {
  34. height: 2rem;
  35. line-height: 2rem;
  36. position: relative;
  37. position: absolute;
  38. left: .5rem;
  39. top: 0.6rem;
  40. right: 0.6rem;
  41. background: #F5F5F5;
  42. display: flex;
  43. border-radius: .4rem;
  44. overflow: hidden;
  45. }
  46. .common-map-select .search-wrap input.data-v-7956592f {
  47. width: 100%;
  48. height: 2rem;
  49. line-height: 2rem;
  50. font-size: 0.8rem;
  51. display: block;
  52. background: none;
  53. border: 0;
  54. flex: 1;
  55. }
  56. .common-map-select .search-wrap .i.data-v-7956592f {
  57. font-size: 0.9rem;
  58. line-height: 2rem;
  59. display: block;
  60. width: 2rem;
  61. text-align: center;
  62. }
  63. .common-map-select .search-wrap .btn.data-v-7956592f {
  64. background: #FB2630;
  65. color: #fff;
  66. font-size: 0.7rem;
  67. padding: 0 .5rem;
  68. }
  69. .common-map-select .result-list.data-v-7956592f {
  70. overflow-y: auto;
  71. position: absolute;
  72. top: 3rem;
  73. bottom: 0rem;
  74. width: 100%;
  75. }
  76. .common-map-select .result-list .notice.data-v-7956592f {
  77. display: none;
  78. padding: 1rem 0.6rem 0 0.6rem;
  79. font-size: 0.7rem;
  80. color: #aeaeae;
  81. line-height: 1.5;
  82. }
  83. .common-map-select .result-list .reset.data-v-7956592f {
  84. float: right;
  85. color: #FB2630;
  86. }
  87. .common-map-select .result-list .current .notice.data-v-7956592f, .common-map-select .result-list .nearby .notice.data-v-7956592f {
  88. display: block;
  89. }
  90. .common-map-select .result-list .current.data-v-7956592f {
  91. box-shadow: 0px 4px 4px #f7f7f7;
  92. }
  93. .common-map-select .result-list .result-item.data-v-7956592f {
  94. padding: .7rem 0;
  95. font-size: 0.8rem;
  96. color: #333;
  97. border-bottom: 1px dashed #eee;
  98. margin: 0 0.6rem;
  99. }