/* 登录和注册页公共样式 */
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f2f2f2;
}

.layui-container {
  padding-bottom: 20px;
}

.login-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: #fff;
  padding: 20px;
}

.login-card .layui-card-header {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0;
}

/* 页面通用样式 */
.main-nav {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-nav .layui-nav {
  background-color: #23262e;
  padding: 0 20px;
}

.main-nav .layui-nav .layui-nav-item a {
  padding: 0 25px;
  font-size: 16px;
}

.main-nav .nav-user {
  position: absolute;
  right: 15px;
}

/* 主内容区顶部100px，底部16px */
.page-container {
  padding-top: 100px;
  padding-bottom: 16px;
}

/* 帖子列表页样式 */
.post-container {
  max-width: 1000px;
  margin: 0 auto;
}

.user-info {
  display: none; /* 使用导航栏代替 */
}

.page-title {
  margin: 30px 0 20px;
  color: #333;
  font-size: 24px;
  font-weight: normal;
  border-left: 5px solid #009688;
  padding-left: 15px;
}

.new-post-btn {
  float: right;
}

.post-table {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.post-table a {
  color: #009688;
  text-decoration: none;
  font-weight: 500;
}

.post-table a:hover {
  color: #5fb878;
  text-decoration: underline;
}

/* 修复帖子列表页布局与登录页冲突的问题 */
.post-page-body {
  display: block;
  background-color: #f8f8f8;
  height: auto;
}

/* 帖子详情页样式 */
.post-title {
  margin: 15px 0;
  font-size: 22px;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.post-content {
  padding: 15px 0;
  line-height: 1.8;
}

.post-meta {
  color: #888;
  font-size: 13px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.comment-section {
  margin-top: 30px;
  font-size: 18px;
  border-left: 4px solid #ffb800;
  padding-left: 10px;
}

.comment-list {
  margin-top: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 4px;
}

.comment-content {
  margin-bottom: 5px;
  font-size: 15px;
}

.comment-meta {
  color: #888;
  font-size: 12px;
}

.back-btn {
  margin-bottom: 15px;
}

/* 发帖页面样式 */
.post-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 25px;
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.form-error {
  color: #ff5722;
}

.form-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

/* 统一卡片样式 */
.unified-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(22, 186, 170, 0.07);
  margin-bottom: 32px;
  padding: 28px 32px 22px 32px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
  border: none;
}

.unified-card:hover {
  box-shadow: 0 8px 32px rgba(22, 186, 170, 0.13);
}

/* 帖子卡片式列表样式 */
.post-list-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(22, 186, 170, 0.07);
  margin-bottom: 32px;
  padding: 28px 32px 22px 32px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
  border: none;
}
.post-list-card:hover {
  box-shadow: 0 8px 32px rgba(22, 186, 170, 0.13);
}
.post-list-card .company-name {
  color: #888;
  font-weight: normal;
  font-size: 13px;
  margin-bottom: 0;
  letter-spacing: 0;
  display: inline;
}
.post-list-card .post-summary-content {
  color: #222;
  margin-bottom: 10px;
  line-height: 1.9;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.post-list-card .post-summary-content:hover {
  color: #16baaa;
  text-decoration: none;
}
.post-list-card .post-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
}

.post-list-card .post-meta-row .meta-item {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px 8px;
  background: #f8f9fa;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
  height: 24px;
  line-height: 1;
  font-size: 13px;
  color: #666;
}

.post-list-card .post-meta-row .meta-item:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

.post-list-card .post-meta-row .meta-item.like-btn,
.post-list-card .post-meta-row .meta-item.dislike-btn {
  cursor: pointer;
}

.post-list-card .post-meta-row span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #f8f9fa;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.post-list-card .post-meta-row .layui-icon {
  font-size: 14px;
  color: #16baaa;
  margin-right: 2px;
}

.post-list-card .post-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  min-height: 32px;
}
.post-list-card .post-actions span,
.post-list-card .post-actions .company-name {
  display: flex;
  align-items: center;
  height: 32px;
}
.post-list-card .post-actions .layui-btn {
  border-radius: 8px;
  font-size: 13px;
  padding: 0 14px;
  height: 32px;
  line-height: 32px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  border: 1px solid #e9ecef;
}

