@charset "UTF-8";
.default-button {
  font-family: Inter;
  background: linear-gradient(90deg, #EDEDED 1%, #FFFFFF 100%);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  color: #3D3D3D;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.default-button:hover .img {
  display: none;
}

.default-button:hover .img.active {
  display: block;
}

.default-button .img {
  width: 5px;
  display: block;
}

.default-button .img.active {
  display: none;
}

.section {
  width: 100%;
}

.section .content {
  width: 1120px;
  margin: 0 auto;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label::before {
  content: '';
  display: inline-block;
  width: 18.71px;
  height: 18.71px;
  margin-right: 9px;
  border-radius: 5.12px;
  vertical-align: middle;
  background-color: #fff;
}

input[type="checkbox"]:checked + label::before {
  content: '';
  background-image: url("../static/gou-white.png");
  background-color: #E50012;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.pagination {
  display: flex;
  align-items: center;
  width: 358px;
  height: 18px;
  margin: 0 auto;
}

.pagination .current {
  font-family: D-DIN;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  letter-spacing: normal;
  color: #3D3D3D;
  margin-right: 20px;
}

.pagination .page-arrow .prev {
  transform: rotate(180deg);
  cursor: not-allowed;
  display: none;
}

.pagination .page-arrow .prev.active {
  cursor: pointer;
  display: block;
}

.pagination .page-arrow .next {
  cursor: not-allowed;
  display: none;
}

.pagination .page-arrow .next.active {
  cursor: pointer;
  display: block;
}

.pagination .page-arrow.not-allowed .prev {
  display: block;
}

.pagination .page-arrow.not-allowed .prev.active {
  cursor: pointer;
  display: none;
}

.pagination .page-arrow.not-allowed .next {
  display: block;
}

.pagination .page-arrow.not-allowed .next.active {
  cursor: pointer;
  display: none;
}

.pagination .page {
  font-family: D-DIN;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  letter-spacing: normal;
  color: #3D3D3D;
  padding: 0 11.5px;
  cursor: pointer;
}

.pagination .page.active {
  font-weight: 700;
  color: #E50012;
}

/* WebKit浏览器滚动条样式 */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
  border-width: 2px;
}

::-webkit-scrollbar-thumb:active {
  background: #475569;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Firefox滚动条样式 */
* {
  scrollbar-width: thin;
  scrollbar-color: #94a3b8 #f1f5f9;
}

.oy-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 5001;
  overscroll-behavior: contain;
}

.oy-swiper-container {
  width: 100%;
  height: 100%;
}

.oy-swiper-container .oy-swiper-wrapper {
  height: 100%;
}

.oy-fullscreen-swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.oy-fullscreen-swiper-slide .img {
  height: 100%;
  width: 100%;
}

.oy-fullscreen-swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

.oy-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  z-index: 1001;
  cursor: pointer;
}

@media (max-width: 850px) {
  .pagination {
    display: none;
  }
}

@media (any-hover: hover) {
  .default-button:hover .img {
    display: none;
  }
  .default-button:hover .img.active {
    display: block;
  }
}

@font-face {
  font-family: 'Inter';
  src: url("../static/font/Inter.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'D-DIN';
  src: url("../static/font/D-DIN.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}
