跳转到内容
打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

Template:Index2026/styles.css

模板页面
Yzystudio留言 | 贡献2026年9月7日 (一) 00:23的版本

/* ============================================================
   一支烟工作室 · 主页样式(明亮色彩版)
   ============================================================ */

/* ----- 背景层 (遮罩更薄,让背景图更清晰) ----- */
.hp-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hp-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);  /* 大幅降低暗度 */
}
.hp-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 18, 0.15); /* 轻微深色,保留层次 */
}

/* ----- 主容器 ----- */
.hp-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px 16px 60px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: #f5f7fa;
  min-height: 100vh;
}

/* ----- Header ----- */
.hp-header {
  width: 100%;
  text-align: center;
  padding: 6px 0 10px;
}
.hp-header-logo {
  max-width: 340px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 6px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}
.hp-header-logo:hover {
  transform: scale(1.01);
}
.hp-header-sub {
  font-size: 0.95rem;
  letter-spacing: 6px;
  color: #f0d5b0;
  opacity: 1;
  margin-top: 2px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ----- 欢迎弹窗 (更透亮) ----- */
.hp-welcome {
  background: rgba(45, 48, 56, 0.75);
  border-radius: 28px;
  padding: 24px 30px 22px;
  width: 100%;
  max-width: 820px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(240, 210, 170, 0.25);
  border: 1px solid rgba(240, 210, 170, 0.20);
  transition: all 0.25s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}
.hp-welcome.hidden {
  display: none;
}
.hp-welcome-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 300px;
}
.hp-welcome-text h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff4e5;
  margin: 0;
  letter-spacing: 0.5px;
}
.hp-welcome-text h2 span {
  font-size: 1.6rem;
  margin-right: 4px;
}
.hp-welcome-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #e0e6ee;
  opacity: 0.9;
}
.hp-welcome-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.hp-welcome-actions .hp-btn {
  background: #f0d5b0;
  border: none;
  padding: 8px 26px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1c1f26;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  border: 1px solid #f0d5b0;
}
.hp-welcome-actions .hp-btn:hover {
  background: #fae3c5;
  transform: scale(1.02);
}
.hp-welcome-actions label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #c0cbd8;
  cursor: pointer;
}
.hp-welcome-actions label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* ----- 网格 (3列) ----- */
.hp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 6px 0 10px;
}

