popularservice.scss 876 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .popularservice {
  2. display: block;
  3. &__title {
  4. text-decoration: none;
  5. color: #3b434d;
  6. }
  7. &__list {
  8. width: 100%;
  9. position: relative;
  10. z-index: 5;
  11. height: 0;
  12. overflow: hidden;
  13. transition: all .5s ease;
  14. &.active {
  15. height: auto;
  16. overflow: auto;
  17. transition: all .5s ease;
  18. }
  19. }
  20. &__item {
  21. border-bottom: 1px solid #ebebeb;
  22. border-left: 1px solid #ebebeb;
  23. border-right: 1px solid #ebebeb;
  24. }
  25. &__link {
  26. color: #3b434d;
  27. text-decoration: none;
  28. font-size: 15px;
  29. padding: 8px;
  30. line-height: 19px;
  31. display: block;
  32. font-family: $fontcuprum;
  33. font-weight: normal;
  34. &:hover {
  35. color: #004d7b;
  36. background: #d2dee9;
  37. }
  38. }
  39. }