.post-list-card .post-actions .layui-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.post-list-card .post-actions .like-count,
.post-list-card .post-actions .dislike-count {
  margin-left: 2px;
  margin-right: 0;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  display: inline;
}
.post-list-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  word-break: break-all;
}
.post-list-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.post-list-content {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
  word-break: break-all;
}
.post-list-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.post-list-actions .layui-btn {
  padding: 0 12px;
  font-size: 13px;
}
.post-list-actions .like-count,
.post-list-actions .dislike-count,
.post-list-actions .comment-count {
  font-weight: 500;
  color: #009688;
}

.dislike-count,
.like-count {
  color: #666;
  margin-left: 3px;
}
@media (max-width: 600px) {
  .post-list-card {
    padding: 12px 8px;
  }
  .post-list-title {
    font-size: 16px;
  }
  .post-list-content {
    font-size: 13px;
  }
  .post-list-meta {
    font-size: 12px;
    gap: 8px;
  }
  .post-list-actions {
    gap: 8px;
  }

  .post-list-card .post-meta-row {
    gap: 8px !important;
  }

  .post-list-card .post-meta-row .meta-item {
    padding: 3px 6px;
    font-size: 12px;
    height: 24px;
  }

  .post-list-card .post-meta-row span {
    padding: 3px 6px;
    font-size: 12px;
  }

  .post-list-card .post-meta-row .layui-icon {
    font-size: 12px;
  }
}

