index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .community-box {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. }
  7. .community-content {
  8. width: 620rpx;
  9. background: #fff;
  10. border-radius: 10rpx;
  11. position: relative;
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. justify-content: flex-start;
  16. margin: 30px auto;
  17. overflow: hidden;
  18. z-index: 1001;
  19. }
  20. .community-content-title {
  21. position: relative;
  22. font-size: 30rpx;
  23. width: 100%;
  24. box-sizing: border-box;
  25. text-align: center;
  26. padding: 20rpx;
  27. }
  28. .community-content-change {
  29. color: #44abf7;
  30. margin-left: 15rpx;
  31. }
  32. .community-content-tip {
  33. color: #666;
  34. font-size: 32rpx;
  35. line-height: 1.6;
  36. padding: 20rpx;
  37. }
  38. .community-content-tip .item {
  39. border: 1rpx solid #ccc;
  40. padding: 10rpx;
  41. margin-bottom: 20rpx;
  42. border-radius: 10rpx;
  43. }
  44. .community-content-tip .item-l {
  45. min-width: 110rpx;
  46. max-width: 150rpx;
  47. text-align: center;
  48. }
  49. .community-content-tip .item-l .type {
  50. font-size: 24rpx;
  51. background-color: #f75451;
  52. color: #fff;
  53. border-radius: 3px;
  54. padding: 3rpx 5rpx;
  55. }
  56. .community-content-tip .item-l .type.green {
  57. background-color: green;
  58. }
  59. .community-content-tip .item-r {
  60. flex: 1;
  61. margin-left: 5px;
  62. }
  63. .community-content-tip .item-ft {
  64. width: 20rpx;
  65. }
  66. .community-content-tip .item-ft .img {
  67. width: 20rpx;
  68. }
  69. .community-content-tip .item {
  70. display: flex;
  71. align-items: center;
  72. }
  73. .community-content-tip .img {
  74. width: 80rpx;
  75. height: 80rpx;
  76. border-radius: 50%;
  77. }
  78. .community-content-tip .name {
  79. font-weight: bold;
  80. color: #333;
  81. }
  82. .community-content-tip .address {
  83. color: #999;
  84. font-size: 28rpx;
  85. }
  86. .community-box .closeBtn {
  87. width: 80rpx;
  88. height: 80rpx;
  89. margin: 0 auto;
  90. }
  91. .distance {
  92. font-size: 24rpx;
  93. color: #f75451;
  94. font-weight: normal;
  95. }