*{margin:0;padding:0;box-sizing:border-box;font-family:"Microsoft YaHei",system-ui}
body{background:#f5f7fa;color:#333;line-height:1.6}
.container{width:1200px;margin:30px auto;display:flex;gap:20px}
.main{flex:1}
.sidebar{width:320px}
.box{background:#fff;border-radius:12px;padding:30px;box-shadow:0 2px 10px rgba(0,0,0,0.05)}
.title{font-size:26px;margin-bottom:15px;color:#1b2a4f}
.info-table{width:100%;margin:20px 0;border-collapse:collapse}
.info-table td{padding:12px 10px;border:1px solid #eee;background:#fafafa}
.info-table td:first-child{width:120px;font-weight:bold;background:#f7f7f7}
.content{margin:20px 0;font-size:16px;line-height:1.8}
.images{margin:25px 0}
.images h3{margin-bottom:15px;font-size:18px}
.img-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.img-grid img{width:100%;height:140px;object-fit:cover;border-radius:8px;cursor:pointer}
.modal{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.8);display:none;justify-content:center;align-items:center;z-index:999}
.modal img{max-width:90%;max-height:90%}
.modal .close{position:absolute;top:20px;right:30px;color:#fff;font-size:30px;cursor:pointer}
.comment{margin-top:30px}
.comment h3{margin-bottom:15px}
.comment-item{padding:12px;border-bottom:1px solid #f0f0f0}
.comment-user{font-weight:bold}
.comment-content{margin:5px 0}
.comment-time{font-size:12px;color:#999}
.widget{background:#fff;border-radius:12px;padding:20px;margin-bottom:20px}
.widget h3{font-size:16px;margin-bottom:15px;padding-bottom:10px;border-bottom:1px solid #f0f0f0}
.widget ul{list-style:none}
.widget li{padding:8px 0;border-bottom:1px solid #f7f7f7}
.widget li a{color:#333}
.marquee{height:250px;overflow:hidden}
.marquee-item{padding:8px 0;border-bottom:1px dashed #f0f0f0}
.marquee-text{font-size:14px}
.marquee-name{color:#1b2a4f;font-weight:bold}
.back{display:inline-block;background:#1b2a4f;color:#fff;padding:10px 20px;border-radius:6px;margin-top:20px;text-decoration:none}
/* 评论表单样式 */
.comment-form {
  background:#f9f9f9;
  padding:20px;
  border-radius:8px;
  margin:30px 0;
}
.comment-form h3 {
  margin-bottom:15px;
}
.comment-form input,
.comment-form textarea {
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
}
.comment-form textarea {
  height:110px;
  resize:none;
}
.comment-form button {
  background:#1b2a4f;
  color:#fff;
  border:none;
  padding:12px 25px;
  border-radius:6px;
  cursor:pointer;
}

/* 游客提示样式 */
.comment-tip {
  background:#fff5f5;
  padding:25px;
  border-radius:8px;
  text-align:center;
  margin:30px 0;
  border:1px solid #ffd6d6;
}
.comment-tip p {
  font-size:15px;
  color:#666;
}
.comment-tip a {
  color:#d92a2a;
  font-weight:bold;
}