/* -------- product-list -------- */
.product-list {
    margin: 0 -20px;
}
.product-list > li {
    width: 50%;
    padding: 0 20px 40px;
    margin: 0 0 50px;
    border-bottom: 1px solid #e5e5e5;
}
.product-list > li:nth-last-of-type(-n+2) {
    border: 0;
    margin: 0;
}
.product-list li:nth-child(2n+1) {
    clear: left;
}
.product-list .box {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
}
.product-list .box img {
    width: 100%;
}
.product-list .product_top {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
}
.product-list .pic {
    position: relative;
    box-sizing: border-box;
    max-width: 218px;
    overflow: hidden;
    transition: all .5s ease;
    border-radius: 15px;
}
.product-list .text {
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 218px);
    padding: 10px 0 10px 20px;
    letter-spacing: 0.5px;
}
.product-list .name {
    position: relative;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #444;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 1px;
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid #e5e5e5;
}
.product-list .product_top .products_txt {
    position: relative;
    box-sizing: border-box;
    padding: 10px 5px;
}
.product-list .product_top ul {
    position: relative;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.product-list .product_top ul+ul {
    margin: 10px 0 0;
}
.product-list .product_top .products_title {
    position: relative;
    color: #212121;
    padding: 0 0 0 15px;
    list-style: none;
    font-weight: 600;
    font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
}
.product-list .product_top .products_title::before {
    content: '';
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    left: 0;
    width: 3px;
    height: 50%;
    background: #A33037;
}
.product-list .product_top .products_content {
    position: relative;
    color: #666;
    padding: 0;
    margin: 0 0 0 32px;
}
.product-list .product_top .products_content {
    list-style: none;
}
.product-list .product_top .products_content::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -12px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: #878787;
}
.product-list .products_bottom {
    position: relative;
    box-sizing: border-box;
    margin: 20px 0 0;
}
.product-list .products_bottom .products_title {
    position: relative;
    color: #212121;
    padding: 5px 10px;
    margin: 0 0 10px;
    background: url(../../images/common/bg1.jpg);
}
.product-list .products_bottom .products_content {
    position: relative;
    box-sizing: border-box;
    padding: 0 3px;
}
.product-list .products_bottom .products_content ul {
    padding: 0 0 0 22px;
    margin: 0;
    list-style: none;
}
.product-list .products_bottom .products_content ul li{
    position: relative;
}
.product-list .products_bottom .products_content ul li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: -11px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: #878787;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1280px) {
    .product-list .pic{
        width: 45%;
    }
    .product-list .text {
        width: 55%;
        padding: 10px 0 10px 15px;
    }
    .product-list .name{
        font-size: 18px;
    }
}
@media screen and (max-width: 1100px) {
    .product-list {
        margin: 0 auto;
    }
    .product-list > li{
        width: 100%;
        padding: 0 0 30px;
        margin: 0 0 30px;
    }
    .product-list li:nth-child(2n+1) {
        clear: none;
    }
    .product-list li:nth-child(n+1) {
        clear: left;
    }
    .product-list .name{
        font-size: 16px;
    }
    .product-list .pic{
        width: 100%;
    }
    .product-list .text {
        width: calc(100% - 218px);
    }
}
@media screen and (max-width: 480px) {
    .product-list {
        margin: 0 auto;
    }
    .product-list > li {
        padding: 0 0 30px;
        margin: 0 0 30px;
    }
    .product-list .product_top {
        flex-direction: column;
    }
    .product-list .pic{
        width: 100%;
        max-width: unset;
        margin: 0 auto;
    }
    .product-list .text {
        width: 100%;
        padding: 10px;
    }
}