@font-face {
    font-family: 'iconfont';
    src: url('/static/home/iconfont/iconfont.ttf?t=1661931492161') format('truetype');
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.menu-icon {
    font-size: 24px;
    color: #ef1f1f;
}

.top-flex {
    margin-top: 30px;
}
.hover-hot-top{
    transform: translateY(-90px);
    position: absolute;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    height: 80px;
    background-color: RGBA(2, 124, 255, 0.8);
    border-radius: 5px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
    font-size: 24px;
}
.n-hot:hover .hover-hot-top{
    transform: translateY(0px);
    transition: all 1s;
}

.hover-hot {
    transform: translateY(50px);
    position: absolute;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    height: 40px;
    background-color: RGBA(0, 0, 0, 0.3);
    border-radius: 5px;
    bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px
}
.n-hot:hover .hover-hot{
    transform: translateY(0px);
    transition: all 1s;
}
.type_title h3{
    border-left:0;
    color: #ef1f1f;
}
.type_title{
    padding-bottom:0;
    border-bottom: 2px solid #ef1f1f;
}
.n-box-info{
    display: grid;
    grid-template-columns:repeat(5,1fr);
    grid-gap: 20px;
    margin-top: 20px;
}
.info-detail{
    /*width: calc((100% - 50px) / 5);*/
    height: 300px;
    background-color: #0a6aa1;
    position: relative;
    cursor: pointer;

}
.img-n-box{
    width: 100%;
    height: 100%;
}
.img-n-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-detail > span{
    position: absolute;
    color: black;
    font-size: 30px;
    font-weight: bolder;
    bottom: 30px;
    left: 44%;
}
.n-bottom-box{
    width: 100%;
    height: 300px;
    position: absolute;
    /*visibility: hidden;*/
    background-color: rgba(0,0,0,0.4);
    display: none;
    height: 0;
}
.info-detail:hover .n-bottom-box{
    /*visibility: visible;*/
     display: block;
     height: 300px;
    transition: all 1s;
    transform: translateY(-300px);
}
.info-detail:hover .n-bottom-box button{
    display: block;
    /*visibility: visible;*/
    transition: all 1s;
    transform: translateX(0px);
}
.n-bottom-box h2{
    color: #fff;
    font-size: 24px;
    padding: 20px;
    box-sizing: border-box;
}
.fix-bottom{
    height: 50px;
    position: absolute;
    bottom: 10px;
    width: 100%;
    background-color: #2D64B3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}
.n-bottom-box button{
    margin-left: 20px;
    outline: 0;
    border: 0;
    color: #fff;
    background-color: orange;
    padding: 5px 20px;
    border-radius: 5px;
    transform: translateX(200px);
    visibility: hidden;
}