/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

:root {
  --content-width:1200px;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.ttf");
}

@font-face {
  font-family: Menlo;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Menlo.ttc");
}

* {
  box-sizing: border-box;
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-family: Inter;
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* Top Nav */
.m-nav-container {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.m-nav-container > img:first-child {
  height: 50px;
}

.m-nav-container > img:last-child {
  height: 50px;
}

.m-nav-info {
  display: flex;
  align-items: center;
}

.m-nav-info__login {
  display: flex;
  align-items: center;
}

.m-nav-info__login > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.m-nav-info__login > a:first-child::after {
  position: absolute;
  content: '';
  height: 70%;
  width: 1px;
  background-color: #EDEDED;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  /*border-right:1px solid #EDEDED;*/
}

.m-nav-info__login > a > img {
  margin-right: 4px;
}

.m-nav-info {
  display: flex;
  align-items: center;
}

.m-nav-info__desc {
  margin: 0 32px 0 0;
}

.m-nav-info__desc > span {
  margin-right: 8px;
}
.m-nav-info__desc > a {
  position: relative;
  padding: 0 12px;
}
.m-nav-info__desc > a:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 70%;
  width: 1px;
  background: #EDEDED;
  transform: translateY(-50%);
}
.m-nav-info__desc > a:nth-child(2)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: 60%;
  width: 1px;
  background: #EDEDED;
  transform: translateY(-50%);
}



  /* Banner */
.m-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 450px;
  background-image: url("../images/banner-bg.jpeg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.m-banner > section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,.16);
  width: 1150px;
  height: 325px;
  backdrop-filter: blur(7px);
}

.m-banner-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
}

.m-banner-sub > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 数据库数量 */
.m-data-total {
  width: 100%;
  height: 240px;
  display: flex;
  justify-content: center;
  background: #F6F6F6;
}

.m-data-total > ul {
  width: var(--content-width);
  display: flex;
}

.m-data-total > ul > li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.m-data-total > ul > li:nth-child(2)::before,
.m-data-total > ul > li:nth-child(2)::after {
  content:'';
  position: absolute;
  width: 1px;
  height: 50%;
  background: #E5E5E5;
  top: 50%;
  transform: translateY(-50%);
}

.m-data-total > ul > li:nth-child(2)::before {
  left: 0;
}

.m-data-total > ul > li:nth-child(2)::after {
  right: 0;
}

.m-data-total > ul > li > h2 {
  font-size: 44px;
  font-family: Menlo;
  color: #232323;
  margin-bottom: 14px;
}

.m-data-total > ul > li > h5 {
  font-size:16px;
  line-height: 24px;
  color: #3C3C3C;
}

.m-data-total > ul > li > span {
  font-size: 14px;
  line-height: 22px;
  color: #A2A2A2;
  margin-top: 6px;
  margin-bottom: 12px;
}

.m-data-total > ul > li > img {
  width: 42px;
  height: 42px;
}

/* 公共标题样式 */
.m-common-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin:84px 0 29px 0;
}

.m-common-title > h1 {
  position: relative;
  font-size: 40px;
  line-height: 48px;
  font-weight: 900;
  color: #2B2B2B;
}

.m-common-title > span {
  margin-top: 4px;
  font-weight: 900;
  color: #2B2B2B;
}

.m-common-title > h1::before {
  position: absolute;
  content: '';
  background-image: linear-gradient(270deg, rgba(57,148,215,0.25) 0%, rgba(152,226,90,0.09) 100%);
  width: 115px;
  height: 23px;
  left: 50%;
  bottom: -4px;
  transform: skewX(-30deg) translateX(-50%);
}

/* 数据库检索 */
.m-search-container {
  width: var(--content-width);
  margin: 0 auto;
  /*background: salmon;*/
  display: flex;
  justify-content: space-evenly;
}

.m-search-container > section {
  width: 360px;
}

.m-search-container > section > img {
  display: block;
  width: 100%;
  height: 160px;
}

.m-search-container > section > form {
  background: #FFFFFF;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.15);
}

.m-common-form__item {
  width: 230px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #EBEBEB;
  border-radius: 2px;
}

.m-form-item__wrapper {
  display: flex;
  align-items: center;
}

.m-form-item__wrapper:not(:first-child) {
  margin-top: 18px;
}

.m-form-item__wrapper > span {
  color: #3F3F3F;
  font-weight: 600;
}

.m-search-btn {
  width: 230px;
  height: 40px;
  line-height: 40px;
  border-radius: 2px;
  background: #1A224B;
  border: none;
  color: #fff;
  font-size: 14px;
}

.m-search-btn:hover {
  background:#293573 ;
}
.m-search-btn:active {
  background: #212121;
}



.m-search-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 30px 0;
}

