/* ===============================
   reset通用样式重置
   =============================== */

/* 1. 清除内外边距，设定基础字体属性 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --tjh-color: #228e61;
  --title-color: #000;
  --texts-color: #868686;
  --font-size-base: 16px;
  --padding-default: 1rem;
  --radius: 8px;
}
/* 2. 设置 HTML 和 body */
html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: en_b;
  src: url("/ClinicalResearchCenter/font/AlimamaShuHeiTi-Bold.ttf"), url("/ClinicalResearchCenter/font/AlimamaShuHeiTi-Bold.woff"), url("/ClinicalResearchCenter/font/AlimamaShuHeiTi-Bold.woff2");
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

input:focus { outline: none; }
/* 3. 清除默认列表样式 */
ul,
ol {
  list-style: none;
}

/* 4. 清除超链接默认样式 */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. 图片自适应 */
img {
  max-width: 100%;
  height: auto;
 
}

/* 6. 表单元素基础样式 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
}

/* 7. 表格边框合并 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 8. heading 默认样式清除 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: normal;
}

/* 9. 设置 code 等字体 */
pre,
code {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  background-color: #f6f8fa;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

/* 10. 统一 hr 样式 */
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1em 0;
}

/* ===============================
   common.css - 通用样式
   =============================== */
.warp {
  max-width: 1920px;
  margin: 0 auto;
}
.header {
  width: 100%;
  background: #f8f8f8;
  padding: 40px 60px;
  border-radius: 0 0 10px 10px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 99;
}
.logo {
  display: flex;
}
.logo a {
  display: block;
  width: 300px;
}
.logo img {
  width: 100%;
}
.logo-text {
  font-size: 24px;
  line-height: 39px;
  text-align: center;
  margin-left: 20px;
}
.pc-nav ul {
  display: flex;
  flex: auto;
  justify-content: space-around;
  align-items: center;
  font-size: 16px;
  color: #000;
  gap: 60px;
}
.pc-nav .cursor {
  position: relative;
  display: inline-block;
}
.pc-nav .cursor a {
  font-weight: bold;
}
.cursor::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px; /* 横线厚度 */
  background: var(--tjh-color); /* 颜色 */
  border-radius: 2px; /* 圆角 */
}
.pc-nav ul li:hover a {
  font-weight: bold;
}
.pc-nav a {
  line-height: 39px;
}

.m-nav {
  display: none;
}
.footer {
  color: #e0e0e0;
  position: relative;
  width: 100%;
  background: url(/ClinicalResearchCenter/img/footer-bg.png) no-repeat 100% 100%;
  background-size: cover;
}
.footer-content {
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
}
.ftr {
  display: flex;
  gap: 20px;
  margin: 50px 0;
}
.fonter-nav {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.fonter-nav li a {
  font-size: 14px;
}
.fonter-nav li a:hover {
  color: #fff;
  font-weight: 500;
}
.contact-list {
  color: #aaa;
  font-size: 12px;
  line-height: 2.5;
}
.ftr .QRcode-app img,
.ftr .QRcode-wx img {
  width: 100px;
  height: 100px;
}
.ftr p {
  font-size: 12px;
  line-height: 2;
  text-align: center;
}
.fonter-min {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 3;
  border-top: 1px solid #424242;
  padding: 10px 10%;
  color: #989898;
}

.search_btn{
   position: absolute;
    top: 5px;
    right: 10px;
    width: 37px;
    height: 39px;
    cursor: pointer;
   
}
.search_btn svg{
  width: 29px;
  height: 37px;
}

.no-results{
    text-align: center;
    line-height: 2;
    font-size: 16px;
     width: 100%;
}
/* 分页 */
/* 分页容器样式 */
#separatePage {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 10px; /* 控制元素间距 */
    font-size: 14px;
    color: #333;
    flex-wrap: wrap;
    justify-content: center;
}

/* 页码列表样式 */
.custom-pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px; /* 页码间距 */
}

