.war {
    color: #b20000;
}

#main .item_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#main .item_info .img {
    width: 30%;
    margin-bottom: 40px;
}

#main .item_info .info {
    width: 68%;
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

#main .item_info .info .item_title {
    font-weight: bold;
    font-size: 24px;
    padding: 15px;
    color: #fff;
    background-color: #b20000;
    margin-bottom: 40px;
}

p.text {
    font-size: 18px;
    line-height: 34px;
    margin: 15px 0;
}

p.price {
    font-size: 12px;
}

p.item_cate {
    font-size: 18px;
    padding: 15px;
    color: #fff;
    background-color: #b20000;
}

#main .sup_title {
    text-align: left;
    font-weight: bold;
    font-size: 30px;
    color: #b20000;
    padding: 30px 15px;
    border-bottom: 3px solid #b20000;
    margin-bottom: 40px;
}


#main .tbl_info {
    display: flex;
    flex-direction: column;
}

#main .tbl_info tr {
    display: flex;
    margin-bottom: 10px;
    background-color: #fff;
}
#main .tbl_info tr th {
    text-align: left;
    font-size: 18px;
    padding: 1em 2em;
    border-right:2px solid #b20000;
    min-width: 100px;
    width: 50%;
}
#main .tbl_info tr td {
    font-size: 18px;
    padding: 1em 2em;
}

/* EC banner */
#ec_banner {
    margin: 40px 0;
}
#ec_banner .wrap {
}
#ec_banner .banner_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 2%;
}
#ec_banner .banner_list li {
    width: 48%;
    margin: 10px 0;
    border-radius: 10px;
}



@media screen and (max-width: 800px) {
   
}
@media screen and (max-width: 600px) {

    #main .item_info .img {
        width: 100%;
    }
    
    #main .item_info .info {
        width: 100%;
    }
    
    
}
@media screen and (max-width: 440px) {
    #ec_banner .banner_list li {
        width: 100%;
    }
}


