.central .list_texts {
  background: #fff;
  padding: 2rem 0;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 12px #ebedf0;
  border: 1px solid rgba(208, 206, 206, 0.6) !important;
}
.central .list_texts .top-title {
  font-size: 1.5rem;
  line-height: 4rem;
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
}
.list_texts img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 450px;
  box-shadow: 0 4px 8px 0 rgb(28 31 33 / 15%);
  border-radius: 12px;
  border: 1px solid rgba(208, 206, 206, 0.6) !important;
  margin: 1.5rem 0;
}
.list_texts img:hover{
    /*cursor: pointer;*/
    cursor:url(../cur/hover.cur), pointer;
}
.row .card .list_texts {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: row;
  width: 100%;
  box-sizing: border-box;
}
.row .card .list_texts .lovelist {
  transition: height 2s;
  width: 100%;
  line-height: 3rem;
}
.row .card .list_texts .lovelist .open {
  border-bottom: 1px solid rgba(208, 206, 206, 0.6) !important;
  cursor: pointer;
}
.row .card .list_texts .lovelist .open .hied {
  display: none;
  width: 100%;
  height: 100%;
  transition: all 0.1s linear;
}
.row .card .list_texts i {
  font-style: normal;
  margin-right: 0.8rem;
  font-size: 1.8rem;
}
.row .card .list_texts .air {
  color: #ddd;
}
.row .card .list_texts .com {
  color: #19ffa0;
}
.row .card .list_texts span {
  font-size: 1.3rem;
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
}
.open img{
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 2px 12px #ebedf07a;
  border: 1px solid rgba(208, 206, 206, 0.6) !important;
  margin: 1.5rem 0;
}

/* 上传按钮样式 */
.upload-btn-container {
    margin: 20px 0;
}

.upload-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    cursor: pointer !important;
    min-height: 44px !important;
    white-space: nowrap !important;
    line-height: 1.4 !important;
}

.upload-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.upload-btn:active {
    transform: translateY(0) !important;
}

.upload-btn:visited {
    color: white !important;
    text-decoration: none !important;
}

.upload-icon {
    font-size: 16px !important;
    display: inline-block !important;
}

.upload-text {
    font-size: 14px !important;
    display: inline-block !important;
}

/* 管理按钮样式 */
.manage-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: white !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3) !important;
    min-height: 44px !important;
    white-space: nowrap !important;
    line-height: 1.4 !important;
}

.manage-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4) !important;
    color: white !important;
}

.manage-btn:active {
    transform: translateY(0) !important;
}

.manage-icon {
    font-size: 16px !important;
    display: inline-block !important;
}

.manage-text {
    font-size: 14px !important;
    display: inline-block !important;
}

/* 操作按钮区域 */
.action-buttons {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin-bottom: 20px !important;
}

/* 图片展开动画样式 */
.event-image-container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: top !important;
    will-change: max-height, opacity, transform !important;
}

.event-image-container.expanded {
    max-height: none !important;
    opacity: 1 !important;
}

/* 图片容器内的图片样式优化 */
.event-image-container img {
    transition: all 0.3s ease !important;
    transform: scale(1) !important;
}

.event-image-container.expanded img {
    animation: imageSlideIn 0.5s ease-out 0.1s both !important;
}

/* 图片滑入动画 */
@keyframes imageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 图片悬停效果增强 */
.event-image-container img:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
}

/* 事件项悬停时的提示效果 */
.lovelist li.cike {
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    position: relative !important;
}

.lovelist li.cike:hover {
    background-color: rgba(102, 126, 234, 0.05) !important;
    padding-left: 8px !important;
    border-radius: 8px !important;
}

/* 为有图片的事件添加视觉提示 - 通过JavaScript动态添加类 */
.lovelist li.cike.has-image::after {
    content: "📷";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.lovelist li.cike.has-image:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* 平滑的展开收起过渡 */
.lovelist ul {
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease-out, 
                transform 0.4s ease-out !important;
}
