@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  --bs-heading-color: #222;
}

.search-list .search-item, .pegional-project, .news-item2, .news-item, .logo-list .logo-item, .news-card-style {
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 0 5px 0rem rgba(209, 209, 209, 0.4);
}

a {
  text-decoration: inherit;
}

.view-container {
  width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

.image-block {
  display: block;
  width: 100%;
  height: auto;
}

.image-title {
  display: block;
  width: 160px;
  margin: 0 auto 50px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.view-white {
  background-color: #ffffff;
  padding: 40px 0 60px;
}

.view-dark {
  background-color: #f4f9ff;
  padding: 40px 0 60px;
}

.text-ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 显示 2 行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header {
  position: relative;
  background-color: white;
  min-width: 1200px;
  z-index: 12;
}
.header .dropdown-menu {
  min-width: 160px;
  transform: translateX(-30px);
  --bs-dropdown-border-color: #ededed;
}

.header-container {
  width: 100%;
  height: 60px;
  align-items: center;
}
.header-container-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.header-container-nav {
  margin-left: auto;
}
.header-container-nav .nav-link {
  font-weight: 600;
  --bs-navbar-nav-link-padding-x: 12px;
}
.header-container-user {
  margin-left: 60px;
}
.header-container-user > div {
  width: 40px;
  height: 40px;
  background-color: #efefef;
  border-radius: 50%;
  overflow: hidden;
}
.header-container-user > div img {
  display: block;
  width: 100%;
  height: 100%;
}
.header-container-user .btn-login {
  background: linear-gradient(to right, #4da3ff, #2d6cdf);
  border: none;
  font-size: 13px;
  line-height: 24px;
}
.header-container-user .btn-login:active {
  opacity: 0.7;
}

.footer {
  background-color: #f8fafe;
}
.footer a {
  color: inherit;
  text-decoration: inherit;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  border-bottom: 1px solid #eceeee;
}
.footer-top span {
  width: 120px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
}
.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
.footer-bottom-l span {
  font-size: 14px;
  color: #999999;
}
.footer-bottom-r {
  display: flex;
}
.footer-bottom-r p {
  font-size: 14px;
}
.footer-bottom-r ._code {
  margin-right: 50px;
  text-align: center;
}
.footer-bottom-r ._code img {
  display: block;
  width: 96px;
  height: 96px;
}
.footer-bottom-r ._code p {
  margin-top: 8px;
}
.footer-bottom-r ._about h5 {
  margin-bottom: 16px;
}
.footer-bottom-r ._about p {
  margin-bottom: 8px;
}

.news-card-style {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 12px;
}
.news-card-style .card-inner {
  height: 180px;
  display: flex;
  flex-direction: row;
}
.news-card-style .card-left {
  width: 160px;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.news-card-style .card-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news-card-style .card-right {
  flex: 1;
  padding: 0 12px 0 16px;
  text-align: justify;
  gap: 12px;
}
.news-card-style .news-title {
  font-size: 16px;
  font-weight: 550;
  line-height: 1.3;
  margin: 0;
  color: #1a1a1a;
}
.news-card-style .news-desc {
  font-size: 12px;
  line-height: 1.2;
  color: #6b7280;
  margin: 4px 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-style .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 7px;
}
.news-card-style .tag {
  font-size: 12px;
  padding: 2px 10px;
  background: #deeaff;
  color: #1569ff;
  border-radius: 999px;
  white-space: nowrap;
}
.news-card-style .divider {
  height: 1px;
  background: #e5e7eb;
  margin: 4px 0 8px 0;
}
.news-card-style .meta-info {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}
.news-card-style .meta-info strong {
  color: #9d9d9d;
  font-weight: 600;
}

.logo-list .logo-item {
  width: 221px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 10px;
  background: white;
  border-radius: 10px;
  transition: all 0.18s ease;
}
.logo-list .logo-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-list .logo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 6px 0;
}
.logo-list .info {
  flex: 1;
  min-width: 0; /* 防止内容过长撑破 */
}
.logo-list .school-name {
  font-size: 15px;
  font-weight: 550;
  color: #111827;
}
.logo-list .stats {
  font-size: 12px;
  color: #777777;
  margin-top: 8px;
}
.logo-list .stats strong {
  color: #374151;
  font-weight: 600;
}

.news-item {
  display: flex;
  background: white;
  padding: 12px 18px;
}
.news-item .news-item-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #eef5ff;
  color: #196efe;
  flex-shrink: 0;
}
.news-item .news-item-date p {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 5px;
}
.news-item .news-item-date span {
  font-size: 14px;
}
.news-item .news-item-text {
  flex: 1;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.news-item .news-item-text h5 {
  font-size: 16px;
  font-weight: 550;
}
.news-item .news-item-text p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #767676;
}

.news-item2 {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 20px;
}
.news-item2 .news-item-text {
  width: 50%;
  flex-shrink: 0;
}
.news-item2 .news-item-text h5 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 550;
}
.news-item2 .news-item-text p {
  font-size: 12px;
  color: #007bff;
}
.news-item2 .news-item-text span {
  font-size: 12px;
  padding: 2px 10px;
  background: #e9eaec;
  color: #626161;
  border-radius: 999px;
  white-space: nowrap;
}
.news-item2 .news-item-cover {
  width: 50%;
  height: 116px;
  background-color: wheat;
}
.news-item2 .news-item-cover img {
  display: block;
  width: 100%;
  height: 100%;
}
.news-item2 .__state {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px !important;
  height: 72px !important;
  z-index: 2;
}

.banner {
  position: relative;
  min-width: 1200px;
  min-height: 344px;
  --swiper-pagination-bullet-inactive-color: #808080;
}
.banner .banner-image {
  display: block;
  width: 100%;
  height: auto;
}
.banner .swiper-slide {
  position: relative;
}
.banner .swiper-pagination {
  z-index: 20;
}
.banner .banner-text {
  position: absolute;
  top: 0;
  left: 50%;
  width: 700px;
  height: 100%;
  margin-left: -350px;
  z-index: 15;
}

.banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-text-image {
  display: block;
  width: 100%;
  height: auto;
}
.banner-text .input-group {
  width: 600px;
  margin-top: 12px;
  border-radius: 8px;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
}
.banner-text .input-group .form-control {
  border-color: transparent !important;
}
.banner-text .input-group .form-control:focus {
  box-shadow: none !important;
  border-color: #ced4da; /* 还原默认边框色 */
}
.banner-text .input-group .form-control::-moz-placeholder {
  font-size: 14px;
  color: #a8a8a8;
}
.banner-text .input-group .form-control::placeholder {
  font-size: 14px;
  color: #a8a8a8;
}
.banner-text .input-group .btn {
  width: 120px;
  border-color: #216fff;
  background: #216fff url(../images/icon-search.png) no-repeat 10px center;
  background-size: 16px auto;
  padding-left: 30px;
}
.banner-text .input-group .btn:active {
  opacity: 0.8;
}
.banner-text .__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 120px;
  border-color: #216fff;
  margin-top: 30px;
}
.banner-text .__plus:active {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
}