/* ----- 通用卡片 (更亮、色彩更丰富) ----- */
.hp-card {
  background: rgba(48, 52, 62, 0.70);
  border-radius: 28px;
  padding: 26px 24px 24px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(240, 210, 170, 0.15);
  border: 1px solid rgba(240, 210, 170, 0.10);
  transition: all 0.4s cubic-bezier(0.15, 0.75, 0.30, 1.1);
  color: #f0f3f7;
  display: flex;
  flex-direction: column;
  opacity: 0.3;
  transform: translateY(12px);
}
.hp-card.hp-visible {
  opacity: 1;
  transform: translateY(0);
  background: rgba(55, 60, 72, 0.80);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(240, 210, 170, 0.25);
}
.hp-card:hover {
  background: rgba(65, 70, 85, 0.85);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(240, 210, 170, 0.35);
  transform: translateY(-3px);
}
.hp-card h3 {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff4e5;
  margin: 0 0 12px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(240, 210, 170, 0.30);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-card h3 .hp-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(240, 210, 170, 0.3));
}
.hp-card p,
.hp-card .hp-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e0e6ee;
  margin: 0 0 8px 0;
}
.hp-card .hp-desc {
  opacity: 0.9;
}
.hp-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 6px;
}
.hp-badge-list span {
  background: rgba(240, 210, 170, 0.15);
  padding: 3px 14px;
  border-radius: 40px;
  font-size: 0.82rem;
  border: 1px solid rgba(240, 210, 170, 0.20);
  color: #f0e3d0;
}
.hp-link-list {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  margin: 4px 0 6px;
}
.hp-link-list a {
  color: #f0d5b0;
  text-decoration: none;
  border-bottom: 1px dashed rgba(200, 170, 140, 0.3);
  transition: 0.2s;
  padding: 2px 0;
  display: inline-block;
  width: fit-content;
}
.hp-link-list a:hover {
  color: #fff0dd;
  border-bottom-color: #f0d5b0;
  padding-left: 4px;
}
.hp-link-list .hp-link-meta {
  color: #b0bcc8;
  font-size: 0.85rem;
  margin-left: 8px;
  font-weight: 300;
}
.hp-recent-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 10px;
}
.hp-recent-list li {
  padding: 6px 0 6px 0;
  border-bottom: 1px solid rgba(200, 180, 150, 0.08);
  font-size: 0.92rem;
  line-height: 1.5;
  color: #e0e6ee;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
}
.hp-recent-list li:last-child {
  border-bottom: none;
}
.hp-recent-list .hp-rc-title {
  font-weight: 500;
  color: #fff4e5;
}
.hp-recent-list .hp-rc-user {
  color: #b0bcc8;
  font-size: 0.82rem;
}
.hp-recent-list .hp-rc-time {
  color: #b0bcc8;
  font-size: 0.75rem;
  margin-left: auto;
}
.hp-recent-list .hp-rc-comment {
  color: #b0bcc8;
  font-size: 0.82rem;
  opacity: 0.7;
  width: 100%;
  padding-left: 4px;
}
.hp-recent-empty {
  color: #b0bcc8;
  font-size: 0.92rem;
  opacity: 0.6;
  padding: 8px 0;
}
.hp-more-link {
  margin-top: 8px;
  font-size: 0.88rem;
}
.hp-more-link a {
  color: #f0d5b0;
  text-decoration: none;
  border-bottom: 1px dotted rgba(200, 170, 140, 0.4);
  transition: 0.2s;
}
.hp-more-link a:hover {
  color: #fff0dd;
  border-bottom-color: #f0d5b0;
}
.hp-footer {
  margin: 30px 0 6px;
  opacity: 0.5;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #d0d8e0;
  text-align: center;
  width: 100%;
}
.hp-loading {
  color: #b0bcc8;
  font-size: 0.9rem;
  opacity: 0.6;
  padding: 6px 0;
}
.hp-loading::after {
  content: '...';
  animation: hp-dots 1.2s steps(3, end) infinite;
}
@keyframes hp-dots {
  0% { content: ''; }
  33% { content: '.'; }
  66% { content: '..'; }
  100% { content: '...'; }
}

/* ----- 特殊:项目名录扁条 ----- */
.hp-card-featured {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: none;
  opacity: 0.3;
  transform: translateY(12px);
  transition: all 0.4s cubic-bezier(0.15, 0.75, 0.30, 1.1);
}
.hp-card-featured.hp-visible {
  opacity: 1;
  transform: translateY(0);
}
.hp-card-featured a {
  display: block;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}
.hp-card-featured a:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.5);
}
.hp-card-featured img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 200px;
  object-fit: cover;
}
.hp-card-featured .hp-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 32, 40, 0.5) 0%, rgba(60, 55, 50, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hp-card-featured .hp-featured-overlay h3 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff4e5;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  letter-spacing: 4px;
  margin: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.hp-card-featured .hp-featured-overlay h3 small {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-left: 18px;
  letter-spacing: 2px;
}

/* ----- 响应式 ----- */
@media (max-width: 1024px) {
  .hp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 820px) {
  .hp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .hp-welcome {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px;
  }
  .hp-welcome-text {
    flex-direction: column;
    gap: 4px;
  }
  .hp-welcome-actions {
    justify-content: center;
  }
  .hp-card h3 {
    font-size: 1.15rem;
  }
  .hp-card-featured .hp-featured-overlay h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 560px) {
  .hp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hp-container {
    padding: 12px 10px 40px;
  }
  .hp-card {
    padding: 20px 16px 18px;
    border-radius: 22px;
  }
  .hp-welcome-text h2 {
    font-size: 1.15rem;
  }
  .hp-header-logo {
    width: 90%;
  }
  .hp-recent-list li {
    font-size: 0.85rem;
  }
  .hp-recent-list .hp-rc-time {
    margin-left: 0;
    width: 100%;
  }
  .hp-card-featured .hp-featured-overlay h3 {
    font-size: 1.3rem;
    flex-direction: column;
  }
  .hp-card-featured .hp-featured-overlay h3 small {
    margin-left: 0;
    font-size: 0.9rem;
  }
}
/* ===== 排版优化追加 ===== */

.hp-card {
  padding: 32px 28px 28px;
}
.hp-grid {
  gap: 30px;
}
.hp-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hp-card p,
.hp-card .hp-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #e8edf4;
}
.hp-card-featured .hp-featured-overlay h3 {
  font-size: 2.4rem;
  text-align: center;
}
.hp-card-featured .hp-featured-overlay h3 small {
  font-size: 1.1rem;
  display: inline-block;
}
.hp-recent-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 180, 150, 0.1);
}
.hp-recent-list .hp-rc-time {
  margin-left: auto;
  padding-left: 12px;
  white-space: nowrap;
}
.hp-link-list a {
  padding: 4px 0;
  font-size: 1rem;
}
.hp-link-list a:hover {
  padding-left: 8px;
  transition: padding 0.2s;
}

