.goods {
    width: 100%
}

.goods .banner img {
    width: 100%;
    border: 0;
    vertical-align: bottom
}

.goods .path {
    display: flex;
    padding: 100px 230px 0 230px
}

.goods .path .item {
    display: flex;
    padding-left: 30px;
    font-size: 14px;
    cursor: pointer
}

.goods .path .item:first-child {
    padding-left: 0px
}

.goods .path .item p {
    padding-left: 30px;
    color: #333
}

.goods .path .red {
    color: #c00301
}

.goods .list {
    margin: 50px 230px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px
}

.goods .list .item {
    margin-top: 25px;
    width: 24%;
    position: relative
}

.goods .list .item img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}

.goods .list .item .pop {
    position: absolute;
    width: 0%;
    height: 100%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.5s width;
    color: #fff;
    font-size: 16px
}

.goods .list .item .pop .tips {
    display: none;
    color: #fff
}

.goods .list .item .pop .tips .title {
    padding: 30px 0 0 20px;
    font-size: 18px;
    font-weight: 600
}

.goods .list .item .pop .tips .path {
    padding: 0;
    padding-left: 20px;
    margin-top: 40%
}

.goods .list .item:hover .pop {
    width: 100%
}

.goods .list .item:hover .pop .tips {
    display: block
}

.goods .page {
    text-align: center;
    padding-bottom: 50px
}

.goods .page ::v-deep .el-pagination.is-background .el-pager li:not(.disabled) {
    background-color: #fff;
    min-width: 30px;
    height: 40px;
    line-height: 40px;
    font-size: 18px
}

.goods .page ::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #c00301;
    color: #fff;
    min-width: 30px;
    height: 40px;
    font-size: 18px
}

.goods .page ::v-deep .el-pagination.is-background .el-pager li:not(.disabled):hover {
    color: skyblue
}

.goods .page ::v-deep .el-pagination.is-background .btn-prev {
    width: 100px;
    height: 40px
}

.goods .page ::v-deep .el-pagination.is-background .btn-prev:hover {
    background-color: #c00301;
    color: #fff
}

.goods .page ::v-deep .el-pagination.is-background .btn-next {
    width: 100px;
    height: 40px
}

.goods .page ::v-deep .el-pagination.is-background .btn-next:hover {
    background-color: #c00301;
    color: #fff
}