.NyBigBox {
    background: #F8F8F8;
    padding-top: 60px;
}

.Product_List {
    padding-left: var(--container);
    padding-right: var(--container);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.aaspan {
    width: 100%;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1;
    color: #000000;
}

.aaspan a {
    font-size: 20px;
    line-height: 1;
    color: #000000;
}

@media (max-width: 640px) {
    .aaspan {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 15px;
    }

    .aaspan a {
        font-size: 14px;
        line-height: 2;
    }

    .NyBigBox {
        padding-top: 30px;
    }
}

/* 分类 */
.NyNavList {
    width: 23%;
    display: flex;
    flex-direction: column;
}

.NyNavList a {
    margin-bottom: 10px;
    width: 100%;
    background: #EEEEEE;
    padding: 15px 20px;
    font-size: 22px;
    line-height: 1;
    color: #4A4A4A;
    display: flex;
    align-items: center;
    position: relative;
}

.NyNavList a::after {
    content: "";
    display: block;
    background: url(https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/211/20240407144022_KFNdrX6V.png) no-repeat center;
    width: 10px;
    height: 18px;
    position: absolute;
    right: 30px;
    top: calc(50% - 9px);
    opacity: 0;
}

.NyNavList a .img {
    border-radius: 50%;
    border: 2px solid var(--color);
    width: 45px;
    height: 45px;
    padding: 7px;
    margin-right: 15px;
}

.NyNavList a .img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.NyNavList a:hover,
.NyNavList a.active {
    background: linear-gradient(90deg, #62B036 0%, #73D9A3 100%);
    color: #fff;
}

.NyNavList a:hover .img,
.NyNavList a.active .img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.NyNavList a:hover::after,
.NyNavList a.active::after {
    opacity: 1;
}

@media (max-width: 1440px) {
    .NyNavList a {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .NyNavList {
        width: 26%;
        display: flex;
        flex-direction: column;
    }

    .NyNavList a {
        padding: 15px;
        font-size: 18px;
    }

    .NyNavList a .img {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        padding: 5px;
        margin-right: 5px;
    }

    .NyNavList a::after {
        right: 10px;
    }
}

@media (max-width: 640px) {
    .NyNavList {
        width: 100%;
    }

    .NyNavList a {
        padding: 10px 15px;
        font-size: 16px;
    }

    .NyNavList a .img {
        border: 1px solid var(--color);
        margin-right: 15px;
        width: 30px;
        height: 30px;
        padding: 5px;
    }
}

/* 列表 */
.NyProBox {
    width: 73%;
}

.bbTop {
    background: linear-gradient(90deg, #5ABE22 0%, #73D9A3 100%);
    margin-bottom: 30px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bbTop h1 {
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
    color: #FFFFFF;
}

.bbTop img {
    height: 100%;
}

.NyProList {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.NyProList .item {
    background: #fff;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.NyProList .item .img {
    width: 100%;
    overflow: hidden;
}

.NyProList .item .CpImg {
    width: 100%;
    transition: 0.5s;
}

.NyProList .item .text {
    padding: 30px;
    border-top: 1px solid #D6D6D6;
}

.NyProList .item .text h1 {
    font-size: 22px;
    line-height: 1.5;
    color: #000000;
    transition: 0.5s;
}

.NyProList .item .text h2 {
    font-size: 20px;
    line-height: 1;
    margin: 15px 0;
    color: #878787;
}

.NyProList .item .text h3 {
    transition: 0.5s;
    width: 136px;
    height: 36px;
    border-radius: 5px;
    border: 1px solid #DDDCDC;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1;
    color: #525252;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.NyProList .item::after {
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s;
    background: linear-gradient(90deg, #48C800 0%, #90F1DA 100%);
}

.NyProList .item:hover {
    box-shadow: 0px 4px 27.6px rgba(68, 68, 68, 0.15);
}

.NyProList .item:hover .CpImg {
    transform: scale(1.08);
}

.NyProList .item:hover::after {
    width: 100%;
}

.NyProList .item:hover h1 {
    color: var(--color);
}

.NyProList .item:hover h3 {
    border: 0px;
    background: var(--color);
    color: #fff;
}

.NyProList .item:hover h3 img {
    filter: brightness(10);
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
    .NyProBox {
        width: 70%;
    }

    .bbTop {
        padding: 0 30px;
    }

    .bbTop h1 {
        font-size: 24px;
    }

    .bbTop img {
        height: 45px;
    }

    .NyProList {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .NyProBox {
        margin-top: 15px;
        width: 100%;
    }

    .bbTop {
        margin-bottom: 15px;
    }

    .NyProList {
        grid-gap: 10px;
    }

    .NyProList .item .text {
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .NyProList .item .text h1 {
        font-size: 18px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .NyProList .item .text h2 {
        font-size: 16px;
        margin: 10px 0;
    }

    .NyProList .item .text h3 {
        width: 100px;
        height: 30px;
        padding: 0 10px;
        font-size: 14px;
    }
}



/* 放大 */
.bigimg {
    width: auto !important;
    height: auto !important;
    max-width: 70vw !important;
    max-height: 70vh !important;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
    z-index: 9999;
    border: 20px solid #fff;
    object-fit: contain;
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000000cc;
    z-index: 9998;
    transition: all 1s;
    display: none
}

.mask img {
    width: 50px;
    height: 50px;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    position: fixed;
    bottom: 5vh;
    left: calc(50% - 25px);
}

@media (max-width: 640px) {
    .mask img {
        bottom: 10vh;
    }
}
