.language {
    padding: 50px 0;
    background: #f2f2f2;
}

.language .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main_title {
    font-size: 26px;
    font-weight: 900;
    line-height: 35px;
    margin-bottom: 25px;
}

.lan_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.lan_list li {
    position: relative;
    width: calc( 100%/6 - 125px/6);
    border-radius: 10px;
    overflow: hidden;
}

.lan_list li .img, .lan_list li .img img {
    width: 100%;
}

.lan_list li .text {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #fff;
}

.lan_list li .text img {
    width: 40px;
    margin-bottom: 10px;
}

.lan_list li .text .ch {
    font-size: 20px;
    font-weight: 900;
}

.lan_list li .text .origin {
    height: 50px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
}

.lan_list li .text .origin span {
    font-size: 12px;
}



@media screen and (max-width: 979px) {

    .language {
        padding: 50px 0 20px;
    }

    .main_title {
        font-size: 18px;
        line-height: 25px;
    }

    .lan_list li {
        width: calc( 100%/3 - 20px/3);
        margin-bottom: 25px;
    }

    
    .lan_list li .text img {
        width: 30px;
        margin-bottom: 5px;
    }
    
    .lan_list li .text .ch {
        font-size: 18px;
    }
    
    .lan_list li .text .origin {
        height: 46px;
        line-height: 18px;
    }
    
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 320px) {
}

@media screen and (max-device-width: 480px) {
}