/* 页码链接样式 */
.custom-pagination li a {
    display: block;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

/* 当前页码样式 */
.custom-pagination li.current-page a {
    background-color: #4b997a;
    color: white;
    border-color: #4b997a;
}

/* 悬停效果 */
.custom-pagination li a:hover {
    background-color: #4b997a;
}

/* 下一页/末页按钮样式 */
.custom-pagination .next-page, .custom-pagination .prev-page, .custom-pagination .first-page, .custom-pagination .last-page{
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.custom-pagination .next-page:hover {
    background-color: #4b997a;
}

/* 显示总页数样式 */
.custom-pagination .displaycount {
    margin-right: 15px;
    color: #666;
}
/* ========== 大桌面/1080p（≥1920px） ========== */
@media (max-width: 1400px) {
  .logo-text {
    font-size: 16px;
  }
  .pc-nav ul {
    font-size: 12px;
  }
  .logo a {
    width: 220px;
  }
  .header {
    padding: 20px 20px;
  }
}

/* ========== 2K 屏幕（≥2560px） ========== */
@media (max-width: 2560px) {
  .warp {
    max-width: 1920px;
    padding: 20px 6%;
  }
  .fonter-min {
    padding: 20px 5%;
  }
}

/* ========== 大桌面/1080p（≥1920px） ========== */
@media (max-width: 1000px) {
  .logo-text {
    font-size: 12px;
  }
}
/* ========== 平板设备（≥768px） ========== */
@media (max-width: 768px) {
  .pc-nav ul {
    gap: 20px;
  }
  .pc-nav {
    display: none;
  }
  .logo a {
    width: 150px;
    display: flex;
    align-items: center;
  }
  .logo-text {
    font-size: 16px;
    line-height: 46px;
  }
  .header {
    padding: 10px 20px;
  }
  .footer-content {
    flex-direction: column;
    padding: 20px;
  }
  .fonter-nav {
    flex-wrap: wrap;
  }
  .contact-list {
    line-height: 1.5;
  }
  .contact-list p {
    margin: 10px 0;
  }
  .fonter-min {
    flex-direction: column;
    padding: 10px;
  }
  .ftr {
    margin: 20px 0;
  }
  .ftr p {
    margin: 10px 0;
  }
  .ftr .QRcode-app img,
  .ftr .QRcode-wx img {
    width: 80px;
    height: 80px;
  }
  .m-nav {
    display: block;
  }
  .m-nav-menu {
    position: relative;
    top: 12px;
  }
  .m-nav-menu .line {
    display: block;
    padding-top: 3px;
    padding-bottom: 3px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .m-nav-menu .line::before {
    content: "";
    display: block;
    height: 2px;
    width: 22px;
    background-color: #1f1f1f;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    -webkit-transition: background-color 0.5s ease 0s, -webkit-transform 0.4s ease 0.2s;
    transition: background-color 0.5s ease 0s, -webkit-transform 0.4s ease 0.2s;
    transition: transform 0.4s ease 0.2s, background-color 0.5s ease 0s;
    transition: transform 0.4s ease 0.2s, background-color 0.5s ease 0s, -webkit-transform 0.4s ease 0.2s;
  }
  .m-nav-menu .line:nth-of-type(2):before {
    width: 15px;
    margin-left: 7px;
  }

  .m-nav .on .line:nth-of-type(1) {
    transform: translate3d(0, 8px, 0);
    -webkit-transform: translate3d(0, 8px, 0);
    -moz-transform: translate3d(0, 8px, 0);
    -o-transform: translate3d(0, 8px, 0);
    -ms-transform: translate3d(0, 8px, 0);
  }

  .m-nav .on .line:nth-of-type(1):before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .m-nav .on .line:nth-of-type(2) {
    opacity: 0;
  }

  .m-nav .on .line:nth-of-type(3) {
    transform: translate3d(0, -8px, 0);
    -webkit-transform: translate3d(0, -8px, 0);
    -moz-transform: translate3d(0, -8px, 0);
    -o-transform: translate3d(0, -8px, 0);
    -ms-transform: translate3d(0, -8px, 0);
  }

  .m-nav .on .line:nth-of-type(3):before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .m-nav-list {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.963);
    top: 65px;
    left: -100vw;
    z-index: 999;
    transition: all 0.3s ease-in-out;
  }
  .m-nav-list ul {
    padding: 20px;
    font-size: 16px;
  }
  .m-nav-list li {
    border-bottom: 1px solid #e1e1e1;
  }
  .m-nav-list li a {
    display: block;
    line-height: 75px;
  }
  .mon {
    left: 0;
  }
.custom-pagination li a{
  padding: 10px 14px;
}

.custom-pagination .next-page, .custom-pagination .prev-page, .custom-pagination .first-page, .custom-pagination .last-page{
   padding: 10px 14px;
}
}


