test.wxss 993 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .map-list .list {
  2. position: relative;
  3. height: 120rpx;
  4. width: 100%;
  5. justify-content: space-between;
  6. }
  7. .map-list .kelong {
  8. position: absolute;
  9. }
  10. .map-list .list::after {
  11. content: '';
  12. width: 660rpx;
  13. height: 2rpx;
  14. background-color: #eee;
  15. position: absolute;
  16. right: 0;
  17. bottom: 0;
  18. }
  19. .map-list .list .xt {
  20. display: block;
  21. width: 95rpx;
  22. height: 77rpx;
  23. position: absolute;
  24. left: 93rpx;
  25. top: 20rpx;
  26. }
  27. .map-list .list .more {
  28. display: block;
  29. width: 48rpx;
  30. height: 38rpx;
  31. position: absolute;
  32. right: 30rpx;
  33. top: 40rpx;
  34. }
  35. .map-list .list .info {
  36. display: block;
  37. width: 380rpx;
  38. height: 80rpx;
  39. position: absolute;
  40. left: 220rpx;
  41. top: 20rpx;
  42. font-size: 30rpx;
  43. }
  44. .map-list .list .info .sub-name {
  45. font-size: 28rpx;
  46. white-space: nowrap;
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. color: #646567;
  50. }
  51. .map-list .list .index {
  52. color: #e4463b;
  53. font-size: 32rpx;
  54. font-weight: bold;
  55. position: absolute;
  56. left: 35rpx;
  57. top: 40rpx;
  58. }