.section-title {
    /*background-image: url("../../image/title-bg/cpzx.jpg");*/
}

.products-content {
    width: 100vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
}
/**/
.products-nav {
    width: calc(100vw - 20px);
    height: auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    color: #595757;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 10px;
    box-sizing: border-box;
}
.nav-item{
    width: 25%;
    flex:none;
    text-align: center;
    line-height: 1.5em;
    padding: 8px 5px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.products-nav .current{
    background-color: #0078c5;
    color: white;
}

.products_title{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.products_title .title{
    position: relative;
}
.products_title .title:after{
    content: '';
    position: absolute;

    width: 10vw;
    height: 1px;
    background-color: #444444;
    left:  calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
}
.products_title .title:before{
    content: '';
    position: absolute;

    width: 10vw;
    height: 1px;
    background-color: #444444;
    right: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
}
.products_title .title .tit1{
    font-size: 16px;
    color: #333333;
    text-align: center;
}
.products_title .title .tit2{
    font-size: 14px;
    color: #999999;
    text-align: center;
    line-height: 1em;
}


.products-items{
    display: flex;
    padding: 0 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.products-item{
    width: 48%;
    box-sizing: border-box;
    margin-bottom: 15px;
}
.products-item__img{
    width: 100%;
    height: 28vw;
}
.products-item__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products-item__title{
    font-size: 14px;
    padding: 5px 5px 10px;
}

