@charset "UTF-8";
/* 公共样式 */
.himqc-container {
  width: 1250px;
  margin: 0 auto;
  box-sizing: border-box;
}

.himqc-gradient-bg {
  background: linear-gradient(#eef5fb, #fff 40px);
}

body {
  min-width: 1300px;
}

a {
  transition: all 0.3s;
}

.flex {
  display: flex;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

/* header */
.header .header-top {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-top .header-logo {
  width: 547px;
}
.header .header-top .header-logo img {
  width: 100%;
}
.header .header-top-right {
  display: flex;
  align-items: center;
}
.header .header-top-right .header-search {
  width: 280px;
  height: 46px;
  border-radius: 25px;
  background: #f5f5f5;
  padding: 8px 9px 8px 18px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 10px;
  gap: 10px;
}
.header .header-top-right .header-search .header-search-ipt {
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  height: 30px;
  line-height: 30px;
  flex-grow: 1;
}
.header .header-top-right .header-search .header-search-ipt::-moz-placeholder {
  color: #999;
  font-size: 14px;
}
.header .header-top-right .header-search .header-search-ipt::placeholder {
  color: #999;
  font-size: 14px;
}
.header .header-top-right .header-search .header-search-btn {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: #e5edf2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header .header-top-right .header-top-nav {
  display: flex;
  align-items: center;
  gap: 9px;
}
.header .header-top-right .header-top-nav .header-top-nav-item {
  width: 106px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  border: 1px solid #2785c9;
  font-size: 14px;
  color: #2785c9;
  border-radius: 25px;
  text-decoration: none;
}
.header .header-top-right .header-top-nav .header-top-nav-item.login {
  background: radial-gradient(ellipse at top, #23b0ec, #449ddd);
  border: none;
  color: #fff;
}
.header .header-top-right .header-top-nav .header-top-nav-item.login img {
  margin-right: 3px;
}
.header .header-top-right .header-top-nav .header-top-nav-item:hover {
  box-shadow: rgba(0, 0, 0, 0.1921568627) 0px 0px 10px;
}
.header .header-navbar {
  background: #2785c9;
  height: 60px;
}
.header .header-navbar .header-nav-list {
  height: 100%;
  display: flex;
}
.header .header-navbar .header-nav-list .header-nav-item {
  list-style: none;
  flex-grow: 1;
  height: 100%;
  position: relative;
  font-size: 16px;
  font-weight: bold;
}
.header .header-navbar .header-nav-list .header-nav-item > a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-navbar .header-nav-list .header-nav-item > a:hover {
  background: #31c1f6;
}
.header .header-navbar .header-nav-list .header-nav-item:hover .header-nav-sub-list {
  display: block;
}
.header .header-navbar .header-nav-list .header-nav-item .header-nav-sub-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: rgba(145, 209, 255, 0.6901960784);
  display: none;
  z-index: 2;
}
.header .header-navbar .header-nav-list .header-nav-item .header-nav-sub-list .header-nav-sub-item {
  color: #fff;
  font-weight: 400;
  padding: 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-navbar .header-nav-list .header-nav-item .header-nav-sub-list .header-nav-sub-item:hover {
  background: #91d1ff;
}
.header .header-banner img {
  width: 100%;
  display: block;
}
.header .header-banner .swiper-pagination-bullet {
  width: 24px;
  border-radius: 15px;
  background: #ffffff;
  opacity: 0.6;
}
.header .header-banner .swiper-pagination-bullet-active {
  width: 50px;
  border-radius: 15px;
  opacity: 1;
}

/* footer */
.footer {
  background: #2785c9;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  padding: 38px 54px 30px 0;
}
.footer .footer-top .footer-logo {
  width: 333px;
}
.footer .footer-top .footer-logo img {
  width: 100%;
}
.footer .footer-top .footer-nav-list .footer-nav-item:not(:last-child) {
  margin-bottom: 10px;
}
.footer .footer-top .footer-nav-list .footer-nav-item a {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  transition: all 0.1s;
}
.footer .footer-top .footer-nav-list .footer-nav-item a:hover {
  transform: scale(1.1);
}
.footer .footer-top .footer-contact {
  width: 316px;
}
.footer .footer-top .footer-contact .footer-contact-title {
  color: #fff;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1882352941);
  margin-bottom: 19px;
}
.footer .footer-top .footer-contact .footer-contact-title .footer-contact-title-label {
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
.footer .footer-top .footer-contact .footer-contact-title .footer-contact-title-label::after {
  content: "";
  display: block;
  height: 1px;
  background: #00ffff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.footer .footer-top .footer-contact .footer-contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer .footer-top .footer-contact .footer-contact-info .footer-contact-info-icon {
  margin-right: 8px;
}
.footer .footer-top .footer-contact .footer-contact-info .footer-contact-info-content {
  color: #fff;
  font-size: 14px;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1882352941);
  padding: 15px 0;
}
.footer .footer-bottom p {
  color: #fff;
  opacity: 0.5;
  text-align: center;
  font-size: 14px;
}
.footer .footer-bottom p:not(:last-child) {
  margin-bottom: 5px;
}

/* location */
.location-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.location-box .location {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
  padding: 30px 0;
}
.location-box .location .location-icon {
  margin-right: 6px;
}
.location-box .location a {
  color: #666;
}
.location-box .location a:hover {
  color: #2785c9;
}
.location-box .category-search {
  width: 298px;
  height: 40px;
  padding: 8px 13px 8px 18px;
  border: 1px solid #ccc;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}
.location-box .category-search .category-search-ipt {
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  height: 30px;
  line-height: 30px;
  flex-grow: 1;
}
.location-box .category-search .category-search-btn {
  cursor: pointer;
}

/* list-images-1 */
.list-images-1 {
  padding-bottom: 45px;
}
.list-images-1 .list {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding-top: 40px;
}
.list-images-1 .list .item {
  width: calc(33.33% - 16.66px);
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
.list-images-1 .list .item .item-cover img {
  display: block;
  width: 100%;
  height: 225px;
}
.list-images-1 .list .item .item-info-box {
  padding: 30px 30px 24px;
  background: #f1f7fc;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.list-images-1 .list .item .item-info-box .item-title {
  font-size: 20px;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 10px;
  transition: all .3s;
}
.list-images-1 .list .item .item-info-box .item-describe {
  font-size: 14px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  transition: all .3s;
}
.list-images-1 .list .item .item-info-box .item-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-images-1 .list .item .item-info-box .item-detail .item-date {
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
}
.list-images-1 .list .item .item-info-box .item-detail .item-date img {
  margin-right: 5px;
}
.list-images-1 .list .item .item-info-box .item-detail .item-detail-btn {
  font-size: 14px;
  color: #2785c9;
  padding: 4px 10px;
  border-radius: 15px;
  border: 1px solid #2785c9;
  transition: all .3s;
}
.list-images-1 .list .item:hover .item-info-box .item-detail .item-detail-btn{
  color: #fff;
  background: #2785c9;
}
.list-images-1 .list .item:hover .item-info-box .item-title,
.list-images-1 .list .item:hover .item-info-box .item-describe{
  color: #2785c9;
}

/* pagination */
.himqc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 40px;
}
.himqc-pagination .himqc-pagination-item {
  padding: 0 15px;
  height: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #666;
}
.himqc-pagination .himqc-pagination-item:hover {
  color: #fff;
  background: #2785c9;
}
.himqc-pagination .himqc-pagination-item.current {
  color: #fff;
  background: #2785c9;
}

/* list-images-2 */
.list-images-2 {
  margin-bottom: 50px;
}
.list-images-2 .list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.list-images-2 .list .item {
  width: calc(33.33% - 13.33px);
  max-width: 305px;
  display: flex;
  flex-direction: column;
}
.list-images-2 .list .item:hover .item-info-box .item-detail .item-detail-btn + .item-detail-icon {
  transform: translateX(30px);
}
.list-images-2 .list .item:hover .item-info-box .item-info .item-title{
  color: #2785c9;
}
.list-images-2 .list .item .item-cover {
  z-index: 1;
}
.list-images-2 .list .item .item-cover img {
  display: block;
  width: 100%;
}
.list-images-2 .list .item .item-info-box {
  padding: 20px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: rgba(204, 204, 204, 0.75) 0 0 13px;
}
.list-images-2 .list .item .item-info-box .item-info {
  margin-bottom: 20px;
}
.list-images-2 .list .item .item-info-box .item-info .item-title {
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 10px;
}
.list-images-2 .list .item .item-info-box .item-info .item-describe {
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-images-2 .list .item .item-info-box .item-detail .item-detail-btn {
  font-size: 14px;
  color: #2785c9;
  margin-right: 5px;
}
.list-images-2 .list .item .item-info-box .item-detail .item-detail-icon {
  margin-bottom: -8px;
  transition: all 0.3s;
}

/* siderbar */
.sidebar {
  width: 260px;
  margin-right: 30px;
  margin-top: -76px;
  flex-shrink: 0;
}
.sidebar + * {
  flex-grow: 1;
}
.sidebar .sidebar-category-name {
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2785c9;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  border-top-right-radius: 12px;
  position: relative;
  z-index: 10;
}
.sidebar .sidebar-menu {
  padding: 0 24px 24px;
  border-bottom-right-radius: 12px;
  box-shadow: rgba(204, 204, 204, 0.75) 0 0 10px;
  overflow: hidden;
}
.sidebar .sidebar-menu .sidebar-menu-item {
  display: flex;
  height: 60px;
  border-bottom: 1px solid #ebebeb;
  padding-left: 5px;
  align-items: center;
  font-size: 16px;
  color: #333;
  background: url(/himqc/himqc2025_037.png) no-repeat right center;
}
.sidebar .sidebar-menu .sidebar-menu-item::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #666;
  border-radius: 50%;
  margin-right: 7px;
  transition: all 0.3s;
}
.sidebar .sidebar-menu .sidebar-menu-item:hover {
  color: #2785c9;
  background: url(/himqc/himqc2025_038.png) no-repeat right center;
}
.sidebar .sidebar-menu .sidebar-menu-item:hover::before {
  background: #2785c9;
}
.sidebar .sidebar-menu .sidebar-menu-item.active {
  color: #2785c9;
  background: url(/himqc/himqc2025_038.png) no-repeat right center;
}
.sidebar .sidebar-menu .sidebar-menu-item.active::before {
  background: #2785c9;
}

/* list-text-1 */
.list-text-1 {
  padding-bottom: 45px;
}
.list-text-1 .list {
  padding-top: 12px;
}
.list-text-1 .list .item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px dashed #e0e0e0;
  padding: 18px 10px;
}
.list-text-1 .list .item-link .item-title {
  display: flex;
  align-items: center;
  min-width: 0;
}
.list-text-1 .list .item-link .item-title .item-icon {
  margin-right: 7px;
}
.list-text-1 .list .item-link .item-title .item-title-label {
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-text-1 .list .item-link .item-date {
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}
.list-text-1 .list .item-link:hover {
  box-shadow: rgba(204, 204, 204, 0.75) 0 0 13px;
}
.list-text-1 .list .item-link:hover .item-title .item-title-label {
  color: #2785c9;
}
.list-text-1 .list .item-link:hover .item-date {
  color: #2785c9;
}

/* 中心简介 */
.introduction {
  padding-bottom: 55px;
}
.introduction .category-search {
  display: none;
}
.introduction .introduction-title {
  margin: 35px 0 25px;
  font-size: 30px;
  font-weight: bold;
  color: #333;
}
.introduction .introduction-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9fc;
}
.introduction .introduction-content .introduction-article {
  font-size: 16px;
  color: #333;
  padding: 45px 30px;
  line-height: 1.5;
}
.introduction .introduction-content .introduction-cover img {
  max-width: 470px;
}

/* detail */
.article-detail-page .location-box .category-search{
  display: none;
}
.article-detail {
  padding-top: 55px;
}
.article-detail .article-detail-main {
  color: #333;
  flex-grow: 1;
  min-width: 0;
}
.article-detail .article-detail-main .article-detail-info {
  margin-bottom: 30px;
  border-bottom: 1px solid #e9e9e9;
  padding: 0 10px 30px;
}
.article-detail .article-detail-main .article-detail-info .article-title {
  font-size: 30px;
  margin-bottom: 20px;
}
.article-detail .article-detail-main .article-detail-info .article-basic-info {
  font-size: 14px;
  color: #999;
  display: flex;
  gap: 45px;
}
.article-detail .article-detail-main .article-detail-info .article-basic-info .article-basic-info-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-detail .article-detail-main .article-detail-content {
  margin-bottom: 35px;
  padding: 0 10px;
  line-height: 1.5;
}
.article-detail .article-detail-main .article-detail-content img{
  max-width: 100%;
}
.article-detail .article-detail-main .attach-list {
  margin-bottom: 33px;
}
.article-detail .article-detail-main .qrcode-box {
  margin-bottom: 45px;
}
.article-detail .article-detail-main .article-detail-pagination {
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 44px;
}
.article-detail .article-detail-main .article-detail-pagination .article-detail-pagination-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 50%;
}
.article-detail .article-detail-main .article-detail-pagination .article-detail-pagination-item .title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
  flex-grow: 1;
  font-size: 14px;
  color: #666;
}
.article-detail .article-detail-main .article-detail-pagination .article-detail-pagination-item .title:hover {
  color: #2785c9;
}

/* attachment */
.attach-list {
  padding: 10px;
  background: #fcfcfc;
  border: 1px solid #e7e7e7;
}
.attach-list .attach-item:not(:last-child) {
  border-bottom: 1px solid #e9e9e9;
}
.attach-list .attach-item .attach-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 10px;
  font-size: 16px;
  color: #333;
  gap: 10px;
}
.attach-list .attach-item .attach-link:hover {
  box-shadow: rgba(204, 204, 204, 0.75) 0 0 13px;
}
.attach-list .attach-item .attach-link .attach-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  min-width: 0;
}
.attach-list .attach-item .attach-link .attach-title span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.attach-list .attach-item .attach-link .attach-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #666;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}
.attach-list .attach-item .attach-link .attach-icon {
  flex-shrink: 0;
}

