:root {
  --base-light-color: white;
  --base-light-color-60: rgba(255, 255, 255, 0.6);
  --base-font-color: #333;
  --base-font-dark-gray-color: #666;
  --base-font-gray-color: #999;
  --base-active-color: #ed1712;
  --base-font-size-xl: 24px;
  --base-font-size-lg: 18px;
  --base-font-size: 16px;
  --base-font-size-sm: 14px;
  --base-font-size-xs: 12px;
}

.common__page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.common__page-header {
  position: fixed;
  width: 100%;
  color: var(--base-font-color);
  background-color: var(--base-light-color);
  z-index: 104;
  transition: top 0.2s;
}
.common__page-header .header__wrapper {
  height: 100px;
  box-sizing: content-box;
}
.common__page-header .logo-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
}
.common__page-header .logo-wrapper .logo {
  width: 94px;
  height: 70px;
}
.common__page-header .logo-wrapper .title .chn {
  margin-bottom: 4px;
  color: var(--base-font-color);
  font-size: var(--base-font-size-xl);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}
.common__page-header .logo-wrapper .title .en {
  color: var(--base-font-gray-color);
  font-size: var(--base-font-size-sm);
  line-height: 1.4;
}
.common__page-header .contact {
  margin-right: 64px;
  font-size: var(--base-font-size-sm);
  color: var(--base-font-color);
}
.common__page-header .contact__icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.common__page-header .contact__number {
  margin-top: 4px;
  font-size: var(--base-font-size-lg);
  font-weight: 700;
  color: var(--base-active-color);
}
.common__page-header .language {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 21px;
  height: 21px;
  color: var(--base-font-gray-color);
  font-size: var(--base-font-size-xs);
  border: 1px solid var(--base-font-gray-color);
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s, opacity 0.2s;
}
.common__page-header .language__line {
  width: 1px;
  height: 17px;
  margin: 0 12px;
  background-color: var(--base-font-color);
}
.common__page-header .language.active {
  color: var(--base-active-color);
  border-color: var(--base-font-color);
}
.common__page-header .mobile-language {
  padding: 0 5px;
}
.common__page-header .mobile-language__icon {
  width: var(--base-font-size);
  height: var(--base-font-size);
}
.common__page-header .mobile-language__text {
  position: relative;
  margin-left: 4px;
  padding-right: 10px;
  font-size: var(--base-font-size-xs);
}
.common__page-header .mobile-language__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  margin-top: -6px;
  background: linear-gradient(45deg, transparent 0, transparent calc(50% - 1px), #aaa 50%, #aaa 100%);
  transform: rotate(135deg) translateY(-50%);
}
.common__page-header .mobile-language__options {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: none;
  width: 80px;
  padding: 5px 0;
  text-align: center;
  font-size: var(--base-font-size-xs);
  color: var(--base-font-dark-gray-color);
  line-height: 2;
  background: #f6f7f8;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%) translateY(calc(100% + 10px));
}
.common__page-header .mobile-language__options .active {
  background-color: var(--base-light-color);
  color: var(--base-active-color);
}
.common__page-header .mobile-language__options.show {
  display: block;
}
.common__page-header .toggle-nav {
  margin-left: 25px;
}
.common__page-header.show {
  top: 0;
}
.common__page-header.hide {
  top: -100px;
}
@media screen and (max-width: 1024px) {
  .common__page-header.hide {
    top: -50px;
  }
}
@media screen and (max-width: 1024px) {
  .common__page-header .header__wrapper {
    height: 50px;
  }
  .common__page-header .header__wrapper > ul {
    padding: 0 var(--base-font-size);
  }
  .common__page-header .header__wrapper .logo-wrapper .logo {
    width: 40px;
    height: 30px;
    margin-right: 2px;
  }
  .common__page-header .header__wrapper .logo-wrapper .title .chn {
    width: 6.5em;
    margin-bottom: 0;
    font-size: var(--base-font-size-xs);
    letter-spacing: 0;
  }
  .lang-en .common__page-header .header__wrapper .logo-wrapper .title .chn {
    width: 12.5em;
  }
  .common__page-header .header__wrapper .logo-wrapper .title .en {
    display: none;
  }
}
.common__page-line {
  height: 100px;
  box-sizing: content-box;
  border-bottom: 20px solid var(--base-font-color);
}
@media screen and (max-width: 1024px) {
  .common__page-line {
    height: 50px;
    border-bottom-width: 2px;
  }
}
.common__page-banner {
  --swiper-pagination-bullet-horizontal-gap: var(--base-font-size);
  --swiper-pagination-bullet-size: var(--base-font-size-xs);
  --swiper-pagination-bullet-inactive-color: var(--base-font-color);
  --swiper-pagination-bullet-inactive-opacity: 0.1;
  --swiper-pagination-color: var(--base-active-color);
  --swiper-pagination-bottom: 40px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/1;
  object-fit: cover;
}
.common__page-banner .swiper-slide {
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .common__page-banner {
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-size: 4px;
    --swiper-pagination-bottom: var(--base-font-size-xs);
    aspect-ratio: 375/160;
  }
}
.common__page-nav {
  position: absolute;
  right: 0;
  top: 40px;
  left: 0;
  z-index: 10;
}
.common__page-nav .nav__wrapper {
  display: flex;
  height: 100px;
  background-color: rgba(204, 204, 204, 0.4);
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .common__page-nav .nav__wrapper {
    height: 80px;
  }
}
.common__page-nav .nav__wrapper .nav-item {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  color: var(--base-font-color);
  font-size: var(--base-font-size);
  transition: color 0.2s, font-weight 0.2s, background-color 0.2s;
}
.common__page-nav .nav__wrapper .nav-item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  font-size: inherit;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .common__page-nav .nav__wrapper .nav-item:hover {
    color: var(--base-active-color);
  }
}
.common__page-nav .nav__wrapper .nav-item:active {
  background-color: rgba(0, 0, 0, 0.2);
}
.common__page-nav .nav__wrapper .nav-item.active {
  font-weight: 700;
  color: var(--base-active-color);
}
.common__page-nav .nav__wrapper .nav-item.active::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--base-active-color);
  transform: translateX(-50%);
  content: "";
}
@media screen and (max-width: 1024px) {
  .common__page-nav {
    position: fixed;
    top: 50px;
    height: 0;
    background-color: #f6f7f8;
    transition: height 0.5s;
    z-index: 100;
  }
  .common__page-nav.show {
    height: calc(100vh - 50px);
  }
  .common__page-nav .cols-6 {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .common__page-nav .cols-6 .nav__wrapper {
    display: block;
    padding: 20px 0;
    flex: 1;
    height: auto;
    min-height: 536px;
    border-radius: 0;
    background-color: initial;
  }
  .common__page-nav .cols-6 .nav__wrapper .nav-item {
    height: 62px;
  }
  .common__page-nav .cols-6 .nav__wrapper .nav-item.active {
    background-color: var(--base-light-color);
  }
  .common__page-nav .cols-6 .nav__wrapper .nav-item.active::before {
    display: none;
  }
  .common__page-nav .cols-6 .lang-select {
    padding-bottom: 50px;
    text-align: center;
    font-size: var(--base-font-size-xs);
    line-height: 1.2;
    color: var(--base-font-color);
  }
  .common__page-nav .cols-6 .lang-select .active {
    color: var(--base-active-color);
  }
}
.common__page-container {
  flex: 1;
  width: 100%;
}
.common__page-container-title {
  padding: 30px 0;
  line-height: 1.4;
  background-color: var(--base-light-color);
  border-bottom: 1px solid #eee;
  box-sizing: content-box;
}
.common__page-container-title .title {
  color: var(--base-active-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.common__page-container-title .sub-title {
  color: var(--base-font-gray-color);
  font-size: var(--base-font-size-sm);
  text-transform: uppercase;
}
.common__page-pagination .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.common__page-pagination .pagination>li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: var(--base-active-color);
  border: 1px solid var(--base-active-color);
  cursor: pointer;
  transition: color 0.3s, opacity 0.3s, background-color 0.3s;
}

.common__page-pagination .pagination>li:last-child,
.common__page-pagination .pagination>li:first-child{
  width: auto;
}

.common__page-pagination .pagination>li:last-child > a,
.common__page-pagination .pagination>li:first-child > a,
.common__page-pagination .pagination>li:last-child > span,
.common__page-pagination .pagination>li:first-child > span{
  padding: 0 4px;
}
.common__page-pagination .pagination>li:not(:last-child) {
  margin-right: 5px;
}
.common__page-pagination .pagination>li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.common__page-pagination .pagination>li.active {
  background-color: var(--base-active-color);
  color: white;
}
.common__page-pagination .pagination>li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s;
}
.common__page-pagination .pagination>li>a:hover {
  background-color: rgba(12, 12, 12, 0.1);
}
.common__page-footer {
  height: 120px;
  color: var(--base-light-color);
  background-color: var(--base-font-color);
}
.common__page-footer .footer__logo {
  width: 80px;
  height: 60px;
  margin-right: 8px;
}
.common__page-footer .footer__info > h1 {
  font-size: var(--base-font-size-lg);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.common__page-footer .footer__info > p {
  font-size: var(--base-font-size-xs);
  color: var(--base-light-color-60);
  line-height: 1.4;
  text-align: justify;
}
.common__page-footer .footer__copyright {
  font-size: var(--base-font-size-sm);
  word-break: break-all;
  text-align: justify;
}
.common__page-footer .footer__copyright > span {
  margin-left: 20px;
}
@media screen and (max-width: 1280px) {
  .common__page-footer .footer__copyright {
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .common__page-footer .footer__copyright > span {
    margin-left: 0;
  }

  .common__page-nav .nav__wrapper .nav-item {
    font-size: var(--base-font-size-sm);
  }
}
@media screen and (max-width: 1024px) {
  .common__page-footer {
    height: 108px;
    box-sizing: content-box;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .common__page-footer .footer {
    padding: 16px 0;
    flex-direction: column;
  }
  .common__page-footer .footer__logo {
    width: 40px;
    height: 30px;
    margin-right: 4px;
  }
  .common__page-footer .footer__info > h1 {
    font-size: var(--base-font-size-xs);
    letter-spacing: 0;
    margin-bottom: 2px;
  }
  .common__page-footer .footer__info > p {
    font-size: 7px;
  }
  .common__page-footer .footer__copyright {
    font-size: var(--base-font-size-xs);
    align-items: center;
    text-align: center;
  }
}
.common__page .common__wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  margin: 0 auto;
}
.common__page .common__wrapper .cols-6 {
  grid-column: 2/8;
}
.common__page .common__wrapper .cols-full {
  grid-column: 1/9;
  min-height: 0;
}
@media screen and (max-width: 1280px) {
  .common__page .common__wrapper {
    grid-template-columns: repeat(16, 1fr);
  }
  .common__page .common__wrapper .cols-6 {
    grid-column: 2/16;
  }
  .common__page .common__wrapper .cols-full {
    grid-column: 1/17;
  }
}
@media screen and (max-width: 1024px) {
  .common__page .common__wrapper .cols-6 {
    grid-column: 1/17;
  }
}

.mob {
  display: none;
}

.float-com {
  position: fixed;
  right: 3.85%;
  bottom: 15.37%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}
.float-com .back-top {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transform: scale(0);
  transition: all 450ms ease;
  user-select: none;
  overflow: hidden;
}
.float-com .back-top-icon {
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 1024px) {
  .float-com .back-top {
    width: 58px;
    height: 58px;
  }
  .float-com .back-top-icon {
    width: 36px;
    height: 36px;
  }
  .float-com .back-top:hover {
    background-color: var(--base-active-color);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3), inset -2px -2px 4px 0 rgba(0, 0, 0, 0.3), inset 2px 2px 4px 0 rgba(255, 255, 255, 0.3);
    -webkit-animation: zoomBox 652ms ease;
    animation: zoomBox 652ms ease;
  }
  .float-com .back-top:hover .back-top-icon {
    transform: translateX(80px);
    filter: drop-shadow(-80px 0 #fff);
  }
}
.float-com .back-top:active {
  background-color: var(--base-active-color);
  box-shadow: inset 2px 2px 4px 0 rgba(0, 0, 0, 0.4), inset 0 0 10px 1px rgba(0, 0, 0, 0.1), inset -2px -2px 3px 1px rgba(255, 255, 255, 0.4);
  -webkit-animation: zoomBox 652ms ease;
  animation: zoomBox 652ms ease;
}
.float-com .back-top:active .back-top-icon {
  transform: translateX(80px);
  filter: drop-shadow(-80px 0 #fff);
}
.float-com .it-open {
  transform: scale(1);
  margin: 0 auto;
}

.flex-start-start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-start-end {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex-start-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-start-baseline {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}

.flex-start-stretch {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.flex-end-start {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-end-end {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.flex-end-center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flex-end-baseline {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.flex-end-stretch {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.flex-center-start {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.flex-center-end {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.flex-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-center-baseline {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.flex-center-stretch {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.flex-between-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-between-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-between-baseline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.flex-between-stretch {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.flex-around-start {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.flex-around-end {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.flex-around-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex-around-baseline {
  display: flex;
  justify-content: space-around;
  align-items: baseline;
}

.flex-around-stretch {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}

.flex-evenly-start {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.flex-evenly-end {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}

.flex-evenly-center {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.flex-evenly-baseline {
  display: flex;
  justify-content: space-evenly;
  align-items: baseline;
}

.flex-evenly-stretch {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}

.fs-xs {
  font-size: 12px;
}

.fs-sm {
  font-size: 14px;
}

.fs-md {
  font-size: 16px;
}

.fs-lg {
  font-size: 18px;
}

.fs-xl {
  font-size: 24px;
}

.relative {
  position: relative;
}

.relative-im {
  position: relative !important;
}

.absolute {
  position: absolute;
}

.absolute-im {
  position: absolute !important;
}

.fixed {
  position: fixed;
}

.fixed-im {
  position: fixed !important;
}

.sticky {
  position: sticky;
}

.sticky-im {
  position: sticky !important;
}

.static {
  position: static;
}

.static-im {
  position: static !important;
}

.overflow-auto {
  overflow: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.none {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sm\:block {
    display: block;
  }
  .sm\:inline {
    display: inline;
  }
  .sm\:inline-block {
    display: inline-block;
  }
  .sm\:inline-flex {
    display: inline-flex;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:grid {
    display: grid;
  }
  .sm\:none {
    display: none;
  }
  .sm\:flex-start-start {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .sm\:flex-start-end {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .sm\:flex-start-center {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .sm\:flex-start-baseline {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
  }
  .sm\:flex-start-stretch {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
  }
  .sm\:flex-end-start {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .sm\:flex-end-end {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .sm\:flex-end-center {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .sm\:flex-end-baseline {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
  }
  .sm\:flex-end-stretch {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
  }
  .sm\:flex-center-start {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .sm\:flex-center-end {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .sm\:flex-center-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sm\:flex-center-baseline {
    display: flex;
    justify-content: center;
    align-items: baseline;
  }
  .sm\:flex-center-stretch {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .sm\:flex-between-start {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .sm\:flex-between-end {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .sm\:flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sm\:flex-between-baseline {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .sm\:flex-between-stretch {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .sm\:flex-around-start {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
  }
  .sm\:flex-around-end {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
  }
  .sm\:flex-around-center {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .sm\:flex-around-baseline {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
  }
  .sm\:flex-around-stretch {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
  }
  .sm\:flex-evenly-start {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .sm\:flex-evenly-end {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
  }
  .sm\:flex-evenly-center {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .sm\:flex-evenly-baseline {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
  }
  .sm\:flex-evenly-stretch {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
  }
  .common__page-container-title {
    padding: 20px 0 16px;
    border-bottom: none;
  }
  .common__page-container-title .title {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .common__page-container-title .sub-title {
    font-size: var(--base-font-size-xs);
  }
  .pc {
    display: none;
  }
  .mob {
    display: block;
  }
  .sm\:px-xs {
    padding-right: 12px;
    padding-left: 12px;
  }
  .sm\:py-xs {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .sm\:px-sm {
    padding-right: 14px;
    padding-left: 14px;
  }
  .sm\:py-sm {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .sm\:px-md {
    padding-right: 16px;
    padding-left: 16px;
  }
  .sm\:py-md {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .sm\:px-lg {
    padding-right: 18px;
    padding-left: 18px;
  }
  .sm\:py-lg {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .sm\:px-xl {
    padding-right: 24px;
    padding-left: 24px;
  }
  .sm\:py-xl {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.size-full {
  width: 100%;
  height: 100%;
}

.bg-hover {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.bg-hover::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: background-color 0.2s;
}
@media screen and (min-width: 1024px) {
  .bg-hover:hover::after {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.bg-hover:active::after {
  background-color: rgba(0, 0, 0, 0.4);
}
