popularservice.scss 905 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. background: #ffffff;
  15. &.active {
  16. height: auto;
  17. overflow: auto;
  18. transition: all .5s ease;
  19. }
  20. }
  21. &__item {
  22. border-bottom: 1px solid #ebebeb;
  23. border-left: 1px solid #ebebeb;
  24. border-right: 1px solid #ebebeb;
  25. }
  26. &__link {
  27. color: #3b434d;
  28. text-decoration: none;
  29. font-size: 15px;
  30. padding: 8px;
  31. line-height: 19px;
  32. display: block;
  33. font-family: $fontcuprum;
  34. font-weight: normal;
  35. &:hover {
  36. color: #004d7b;
  37. background: #d2dee9;
  38. }
  39. }
  40. }