@charset "UTF-8";
/**
 * 江苏省建设工程网上招投标系统
 * date: 2026-2-5
 * author: qgq;
 */
.contact-page {
  display: flex;
  padding: 0;
}

.contact-sidebar {
  width: 220px;
  flex-shrink: 0;
}

.sidebar-header {
  border-radius: 12px;
  padding: 10px 12px 10px 30px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url("../images/bg-sidebar.png") no-repeat center/cover;
}
.sidebar-header .header-line {
  width: 18px;
  height: 1px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
.sidebar-header .header-title {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  line-height: 35px;
  position: relative;
  z-index: 1;
}

.nav-menu {
  overflow: hidden;
}

.nav-box {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
}
.nav-box:last-of-type {
  border-bottom: none;
}
.nav-box .nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 24px;
  height: 60px;
  cursor: pointer;
  background: linear-gradient(180deg, #f5f8ff 0%, #daecff 100%);
  border: 1px solid #ffffff;
  border-radius: 12px;
  box-sizing: border-box;
}
.nav-box .nav-item .nav-text {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}
.nav-box .nav-item .nav-arrow {
  width: 20px;
  height: 20px;
  background: url("../images/icon-put.png") no-repeat center;
  transition: transform 0.3s;
}
.nav-box.active .nav-item {
  border: none;
  background: linear-gradient(180deg, #48a3ff 0%, #0063c8 100%);
}
.nav-box.active .nav-item .nav-text {
  color: #fff;
}
.nav-box.active .nav-item .nav-arrow {
  background-image: url("../images/icon-put-h.png");
}
.nav-box.active .nav-item.has-submenu .nav-arrow {
  background-image: url("../images/icon-launched.png");
}
.nav-box.expanded .nav-item.has-submenu .nav-arrow {
  transform: rotate(180deg);
}
.nav-box.active .submenu,
.nav-box.expanded .submenu {
  display: block;
}

.submenu {
  display: none;
  background: #fff;
}

.submenu-item {
  display: flex;
  align-items: center;
  padding: 0 20px 0 46px;
  height: 46px;
  cursor: pointer;
}
.submenu-item.active .submenu-dot, .submenu-item:hover .submenu-dot {
  background: #0063c8;
}
.submenu-item.active .submenu-text, .submenu-item:hover .submenu-text {
  color: #0063c8;
  font-weight: 600;
}
.submenu-item .submenu-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #a8b6c1;
  flex-shrink: 0;
}
.submenu-item .submenu-text {
  margin-left: 10px;
  font-size: 16px;
  color: #666;
  line-height: 46px;
}

.contact-main {
  margin-left: 20px;
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 20px 0px rgba(166, 166, 166, 0.1);
  padding: 20px 24px 24px;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 19px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.header-left {
  display: flex;
  align-items: center;
}

.title-line {
  width: 3px;
  height: 20px;
  background: #0063c8;
  border-radius: 2px;
}

.main-title {
  margin-left: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  line-height: 31px;
}

.search-box {
  display: flex;
  align-items: center;
  width: 260px;
  height: 32px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  padding: 8px 10px;
}
.search-box .search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333333;
  background: transparent;
}
.search-box .search-input::placeholder {
  color: #b6b6b6;
}
.search-box .search-btn {
  width: 32px;
  height: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.search-box .search-btn:hover {
  opacity: 0.8;
}
.search-box .search-icon {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icon-search.png") no-repeat center/contain;
}

.content-list {
  min-height: 400px;
}

.info-card-link {
  display: block;
  text-decoration: none;
}

.info-card {
  display: flex;
  align-items: center;
  padding: 16px 10px;
  border-bottom: 1px solid #ecedf2;
  cursor: pointer;
  transition: all 0.3s;
}
.info-card:hover {
  border-color: #0063c8;
}
.info-card:hover .card-title {
  color: #0063c8;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  align-items: center;
}

.card-tag {
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  height: 26px;
  background: #f68a29;
  border-radius: 4px;
  font-size: 14px;
  color: #ffffff;
  flex-shrink: 0;
}

.card-title {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.card-desc {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
  line-height: 21px;
  max-height: 42px;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* ! autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
  text-align: justify;
}

.card-meta {
  margin-top: 6px;
  display: flex;
  line-height: 21px;
  align-items: center;
}

.meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.meta-item:nth-child(n+2) {
  margin-left: 13px;
}
.meta-item .meta-label {
  color: #666;
  letter-spacing: -0.025em;
}
.meta-item .meta-value {
  margin-left: 4px;
  color: #333333;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.m-pagination-info {
  font-size: 12px;
  color: #333333;
}
.m-pagination-info > span {
  margin: 0;
  font-size: 12px;
  color: #333333;
  font-weight: normal;
}

.m-pagination-page > li.active > a {
  border-color: #0063c8;
  background: transparent;
  color: #0063c8;
  font-weight: normal;
}

.m-pagination-page > li > a {
  height: 28px;
  line-height: 28px;
  border-radius: 2px;
}

.m-pagination-group > input {
  height: 28px;
  line-height: 28px;
}

.m-pagination-group > button {
  height: 30px;
}

.m-pagination-info {
  height: 30px;
  line-height: 30px;
}