@charset "UTF-8";

.imgList {
    width: calc(100% + 20px);
    display: flex;
    align-items: center;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
    align-content: flex-start;
}

.imgList>a {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 15px;
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.382s;
    overflow: hidden;
    width: 202px;

}

.imgList .item {
    width: 100%;
    height: 100%;
}

.imgList .item .img {
    flex-shrink: 0;
    width: 100%;
    height: 276px;
    overflow: hidden;
    transition: 0.2s;
    margin: 0;
    box-sizing: border-box;
    border: 1px solid #9c266e;
}

.imgList .item .img img {
    transition: 0.2s;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

[isMobile] .imgList .item .img img {
    object-fit: contain;
}

.imgList .item .text {
    transition: 0.2s;
    flex-grow: 1;
    height: 60px;
    /*背景图片*/
    background: #9c266e url(../images/innerList/imgList/logo.png) no-repeat center right/contain;
    background-size: 100px 78px;
    background-position-x: 105%;
    box-sizing: border-box;
    padding: 15px;
    color: white;
    line-height: normal;
}

.imgList .item .text .t1 {
    transition: 0.2s;
    font-size: 18px;
    font-weight: bold;
    /*多行省略号*/
    overflow: hidden;
    word-break: break-all;
    white-space: break-spaces;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: min-content;
    -webkit-line-clamp: 1;
    margin-bottom: 6px;
    text-align: center;
    /*单行省略号*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.imgList .item .text .t2 {
    transition: 0.2s;
    font-size: 14px;
    opacity: 0.618;
    /*多行省略号*/
    overflow: hidden;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: min-content;
    -webkit-line-clamp: 2;
}

.imgList .item:hover .img {
    /* transform: scale(1.05); */
}

.imgList .item:hover .img img {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.imgList .item:hover .text {
    /* height: 150px; */
    background-color: #B44883;
    background-size: 150px 117px;
    background-position-x: 95%;
}

.imgList .item:hover .text .t1 {
    -webkit-line-clamp: 2;
}

.imgList .item:hover .text .t2 {
    -webkit-line-clamp: 3;
}

[isMobile] .imgList {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0;
    margin-right: 0;
    margin-top: 10px;
    width: 100%;
}

[isMobile] .imgList>a {
    width: 100% !important;
    margin-bottom: 10px;
}

[isMobile] .imgList .item {
    overflow: hidden;
    width: 100%;
}

[isMobile] .imgList .item .img {
    width: 100%;
    height: calc(calc(100vw - 40px) * 3 / 4);
}

[isMobile] .imgList .item .text .t1 {
    font-family: AlimamaFangYuanTiVF-Thin;
}

[isMobile] .imgList .item .text .t2 {
    font-family: AlimamaFangYuanTiVF-Thin;
}