*{
        box-sizing: border-box;
}
a{
    text-decoration: none;
}
li{
        list-style: none;
}
.globalList {
    border-radius: 15px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    margin: 30px 0 50px;
    overflow: hidden;
}

.globalList-tit {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 25px;
    
}
.globalList:nth-child(1n) .globalList-tit{
   background-image: linear-gradient(90deg, #ff6b6b, #ee5a5a);
}
.globalList:nth-child(2n) .globalList-tit{
    background-image: linear-gradient(90deg, #ff8a65, #ff5252);
}
.globalList:nth-child(3n) .globalList-tit:nth-child{
        background-image: linear-gradient(90deg, #4ecdc4, #44a08d);
}
.globalList:nth-child(4n) .globalList-tit{
       background-image: linear-gradient(90deg, #667eea, #764ba2);
}
.globalList:nth-child(5n) .globalList-tit:nth-child{
     background-image: linear-gradient(90deg, #ff9a56, #ff6b35);
}

.globalList-tit i {
    max-width: 35px;
    margin-right: 15px;
}

.globalList-tit i img {
    width: auto;
    height: auto;
    aspect-ratio: auto;
    vertical-align: middle;
    object-fit: contain;
    max-width: 100%;
    background-size: cover;
}


.globalList-tit em {
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
    color: #fff;
}

.globalList-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 25px;
  
}
.ul_Item{
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px 15px;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all .35s;
    width: 32%;
        
        margin:15px  2% 15px 0;
}
.ul_Item:nth-child(3n){
    margin-right: 0;
}
.ul_Item a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.ul-flag{
    background-size: 100% 100%;
    /*background-size: auto;*/
    width: 22px;
    height: 16px;
}
.ul_Item span {
    font-size: 16px;
    color: #000;
    flex: 1;height: 48px;
    padding-left: 23px;
    transition: all .35s linear;
    position: relative;
    vertical-align: middle;
     display: -webkit-box;
    -webkit-line-clamp: 2;  /* 限制显示两行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ul_Item:hover span {
    transform: translateX(-5px);
    color: #52246f;
}



@media screen and (max-width: 820px){
    .ul_Item{
        width: 49%;
        margin-right: 2%;
    }
    .ul_Item:nth-child(3n) {
    margin-right: 2%;
    }
    .ul_Item:nth-child(2n) {
    margin-right: 0;
    }
}
@media screen and (max-width: 480px){
     .ul_Item{
        width: 100%;
        margin-right: 0;
     }
     .ul_Item:nth-child(3n) {
        margin-right: 0;
    }
}