.page.our-product .index-swiper {
    height: calc(940 * var(--px));
    overflow: hidden;
    position: relative;
}

.page.our-product .index-swiper .swiper-slide {
    position: relative;
}

.page.our-product .index-swiper .swiper-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page.our-product .index-swiper .swiper-slide__content {
    color: #fff;
    padding-left: calc(160 * var(--px));
    padding-bottom: calc(250 * var(--px));
    position: absolute;
    bottom: 0;
    left: 0;
}

.page.our-product .index-swiper .swiper-slide__content h2 {
    font-size: calc(68 * var(--px));
    line-height: calc(78 * var(--px));
    font-weight: 700;
}

.page.our-product .index-swiper .swiper-pagination {
    --right: 160;
    --bottom: 180;
    font-size: calc(16 * var(--px));
    color: #fff;
    height: calc(56 * var(--px));
    display: flex;
    align-items: center;
    position: absolute;
    right: calc(var(--right) * var(--px));
    bottom: calc(var(--bottom) * var(--px));
}

.page.our-product .index-swiper .swiper-pagination .pagination-number {
    margin-right: calc(35 * var(--px));
}

.page.our-product .index-swiper .pagination.swiper {
    --visible-slides: 3;
    --slide-width: 108;
    --slide-margin: 16;
    width: calc((var(--slide-width) * var(--visible-slides) + var(--slide-margin) * (var(--visible-slides, 3) - 1)) * var(--px));
    height: 100%;
}

.page.our-product .index-swiper .pagination.swiper .swiper-slide {
    width: calc(var(--slide-width) * var(--px));
    height: 100%;
    border-radius: 300px;
    overflow: hidden;
    margin-right: calc(16 * var(--px));
    position: relative;
}

.page.our-product .index-swiper .pagination.swiper .swiper-slide.active::after {
    border-radius: 30px;
    border: 3px solid var(--primary-color);
    background-color: rgba(0, 0, 0, 0);
}

.page.our-product .index-swiper .pagination.swiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    transition: background .3s ease-in-out;
}

.page.our-product .index-swiper .pagination.swiper .swiper-slide:last-child {
    margin-right: 0;
}

.page.our-product .index-swiper .pagination.swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page.our-product .layer.product {
    margin-bottom: calc(100 * var(--px));
}

.page.our-product .layer.product #filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10 * var(--px));
}

.page.our-product .layer.product #filter-form>* {
    margin-left: calc(12 * var(--px));
}

.page.our-product .layer.product #filter-form .field {
    height: calc(60 * var(--px));
    font-size: calc(18 * var(--px));
    border-radius: 999px;
    border: 1px solid var(--primary-color);
    padding: 0 calc(24 * var(--px));
}

.page.our-product .layer.product #filter-form .field.select {
    width: calc(325 * var(--px));
    position: relative;
}

.page.our-product .layer.product #filter-form .field.select input {
    display: none;
    height: 0;
}

.page.our-product .layer.product #filter-form .field.select .select-target {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page.our-product .layer.product #filter-form .field.select .select-value {
    flex: 1 0 0;
}

.page.our-product .layer.product #filter-form .field.select .icon-arrow-down {
    flex: 0 0 auto;
    font-size: calc(14 * var(--px));
}

.page.our-product .layer.product #filter-form .field.select .icon-arrow-down.up {
    transform: rotate(-180deg);
}

.page.our-product .layer.product #filter-form .field.select .select-options {
    width: 100%;
    background-color: #fff;
    padding: calc(24 * var(--px)) 0;
    position: absolute;
    border: 1px solid var(--primary-color);
    left: 0;
    top: 120%;
    overflow: hidden;
    display: none;
}

.page.our-product .layer.product #filter-form .field.select .select-option-item {
    padding: calc(24 * var(--px));
    transition: color, background .3s ease;
}

.page.our-product .layer.product #filter-form .field.select .select-option-item.select,
.page.our-product .layer.product #filter-form .field.select .select-option-item:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.page.our-product .layer.product #filter-form .field.search-input {
    width: calc(440 * var(--px));
}

.page.our-product .layer.product #filter-form .link {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.page.our-product .layer.product #filter-form .link:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.page.our-product .layer.product .layer-content {
    overflow-x: auto;
    overflow-y: hidden;
}

.page.our-product .layer.product .product-table {
    width: 100%;
    background-color: #fff;
    margin-top: calc(80 * var(--px));
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.page.our-product .layer.product .product-table th,
.page.our-product .layer.product .product-table td {
    padding: calc(28 * var(--px)) calc(70 / 1960 * 100vw);
}

.page.our-product .product-table thead {
    text-align: left;
    color: #fff;
    background-color: var(--primary-color);
    font-size: calc(24 * var(--px));
}

.page.our-product .product-table tbody {
    text-align: left;
    font-size: calc(20 * var(--px));
}

.page.our-product .product-table tbody tr:nth-of-type(2n) {
    background-color: #ECF1ED;
}

.page.our-product .product-table tbody .icon {
    --r: 40;
    width: calc(var(--r) * var(--px));
    height: calc(var(--r) * var(--px));
    border-radius: 50%;
    background-color: rgba(72, 121, 82, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: background .3s ease-in-out;
}

.page.our-product .product-table tbody tr .icon:hover {
    background-color: rgba(72, 121, 82, 1);
}

@media screen and (max-width: 1024px) {
    .page.our-product .index-swiper .swiper-pagination {
        --right: 80;
        --bottom: 80;
    }
}