.product-top-info-element {
    width: 1410px;
    display: flex;
    margin: 0 auto;
    padding: 55px 0;
    background-color: #FFFFFF;
}

.product-top-info-element .product-image {
    width: 610px;
    height: 400px;
}

.product-top-info-element .product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-top-info-element .product-info {
    flex: 1;
    box-sizing: border-box;
    padding-left: 65px;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: left;
}

.product-top-info-element .product-info .title {
    color: #434343;
    font-size: 30px;
    font-weight: bold;
}

.product-top-info-element .product-info .preview {
    color: #434343;
    font-size: 16px;
    padding-top: 25px;
}

.product-list-element {
    background-color: #f3f3f3;
}

.product-list-element .product-list {
    padding-top: 75px;
    width: 1410px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.product-list-element .product-list .product-item {
    margin-right: 60px;
    display: block;
    cursor: pointer;
    width: 430px;
    margin-bottom: 75px;
    height: 460px;
}

.product-list-element .product-list .product-item:nth-child(3n+3) {
    margin-right: 0;
}

.product-list-element .product-list .product-item .product-image {
    width: 430px;
    height: 350px;
    overflow: hidden;
}

.product-list-element .product-list .product-item .product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all .4s;
}

.product-list-element .product-list .product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-list-element .product-list .product-item .product-title {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    height: 110px;
    background-color: #FFFFFF;
    transition: all .4s;
    color: #000000;
    font-size: 25px;
}

.product-list-element .product-list .product-item:hover .product-title {
    color: #FFFFFF;
    background-color: #175fac;
}

.product-category-element {
    width: 100%;
    background-color: #FFFFFF;
}

.product-category-element .category {
    height: 100px;
    width: 1410px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: start;
    align-items: center;
}

.product-category-element .category .category-item {
    font-size: 25px;
    color: #434343;
    display: block;
    cursor: pointer;
    padding-right: 90px;
    font-weight: bold;
}

.product-category-element .category .category-item:hover {
    color: #175fac;
    text-decoration: underline;
    text-underline-offset: 15px;
}

.product-category-element .category .category-item.active {
    color: #175fac;
    text-decoration: underline;
    text-underline-offset: 15px;
}

.product-detail {
    padding: 40px 0;
    text-align: left;
}

.product-detail img {
    max-width: 100%;
    display: inline-block;
}