

.product-table-list{
    box-sizing: border-box;
    list-style: none;
    width: 100%;
   /*border: 1px solid #7c7c7c;*/
    margin-bottom: 50px;

}

.downfile-btn{
    margin: 3px;
    background-color: #841012;padding: 5px 10px;color: #ffffff;border-radius: 5px
}

.downfile-btn:hover{
    background-color: #CD363F;
    color: #ffffff;
}

.product-table-list>li{
    width: 100%;
    display: flex;
    border-bottom: 1px solid #7c7c7c;
    border-left: 1px solid #7c7c7c;
    border-right: 1px solid #7c7c7c;
}

.product-table-list>li:first-child{
    border-left: 0;
    border-right: 0;
}


.product-table-list>li>p{
    padding: 8px ;
}

.product-table-list>li>div{
    font-size: 14px;
    padding: 8px ;
    border-right: 1px solid #7c7c7c;
    word-wrap: break-word; /* 允许在长单词中间换行 */
    word-break: break-all; /* 允许在任意字符间换行 */
    /*overflow-wrap: normal;   不允许单词内部断行 */
}

.product-table-list>li>div:nth-child(1){
    width: 30% ;
}
.product-table-list>li>div:nth-child(2){
    width: 40% ;
    text-align: center;
}

.product-table-list>li>div:nth-child(3){
    width: 30% ;
    text-align: center;
}

.product-table-list>li>div:last-child{
    border-right:0;
}

