[v-cloak] {
  display: none !important;
}
.logo {
  max-height: 80px;
  display: inline;
}

.site-titles {
  margin: 3px 4px;
  /* font-size: 0.9rem; */
  padding-left: 5px;
}

.site-titles li {
  white-space: nowrap;
  padding: 2px 0;
  font-size: small;
  list-style: none;
}

/* 轮播图高度控制 */
.carousel-section {
  max-height: 500px;
  overflow: hidden;
}

.stage-label.current {
  font-weight: 600;
  color: #409eff;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* 新增平台专区样式 */
.platform-section {
}
.tips {
  font-size: smaller;
  text-align: center;
}

.text-muted {
  min-height: 45px;
}

.platform-title {
  color: #2c3e50;
  font-size: 1.8rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.platform-card {
  transition: transform 0.3s ease;
  border: none !important;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.comptition-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 3px solid #409eff;
}
.entry-icon {
  font-size: 2.5rem;
  color: #409eff;
}

.entry-title {
  color: #2c3e50;
  font-weight: 600;
}

/* 卡片悬停效果 */
.entry-card {
  transition: transform 0.3s ease;
}
/* 可点击卡片样式 */
.clickable-card {
    cursor: pointer;
    transition: all 0.3s;
}
.clickable-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.title-wrap{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}

/* 新闻标题链接样式 */
.news-title-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}
.news-title-link:hover {
    color: #409EFF;
    text-decoration: none;
}

/* 日期方块样式 */
.date-block {
    position: absolute;
    top: 8px;
    right: 15px;
    width: 60px;
    height: 60px;
    background-color: #409EFF;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-weight: bold;
}
.date-block .year {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 5px;
}
.date-block .day {
    font-size: 18px;
    line-height: 1;
}
.date-block .month {
    font-size: 12px;
    line-height: 1;
    margin-top: 2px;
}
/* 修正角标定位 */
.el-card__corner {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #f56c6c;
    color: white;
    padding: 6px 12px;
    border-radius: 0 0 0 12px;
    font-size: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

/* 为卡片添加相对定位 */
.el-card {
    position: relative;
    overflow: visible;
}
.stage-active {
  background: #268b22;
}
.stage-red{
  background: #f56c6c;
}
.stage-finished {
  background: #909399;
}
.entry-card:hover {
  transform: translateY(-5px);
}

/* 时间线优化 */
.el-timeline {
  padding-left: 1rem;
}

/* 按钮间距调整 */
.el-button {
  margin-top: 1rem !important;
}

/* 友情链接样式 */
.friend-links a {
  text-decoration: none;
  transition: opacity 0.3s;
}
.friend-links a:hover {
  opacity: 0.8;
}

.card-title {
  margin-bottom: 20px;
}

/* 新增新闻区样式 */
.news-section {
  /* margin: 2rem 0; */
}

.section-title {
  color: #2c3e50;
  font-size: 1.5rem;
  border-left: 4px solid #409eff;
  padding-left: 1rem;
}

.news-item {
  transition: transform 0.3s ease;
  border-left: 5px solid #0a79b9;
  border-radius: 5px;
  margin-bottom: 10px;
}

.news-item:hover {
  transform: translateX(10px);
}

.more-btn {
  padding: 12px 30px;
  font-size: 1.1rem;
}

/* 证书查询 */
.about-us p {
  text-indent: 2em;
}
section.hero-area {
  padding-bottom: 50px;
  padding-top: 160px;
}

/* 新增验证码样式 */
.captcha-container {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
#captchaImg {
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}
/* 结果展示样式 */
.result-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}
.info-item {
  margin: 15px 0;
  display: flex;
}
.info-label {
  width: 160px;
  color: #666;
  font-weight: bold;
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.error-msg {
  color: #dc3545;
  margin: 10px 0;
}

.sing-in-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  transition: background-color 0.3s ease;
}

.sing-in-btn:hover {
  background-color: #0056b3;
}

.sing-in-btn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.result-card {
  /* 背景水印图片 */
  background-image: url("images/valid.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}

.login-form input {
  width: 100%;
  border: 1px solid #cbd5e1;
  outline: none;
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
}
.login-form input:focus {
  border-color: #39f;
}

/* 新增二维码样式 */
.qrcode-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border: 2px solid #eee;
  border-radius: 8px;
}

.qrcode-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .qrcode-img {
    width: 120px;
    height: 120px;
  }
}

/* 新增悬浮按钮样式 */
.fixed-buttons {
  position: fixed;
  right: 30px;
  bottom: 30px;
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 15px; */
  z-index: 999;
}

.fixed-buttons .el-button {
  width: 60px;
  height: 60px;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.lead{
  text-indent: 2em;
  text-align: justify;
}

/* @media (max-width: 768px) {
  .fixed-buttons {
    right: 15px;
    bottom: 15px;
  }
  .fixed-buttons .el-button {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
} */