.m-search-form > h2 {
  font-size: 24px;
  line-height: 32px;
  color: #2B2B2B;
  font-weight: 900;
}

.m-search-form > span {
  font-size: 14px;
  line-height: 22px;
  color: #979797;
  margin: 6px 0 16px 0;
}

/* 最新成果 */
.m-achievement-container {
  position: relative;
  width: var(--content-width);
  margin: 0 auto;
  /*background: saddlebrown;*/
  /*padding-bottom: 80px;*/
}

.m-achievement-pic {
  display: block;
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.m-achievement-title {
  width: 100%;
  height: 60px;
  background: #4257BF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 16px;

}

.m-achievement-title > span {
  display: block;
  /* 单行截取 */
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.m-achievement-desc {
  height: 145px;
  background: #1A224B;
  color: #fff;
  padding: 16px;
}

.m-achievement-desc > p {
  line-height: 24px;
  /* 多行截取 */
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.swiper {
  /*padding: 0 60px;*/
  margin: 0 60px;
}

.swiper-wrapper {
  /*margin: 0 60px;*/
}

/* 友情链接 */
.m-links-container {
  width: 100%;
  border-top: 10px solid #F0F0F0;
  margin-top: 70px;
}

.m-links-list {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.m-links-list li {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */

.m-footer{
  width: 100%;
}

.m-count-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  padding: 8px;
  background-image: linear-gradient(180deg, #FFFDFD 2%, #D1E5FF 100%);
  border: 1px solid #E2EDFB;
  border-radius: 4px;
}

.m-footer-mn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 10px solid #1A224B;
  margin-top: 40px;
  padding: 50px 0;
}


.m-footer-mn > img {
  width: 277px;
  height: 47px;
  object-fit: cover;
  margin-right: 24px;
}

.m-footer-mn > section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.m-footer-mn > section > span {
  color: #024370;
  font-weight: 900;
}

/* Swiper */

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: '';
}

.swiper-pagination {
  bottom: -40px !important;
}

.swiper-pagination-bullet {
  width: 48px;
  height: 8px;
  border-radius: 8px;
  background: #EBEBEB;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #4257BF;
}

/* 面包屑 */
.m-breadcrumbs-container {
  width: 100%;
  height: 40px;
  background: #F0F0F0;
}

.m-breadcrumbs-container > section {
  width: var(--content-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.m-breadcrumbs-container > section > a {
  color: #4257BF;
}

.m-breadcrumbs-container > section > a:hover {
  text-decoration: underline;
}

.m-breadcrumbs-container > section > a:not(:first-child) {
  margin-left: 24px;
}

.m-breadcrumbs-container > section > a > i {
  margin-right: 4px;
}


/* 文章 */
.m-article-detail__mn {
  width: var(--content-width);
  margin: 0 auto;
}


.m-article-detail__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 900;
  color: #4257BF;
  text-align: center;
  margin: 24px 0 8px 0;
}

.m-article-detail__info {
  /*height: 32px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed rgba(0,0,0,.15);
  padding: 12px 0 24px 0;
  margin-bottom: 40px;
  color: #ccc;
}

.m-article-detail__content {}

.m-article-detail__annex {
  margin-top: 40px;
  border-top: 1px dashed rgba(0,0,0,.15);
  padding-top: 12px;
}

.m-article-detail__annex > h5 {
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  font-weight: 600;
  color: #1A224B;
}

.m-article-detail__annex > h5 > i {
  font-size: 18px;
  margin-right: 4px;
}

.m-article-detail__annex > ol {
  padding: 0 0 0 26px;
  list-style: decimal;
}

.m-article-detail__annex > ol > li {
  height: 32px;
  display: flex;
  align-items: center;
}

.m-article-detail__annex > ol > li a {
  color: #4257BF;
}

.m-article-detail__annex > ol > li a:hover {
  text-decoration: underline;
}

/* 数据库内页搜索 */
.m-database-search {
  /*display: flex;*/
  /*align-items: center;*/
  width: 100%;
  height: 40px;
  margin: 24px 0 8px 0;
  /*background: darkcyan;*/
}

.m-database-search__form {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content-width);
  margin: 0 auto;
}

.m-database-search__form > ul {
  display: flex;
  align-items: center;
}

.m-database-search__form > ul > li label {
  font-weight: 700;
  color: #212121;
}

.m-database-search__form > ul > li:not(:first-child) {
  margin-left: 12px;
}

.m-database-search__btns {
  display: flex;
  align-items: center;
}

.m-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 32px;
  border-radius: 2px;
  font-size: 14px;
  color: #fff;
}

.m-btn:hover {
  color: #fff;
}

.m-btn > i {
  font-size: 16px;
  margin-right: 4px;
}

.m-btn-primary {
  background: #4257BF;
  color: #fff;
}

.m-btn-download {
  background: #1D9D69;
  color: #fff;
}

.m-db-resource-table {
  width: var(--content-width);
  margin: 0 auto;
}

.m-db-resource-table .fixed-table-toolbar {
  display: none;
}

.m-db-resource-table .search-collapse, .select-table {
  padding-top: 0;
  box-shadow: none;
}

.m-db-resource-table  .table>caption+thead>tr:first-child>td, .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>td, .table>thead:first-child>tr:first-child>th{
  color: #212121;
  font-weight: 700;
}

.m-table-detail__btn {
  color: #4257BF;
}

.m-db-resource-table .pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
  background-color: #4257BF;
  color: #fff;
}

.m-db-resource-table .pagination>li:last-child>a, .pagination>li:last-child>span {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.m-db-resource-table .pagination>li:first-child>a, .pagination>li:first-child>span {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.m-db-resource-table .dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
  background-color: #4257BF;
}

.m-db-resource-table .dropdown-menu > li > a:hover {
  background-color: rgba(0,0,0,.05);
}

/* */
.m-db-resource-details__container {
  width: 100%;
  padding-top: 48px;
}

.m-db-resource-details__container > table {
  width: var(--content-width);
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,.15);
}

.m-db-resource-details__container > table > tbody tr th,.m-db-resource-details__container > table > tbody tr td {

  text-align: center;
}

.m-db-resource-details__container > table > tbody tr th {
  padding: 12px;
  background: #EEF0FB;
  border: 1px solid rgba(0,0,0,.15);
  font-weight: 700;
  color: #212121;
}

.m-db-resource-details__container > table > tbody tr td {
  padding: 24px;
  /*background: #EEF0FB;*/
  border: 1px solid rgba(0,0,0,.15);
}

.m-db-resource-details__img {
  width: var(--content-width);
  margin: 40px auto 20px auto;
  padding: 24px 0 24px 0;
  border-top: 1px dashed rgba(0,0,0,0.15);
}

.m-db-resource-details__img > h5 {
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  font-weight: 600;
  color: #1A224B;
}

.m-db-resource-details__img > h5 > i {
  font-size: 18px;
  margin-right: 4px;
}

.m-db-resource-details__img > a {
  display: block;
  max-width: 240px;
  margin-top: 16px;
  margin-left: 22px;
}

.m-db-resource-details__img > a > img {
  width: 100%;
  object-fit: cover;
}

/* */
.m-db-resource-details__annex {
  width: var(--content-width);
  margin: 0px auto 20px auto;
  padding: 24px 0 24px 0;
  border-top: 1px dashed rgba(0,0,0,0.15);
  border-bottom: 1px dashed rgba(0,0,0,0.15);
}

.m-db-resource-details__annex > h5 {
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  font-weight: 600;
  color: #1A224B;
}

.m-db-resource-details__annex > h5 > i {
  font-size: 18px;
  margin-right: 4px;
}

.m-db-resource-details__annex > ol {
  padding: 0 0 0 22px;
  list-style: decimal;
}

.m-db-resource-details__annex > ol > li {
  height: 32px;
  display: flex;
  align-items: center;
}

.m-db-resource-details__annex > ol > li a {
  color: #4257BF;
}

.m-db-resource-details__annex > ol > li a:hover {
  text-decoration: underline;
}

/* 注册、登录、找回密码 */
.m-reg-container {
  width: 960px;
  margin: 0 auto;
}

.m-reg-container > h2 {
  font-size: 48px;
  font-width: 900;
  color: #024370;
  line-height: 56px;
  margin: 50px 0 0 0;
}

.m-reg-container > span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  color: #9D9D9D;
}

.m-reg-decorate {
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color:#024370;
  margin: 38px auto 50px auto;
  z-index: 9;
}

.m-reg-decorate::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 1px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-image: linear-gradient(to right, #fff, #C8C8C8);
}

.m-reg-decorate::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 1px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-image: linear-gradient(to right, #C8C8C8, #fff);
}

.m-form-container {
  width: 500px;
  margin: 0 auto;
}

.m-form-container .form-group {
  display: flex;
  align-items: center;
}

.m-form-container .form-control {
  height: 40px;
}

.m-form-container .control-label {
  font-size: 14px;
  font-weight: 900;
  color: #393939;
}

.m-form-container .m-custom-code {
  display: flex;
  align-items: center;
}

.m-form-container .m-custom-code img {
  height: 40px;
}

.m-form-container .m-btn-reg {
  width: 100%;
  height: 40px;
  background-image: linear-gradient(180deg, #4257BF 0%, #020A70 100%);
  border-radius: 2px;
  border:none;
  color: #fff;
}

.m-form-container .m-reg-tips {
  text-align: center;
  margin: 48px 0 0 0;
}