/* 主筛选区：顶部留16px，底部留8px */
.filter-bar {
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 14px 20px;
  border-radius: 0;
  border: none;
  background: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: none;
}
.filter-bar .layui-form {
  width: 100%;
}
.filter-bar .layui-form-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}
.filter-bar .layui-form-item {
  align-items: center !important;
}
.filter-bar .layui-form-label {
  width: 60px;
  padding: 0 8px 0 0;
  color: #333;
  font-weight: 500;
  background: none;
  height: 38px;
  line-height: 38px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.filter-bar .layui-input-inline {
  width: 120px;
  margin-right: 0;
}
.filter-bar .layui-input-inline[style*="180px"] {
  width: 180px !important;
}
.filter-bar input,
.filter-bar select,
.filter-bar .filter-btn {
  height: 38px !important;
  line-height: 38px !important;
  box-sizing: border-box;
  margin-bottom: 0;
}
.filter-bar input:focus,
.filter-bar select:focus {
  border: 1.5px solid #16baaa;
}
.filter-bar .filter-btnm,
.layui-btn {
  height: 34px;
  line-height: 34px;
  border-radius: 8px;
  background: linear-gradient(90deg, #16baaa 0%, #1de9b6 100%);
  color: #fff !important;
  /* 去除下划线 */
  text-decoration: none !important;
  border: none;
  padding: 0 28px;
  box-shadow: 0 2px 8px rgba(22, 186, 170, 0.08);
  transition: all ease-in-out 0.3s;
}
.filter-bar input[name="q"] {
  width: 260px;
  height: 42px !important;
  border-radius: 22px !important;
  border: 2px solid #16baaa !important;
  background: #fff;
  padding: 0 22px;
  box-shadow: 0 2px 8px rgba(22, 186, 170, 0.1);
  transition: border 0.2s, box-shadow 0.2s;
}
.filter-bar input[name="q"]:focus {
  border: 2.5px solid #16baaa !important;
  box-shadow: 0 4px 16px rgba(22, 186, 170, 0.18);
}
.filter-bar input[name="q"]::placeholder {
  color: #16baaa;
  opacity: 1;
  font-size: 16px;
}
@media (max-width: 800px) {
  .filter-bar .layui-form-item {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .filter-bar .layui-form-label,
  .filter-bar .layui-input-inline {
    width: 100% !important;
  }
  .filter-bar .filter-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}

/* 标题区与子筛选区间距4px */
.page-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

/* 标题本身无额外下边距 */
.page-title {
  margin-bottom: 0;
}

/* 子筛选区：与标题区间距4px，底部留8px */
.filter-bar-sub {
  margin-top: 4px;
  margin-bottom: 8px;
  padding: 14px 20px;
  border-radius: 0;
  border: none;
  background: none;
  box-shadow: none;
}
.filter-bar-sub .layui-form-item {
  gap: 16px;
}

.search-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  box-shadow: 0 4px 16px 0 rgba(22, 186, 170, 0.18), 0 1.5px 8px #ddd;
  border-radius: 22px;
  background: #fff;
}
.search-group input[name="q"] {
  width: 100%;
  border-radius: 22px 0 0 22px !important;
  border-right: none !important;
  height: 42px !important;
}
.search-group .search-btn {
  border-radius: 0 22px 22px 0 !important;
  margin-left: 0 !important;
  height: 42px !important;
  font-size: 17px;
  font-weight: 500;
  background: linear-gradient(90deg, #16baaa 0%, #1de9b6 100%);
  border: none !important;
  padding: 0 28px;
  transition: background 0.2s, box-shadow 0.2s;
}
.search-group .search-btn:hover {
  background: linear-gradient(90deg, #1de9b6 0%, #16baaa 100%);
  box-shadow: 0 4px 16px rgba(22, 186, 170, 0.18);
}

.search-bar-outer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 18px 0;
}
.search-bar-form {
  width: 100%;
  display: flex;
  justify-content: center;
}
.search-bar-outer .search-group {
  width: 340px;
  max-width: 100%;
}
@media (max-width: 800px) {
  .search-bar-outer .search-group {
    width: 100%;
    min-width: 0;
  }
}

/* 点赞/踩按钮激活样式 */
.layui-btn.like-btn.layui-btn-warm {
  background: #e6f9ed !important;
  color: #16baaa !important;
  border: none !important;
}
.layui-btn.like-btn.layui-btn-warm i,
.layui-btn.like-btn.layui-btn-warm .like-count {
  color: #16baaa !important;
  font-weight: bold;
}
.layui-btn.dislike-btn.layui-btn-danger {
  background: #ffe9e0 !important;
  color: #ff5722 !important;
  border: none !important;
}
.layui-btn.dislike-btn.layui-btn-danger i,
.layui-btn.dislike-btn.layui-btn-danger .dislike-count {
  color: #ff5722 !important;
  font-weight: bold;
}
.layui-btn.like-btn:hover {
  box-shadow: 0 2px 8px #b2f2dd;
  border: none !important;
}
.layui-btn.dislike-btn:hover {
  box-shadow: 0 2px 8px #ffe0b2;
  border: none !important;
}

/* 提升发布新帖按钮样式优先级，确保与查询按钮一致 */
.filter-btn {
  height: 38px !important;
  border-radius: 8px !important;
  background: linear-gradient(90deg, #16baaa 0%, #1de9b6 100%) !important;
  color: #fff !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 0 28px !important;
  box-shadow: 0 2px 8px rgba(22, 186, 170, 0.08) !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.filter-btn:hover {
  background: linear-gradient(90deg, #1de9b6 0%, #16baaa 100%) !important;
  box-shadow: 0 4px 16px rgba(22, 186, 170, 0.16) !important;
}

button,
input,
select,
.layui-btn,
.layui-card,
textarea {
  border-radius: 8px !important;
}

/* 帖子详情页主卡片 */
.post-detail-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(22, 186, 170, 0.08);
  padding: 36px 32px 28px 32px;
  margin-bottom: 36px;
  position: relative;
}

/* 评论区标题 */
.comment-section {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 32px 0 18px 0;
  border-left: 4px solid #16baaa;
  padding-left: 12px;
}

/* 评论卡片 */
.comment-list > li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px #e0f2f1;
  margin-bottom: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  margin-left: 0 !important;
  transition: box-shadow 0.2s;
}
.comment-list > li:hover {
  box-shadow: 0 4px 16px #b2dfdb;
}

/* 头像 */
.comment-list img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e2e2e2;
  object-fit: cover;
  background: #f7f8fa;
  margin-top: 2px;
  margin-right: 0;
  vertical-align: top;
}

/* 评论内容区 */
.comment-list .layui-timeline-content {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  padding: 0;
}

/* 评论元信息 */
.comment-meta {
  color: #888;
  font-size: 13px;
  margin-top: 6px;
}

/* 子评论缩进 */
.comment-list ul {
  margin-left: 32px;
  margin-top: 0;
  padding-left: 0;
}

/* 评论输入区 */
.comment-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px #e0f2f1;
  padding: 18px 18px 10px 18px;
  margin-bottom: 18px;
}
.comment-form .layui-btn {
  float: right;
  margin-left: 10px;
}
.comment-form textarea {
  border-radius: 6px;
  font-size: 16px;
}

/* 主贴作者信息区头像间距 */
.post-meta img {
  margin-right: 4px !important;
}

.niming-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #888;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  border: 1.5px solid #e2e2e2;
  object-fit: cover;
  margin-right: 4px;
}
.niming-avatar-small {
  width: 32px;
  height: 32px;
  font-size: 16px;
  margin-top: 2px;
  margin-right: 0;
  background: #888;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* 响应式：手机端filter-bar按钮单独一行 */
@media (max-width: 600px) {
  .filter-bar-responsive .responsive-post-btn {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center;
  }
  .filter-bar-responsive .layui-input-inline {
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  .search-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .search-group .layui-input {
    flex: 1 1 0%;
    width: auto !important;
    min-width: 0;
    box-sizing: border-box;
  }
  .search-group .search-btn {
    width: 80px;
    margin-top: 0;
  }
}

/* 赞/踩按钮样式 - 兼容旧版本 */
.like-btn:not(.meta-item),
.dislike-btn:not(.meta-item) {
  font-size: 13px;
  color: #888;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  transition: color 0.2s;
}

.like-btn:not(.meta-item) i,
.dislike-btn:not(.meta-item) i {
  font-size: 15px;
  margin-right: 2px;
  transition: color 0.2s;
}

.dislike-btn:not(.meta-item) i {
  color: #ff5722 !important;
}

.like-btn:not(.meta-item):hover,
.like-btn:not(.meta-item).liked {
  color: #16baaa;
}

.like-btn:not(.meta-item):hover i,
.like-btn:not(.meta-item).liked i {
  color: #16baaa;
}

.dislike-btn:not(.meta-item):hover,
.dislike-btn:not(.meta-item).disliked {
  color: #ff5722;
}

.dislike-btn:not(.meta-item):hover i,
.dislike-btn:not(.meta-item).disliked i {
  color: #ff5722;
}

.like-btn:not(.meta-item) .like-count,
.dislike-btn:not(.meta-item) .dislike-count {
  margin-left: 2px;
  font-weight: 500;
}

.vip-badge {
  display: inline-block;
  margin-left: 6px;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
  padding-left: 8px;
  padding-right: 8px;
  background: #f8f9fa;
  transition: all 0.2s ease;
  white-space: nowrap;
  height: 20px;
  line-height: 20px;
  box-sizing: border-box;
}

.vip-badge.vip {
  background: linear-gradient(
    90deg,
    #ffe259 0%,
    #ffa751 100%
  ) !important; /* 金黄色 */
  color: #fff;
  border: none;
}

.vip-badge.svip {
  background: linear-gradient(
    90deg,
    #232526 0%,
    #414345 100%
  ) !important; /* 黑金色 */
  color: #ffd700; /* 金色字体 */
  border: none;
}

/* 评论表单和回复表单移动端适配 */
@media (max-width: 600px) {
  .comment-form,
  .reply-form {
    padding: 10px 6px 6px 6px !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 4px rgba(22,186,170,0.08) !important;
  }
  .comment-form .layui-input-block,
  .reply-form .layui-input-block {
    margin-left: 0 !important;
    padding: 0 !important;
  }
  .comment-form textarea,
  .reply-form textarea {
    min-height: 60px !important;
    font-size: 15px !important;
    padding: 8px !important;
  }
  .comment-form .layui-btn,
  .reply-form .layui-btn {
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
    padding: 0 0;
    box-sizing: border-box;
  }
  .reply-form .layui-btn,
  .reply-form .layui-btn-primary {
    width: 48% !important; /* 按钮宽度设为一半减去间距 */
    font-size: 15px;
    padding: 0 8px;
    margin-right: 0 !important;
  }
  
  /* 手机端下评论操作按钮容器样式 */
  .reply-form-buttons {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-top: 8px !important;
    gap: 10px !important;
  }
  
  .comment-form .layui-form-item,
  .reply-form .layui-form-item {
    margin-bottom: 8px !important;
  }
  .comment-section {
    font-size: 16px;
    padding-left: 6px;
    margin-top: 18px;
  }
  .comment-list > li {
    padding: 10px 6px !important;
    margin-left: 0 !important;
  }
  .comment-list .layui-timeline-content {
    padding-left: 0 !important;
  }
  .comment-meta {
    font-size: 11px !important;
  }
  .reply-form {
    margin-top: 6px !important;
  }
  .reply-form input[type="checkbox"] {
    margin-right: 6px;
  }
}

/* 分页组件样式优化 */
.layui-laypage {
  margin: 32px 0 16px;
  text-align: center;
  font-size: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.layui-laypage a,
.layui-laypage span {
  padding: 0 14px;
  height: 36px;
  line-height: 36px;
  border-radius: 8px !important;
  text-align: center;
  font-size: 14px;
  transition: all 0.2s ease;
  background-color: #fff;
  color: #333;
  margin: 0 !important;
  box-shadow: 0 1px 3px rgba(22, 186, 170, 0.1);
  border: 1px solid #e8f5f3;
}

.layui-laypage a:hover {
  background-color: #f0fffc;
  color: #16baaa;
  box-shadow: 0 2px 6px rgba(22, 186, 170, 0.15);
  border-color: #b2dfdb;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
  background: linear-gradient(90deg, #16baaa 0%, #1de9b6 100%);
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(22, 186, 170, 0.2);
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.layui-laypage .layui-laypage-curr em {
  color: #fff;
  font-style: normal;
  font-weight: 500;
}

.layui-laypage-limits,
.layui-laypage-skip {
  margin-left: 8px;
  margin-right: 8px;
  color: #666;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}

.layui-laypage .layui-laypage-skip {
  display: flex;
  align-items: center;
  height: 36px;
  line-height: 36px;
  background: transparent !important;
}

.layui-laypage input {
  width: 40px;
  height: 36px;
  line-height: 36px;
  border-radius: 8px !important;
  text-align: center;
  margin: 0 6px;
  background-color: #fff;
  border: 1px solid #e8f5f3;
  color: #16baaa;
  box-shadow: 0 1px 3px rgba(22, 186, 170, 0.1);
  transition: all 0.2s ease;
}

.layui-laypage input:focus {
  border-color: #16baaa;
  box-shadow: 0 2px 6px rgba(22, 186, 170, 0.15);
}

.layui-laypage-skip button {
  height: 36px;
  line-height: 36px;
  padding: 0 12px;
  background: linear-gradient(90deg, #16baaa 0%, #1de9b6 100%);
  color: #fff;
  border: none;
  border-radius: 8px !important;
  margin-left: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(22, 186, 170, 0.1);
}

.layui-laypage-skip button:hover {
  background: linear-gradient(90deg, #1de9b6 0%, #16baaa 100%);
  box-shadow: 0 2px 6px rgba(22, 186, 170, 0.15);
}

.layui-laypage-limits select {
  height: 36px;
  line-height: 36px;
  border: 1px solid #e8f5f3;
  border-radius: 8px !important;
  padding: 0 10px;
  color: #666;
  box-shadow: 0 1px 3px rgba(22, 186, 170, 0.1);
  transition: all 0.2s ease;
}

.layui-laypage-limits select:focus {
  border-color: #16baaa;
  box-shadow: 0 2px 6px rgba(22, 186, 170, 0.15);
}

.layui-laypage-count,
.layui-laypage-limits {
  font-size: 14px;
  height: 36px;
  line-height: 36px;
  color: #888;
}

/* 分页组件移动端适配 */
@media (max-width: 600px) {
  .layui-laypage {
    margin: 24px 0 12px;
    gap: 4px;
  }

  .layui-laypage a,
  .layui-laypage span {
    padding: 0 12px;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
  }

  .layui-laypage .layui-laypage-prev,
  .layui-laypage .layui-laypage-next {
    padding: 0 10px;
  }

  .layui-laypage-skip button {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    font-size: 13px;
  }

  .layui-laypage-skip input {
    height: 32px;
    line-height: 32px;
    width: 36px;
  }

  .layui-laypage .layui-laypage-count,
  .layui-laypage .layui-laypage-limits,
  .layui-laypage .layui-laypage-skip {
    display: none !important;
  }
}
