hjyd
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. #app {
  2. height: 100%;
  3. }
  4. html,
  5. body {
  6. position: relative;
  7. height: 100%;
  8. box-sizing: border-box;
  9. }
  10. body {
  11. background: #eee;
  12. font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  13. font-size: 14px;
  14. color: #000;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. .swiper {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .swiper-slide {
  23. text-align: center;
  24. font-size: 18px;
  25. background: #fff;
  26. /* Center slide text vertically */
  27. display: flex !important;
  28. justify-content: center !important;
  29. align-items: center !important;
  30. img {
  31. display: block;
  32. width: 100%;
  33. height: 100%;
  34. object-fit: cover;
  35. }
  36. }
  37. // 头部轮播 pagination重写样式
  38. .header_swiper {
  39. .swiper-pagination {
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. border-top: solid 1px #ddd;
  44. .swiper-pagination-bullet {
  45. width: auto;
  46. white-space: nowrap;
  47. height: 40px;
  48. font-size: 16px;
  49. color: #fff;
  50. border-radius: 0;
  51. background: #ddd;
  52. margin: 0 50px !important;
  53. opacity: 1;
  54. display: flex;
  55. align-items: center;
  56. box-sizing: border-box;
  57. justify-content: center;
  58. }
  59. .swiper-pagination-bullet-active {
  60. color: $theme_color;
  61. border-top: solid 1px $theme_color;
  62. background: none;
  63. }
  64. }
  65. }