index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. /* crmeb颜色变量 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .address-window.data-v-9b690cc8 {
  28. background-color: #fff;
  29. position: fixed;
  30. bottom: 0;
  31. left: 0;
  32. width: 100%;
  33. z-index: 1000;
  34. -webkit-transform: translate3d(0, 100%, 0);
  35. transform: translate3d(0, 100%, 0);
  36. transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  37. }
  38. .address-window.on.data-v-9b690cc8 {
  39. -webkit-transform: translate3d(0, 0, 0);
  40. transform: translate3d(0, 0, 0);
  41. }
  42. .address-window .title.data-v-9b690cc8 {
  43. font-size: 32rpx;
  44. font-weight: bold;
  45. text-align: center;
  46. height: 123rpx;
  47. line-height: 123rpx;
  48. position: relative;
  49. }
  50. .address-window .title .iconfont.data-v-9b690cc8 {
  51. position: absolute;
  52. right: 30rpx;
  53. color: #8a8a8a;
  54. font-size: 35rpx;
  55. }
  56. .address-window .list .item.data-v-9b690cc8 {
  57. margin-left: 30rpx;
  58. padding-right: 30rpx;
  59. border-bottom: 1px solid #eee;
  60. height: 129rpx;
  61. font-size: 25rpx;
  62. color: #333;
  63. }
  64. .address-window .list .item .iconfont.data-v-9b690cc8 {
  65. font-size: 37rpx;
  66. color: #2c2c2c;
  67. }
  68. .address-window .list .item .iconfont.icon-complete.data-v-9b690cc8 {
  69. font-size: 30rpx;
  70. color: #fff;
  71. }
  72. .address-window .list .item .address.data-v-9b690cc8 {
  73. width: 560rpx;
  74. }
  75. .address-window .list .item .address .name.data-v-9b690cc8 {
  76. font-size: 28rpx;
  77. font-weight: bold;
  78. color: #282828;
  79. margin-bottom: 4rpx;
  80. }
  81. .address-window .list .item .address .name .phone.data-v-9b690cc8 {
  82. margin-left: 18rpx;
  83. }
  84. .address-window .addressBnt.data-v-9b690cc8 {
  85. font-size: 30rpx;
  86. font-weight: bold;
  87. color: #fff;
  88. width: 690rpx;
  89. height: 86rpx;
  90. border-radius: 43rpx;
  91. text-align: center;
  92. line-height: 86rpx;
  93. margin: 85rpx auto;
  94. }
  95. .address-window .pictrue.data-v-9b690cc8 {
  96. width: 414rpx;
  97. height: 336rpx;
  98. margin: 0 auto;
  99. }
  100. .address-window .pictrue image.data-v-9b690cc8 {
  101. width: 100%;
  102. height: 100%;
  103. }