.sec1{
    padding: 10.4% 0;
}
.sec1 .th,.sec1 .td{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}
.sec1 .th{
    background-color: var(--theme-color);
    height: 4.25em;
}
.sec1 .td{
    height: 5.5em;
    border-bottom: 1px solid #dedede;
    transition: background-color 0.5s;
}
.sec1 .td:nth-child(even){
    background-repeat: repeat-y;
    background-image: url(../images/product_list3_rowbg.png);
    background-size: 100% auto;
}
.sec1 .th > *,.sec1 .td > *{
    padding-left: 1.875em;
    padding-right: 1.875em;
    line-height: 1.5;
}
.sec1 .th > *:nth-child(1),.sec1 .td > *:nth-child(1){
    width: 28%;
    flex-shrink: 0;
}
.sec1 .th > *:nth-child(2),.sec1 .td > *:nth-child(2){
    flex-grow: 1;
}
.sec1 .th > *:nth-child(3),.sec1 .td > *:nth-child(3){
    padding-right: 3em;
    flex-shrink: 0;
}
.sec1 .td > *{
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.sec1 h5{
    color: #333;
}
.sec1 h5 b{
    font-weight: normal;
    font-size: 1.125em;
}
.sec1 .th h5 b{
    color: #fff;
    font-weight: bold;
}
.sec1 p{
    color: #999;
}
.sec1 .more{
    color: var(--theme-color);
}
.sec1 .more span{
    vertical-align: middle;
}
.sec1 .more::after{
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-image: url(../images/product_list3_btnarrow.png);
    background-position: center center;
    background-size: contain;
    margin-left: 0.75em;
    width: 1.125em;
    height: 1.125em;
    transition: transform 0.5s;
}
@media only screen and (min-width:1025px){
    .sec1 .td:hover{
        background-color: rgba(252,51,41,0.05);
        background-image: none;
    }
    .sec1 .td:hover .more::after{
        transform: translateX(50%);
    }
}
@media only screen and (max-width:1024px){
    .sec1{
        padding: 15% 0;
    }
    .sec1 .th > *,.sec1 .td > *{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .sec1 .th > *:nth-child(1),.sec1 .td > *:nth-child(1){
        width: 40%;
        padding-left: 1em;
    }
    .sec1 .th > *:nth-child(3),.sec1 .td > *:nth-child(3){
        padding-right: 1em;
    }
    .sec1 h5{
        font-size: 0.9375em;
    }
    .sec1 p{
        font-size: 0.875em;
    }
    .sec1 .more span{
        display: none;
    }
    .sec1 .more::after{
        margin-left: 0;
        width: 0.9375em;
        height: 0.9375em;
    }
}