.hgcontent{
    margin-top: 50px;
}
.hgcontent .area{
    overflow: hidden;
}
.listitems{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.375%;
    margin-top: 52px;
}
.listitems .block{
    height: 400px;
    width: 22.25%;
    background-color: #fafafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 1.375%;
    margin-bottom: 40px;
    cursor: pointer;
    /* transition: all .3s; */
}
.listitems .block h5{
    font-size: 18px;
    font-weight: bold;
	line-height: 18px;
	color: #4b4a4a;
    margin-top: 22px;
}
.listitems .block .alink .p1{
    font-size: 12px;
	line-height: 26px;
	color: #999999;
	opacity: 0.8;
    transition: all .3s;
}
.listitems .block .alink{
    position: relative;
    width: 75%;
}
.listitems .block .alink .inside{
    width: 101px;
	height: 41px;
	background-color: #d4d4d4;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 45px;
    cursor: pointer;
    transition: all .3s;
}
.listitems .block:hover{
    background-color: #fafafc;
	border: solid 2px #0466c9;
}
.listitems .block .alink .text{
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 12px;
	line-height: 24px;
	color: #999999;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    overflow-y: auto;
    height: 100%;
}
.listitems .block:hover .p1{
    display: none;
}
.listitems .block:hover .inside{
    display: none;
}
.listitems .block:hover .text{
    opacity: 1;
    visibility: visible;
}
.listitems .block:hover .alink{
    height: 112px;
}
/* padpro端 */
@media screen and (min-width: 991px) and (max-width: 1366px){
    .listitems .block .alink {
        width: 90%;
    }
}
/* pad端 */
@media screen and (min-width:768px) and (max-width:991px) {
    .listitems .block{
        width: 30%;
        margin: 0 1.66%;
        margin-bottom: 30px;
    }
    .listitems .block .alink {
        width: 90%;
    }
}
/* 移动端 */
@media (max-width:767px){
    .listitems{
        margin: unset;
        margin-top: 30px;
        justify-content: space-between;
    }
    .hgcontent{
        margin-top: 30px;
    }
    .listitems .block{
        width: 48%;
        margin: unset;
        margin-bottom: 30px;
    }
    .listitems .block .alink {
        width: 90%;
    }
}