/* 重要日期时间线美化样式 */

/* 重要日期卡片整体优化 */
.important-time-wrapper.meeting-card {
  background: linear-gradient(to bottom, #fff, #f7f9fc);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* 重要日期标题区域增强 */
.important-time-wrapper .card-header {
  background: linear-gradient(135deg, #01459A, #0162d8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 增加标题装饰元素 */
.important-time-wrapper .card-header:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

/* 添加全局卡片内边距 */
.important-time-wrapper .about_two {
  padding: 20px 15px 10px;
}

/* 改进时间线容器样式 */
.important-time-wrapper .col-span-12 {
  position: relative;
  margin-left: 30px;
  padding-left: 5px;
}

/* 美化时间线中轴线 */
.important-time-wrapper .sm-timeline-line:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 2px;
  left: -20px;
  background: linear-gradient(to bottom, #01459A, #6a9ce4);
  border-radius: 1px;
  opacity: 0.7;
}

/* 时间点圆圈样式改进 */
.important-time-wrapper .sm-timeline-dot {
  position: relative;
}

.important-time-wrapper .sm-timeline-dot:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: -29px;
  top: 30px;
  margin-top: -9px;
  background: #01459A;
  box-shadow: 0 0 0 4px rgba(1, 69, 154, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

/* 时间点交互效果 */
.important-time-wrapper .flex-col:hover .sm-timeline-dot:before {
  background: #ff6b6b;
  box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.2);
  transform: scale(1.1);
}

/* 时间项容器美化 */
.important-time-wrapper .flex-col {
  position: relative;
  padding: 15px 20px;
  margin-bottom: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  border-left: 3px solid #01459A;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: block;
}

.important-time-wrapper .flex-col:hover {
  background: #fff;
  border-left: 3px solid #ff6b6b;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

/* 修改时间线的文本样式 */
.important-time-wrapper .text-xl {
  font-size: 18px;
  color: #01459A;
  margin: 0 0 8px 0;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 26px;
  line-height: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}

.important-time-wrapper .text-base {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  transition: all 0.3s ease;
  margin-left: 26px;
}

/* 时间项内容悬停效果 */
.important-time-wrapper .flex-col:hover .text-xl {
  color: #ff6b6b;
}

/* 更新时间日期容器样式 */
.important-time-wrapper .card-body {
  padding: 25px 20px;
}

/* 添加日期前的图标 */
.important-time-wrapper .text-xl:before {
  content: "\f133"; /* 日历图标 Font Awesome */
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #01459A;
  font-size: 18px;
  transition: all 0.3s ease;
}

.important-time-wrapper .flex-col:hover .text-xl:before {
  color: #ff6b6b;
  transform: scale(1.1);
}

/* 向时间线添加引导线 */
.important-time-wrapper .sm-timeline-dot:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #01459A;
  left: -20px;
  top: 30px;
  margin-top: -1px;
  z-index: 1;
}

.important-time-wrapper .flex-col:first-child .sm-timeline-dot:after {
  background: #ff6b6b;
}

/* 悬停效果优化 */
.important-time-wrapper .flex-col:hover .sm-timeline-dot:before,
.important-time-wrapper .flex-col:hover .sm-timeline-dot:after {
  background: #ff6b6b;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
  .important-time-wrapper .flex-col {
    padding: 12px 15px;
    margin-bottom: 15px;
  }
  
  .important-time-wrapper .text-xl {
    font-size: 16px;
    height: 26px;
    line-height: 26px;
  }
  
  .important-time-wrapper .text-base {
    font-size: 13px;
  }
  
  .important-time-wrapper .card-header:after {
    width: 20px;
    height: 20px;
    right: 15px;
  }
  
  .important-time-wrapper .sm-timeline-dot:before {
    width: 14px;
    height: 14px;
    left: -27px;
    top: 26px;
    margin-top: -7px;
  }
  
  .important-time-wrapper .sm-timeline-line:before {
    left: -20px;
  }
  
  .important-time-wrapper .sm-timeline-dot:after {
    width: 8px;
    top: 26px;
  }
}

/* 时间线状态指示效果 */
.important-time-wrapper .flex-col:first-child .sm-timeline-dot:before {
  background: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
}

/* 时间线容器调整 */
.important-time-wrapper .container {
  padding: 0;
} 