index.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #banners {
  2. margin: -20px -10px 0 -10px;
  3. min-height: 420px;
  4. max-height: 300px;
  5. --swiper-navigation-color: #fff;
  6. --swiper-pagination-color: #fff;
  7. }
  8. #banners .swiper-wrapper {
  9. min-height: inherit;
  10. max-height: inherit;
  11. }
  12. #banners .swiper-wrapper .swiper-slide {
  13. min-height: inherit;
  14. max-height: inherit;
  15. border-bottom: 1px solid #bbb;
  16. background-size: cover;
  17. background-repeat: no-repeat;
  18. }
  19. #banners .swiper-wrapper .swiper-slide .swiper-cover {
  20. min-height: inherit;
  21. max-height: inherit;
  22. color: #F5F5F5;
  23. display: -webkit-box;
  24. display: -ms-flexbox;
  25. display: flex;
  26. -webkit-box-align: center;
  27. -ms-flex-align: center;
  28. align-items: center;
  29. -webkit-box-pack: center;
  30. -ms-flex-pack: center;
  31. justify-content: center;
  32. padding: 5% 12%;
  33. }
  34. #banners .swiper-wrapper .swiper-slide .swiper-cover .title {
  35. font-size: 2em;
  36. font-weight: bold;
  37. }
  38. #banners .swiper-wrapper .swiper-slide .swiper-cover .subtitle {
  39. font-size: 1.2em;
  40. font-weight: 500;
  41. margin-bottom: 10px;
  42. }
  43. #banners .swiper-wrapper .swiper-slide .swiper-cover img {
  44. width: 100%;
  45. max-width: 220px;
  46. }
  47. #notice a,
  48. #review a {
  49. text-decoration: none;
  50. }
  51. #notice a:hover, #notice a:focus,
  52. #review a:hover,
  53. #review a:focus {
  54. text-decoration: underline;
  55. }
  56. #notice table tr td span,
  57. #review table tr td span {
  58. font-size: 14px;
  59. color: #000;
  60. padding-right: 5px;
  61. }
  62. #notice table tr td a,
  63. #review table tr td a {
  64. font-size: 13px;
  65. }
  66. #notice table tr td small,
  67. #review table tr td small {
  68. font-size: 13px;
  69. color: #bbbbbb;
  70. }
  71. #coupang a {
  72. display: block;
  73. }
  74. #coupang img {
  75. max-width: 100%;
  76. height: auto;
  77. }