@charset "utf-8";

.list_type{
    width: 1400rem;
    height: auto;
    margin: 0 auto;
}
.list_type1{
    width: 100%;
    height: auto;
}
.list_type_ul{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding-top: 20rem;
    justify-content: space-between;
    flex-wrap: wrap;
}
.list_type_li{
    width: 47%;
    margin-top: 30rem;
    background-color: #f0f0f0;
    position: relative;
    box-sizing: border-box;
}
.list_type_li a{
    width: 100%;
    height: 100%;
    display: block;
    font-size: 20rem;
    color: #333333;
    box-sizing: border-box;
    padding: 20rem 20rem;
    text-decoration: none;
}
.list_type_li a i{
    color: #015da1;
    font-size: 24rem;
    margin-right: 5rem;
    text-align: right;
    float: right;
}
.list_type_li:hover{
    background-color: #015da1;
}
.list_type_li:hover a{
    color: #fff;
}
.list_type_li:hover a i{
    color: #fff;
}
@media only screen and (max-width: 1000px) {
    .list_type{
        width: 100%;
        padding: 20rem 20rem;
        margin-bottom: 30rem;
    }
    .list_type_li{
        width: 100%;
    }
    .list_type_li a{
        font-size: 30rem;
    }
    .list_type_li a i{
        line-height: 50rem;
    }
    .list_type_li:hover a i{
        font-size: 36rem;
    }
}
