.gallery_ul{
    width: 100%;
    margin: 120px 0px 50px;
}
.gallery_ul li{
    width: 31%;
    text-align: center;
    float: left;
    margin-right: 40px;
    margin-top: 30px;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s;
}
.link_icon{
    width: 60px;
    position: absolute;
    top: 100px;
    left: 0px;
    right: 0px;
    margin: auto;
    display: none;
}
.gallery_ul li:hover{
    transform: translateY(-20px);
    transition: transform 0.4s;
}
.gallery_ul li:hover .gallery_img{
    box-shadow: 0px 15px 30px 0px 
        rgba(153, 153, 153, 0.25);
}
.gallery_ul li:hover .link_icon{
    display: block;
}
.three{
    margin-right: 0px !important;
}
.gallery_ul li a{
    display: block;
}
.gallery_img{
    width: 100%;
}
.gallery_ul li p{
    width: 100%;
}
.name_ch{
    font-size: 22px;
    color: #333;
    margin: 30px 0px 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.name_en{
    font-size: 16px;
    color: #999;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mobile_add_more{
    margin-bottom: 120px;
}
.mobile_add_more span{
    font-size: 16px;
    color: #666;
}

@media (max-width:768px) {
    .gallery_ul{
        width: 100%;
        margin: 30px 0px 0px;
    }
    .gallery_ul li{
        width: 100%;
        text-align: center;
        float: left;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 30px;
        position: relative;
        cursor: pointer;
        transition: transform 0.4s;
    }
    .link_icon{
        width: 60px;
        position: absolute;
        top: 100px;
        left: 0px;
        right: 0px;
        margin: auto;
        display: none;
    }
    .gallery_ul li:hover{
        transform: translateY(-20px);
        transition: transform 0.4s;
    }
    .gallery_ul li:hover .gallery_img{
        box-shadow: 0px 15px 30px 0px 
            rgba(153, 153, 153, 0.25);
    }
    .gallery_ul li:hover .link_icon{
        display: block;
    }
    .gallery_ul li a{
        display: block;
    }
    .gallery_img{
        width: 100%;
    }
    .gallery_ul li p{
        width: 100%;
    }
    .name_ch{
        font-size: 16px;
        color: #333;
        margin: 15px 0px 10px;
    }
    .name_en{
        font-size: 14px;
        color: #999;
    }
    
    .mobile_add_more{
        margin-bottom: 30px;
    }
}