@charset "UTF-8";
/**
 * 江苏省建设工程网上招投标系统
 * date: 2026-4-15
 * author: fxyue;
 */
.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;
}

.way-title {
  font-size: 18px;
  line-height: 27px;
  margin-top: 16px;
  color: #666666;
}
.way-txt {
  font-size: 16px;
  line-height: 24px;
  margin-top: 16px;
}
.way-info {
  display: flex;
  padding-bottom: 8px;
}
.way-info-box p + p {
  margin-top: 10px;
}
.way-table {
  margin-top: 16px;
  font-size: 16px;
}
.way-table table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid #000;
}
.way-table table th,
.way-table table td {
  padding: 0 8px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #000;
}
.way-table table th {
  text-align: center;
}
.way-no {
  text-align: center;
}
.way-location {
  margin-top: 24px;
  display: flex;
  height: 152px;
}
.way-wrap {
  padding: 0 10px;
  width: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 22px;
  background-color: #0063C8;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  flex-direction: column;
}
.way-wrap::before {
  content: "";
  width: 22px;
  height: 23px;
  margin-bottom: 5px;
  background: url("../images/way_location_icon.png") no-repeat;
}
.way-map {
  flex: 1;
  width: 0;
}
.way-map > img {
  display: block;
  width: 100%;
  height: 100%;
}