.ta-photo-picList {
    position: relative;
}

.ta-photo-picList .ta-photo-picItem {
    position: absolute;
    width: 280px;
    margin: 10px;
    border: 1px solid var(--ta-borderColor-lightBlack);
    padding: 15px 10px 10px 10px;
    transition: opacity ease 1s;
    opacity: 0;
    text-align: center;
    border-radius: 15px;
}

.ta-photo-picList .ta-photo-picItem:hover {
    background-color: var(--ta-cardColor-white);
    box-shadow: var(--ta-boxShadow-lightBlack);
}

.ta-photo-picList .ta-photo-picItem img {
    width: 260px;
    margin: 0;
}

.ta-photo-picList .title {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: var(--ta-fontColor-mediumBlack);
}

.ta-photo-picList .description {
    font-size: 12px;
    color: var(--ta-fontColor-lightBlack);
}

.ta-photo-loading {
    opacity: .4;
    text-align: center;
    margin-top: 20px;
    transition: all ease 1s;
}