/* 新加 - 模块化 */
.NyBigBox {
    background: #F7F9FB;
}

.Ny_text {
    overflow: visible;
}

.ProductTop {
    padding-top: 40px;
    padding-bottom: 90px;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    justify-content: space-between;
}

.ProductTop .left {
    width: 75%;
}

.ProductTop .left h1 {
    color: #000;
    font-size: 38px;
    line-height: 1;
    margin-bottom: 30px;
}

.ProductTop .ss {
    display: flex;
}

.ProductTop .ss input {
    width: calc(100% - 150px);
    height: 40px;
    padding-left: 30px;
    background: #fff;
}

.ProductTop .ss button {
    background: var(--color);
    width: 150px;
    height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ProductTop .ss button img {
    width: 18px;
    filter: invert(1);
    margin-right: 15px;
}

.tjcp {
    margin-top: 30px;
    color: #838383;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.tjcp a {
    color: #D92639;
    font-size: 14px;
    line-height: 1;
}

.ProductTop .right {
    width: 20%;
}

.ProductTop .right a {
    line-height: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ProductTop .right a img {
    width: 100%;
    max-width: 200px;
}

@media (max-width: 640px) {
    .ProductTop {
        padding-bottom: 60px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .ProductTop .left {
        width: 100%;
    }

    .ProductTop .right {
        width: 100%;
    }

    .ProductTop .left h1 {
        font-size: 32px;
        text-align: center;
    }

    .ProductTop .ss {
        padding: 0;
    }

    .tjcp {
        padding: 0 5vw;
        line-height: 2;
    }

    .ProductTop .right {
        margin-top: 30px;
    }

}


/* 分类 */

.CpNavList {
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.CpNavList a {
    width: 24%;
    padding: 20px 60px;
    background: #fff;
    color: #000;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.CpNavList a.active,
.CpNavList a:hover {
    background: var(--color);
    color: #fff;
}

.CpNavList a.active img,
.CpNavList a:hover img {
    filter: invert(1);
}

@media (max-width: 1200px) {
    .CpNavList a {
        padding: 20px 15px;
        font-size: 16px;
    }

    .CpNavList a img {
        width: 30px;
    }
}

@media (max-width: 640px) {
    .CpNavList a {
        width: 49%;
        margin-bottom: 15px;
    }
}

/* 列表 */
.Ny_ProductList {
    margin-bottom: 100px;
}

.Ny_ProductList a {
    padding: 60px;
    display: block;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    top: 0;
}

.Ny_ProductList a:hover {
    top: -15px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
}

.Ny_ProductList a .img {
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
}

.Ny_ProductList a .img img {
    width: 100%;
}

.Ny_ProductList a h1 {
    margin-top: 70px;
    margin-bottom: 30px;
    color: #464646;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: 18px;
}

.Ny_ProductList a .More {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
    border: 1px solid #CBCBCB;
    background: #FFF;
    position: absolute;
    width: 210px;
    height: 70px;
    border-radius: 50px;
    left: calc(50% - 105px);
    bottom: -35px;
}

.Ny_ProductList a:hover .More {
    color: #fff;
    background: var(--color);
    border-color: var(--color);
}

@media (max-width: 992px) {
    .Ny_ProductList a .More {
        padding: 0 30px;
        width: 160px;
        height: 60px;
        border-radius: 50px;
        left: calc(50% - 80px);
        bottom: -30px;
    }
}

@media (max-width: 640px) {
    .Ny_ProductList a {
        padding: 15px;
    }

    .Ny_ProductList a h1 {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 18px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .Ny_ProductList a .More {
        padding: 0 20px;
        width: 120px;
        height: 40px;
        left: calc(50% - 60px);
        bottom: -20px;
        font-size: 14px;
    }

    .Ny_ProductList {
        margin-bottom: 45px;
    }

    .CpNavList {
        padding: 30px 0;
    }
}