#demand-index {
  padding: 122px 0 0;
}
#demand-index .breadcrumb {
  display: flex;
  gap: 4px;
  padding: 20px 0;
}
#demand-index .breadcrumb-item {
  background: url(/assets/images/common/icon-slash.png) no-repeat left center;
  background-size: 16px;
  padding-left: 24px;
  line-height: 20px;
  font-size: 14px;
  color: #77798E;
}
#demand-index .breadcrumb-item:hover {
  color: #1259F0;
}
#demand-index .breadcrumb-item:first-child {
  background-image: url(/assets/images/common/icon-home.png);
  padding-left: 20px;
}
#demand-index .breadcrumb-item:first-child:hover {
  color: #1259F0;
}
#demand-index .breadcrumb-item:last-child {
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #39435A;
}
#demand-index .breadcrumb-item:last-child:hover {
  color: #39435A;
}
#demand-index .company-detail .company-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
#demand-index .company-detail .company-head .company-cover {
  width: 106px;
  height: 106px;
  border-radius: 5px 5px 5px 5px;
  border: 1px solid #EDEEF2;
}
#demand-index .company-detail .company-head .company-name-detail {
  display: flex;
  flex: 1;
  width: 0px;
  flex-direction: column;
  height: 106px;
  justify-content: space-between;
}
#demand-index .company-detail .company-head .company-name-detail .company-name {
  font-weight: bold;
  font-size: 28px;
  color: #39435A;
  line-height: 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#demand-index .company-detail .company-head .company-name-detail .company-btns-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#demand-index .company-detail .company-head .company-name-detail .company-btns-share .company-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}
#demand-index .company-detail .company-head .company-name-detail .company-btns-share .company-btns .company-btn {
  height: 34px;
  background: #DBE8FF;
  border-radius: 4px 4px 4px 4px;
  font-weight: 400;
  font-size: 14px;
  color: #005CE5;
  text-align: center;
  padding: 0 16px;
  line-height: 34px;
}
.share-content {
  display: flex;
  align-items: center;
  height: 16px;
  font-weight: 400;
  font-size: 12px;
  color: #777E8E;
}
.share-content .share-btns {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid #EBEBEB;
  gap: 8px;
}
.share-content .share-btns .share-btn {
  cursor: pointer;
}
.share-content .share-btns .share-btn .share-image {
  width: 28px;
  height: 28px;
}
.share-content .collect {
  margin-left: 10px;
}
.profile-ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 34px 0 44px;
}
.profile-ul .profile-li-li {
  display: flex;
  gap: 63px;
}
.profile-ul .profile-li {
  display: flex;
  align-items: center;
}
.profile-ul .profile-li .profile-lable {
  width: 70px;
  height: 18px;
  font-weight: 400;
  font-size: 14px;
  color: #777E8E;
  text-align: right;
}
.profile-ul .profile-li .profile-value {
  height: 18px;
  font-weight: 400;
  font-size: 14px;
  color: #39435A;
  text-align: left;
  padding: 0 16px;
}
.push-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 80px;
}
.push-btns .push-btn {
  width: 220px;
  height: 44px;
  background: #4282FF;
  border-radius: 6px 6px 6px 6px;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
}
.push-btns .push-btn:hover {
  background: #1259F0;
}
.push-btns .push-btn.push-btn-2 {
  background: #FFFFFF;
  border: 1px solid #4282FF;
  color: #4282FF;
}
.push-btns .push-btn.push-btn-2:hover {
  border: 1px solid #1259F0;
  color: #1259F0;
}
.collect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  font-size: 10px;
  color: #777E8E;
}
.collect .collect-icon {
  width: 26px;
  height: 26px;
  background: url('/assets/images/demand/collect.png') no-repeat;
  background-size: 100% 100%;
}
.collect .collect-icon:hover {
  background: url('/assets/images/demand/collect-hover.png') no-repeat;
  background-size: 100% 100%;
}
.collect .collect-icon.un-collect {
  background: url('/assets/images/demand/uncollect.png') no-repeat;
  background-size: 100% 100%;
}
.collect .collect-icon.un-collect:hover {
  background: url('/assets/images/demand/uncollect-hover.png') no-repeat;
  background-size: 100% 100%;
}
.collect .collect-success {
  user-select: none;
  width: 131px;
  height: 37px;
  background: #fff;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  position: absolute;
  left: 0;
  bottom: -25px;
  z-index: 1;
  opacity: 0;
}
.collect .collect-success.show {
  opacity: 1;
  transform: translateY(-15px);
  transition: all 0.5s ease-in-out;
}
.collect .collect-success .icon {
  width: 20px;
}
.collect .collect-success span {
  line-height: 21px;
  font-size: 16px;
  color: #4282FF;
}
#demand-index .container {
  display: flex;
  gap: 40px;
}
#demand-index .container .sidebar {
  min-width: 114px;
  width: 114px;
}
#demand-index .container .sidebar .sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 200px;
  height: 500px;
}
#demand-index .container .sidebar .sidebar__inner .nav-item {
  width: 114px;
  height: 40px;
  background: url('/assets/images/demand/nav-bg.png') no-repeat;
  background-size: 100%;
  border-radius: 3px;
  line-height: 40px;
  padding-left: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #39435A;
}
#demand-index .container .sidebar .sidebar__inner .nav-item:hover {
  filter: drop-shadow(0px 4px 12px rgba(191, 191, 191, 0.21));
}
#demand-index .container .sidebar .sidebar__inner .nav-item.active {
  background: url('/assets/images/demand/nav-bg-active.png') no-repeat;
  background-size: 100%;
  color: #FFFFFF;
}
#demand-index .container .main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#demand-index .container .main-content .content-grid {
  font-weight: 400;
  font-size: 16px;
  color: #39435A;
  line-height: 26px;
  padding: 28px 0;
}
#demand-index .container .main-content .content-grid .table {
  border: 1px solid #E0E5EC;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
