
.contest-detail-page[data-v-745927d7] {
  /*background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);*/
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}
.back-btn[data-v-745927d7] {
  margin: 20px 0;
  background: none;
  border: none;
  padding: 6px 18px;
  font-size: 20px;
  margin-right: 12px;
  color: #1d9c40;
  cursor: pointer;
  border-radius: 20px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
&:hover {
    background-color: rgba(29, 156, 64, 0.1);
}
}

/* 顶部图片区域 */
.contest-header[data-v-745927d7] {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.contest-cover[data-v-745927d7] {
  position: relative;
  width: 100%;
  height: 100%;
}
.cover-image[data-v-745927d7] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  /*filter: brightness(0.7);*/
}
.cover-overlay[data-v-745927d7] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.3)), to(rgba(0,0,0,0.7)));
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.contest-title-section[data-v-745927d7] {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.title-wrapper[data-v-745927d7] {
  max-width: 800px;
}
.contest-tag[data-v-745927d7] {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#ff7e5f), to(#feb47b));
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contest-title[data-v-745927d7] {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.contest-subtitle[data-v-745927d7] {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}
.contest-stats[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stat-item[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.stat-value[data-v-745927d7] {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd166;
  margin-bottom: 0.3rem;
}
.stat-label[data-v-745927d7] {
  font-size: 0.9rem;
  opacity: 0.8;
}
.join-btn[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#36d1dc), to(#5b86e5));
  background: linear-gradient(90deg, #36d1dc, #5b86e5);
  color: white;
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -webkit-box-shadow: 0 4px 15px rgba(54, 209, 220, 0.3);
          box-shadow: 0 4px 15px rgba(54, 209, 220, 0.3);
}
.join-btn[data-v-745927d7]:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(54, 209, 220, 0.4);
          box-shadow: 0 6px 20px rgba(54, 209, 220, 0.4);
}

/* 主内容布局 */
.main-content[data-v-745927d7] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.content-left[data-v-745927d7] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.content-right[data-v-745927d7] {
  width: 350px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 标签导航 */
.tab-navigation[data-v-745927d7] {
  background: white;
  border-radius: 15px;
  padding: 0.5rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.08);
          box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.tab-btn[data-v-745927d7] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.tab-btn[data-v-745927d7]:hover {
  color: #5b86e5;
  background: rgba(91, 134, 229, 0.1);
}
.tab-btn.active[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#36d1dc), to(#5b86e5));
  background: linear-gradient(90deg, #36d1dc, #5b86e5);
  color: white;
  -webkit-box-shadow: 0 4px 12px rgba(54, 209, 220, 0.3);
          box-shadow: 0 4px 12px rgba(54, 209, 220, 0.3);
}
.tab-icon[data-v-745927d7] {
  font-size: 1.2rem;
}
.tab-badge[data-v-745927d7] {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff7e5f;
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}

/* 标签内容区域 */
.tab-content[data-v-745927d7] {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.08);
          box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

/* 富文本内容 */
.rich-text-content[data-v-745927d7] {
  line-height: 1.8;
}
.rich-text-content h2[data-v-745927d7] {
  color: #2c3e50;
  border-bottom: 2px solid #36d1dc;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.rich-text-content h3[data-v-745927d7] {
  color: #34495e;
  margin: 1.5rem 0 1rem 0;
}
.rich-text-content ul[data-v-745927d7] {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.rich-text-content li[data-v-745927d7] {
  margin: 0.5rem 0;
}
.highlight-box[data-v-745927d7] {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-left: 4px solid #667eea;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* 规则卡片 */
.rules-section[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.rule-card[data-v-745927d7] {
  border: 2px solid #e8eaf6;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s, -webkit-transform 0.3s;
  transition: border-color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, border-color 0.3s;
  transition: transform 0.3s, border-color 0.3s, -webkit-transform 0.3s;
}
.rule-card[data-v-745927d7]:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: #5b86e5;
}
.rule-header[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#f5f7fa), to(#e4e8f0));
  background: linear-gradient(90deg, #f5f7fa, #e4e8f0);
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.rule-number[data-v-745927d7] {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}
.rule-title[data-v-745927d7] {
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 0;
}
.rule-body[data-v-745927d7] {
  padding: 1.5rem;
}
.period-info[data-v-745927d7] {
  display: grid;
  gap: 1rem;
}
.period-item[data-v-745927d7] {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.period-item[data-v-745927d7]:hover {
  background: #e9ecef;
}
.period-stage[data-v-745927d7] {
  font-weight: 600;
  color: #2c3e50;
}
.period-date[data-v-745927d7] {
  color: #666;
}
.period-status[data-v-745927d7] {
  justify-self: end;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}
.period-status.active[data-v-745927d7] {
  background: #e1f5fe;
  color: #0288d1;
}
.period-status.upcoming[data-v-745927d7] {
  background: #fff3e0;
  color: #f57c00;
}
.rule-list[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.rule-item[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.5;
}
.rule-dot[data-v-745927d7] {
  width: 8px;
  height: 8px;
  background: #5b86e5;
  border-radius: 50%;
  margin-top: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.prize-distribution[data-v-745927d7] {
  padding: 1rem 0;
}
.prize-levels[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.prize-level[data-v-745927d7] {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  background: -webkit-gradient(linear, left top, right top, from(#f8f9fa), to(#ffffff));
  background: linear-gradient(90deg, #f8f9fa, #ffffff);
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.prize-level[data-v-745927d7]:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.prize-rank[data-v-745927d7] {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
}
.prize-info[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prize-amount[data-v-745927d7] {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff7e5f;
}
.prize-count[data-v-745927d7] {
  font-size: 0.9rem;
  color: #666;
}
.prize-badge[data-v-745927d7] {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  text-align: center;
  color: white;
}
.prize-badge.第1名[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#ffd700), to(#ffed4e));
  background: linear-gradient(90deg, #ffd700, #ffed4e);
}
.prize-badge.第2-5名[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#c0c0c0), to(#e0e0e0));
  background: linear-gradient(90deg, #c0c0c0, #e0e0e0);
  color: #333;
}
.prize-badge.第6-10名[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#cd7f32), to(#e39e5a));
  background: linear-gradient(90deg, #cd7f32, #e39e5a);
}
.prize-badge.优秀奖[data-v-745927d7],
.prize-badge.入围奖[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#36d1dc), to(#5b86e5));
  background: linear-gradient(90deg, #36d1dc, #5b86e5);
}

/* 排行榜 */
.section-header[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e8eaf6;
}
.section-title[data-v-745927d7] {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.title-icon[data-v-745927d7] {
  font-size: 1.8rem;
}
.works-count[data-v-745927d7] {
  color: #5b86e5;
  font-size: 1.2rem;
}
.section-actions[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.action-btn[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#36d1dc), to(#5b86e5));
  background: linear-gradient(90deg, #36d1dc, #5b86e5);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.action-btn[data-v-745927d7]:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.period-select[data-v-745927d7] {
  padding: 0.5rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  font-weight: 500;
  cursor: pointer;
}

/* 排名列表 */
.ranking-list[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.ranking-item[data-v-745927d7] {
  display: grid;
  grid-template-columns: 80px 100px 2fr 1fr 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border: 2px solid #e8eaf6;
  border-radius: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ranking-item[data-v-745927d7]:hover {
  border-color: #5b86e5;
  -webkit-box-shadow: 0 5px 15px rgba(91, 134, 229, 0.1);
          box-shadow: 0 5px 15px rgba(91, 134, 229, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.ranking-item.top-three[data-v-745927d7] {
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
  border-color: rgba(102, 126, 234, 0.3);
}
.rank-number[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rank-circle[data-v-745927d7] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}
.rank-gold[data-v-745927d7] {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
}
.rank-silver[data-v-745927d7] {
  background: linear-gradient(135deg, #c0c0c0, #e0e0e0);
  color: #333;
}
.rank-bronze[data-v-745927d7] {
  background: linear-gradient(135deg, #cd7f32, #e39e5a);
  color: white;
}
.rank-normal[data-v-745927d7] {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: white;
}
.work-cover[data-v-745927d7] {
  position: relative;
  width: 100px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.2);
          box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.work-cover img[data-v-745927d7] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-overlay[data-v-745927d7] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.crown[data-v-745927d7] {
  font-size: 2rem;
  -webkit-animation: shine-data-v-745927d7 2s infinite;
          animation: shine-data-v-745927d7 2s infinite;
}
@-webkit-keyframes shine-data-v-745927d7 {
0%, 100% { opacity: 0.7;
}
50% { opacity: 1;
}
}
@keyframes shine-data-v-745927d7 {
0%, 100% { opacity: 0.7;
}
50% { opacity: 1;
}
}
.work-info[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.work-title[data-v-745927d7] {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}
.work-meta[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.author[data-v-745927d7], .category[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}
.tags[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.tag[data-v-745927d7] {
  background: rgba(91, 134, 229, 0.1);
  color: #5b86e5;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}
.work-stats[data-v-745927d7] {
  /*display: grid;*/
  /*grid-template-columns: repeat(3, 1fr);*/
  /*gap: 0.5rem;*/
}
.stat[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.stat-value[data-v-745927d7] {
  font-weight: 700;
  color: #2c3e50;
  font-size: 1.1rem;
}
.stat-label[data-v-745927d7] {
  font-size: 0.8rem;
  color: #666;
}
.vote-btn[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#ff7e5f), to(#feb47b));
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.vote-btn[data-v-745927d7]:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 4px 12px rgba(255, 126, 95, 0.3);
          box-shadow: 0 4px 12px rgba(255, 126, 95, 0.3);
}

/* 我的作品列表 */
.my-works-section[data-v-745927d7] {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e8eaf6;
}
.my-works-list[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.my-work-item[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem;
  background: white;
  border: 2px solid #e8eaf6;
  border-radius: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.my-work-item[data-v-745927d7]:hover {
  border-color: #5b86e5;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.my-work-item.highlighted[data-v-745927d7] {
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
  border-color: rgba(102, 126, 234, 0.3);
}
.work-left[data-v-745927d7] {
  /*width: 700px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  /*flex: 1;*/
}
.work-cover-small[data-v-745927d7] {
  width: 80px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.1);
          box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.work-cover-small img[data-v-745927d7] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-details[data-v-745927d7] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.work-details .work-title[data-v-745927d7] {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.work-status[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.status-badge[data-v-745927d7] {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}
.status-badge.reviewing[data-v-745927d7] {
  background: #fff3e0;
  color: #f57c00;
}
.status-badge.published[data-v-745927d7] {
  background: #e8f5e9;
  color: #2e7d32;
}
.rank[data-v-745927d7] {
  color: #5b86e5;
  font-weight: 600;
  font-size: 0.9rem;
}
.work-details .work-meta[data-v-745927d7] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.meta-item[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  color: #666;
  font-size: 0.9rem;
}
.work-right[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*flex-direction: column;*/
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}
.work-actions[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.work-actions .action-btn[data-v-745927d7] {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 8px;
}
.action-btn.edit[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#36d1dc), to(#5b86e5));
  background: linear-gradient(90deg, #36d1dc, #5b86e5);
}
.action-btn.promote[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#ff7e5f), to(#feb47b));
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
}
.action-btn.stats[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#667eea), to(#764ba2));
  background: linear-gradient(90deg, #667eea, #764ba2);
}

/* 空状态 */
.empty-state[data-v-745927d7] {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 15px;
  border: 2px dashed #e0e0e0;
}
.empty-icon[data-v-745927d7] {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.empty-state h3[data-v-745927d7] {
  color: #666;
  margin-bottom: 0.5rem;
}
.empty-state p[data-v-745927d7] {
  color: #999;
  margin-bottom: 2rem;
}
.submit-btn.large[data-v-745927d7] {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
.submit-btn[data-v-745927d7] {
  background: -webkit-gradient(linear, left top, right top, from(#667eea), to(#764ba2));
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.submit-btn[data-v-745927d7]:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
          box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* 右侧卡片样式 */
.info-card[data-v-745927d7],
.reminder-card[data-v-745927d7],
.recommend-card[data-v-745927d7] {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.08);
          box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.card-title[data-v-745927d7] {
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 0 0 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.info-list[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.info-item[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.info-item[data-v-745927d7]:last-child {
  border-bottom: none;
}
.info-label[data-v-745927d7] {
  color: #666;
  font-weight: 500;
  min-width: 80px;
}
.info-value[data-v-745927d7] {
  color: #333;
  font-weight: 600;
  text-align: right;
}
.info-tags[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.info-tags .tag[data-v-745927d7] {
  background: rgba(91, 134, 229, 0.1);
  color: #5b86e5;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
}
.reminder-content[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.reminder-progress[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.progress-bar[data-v-745927d7] {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill[data-v-745927d7] {
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#ff7e5f), to(#feb47b));
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  border-radius: 4px;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.progress-text[data-v-745927d7] {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}
.deadline-warning[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #fff3e0;
  border-radius: 10px;
  color: #f57c00;
  font-weight: 600;
}
.warning-icon[data-v-745927d7] {
  font-size: 1.2rem;
}
.reminder-btn[data-v-745927d7] {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#36d1dc), to(#5b86e5));
  background: linear-gradient(90deg, #36d1dc, #5b86e5);
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.reminder-btn[data-v-745927d7]:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(54, 209, 220, 0.3);
          box-shadow: 0 4px 12px rgba(54, 209, 220, 0.3);
}
.recommend-list[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.recommend-item[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
}
.recommend-item[data-v-745927d7]:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  background: #e9ecef;
}
.recommend-cover[data-v-745927d7] {
  width: 60px;
  height: 80px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.recommend-info[data-v-745927d7] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recommend-info h4[data-v-745927d7] {
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  color: #2c3e50;
}
.recommend-desc[data-v-745927d7] {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}
.recommend-meta[data-v-745927d7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.8rem;
  color: #5b86e5;
  font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 1200px) {
.main-content[data-v-745927d7] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.content-right[data-v-745927d7] {
    width: 100%;
}
.ranking-item[data-v-745927d7] {
    grid-template-columns: 60px 80px 2fr 1fr 100px;
    gap: 1rem;
    padding: 1rem;
}
.work-cover[data-v-745927d7] {
    width: 80px;
    height: 110px;
}
}
@media (max-width: 768px) {
.contest-title-section[data-v-745927d7] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
}
.contest-stats[data-v-745927d7] {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.contest-title[data-v-745927d7] {
    font-size: 2.2rem;
}
.tab-navigation[data-v-745927d7] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.ranking-item[data-v-745927d7] {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
}
.work-info[data-v-745927d7] {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.work-meta[data-v-745927d7] {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.my-work-item[data-v-745927d7] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
}
.work-left[data-v-745927d7] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}
.work-right[data-v-745927d7] {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.work-actions[data-v-745927d7] {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
}