/* QRcode */
.qrcode-box {
  text-align: center;
  font-size: 0;
}
.qrcode-box #qrcodeImage {
  box-shadow: rgba(204, 204, 204, 0.75) 0 0 12px;
}

/* recommend */
.recommend {
  padding-right: 30px;
  margin-left: 55px;
  min-width: 285px;
  max-width: 285px;
}
.recommend .recommend-title {
  margin-bottom: 30px;
}
.recommend .recommend-title .recommend-title-label {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  z-index: 1;
}
.recommend .recommend-title .recommend-title-label::after {
  content: "";
  display: block;
  height: 7px;
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 0px;
  border-radius: 10px;
  background: #9ec8e7;
  z-index: -1;
}
.recommend .recommend-list .recommend-item {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
  margin-bottom: 17px;
}
.recommend .recommend-list .recommend-item .recommend-link {
  display: flex;
  gap: 10px;
}
.recommend .recommend-list .recommend-item .recommend-link:hover .recommend-info .recommend-info-title {
  color: #2785c9;
}
.recommend .recommend-list .recommend-item .recommend-link .recommend-cover {
  flex: 0 0 99px;
  border-radius: 5px;
  overflow: hidden;
}
.recommend .recommend-list .recommend-item .recommend-link .recommend-cover img {
  width: 100%;
  display: block;
}
.recommend .recommend-list .recommend-item .recommend-link .recommend-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.recommend .recommend-list .recommend-item .recommend-link .recommend-info .recommend-info-title {
  font-size: 14px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend .recommend-list .recommend-item .recommend-link .recommend-info .recommend-info-date {
  font-size: 12px;
  color: #999;
}

/* list-text-2 */
.list-text-2 {
  padding-bottom: 45px;
}
.list-text-2 .list-table {
  border-top: 4px solid #3c91ce;
}
.list-text-2 .list-table .list-table-header {
  display: flex;
  align-items: center;
  height: 52px;
  background: #dfedf7;
  color: #2785c9;
  font-size: 16px;
  align-items: center;
}
.list-text-2 .list-table .list-table-body {
  font-size: 16px;
  color: #333;
}
.list-text-2 .list-table .list-table-body .list-row {
  height: 65px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}
.list-text-2 .list-table .list-table-body .list-row:nth-child(2n) {
  background: #f7f7f7;
}
.list-text-2 .list-table .list-table-body .list-row:hover {
  box-shadow: rgba(204, 204, 204, 0.75) 0 0 13px;
}
.list-text-2 .list-table .list-table-body .list-row:hover>div {
  color: #2785c9;
}
.list-text-2 .list-table .list-table-body .index::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #333;
  margin-right: 10px;
}
.list-text-2 .list-table .index {
  width: 80px;
  max-width: 80px;
  text-align: center;
}
.list-text-2 .list-table .name {
  width: 520px;
  max-width: 520px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-text-2 .list-table .type {
  width: 105px;
  max-width: 105px;
  box-sizing: border-box;
  padding-right: 10px;
}
.list-text-2 .list-table .date {
  width: 100px;
  max-width: 100px;
}
.list-text-2 .list-table .doc-number {
  flex-grow: 1;
}
.list-text-2 .list-table .list-table-body .type,
.list-text-2 .list-table .list-table-body .date,
.list-text-2 .list-table .list-table-body .doc-number{
  color: #666;
  font-size: 14px;
}

/* list-text-3 */
.list-text-3 {
  padding-bottom: 45px;
}
.list-text-3 .list {
  padding-top: 10px;
}
.list-text-3 .list .item {
  padding: 23px 13px;
  border-bottom: 2px dashed #e0e0e0;
}
.list-text-3 .list .item .item-link {
  display: flex;
  gap: 15px;
  align-items: center;
}
.list-text-3 .list .item .item-link:hover .item-info .item-title,
.list-text-3 .list .item .item-link:hover .item-info .item-describe {
  color: #2785c9;
}
.list-text-3 .list .item .item-link .item-info {
  flex-grow: 1;
}
.list-text-3 .list .item .item-link .item-info .item-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-text-3 .list .item .item-link .item-info .item-describe {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-text-3 .list .item .item-link .item-info .item-date {
  font-size: 14px;
  color: #999;
}

/* list-card */
.list-card {
  padding-bottom: 45px;
}
.list-card .list {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.list-card .list .item {
  width: 50%;
  padding: 27px 35px 27px 50px;
  box-shadow: rgba(235, 235, 235, 0.75) 0 0 13px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  width: 605px;
}
.list-card .list .item .item-info {
  margin-bottom: 20px;
}
.list-card .list .item .item-info .item-title {
  font-size: 20px;
  color: #2785c9;
  margin-bottom: 15px;
  position: relative;
}
.list-card .list .item .item-info .item-title::before {
  content: "";
  display: block;
  position: absolute;
  left: -28px;
  top: 3px;
  width: 21px;
  height: 18px;
  background: url(/himqc/himqc2025_014.png) no-repeat;
}
.list-card .list .item .item-info .item-describe {
  font-size: 14px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-card .list .item .item-detail .item-detail-btn {
  font-size: 14px;
  color: #2785c9;
  margin-right: 5px;
}
.list-card .list .item .item-detail .item-detail-btn:hover + .item-detail-icon {
  transform: translateX(30px);
}
.list-card .list .item .item-detail .item-detail-icon {
  margin-bottom: -8px;
  transition: all 0.3s;
}

.gywm {
  padding-bottom: 58px;
}
.gywm .location-box .category-search{
  display: none;
}
.gywm .structure-chart {
  font-size: 0;
  margin-bottom: 45px;
}
.gywm .structure-chart img {
  width: 100%;
}
.gywm .list .item {
  background: #f4f4f4;
  border-radius: 75px;
  padding: 18px 50px 18px 21px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.gywm .list .item:not(:last-child) {
  margin-bottom: 28px;
}
.gywm .list .item .item-avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 125px;
  height: 125px;
  flex-shrink: 0;
}
.gywm .list .item .item-avatar img {
  width: 100%;
}
.gywm .list .item .item-info {
  flex-grow: 1;
  min-width: 0;
}
.gywm .list .item .item-info .item-name {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.gywm .list .item .item-info .item-name .item-name-label {
  font-size: 20px;
  color: #333;
  margin-right: 6px;
}
.gywm .list .item .item-info .item-name .item-title {
  padding: 0 3px 2px;
  border: 1px solid #2785c9;
  font-size: 14px;
  color: #2785c9;
}
.gywm .list .item .item-info .item-describe {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}/*# sourceMappingURL=public.css.map */