    .menu_type {
        display: flex;
        margin: 0px 0px 2em;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .menu_type li {
        width: 24%;
        font-size: 116.7%;
        margin-bottom: 1em;
    }
    .menu_type li a {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
        border: 2px solid #e6e6e6;
        text-decoration: none;
        transition: all .3s;
    }
    .menu_type li a:hover {
        opacity: 0.7;
    }
    .type_box {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 2em;
    }
    .type_box .item {
        padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
        border: 1px solid #e0e0e0;
        width: 24%;
        margin-bottom: 1em;
        border-radius: 3px;
        margin-right: 1.3%;
    }
    .type_box .item:nth-child(4n) {
        margin-right: 0px;
    }
    .type_box .item a {
        display: block;
        text-decoration: none;
        transition: all .3s;
    }
    .type_box .item p {
    padding: 7px 10px;
    margin-top: 5px;
    background-color: #101010;
    color: #ffffff;
    background-image: url(url), -webkit-linear-gradient(270deg,rgba(64,64,64,1.00) 0%,rgba(16,16,16,1.00) 100%);
    background-image: url(url), linear-gradient(180deg,rgba(64,64,64,1.00) 0%,rgba(16,16,16,1.00) 100%);
    }
    
    .type_box .item a:hover {
        opacity: 0.7;
    }
    /*
    .type_box .item a:hover p {
    background-image: url(url), -webkit-linear-gradient(270deg,rgba(255,119,14,1.00) 0%,rgba(211,65,0,1.00) 100%);
    background-image: url(url), linear-gradient(180deg,rgba(255,119,14,1.00) 0%,rgba(211,65,0,1.00) 100%);
    }
    */
    
    .type_box .item img {
        max-width: 100%;
        height: auto;
    }
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 767px){
    .menu_type li {
        width: 49%;
    }
    
    .type_box {
        justify-content: space-between;
    }
    .type_box .item {
        width: 49%;
        margin-right: 0px;
    }
    
}