/* page-common.css
 * 多页面共享的内联样式提取（分页、placeholder 等）
 */

/* 分页条样式覆盖 —— product.html / news.html 等页面共用 */
.page-link {
  position: relative !important;
  display: inline !important;
  padding: 0 !important;
  font-size: 18px !important;
  color: black;
  text-decoration: none;
  background-color: transparent !important;
  border: 0 !important;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* placeholder 输入框字体 —— 多页面搜索框共用 */
input::placeholder {
  font-family: 'Source Han Serif CN', 'Source Han Serif TC', 'Source Han Serif HK',
    'Source Han Serif SC', 'Source Han Serif', 'Hiragino Sans GB',
    'Microsoft YaHei', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(201, 205, 212, 1);
  line-height: 36px;
}

/* 移动端隐藏分页 */
@media (max-width: 991px) {
  .news-pagination,
  #news-pagination {
    display: none;
  }
}