.achievement-promotion-bot {
  display: flex;
  gap: 16px;
}
.achievement-promotion-bot .__left {
  width: 232px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.achievement-promotion-bot .__left.__top1 {
  height: 424px;
}
.achievement-promotion-bot .__left.__top2 {
  height: 204px;
}
.achievement-promotion-bot .__left img {
  display: block;
  width: 100%;
  height: 100%;
}
.achievement-promotion-bot .__right {
  flex: 1;
  min-width: 0;
}
.achievement-promotion-bot .news-card-styles {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.achievement-promotion-bot .logo-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.achievement-promotion-bot + .achievement-promotion-bot {
  margin-top: 16px;
}

.pegional-projects {
  display: flex;
  gap: 16px;
}

.pegional-project {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  padding: 14px;
  text-decoration: none;
}
.pegional-project img {
  display: block;
  width: 100%;
  height: auto;
}
.pegional-project p {
  text-align: center;
  text-decoration: none;
  color: gray;
  font-size: 14px;
  margin: 10px 0 0;
  padding: 4px 0;
}

.pegional-project-more {
  text-align: right;
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.pegional-project-more a {
  text-decoration: none;
  color: #216fff;
  font-size: 14px;
}
.pegional-project-more a svg {
  transform: translateY(-2px);
}
.pegional-project-more a:hover span {
  text-decoration: underline;
}

.innovation {
  display: flex;
  align-items: center;
}
.innovation .__left {
  width: 248px;
  flex-shrink: 0;
}
.innovation .__left img {
  display: block;
  width: 160px;
}
.innovation .__left a {
  display: block;
  text-decoration: none;
  color: gray;
  font-size: 14px;
  margin-top: 16px;
}
.innovation .__right {
  flex: 1;
}
.innovation .news-items {
  display: flex;
  align-items: center;
  gap: 16px;
}
.innovation .news-items .news-item {
  width: 458px;
  min-width: 0;
  text-decoration: none;
}
.innovation .news-items2 {
  display: flex;
  align-items: center;
  gap: 16px;
}
.innovation .news-items2 .news-item2 {
  width: 458px;
}
.innovation .link-more:hover span {
  text-decoration: underline;
}
.innovation .link-more .pegional-project-more a svg {
  transform: translateY(-2px);
}

.innovation + .innovation {
  margin-top: 60px;
}

.innovation-swiper {
  width: 974px;
  height: 124px;
  padding-left: 10px;
  padding-right: 24px;
  margin-right: -24px;
  margin-left: -10px;
}
.innovation-swiper .swiper-slide {
  height: 124px;
  padding: 10px 0;
}

.news-card-style, .logo-item, .news-item, .news-item2 {
  cursor: pointer;
}

.website-content {
  position: relative;
  min-height: 100vh;
  background-color: #F4F9FF;
  min-width: 1200px;
  padding-bottom: 30px;
}
.website-content .banner-text {
  padding: 50px 0 20px;
}
.website-content .website-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.website-content .website-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.website-content .breadcrumb {
  color: white;
  background: url(../images/position.png) no-repeat left center;
  background-size: 20px auto;
  font-size: 15px;
  padding: 20px 0 20px 24px;
  --bs-breadcrumb-margin-bottom: 0;
}
.website-content .breadcrumb a, .website-content .breadcrumb .breadcrumb-item {
  --bs-breadcrumb-divider: ">";
  --bs-breadcrumb-divider-color: white;
  text-decoration: inherit;
  color: inherit;
}
.website-content .breadcrumb a:hover {
  text-decoration: underline;
}
.website-content .breadcrumb .breadcrumb-label + .breadcrumb-item {
  padding-left: 0 !important;
}
.website-content .breadcrumb .breadcrumb-label + .breadcrumb-item::before {
  display: none !important;
}
.website-content .view-container {
  position: relative;
  z-index: 12;
}

.filter-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 1400px;
  margin: 0 auto;
}
.filter-card .filter-row {
  display: flex;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.filter-card .filter-label {
  width: 100px;
  color: #666;
  font-size: 14px;
  line-height: 34px;
  flex-shrink: 0;
}
.filter-card .filter-options {
  flex: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-card .option {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-card .option:hover {
  color: #1677ff;
}
.filter-card .option.active {
  background: #e6f0ff;
  color: #1677ff;
  font-weight: 500;
}
.filter-card select {
  width: 160px;
}
.filter-card .sort {
  display: flex;
  gap: 12px;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.result-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.25s ease;
  padding: 16px;
  text-decoration: none;
  cursor: pointer;
}
.result-card .cover {
  height: 188px;
  overflow: hidden;
}
.result-card .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.result-card .title {
  font-size: 16px;
  color: #222;
  line-height: 1.4;
  margin: 12px 0 4px;
}
.result-card .desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.result-card .tags {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.result-card .tags .tag {
  background: #e8f0ff;
  color: #2f7bff;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
}
.result-card .divider {
  height: 1px;
  background: #eee;
  margin-bottom: 14px;
}
.result-card .meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #666;
}
.result-card .meta li {
  display: flex;
  line-height: 1.8;
}
.result-card .meta li span {
  width: 68px;
  color: #999;
  flex-shrink: 0;
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #666;
  font-size: 14px;
  padding: 30px 0 0;
}
.pagination-wrap .total {
  white-space: nowrap;
}
.pagination-wrap .pager {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pagination-wrap .btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #e3e6eb;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
}
.pagination-wrap .btn:hover:not(.active):not(:disabled) {
  border-color: #2f7bff;
  color: #2f7bff;
}
.pagination-wrap .btn.active {
  background: #2f7bff;
  color: #fff;
  border-color: #2f7bff;
  cursor: default;
}
.pagination-wrap .btn:disabled {
  color: #bbb;
  cursor: not-allowed;
  background: #fafafa;
}
.pagination-wrap .arrow {
  font-size: 18px;
  line-height: 1;
}
.pagination-wrap .ellipsis {
  padding: 0 6px;
  color: #999;
}
.pagination-wrap .jump {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pagination-wrap .jump input {
  width: 56px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e3e6eb;
  text-align: center;
  outline: none;
}
.pagination-wrap .jump input:focus {
  border-color: #2f7bff;
}

.zk-result-card {
  position: relative;
  display: flex;
  gap: 32px;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* 左侧图片 */
  /* 右侧内容 */
  /* 标签 */
  /* 信息区 */
}
.zk-result-card .zk-result-card__cover {
  width: 360px;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.zk-result-card .zk-result-card__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.zk-result-card .zk-result-card__content {
  flex: 1;
}
.zk-result-card .zk-result-card__title {
  font-size: 22px;
  color: #222;
  margin: 0 0 14px;
  line-height: 1.4;
}
.zk-result-card .zk-result-card__tags {
  margin-bottom: 16px;
}
.zk-result-card .zk-status {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.zk-result-card .zk-status img {
  display: block;
  width: 100%;
  height: auto;
}
.zk-result-card .zk-tag {
  display: inline-block;
  background: #e8f0ff;
  color: #2f7bff;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 10px 0;
  border-radius: 999px;
}
.zk-result-card .zk-result-card__meta {
  display: flex;
  gap: 10px;
}
.zk-result-card .zk-result-card__meta.__col-3 .zk-meta-col {
  width: 33%;
}
.zk-result-card .zk-meta-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.zk-result-card .zk-meta-item {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.zk-result-card .zk-meta-item .label {
  color: #999;
  margin-right: 10px;
}
.zk-result-card .zk-meta-item .value {
  color: #444;
  display: inline-block;
}

.zk-detail-section {
  background: #ffffff;
  border-radius: 10px;
  padding: 36px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-top: 20px;
  /* 单个区块 */
  /* 标题 */
  /* 左侧蓝条 */
  /* 正文内容 */
}
.zk-detail-section .zk-detail-block + .zk-detail-block {
  margin-top: 48px;
}
.zk-detail-section .zk-detail-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0 0 18px;
}
.zk-detail-section .zk-detail-title__bar {
  width: 4px;
  height: 20px;
  background: #2f7bff;
  border-radius: 2px;
  margin-right: 12px;
}
.zk-detail-section .zk-detail-content {
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  text-align: justify;
  word-break: break-all;
}

.pc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* 卡片主体 */
.pc-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 80, 160, 0.08);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  /* 右上角状态 */
  /* 标题 */
  /* 描述 */
  /* 标签 */
  /* 分割线 */
  /* 信息区 */
}
.pc-card .pc-status {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.pc-card .pc-status img {
  display: block;
  width: 100%;
  height: auto;
}
.pc-card .pc-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  padding-right: 20px;
  margin-bottom: 8px;
}
.pc-card .pc-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}
.pc-card .pc-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pc-card .pc-tag {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  background: #eaf2ff;
  color: #2f80ff;
}
.pc-card .pc-divider {
  height: 1px;
  background: #eee;
  margin: 14px 0;
}
.pc-card .pc-info {
  font-size: 14px;
}
.pc-card .pc-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.pc-card .pc-row-between {
  justify-content: space-between;
}
.pc-card .pc-label {
  color: #999;
  flex-shrink: 0;
}
.pc-card .pc-value {
  color: #333;
}
.pc-card .pc-money {
  font-size: 20px;
  font-weight: 600;
  color: #ff7a00;
}

.c-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.c-tags .c-tag {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  background: #eaf2ff;
  color: #2f80ff;
}

.c-text-cols {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.c-text-cols .c-text-col {
  display: flex;
}
.c-text-cols .c-text-col .label {
  color: #999;
  flex-shrink: 0;
  margin-right: 10px;
}
.c-text-cols .c-text-col .value {
  color: #444;
  display: inline-block;
}

.c-title {
  font-size: 22px;
  color: #222;
  margin: 0 0 14px;
  line-height: 1.4;
}

.c-text {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  text-align: justify;
  word-break: break-all;
}
.c-text .indent {
  text-indent: 2em;
}

.expert-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.expert-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 16px;
  text-decoration: none;
  display: flex;
  gap: 16px;
}
.expert-card .avatar {
  width: 146px;
  height: 200px;
  flex-shrink: 0;
}
.expert-card .avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.expert-card .c-title {
  margin-bottom: 8px;
}
.expert-card .c-text {
  line-height: 1.5;
  font-size: 14px;
}
.expert-card .c-tags {
  padding-bottom: 12px;
  margin-bottom: 8px;
  margin-top: 8px;
  border-bottom: 1px solid #eee;
}
.expert-card .c-text-col {
  line-height: 2;
}
.expert-card.__detail-view {
  padding: 28px 32px;
  border-radius: 20px;
}
.expert-card.__detail-view .c-title {
  margin-bottom: 16px;
}
.expert-card.__detail-view .c-tags {
  border: none;
  margin-bottom: 0;
}
.expert-card.__detail-view .info {
  padding-top: 20px;
}

.generality-card .title {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
}
.generality-card .meta li {
  line-height: 1.5;
  padding-bottom: 6px;
}
.generality-card .meta p {
  margin-bottom: 0;
}

.logo-cover .avatar {
  width: 200px;
  height: 180px;
}
.logo-cover .avatar img {
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #eee;
  border-radius: 10px;
}
.logo-cover .c-text {
  padding-bottom: 12px;
}
.logo-cover .green {
  color: #33b7e9;
  background-color: #e1f4fb;
}

.intellectual-right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 20px;
}
.intellectual-right .pegional-project {
  min-width: 0;
}
.intellectual-right .pegional-project img {
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-list-col {
  display: block;
}
.card-list-col .result-card {
  display: flex;
  padding: 36px 40px;
  gap: 30px;
}
.card-list-col .result-card .cover {
  width: 300px;
  height: 216px;
  flex-shrink: 0;
}
.card-list-col .result-card .content {
  flex: 1;
}
.card-list-col .result-card .content .title {
  margin-top: 0;
  font-weight: 600;
  margin-bottom: 8px;
}
.card-list-col .result-card .content .meta {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}
.card-list-col .result-card .content .btn {
  width: 120px;
  font-size: 14px;
  background-image: linear-gradient(to right, #45a9f8, #216fff);
  border-color: transparent;
  margin-top: 12px;
  border-left: none;
}
.card-list-col .result-card .content .btn:active {
  opacity: 0.7;
}
.card-list-col .result-card .content .btn.disabled {
  background: #a6a9b8;
  cursor: auto;
}
.card-list-col .result-card + .result-card {
  margin-top: 20px;
}

.kc-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  visibility: hidden;
}
.kc-alert-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.kc-alert-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: white;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
}
.kc-alert-close {
  position: absolute;
  top: -32px;
  right: 0;
  color: white;
  cursor: pointer;
}
.kc-alert.is-show {
  visibility: visible;
}
.kc-alert.is-show .kc-alert-content {
  width: 100px;
  height: 100px;
  opacity: 1;
}

.__kc .pegional-project {
  width: 100%;
  height: 100%;
}
.__kc .pegional-project p {
  white-space: nowrap;
}
.__kc.is-show .kc-alert-content {
  width: 260px;
  height: 300px;
}

.expert-card-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.expert-card-cols-3 .c-text {
  padding-bottom: 0;
}

.policy-cards .avatar {
  width: 200px;
  height: 180px;
}
.policy-cards .avatar img {
  border: 1px solid #eee;
  border-radius: 10px;
}
.policy-cards .green {
  color: #33b7e9;
  background-color: #e1f4fb;
}

.area-project-cards .avatar {
  width: 160px;
  height: 160px;
}
.area-project-cards .avatar img {
  border: 1px solid #eee;
  border-radius: 10px;
}
.area-project-cards .c-title {
  margin-bottom: 12px;
}
.area-project-cards .c-text-cols {
  padding-top: 8px;
  border-top: 1px solid #eee;
}
.area-project-cards .c-tags {
  border-bottom: 0;
}
.area-project-cards .c-tags .c-tag {
  background: #e9eaed;
  color: #676767;
}
.area-project-cards.__detail-view .c-title {
  margin-bottom: 10px;
}
.area-project-cards.__detail-view .info {
  flex: 1;
  padding-top: 0;
}
.area-project-cards.__detail-view .c-text-cols {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: none;
}
.area-project-cards.__detail-view .c-tags {
  margin-top: 16px;
  padding: 0;
}

.news-cols .news-item {
  text-decoration: none;
}
.news-cols .news-item .news-item-text p {
  margin-top: 0;
}
.news-cols .news-item + .news-item {
  margin-top: 16px;
}

.detail-section {
  background: #ffffff;
  border-radius: 10px;
  padding: 36px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.detail-section .detail-subtitle {
  font-size: 14px;
  color: #9a9a9a;
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.detail-section .detail-content {
  padding: 30px 0;
  min-height: 30vh;
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  text-align: justify;
  word-break: break-all;
}
.detail-section .detail-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #9a9a9a;
  gap: 30px;
}
.detail-section .detail-footer div {
  max-width: 50%;
}
.detail-section .detail-footer a, .detail-section .detail-footer span {
  color: inherit;
  text-decoration: none;
}
.detail-section .detail-footer a[href]:hover {
  color: rgb(13, 110, 253);
}

.search-list {
  margin-top: 20px;
}
.search-list .search-item {
  display: block;
  background: white;
  padding: 24px 32px;
  text-decoration: none;
  color: #333333;
}
.search-list .search-item h5 {
  font-size: 18px;
  font-weight: 550;
  margin-bottom: 12px;
}
.search-list .search-item p {
  font-size: 15px;
  color: #7a7a7a;
  margin-bottom: 12px;
}
.search-list .search-item-text {
  font-size: 14px;
  color: #9c9c9c;
  vertical-align: middle;
}
.search-list .search-item + .search-item {
  margin-top: 16px;
}

.login-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 1200px;
  padding-top: 60px;
  background: url(../images/login-bg.jpg) no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}
.login-container .login-card {
  position: absolute;
  right: 10%;
  top: 50%;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
}
.login-container .text-muted {
  text-decoration: none;
}
.login-container .captcha-img {
  height: 38px;
  cursor: pointer;
  border-radius: 5px;
  border: var(--bs-border-width) solid var(--bs-border-color);
}
.login-container input::-webkit-input-placeholder {
  font-size: 14px;
  color: #adadad;
}
.login-container .btn-login {
  background: linear-gradient(to right, #4da3ff, #2d6cdf);
  border: none;
  font-size: 16px;
}
.login-container .btn-login:hover {
  opacity: 0.9;
}
.login-container .register-link {
  font-size: 14px;
}
.login-container .register-link a {
  text-decoration: none;
  font-weight: 500;
}
.login-container .captcha {
  position: relative;
}
.login-container .captcha-text {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: #a2a2a2;
  line-height: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.login-container .captcha-text:active {
  opacity: 0.7;
}
.login-container .captcha input {
  padding-right: 120px;
}
.login-container .agreement {
  font-size: 13px;
}
.login-container .agreement .form-check-input {
  margin-top: 3px;
}
.login-container .login-copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 13px;
  color: #60615e;
  text-align: center;
  padding: 12px 0;
}
.news-card-styles2 {
  width: 974px;
  height: 204px;
  padding-left: 10px;
  padding-right: 24px;
  margin-right: -24px;
  margin-left: -10px;
}
.news-card-styles2-item {
  display: flex;
  gap: 16px;
  width: 100%;
}/*# sourceMappingURL=style.css.map */