hoteldetail.wxss 522 B

123456789101112131415161718192021222324
  1. .active {
  2. color: #F76260;
  3. }
  4. .typeItem {
  5. width: 25%;
  6. display: inline-block;
  7. text-align: center;
  8. }
  9. .iconClass {
  10. display: -webkit-box;
  11. display: -webkit-flex;
  12. display: flex;
  13. -webkit-box-orient: horizontal;
  14. -webkit-box-direction: normal;
  15. -webkit-flex-direction: row;
  16. flex-direction: row;
  17. -webkit-box-align: center;
  18. -webkit-align-items: center;
  19. align-items: center;
  20. -webkit-justify-content: space-around;
  21. justify-content: space-around;
  22. }