/* img area  */
#main .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 图之间间距 */
    justify-content: flex-start;
    margin-top: 40px;
  }
#main {
    flex: 0.7;
    padding: 0 40px;
  }
   
#main .list img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

#show {
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
}

#show .img-area {
    margin-left: 20px;
    margin-right: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 50px;
}

.img-area > img {
    animation: arise 1s;
}

.img-area > span {
    font-size: 14px;
}

#show img{
    width: 300px;
}


@keyframes arise {
    from {
        opacity: 0;
        filter: blur(10px);
    }

    to {
        opacity: 1;
    }
}


  
 
  