这是assets/style.css的代码，看看修改的对不对：
/* =============================================
   桐峻记忆 - 前端样式表 v1.0
   兼容: Chrome, Edge, Firefox, 360极速, IE9+
   布局方案: float多列瀑布流
   ============================================= */

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #4a3f35;
  background-color: #f5f0e8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: #8b7355; text-decoration: none; transition: color 0.2s ease; -webkit-transition: color 0.2s ease; }
a:hover { color: #6b5b4f; }
img { max-width: 100%; height: auto; border: 0; -ms-interpolation-mode: bicubic; }

/* ---- Clearfix ---- */
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #8b7355;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
}
.btn:hover { background-color: #6b5b4f; color: #fff; }
.btn-sm { padding: 4px 12px; font-size: 12px; }
.btn-lg { padding: 12px 32px; font-size: 16px; }
.btn-secondary { background-color: #a09080; }
.btn-secondary:hover { background-color: #8a7a6a; }
.btn-danger { background-color: #c0392b; }
.btn-danger:hover { background-color: #a93226; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #e8ddd0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: 56px;
  display: table;
  width: 100%;
}
.navbar .logo {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
  white-space: nowrap;
  font-size: 18px;
  font-weight: bold;
  color: #8b7355;
}
.navbar .logo-icon { font-size: 22px; margin-right: 6px; }
.navbar .logo-text { vertical-align: middle; }
.navbar .nav-center {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0 16px;
}
.navbar .nav-right {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  padding-right: 20px;
  white-space: nowrap;
}

/* ---- Search Box ---- */
.search-box input[type="text"] {
  width: 100%;
  max-width: 360px;
  padding: 8px 16px;
  font-size: 14px;
  color: #4a3f35;
  background-color: #f5f0e8;
  border: 1px solid #e8ddd0;
  border-radius: 20px;
  outline: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.search-box input[type="text"]:focus {
  border-color: #8b7355;
  box-shadow: 0 0 0 3px rgba(139,115,85,0.12);
  -webkit-box-shadow: 0 0 0 3px rgba(139,115,85,0.12);
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 76px 20px 20px;
}

/* ---- Notice ---- */
.notice-section { margin-bottom: 16px; }
.notice-bar {
  display: table;
  width: 100%;
  background-color: #fff8e8;
  border: 1px solid #f0e0b0;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: #8a6d3b;
}
.notice-icon { margin-right: 8px; }

/* ---- Filter Section ---- */
.filter-section { margin-bottom: 20px; }
.filter-row {
  display: block;
  line-height: 32px;
}
.filter-label {
  font-size: 14px;
  color: #a09080;
  margin-right: 8px;
}
.tag-chip {
  display: inline-block;
  padding: 4px 12px;
  font-size: 13px;
  color: #6b5b4f;
  background-color: #f5f0e8;
  border: 1px solid #e8ddd0;
  border-radius: 16px;
  margin-right: 6px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.tag-chip:hover {
  color: #8b7355;
  border-color: #8b7355;
}
.tag-chip.active {
  color: #fff;
  background-color: #8b7355;
  border-color: #8b7355;
}
.filter-count {
  float: right;
  font-size: 13px;
  color: #a09080;
}
.filter-advanced {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #e8ddd0;
}
.filter-form {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-form select {
  padding: 4px 8px;
  font-size: 13px;
  color: #6b5b4f;
  background-color: #f5f0e8;
  border: 1px solid #e8ddd0;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
}
.filter-form select:focus {
  border-color: #8b7355;
}
.filter-form .btn-sm {
  padding: 4px 12px;
  font-size: 13px;
}
.filter-form .btn-link {
  background: none;
  border: none;
  color: #a09080;
  text-decoration: underline;
  cursor: pointer;
}

/* ---- Archive Header ---- */
.archive-header {
  text-align: center;
  margin-bottom: 24px;
}
.archive-header h1 {
  font-size: 22px;
  color: #4a3f35;
  margin-bottom: 4px;
}
.archive-count {
  font-size: 14px;
  color: #a09080;
}

/* ---- Waterfall Layout (float-based) ---- */
.waterfall-wrapper {
  margin: 0 -8px;
  overflow: hidden;
}
.waterfall-wrapper:after {
  content: "";
  display: block;
  clear: both;
}
.waterfall-col {
  float: left;
  width: 25%;
  padding: 0 8px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* ---- Photo Card ---- */
.photo-card {
  background-color: #ffffff;
  border: 1px solid #e8ddd0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  -webkit-transition: -webkit-transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.photo-card:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  -webkit-box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ---- Photo Wrapper ---- */
.photo-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #f0ece4;
}
.card-cover {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
  -webkit-transition: -webkit-transform 0.4s ease;
}
.photo-card:hover .card-cover {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
}
.card-noimg {
  text-align: center;
  padding: 40px 20px;
  color: #c0b0a0;
}
.card-noimg span { font-size: 48px; }
.card-noimg p { font-size: 14px; margin-top: 8px; }

/* ---- Multi Badge ---- */
.multi-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ---- Card Actions ---- */
.card-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
}
.photo-card:hover .card-actions {
  opacity: 1;
  filter: alpha(opacity=100);
}
.card-action-btn {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: #8b7355;
  margin: 4px;
}

/* ---- Card Content ---- */
.card-content {
  padding: 10px 14px 12px;
}
.card-title-text {
  font-size: 15px;
  font-weight: 600;
  color: #4a3f35;
  margin-bottom: 6px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card-text {
  font-size: 14px;
  color: #4a3f35;
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-location {
  font-size: 12px;
  color: #a09080;
  margin-bottom: 6px;
}
.card-meta {
  display: table;
  width: 100%;
}
.card-tags {
  display: table-cell;
  vertical-align: middle;
}
.card-tag {
  display: inline-block;
  font-size: 12px;
  color: #a68b6b;
  background-color: rgba(139,115,85,0.08);
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 4px;
  margin-bottom: 2px;
}
.card-date {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  font-size: 12px;
  color: #a09080;
  white-space: nowrap;
  padding-left: 8px;
}

/* ---- Pagination ---- */
.page-nav {
  text-align: center;
  padding: 30px 0 20px;
}
.page-nav a, .page-nav span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  color: #6b5b4f;
  background-color: #fff;
  border: 1px solid #e8ddd0;
  border-radius: 4px;
  margin: 0 3px;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.page-nav a:hover {
  border-color: #8b7355;
  color: #8b7355;
}
.page-nav .active {
  color: #fff;
  background-color: #8b7355;
  border-color: #8b7355;
}
.page-nav .disabled {
  color: #ccc;
  background-color: #f5f0e8;
  cursor: not-allowed;
}

/* ---- Empty State ---- */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state h3 {
  font-size: 18px;
  color: #6b5b4f;
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 14px;
  color: #a09080;
}

/* ---- Footer ---- */
.footer {
  text-align: center;
  padding: 24px 20px;
  font-size: 13px;
  color: #a09080;
  border-top: 1px solid #e8ddd0;
  margin-top: 20px;
}
.footer .container { padding: 0; }

/* ---- Post Content ---- */
.post-content {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ---- Lightbox ---- */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background-color: rgba(0,0,0,0.88);
  display: none;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
}
.lightbox-overlay.show {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  width: 40px; height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10001;
}
.lightbox-close:hover { color: #c4956a; }
.lightbox-stage {
  position: absolute;
  top: 50%; left: 50%;
  max-width: 90%;
  max-height: 80%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  text-align: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.lightbox-info {
  position: absolute;
  bottom: 80px; left: 0; right: 0;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.lb-title { font-size: 18px; margin-bottom: 4px; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.lb-meta { font-size: 13px; opacity: 0.8; filter: alpha(opacity=80); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 50px; height: 50px;
  margin-top: -25px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  background-color: rgba(255,255,255,0.12);
  border-radius: 50%;
  z-index: 10001;
  transition: background-color 0.2s ease;
  -webkit-transition: background-color 0.2s ease;
}
.lightbox-arrow:hover { background-color: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-thumbs {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  white-space: nowrap;
  max-width: 80%;
  overflow-x: auto;
  text-align: center;
}
.thumb-item {
  display: inline-block;
  width: 56px; height: 56px;
  margin: 0 4px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  filter: alpha(opacity=60);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.thumb-item:hover, .thumb-item.active {
  opacity: 1;
  filter: alpha(opacity=100);
  border-color: #c4956a;
}
.thumb-item img { width: 100%; height: 100%; }

/* ---- Lightbox Share ---- */
.lightbox-share {
  position: absolute;
  top: 20px; left: 30px;
  z-index: 10001;
}
.share-btn {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  margin-right: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.share-btn:hover { background-color: rgba(255,255,255,0.3); }

/* ---- Toast ---- */
.toast {
  position: fixed;
  top: 80px; left: 50%;
  padding: 12px 24px;
  background-color: rgba(61,61,61,0.92);
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  z-index: 10002;
  transform: translateX(-50%) translateY(-20px);
  -webkit-transform: translateX(-50%) translateY(-20px);
  -ms-transform: translateX(-50%) translateY(-20px);
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  opacity: 1;
  filter: alpha(opacity=100);
}

/* ---- Responsive ---- */
@media screen and (max-width: 1024px) {
  .waterfall-col { width: 33.3333%; }
}
@media screen and (max-width: 768px) {
  .navbar { height: 48px; }
  .navbar .logo { font-size: 16px; padding-left: 12px; }
  .navbar .logo-icon { font-size: 18px; }
  .navbar .nav-right { padding-right: 12px; }
  .container { padding: 60px 12px 16px; }
  .waterfall-col { width: 50%; }
  .search-box input[type="text"] { max-width: 200px; }
  .lightbox-arrow { width: 36px; height: 36px; line-height: 36px; font-size: 20px; margin-top: -18px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .filter-count { float: none; display: block; margin-top: 4px; }
}
@media screen and (max-width: 480px) {
  .waterfall-col { width: 100%; }
  .filter-label { display: block; margin-bottom: 4px; }
  .lightbox-thumbs { display: none; }
  .card-text { -webkit-line-clamp: 3; }
}
/* ========== P2 优化：图片懒加载淡入 ========== */
/* 初始隐藏，JS添加.loaded后淡入显示 */
img.card-cover {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.3s ease, transform 0.4s ease;
}
img.card-cover.loaded {
    opacity: 1;
}
/* IE9/10 不支持CSS transition的opacity，直接显示 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    img.card-cover {
        opacity: 1;
    }
}