index.less 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .room-card {
  2. padding: 60rpx 0;
  3. border-bottom: 2rpx solid rgba(234,234,234,1);
  4. .head {
  5. margin-bottom: 20rpx;
  6. .title {
  7. font-size: 36rpx;
  8. line-height: 52rpx;
  9. color: #333;
  10. }
  11. .subtitle {
  12. float: right;
  13. }
  14. }
  15. .body {
  16. display: flex;
  17. .thumb {
  18. width: 73.5%;
  19. height: 280rpx;
  20. flex: none;
  21. overflow: hidden;
  22. position: relative;
  23. border-radius: 8rpx;
  24. image {
  25. width: 100%;
  26. height: 100%;
  27. border-radius: 8rpx;
  28. }
  29. }
  30. .content {
  31. margin-left: 20rpx;
  32. flex: auto;
  33. }
  34. .price {
  35. font-size: 40rpx;
  36. color: #FF2B00;
  37. }
  38. .persons {
  39. font-weight: 500;
  40. font-size: 28rpx;
  41. color: #666;
  42. line-height: 36rpx;
  43. }
  44. .tags {
  45. margin-top: 8rpx;
  46. }
  47. .tag {
  48. color: #9D876D;
  49. font-size: 20rpx;
  50. line-height: 32rpx;
  51. text-align: center;
  52. border: 1rpx solid rgba(187,156,121,1);
  53. border-radius: 4rpx;
  54. width: fit-content;
  55. padding: 0 10rpx;
  56. & + .tag {
  57. margin-top: 10rpx;
  58. }
  59. }
  60. }
  61. .gray-text {
  62. font-size: 24rpx;
  63. color: #666;
  64. line-height: 34rpx;
  65. }
  66. }