#demand-index .container .main-content .content-grid .table:last-child {
  margin: 0;
}
#demand-index .container .main-content .content-grid .table .table-tr {
  display: flex;
}
#demand-index .container .main-content .content-grid .table .table-tr .table-lable {
  width: 192px;
  min-height: 38px;
  background: #F4F7FB;
  line-height: 18px;
  font-size: 14px;
  color: #15213A;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E0E5EC;
}
#demand-index .container .main-content .content-grid .table .table-tr .table-value {
  flex: 1;
  min-height: 38px;
  background: #FCFCFD;
  line-height: 18px;
  font-size: 14px;
  color: #39435A;
  padding: 10px 64px;
  display: flex;
  align-items: center;
  border: 1px solid #E0E5EC;
}
#demand-index .container .main-content .line {
  font-size: 16px;
  font-weight: bold;
  color: #15213A;
}
.recom-content {
  padding: 24px 0;
}
.recom-content .recom-types {
  display: flex;
  gap: 8px;
  padding: 16px 0 28px;
}
.recom-content .recom-types .recom-type {
  height: 31px;
  font-weight: 400;
  font-size: 16px;
  color: #39435A;
  padding: 0 28px;
  line-height: 31px;
  cursor: pointer;
}
.recom-content .recom-types .recom-type.active {
  background: #4282FF;
  border-radius: 60px 60px 60px 60px;
  font-weight: bold;
  color: #FFFFFF;
}
.recom-content .list-box {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EDEEF2;
}
.section-header .title-icon {
  width: 26px;
  height: 26px;
}
.section-header .section-title {
  height: 29px;
  font-weight: bold;
  font-size: 22px;
  color: #15213A;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.section-header .more-icon-a {
  display: flex;
  margin-left: auto;
}
.section-header .more-icon-a .more {
  background: url(/assets/images/demand/right-more.png) no-repeat right center;
  background-size: 16px;
  line-height: 21px;
  font-size: 15px;
  font-weight: 400;
  color: #B4B8C1;
  padding-right: 20px;
  cursor: pointer;
}
