houseManage.less 932B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .houseCard{
  2. background: #FFFFFF;
  3. box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.08);
  4. border-radius: 12px;
  5. padding: 40px 30px 41px 30px;
  6. text-align: center;
  7. margin: 30px 10px;
  8. .houseName{
  9. height: 122px;
  10. font-size: 32px;
  11. font-weight: bold;
  12. color: #202020;
  13. width:100%;
  14. }
  15. .operation{
  16. column-count: 3;
  17. font-size: 28px;
  18. color: #202020;
  19. image{
  20. width: 28px;
  21. height: 28px;
  22. margin-right: 10px;
  23. position: relative;
  24. top: 5px;
  25. }
  26. }
  27. }
  28. .addHouse{
  29. width: calc(100% - 60px);
  30. margin: 0 30px;
  31. height: 88px;
  32. background: #274291;
  33. border-radius: 12px;
  34. font-weight: bold;
  35. color: #FFFFFF;
  36. text-align: center;
  37. line-height: 88px;
  38. position: absolute;
  39. letter-spacing: 5px;
  40. bottom: 18px;
  41. image{
  42. width: 32px;
  43. height: 32px;
  44. border: 2px solid #FFFFFF;
  45. border-radius: 4px;
  46. position: relative;
  47. right: 11px;
  48. top: 6px;
  49. }
  50. }