
.login, .username {
    font-style: normal;
}


.content-container {
    padding:90px 10px;
    background-color: #333333;
}

/* 图片容器,含图片名称、点赞、图片和描述 */
.pic-item {
    width: 100%;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@media (max-width:768px) {
    .pic-item {
        flex-direction: column;
    }

}
    
.img-title {
    color: white;
    padding: 20px 50px;
    font-size: clamp(15px,2vw,28px);
    font-weight: bold;
    text-align: center;
}


.parallax-img {

  width: 100%;
  max-width: 800px;
  max-height: 800px;
  object-fit: contain;
  transition: transform 0.3s ease;
  border: 1px solid white;
}

.like-btn {
    border: none ;   
    background: none;        
    outline: none;
    padding: 20px 30px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: clamp(15px,1.8vw,25px) ;
    color: #f04a3a;
}

.desc {
  color: white;
  font-size: clamp(15px,1.8vw,25px);
  padding: 20px 0;

}

.update-btn {
    position: absolute; 
    right: 10rem;
    align-items: center;
    background: #222222;
    color:  rgba(255, 173, 0, 1);
    padding: 9px 30px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: 1rem ;
}

.update-btn:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.7) ;
}

.pic-item form {
    position: absolute; 
    right: 3rem;
    display: flex;
    align-items: center;
}

.delete-btn {
    background: #222222;
    color:  rgba(255, 173, 0, 1);
    padding: 10px 30px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: 1rem ;
}

.delete-btn:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.7) ;
}