@media (max-width: 900px) {
  .hp-grid {
    gap: 24px;
  }
  .hp-card {
    padding: 28px 22px 22px;
  }
  .hp-card h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 560px) {
  .hp-grid {
    gap: 18px;
  }
  .hp-card {
    padding: 24px 18px 20px;
  }
  .hp-card h3 {
    font-size: 1.2rem;
  }
  .hp-card-featured .hp-featured-overlay h3 {
    font-size: 1.6rem;
  }
}
/* ===== 解决截图中的排版问题 ===== */

/* 1. 卡片标题禁止单词内换行,允许正常空格换行 */
.hp-card h3 {
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 1.35rem;       /* 稍微缩小一点以适配小屏 */
}

/* 2. 增大卡片内边距,提升呼吸感 */
.hp-card {
  padding: 32px 28px 28px;
}

/* 3. 正文行高和间距 */
.hp-card p,
.hp-card .hp-desc {
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 12px;      /* 段落间距 */
}

/* 4. 统计信息(如“当前共有52个页面”)单独样式 */
.hp-card .hp-stats {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  color: #d0d8e0;
  opacity: 0.9;
}

/* 5. 相关链接列表样式增强 */
.hp-link-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  font-size: 0.98rem;
}

/* 6. 最近更改列表优化 */
.hp-recent-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 7. 小屏适配(手机) */
@media (max-width: 560px) {
  .hp-card {
    padding: 24px 18px 20px;
  }
  .hp-card h3 {
    font-size: 1.2rem;
  }
  .hp-card p {
    font-size: 0.92rem;
  }
}

/* ===== 修复卡片布局与魔术字显示 ===== */

/* 移除所有可能产生白色圆点的伪元素或背景 */
.hp-card::before,
.hp-card::after {
  display: none !important;
  content: none !important;
}

/* 强制卡片正常排列,不重叠 */
.hp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;      /* 强制所有卡片等高 */
  width: 100%;
  max-width: 1200px;
  margin: 6px 0 10px;
}

/* 卡片取消所有位移和过度动画(修复重叠) */
.hp-card {
  background: rgba(48, 52, 62, 0.85);
  border-radius: 28px;
  padding: 28px 24px 24px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(240, 210, 170, 0.15);
  border: 1px solid rgba(240, 210, 170, 0.10);
  color: #f0f3f7;
  display: flex;
  flex-direction: column;
  opacity: 1 !important;           /* 强制不透明 */
  transform: none !important;      /* 取消位移 */
  transition: box-shadow 0.3s, background 0.3s; /* 只保留悬停过渡 */
  height: 100%;                    /* 填满网格单元格 */
}

.hp-card.hp-visible {
  opacity: 1;
  transform: none;
  background: rgba(55, 60, 72, 0.90);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(240, 210, 170, 0.25);
}

.hp-card:hover {
  background: rgba(65, 70, 85, 0.95);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(240, 210, 170, 0.35);
  transform: translateY(-3px);
}

/* 项目名录扁条卡片 */
.hp-card-featured {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: none;
  opacity: 1 !important;
  transform: none !important;
  height: auto;
}

.hp-card-featured.hp-visible {
  opacity: 1;
  transform: none;
}

/* 修复魔术字数字显示(不加任何额外样式) */
.hp-card strong {
  color: #f0d5b0;
  font-weight: 600;
}

/* 小屏适配 */
@media (max-width: 1024px) {
  .hp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .hp-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hp-card {
    padding: 22px 18px 18px;
  }
}