/* Reset and Base Styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family:
    "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  min-width: 1200px;
}

.container,
.container-layout {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* hero */
.emission .hero {
  background: url("../../assets/plat-bg.png") no-repeat center center;
  background-size: cover;
  color: white;
  padding-top: 617px;
  padding-bottom: 180px;
}

.forest .hero {
  background: url("../../assets/forest/platform-bg.png") no-repeat center center;
  background-size: cover;
  color: white;
  padding-top: 617px;
  padding-bottom: 180px;
}

.water .hero {
  background: url("../../assets/water/platform-bg.png") no-repeat center center;
  background-size: cover;
  color: white;
  padding-top: 617px;
  padding-bottom: 180px;
}

.co-owned .hero {
  background: url("../../assets/co_owned/platform-bg.png") no-repeat center
    center;
  background-size: cover;
  color: white;
  padding-top: 617px;
  padding-bottom: 180px;
}

.hero-content {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.hero-content .hero-item {
  flex: 1;
}
.hero-content .hero-item p {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  margin: 0;
}
.hero-content .hero-item p.hero-value {
  padding-top: 12px;
  font-size: 54px;
  font-weight: bold;
  line-height: normal;
}

/* nav */
.nav {
  margin-top: -75px;
  margin-bottom: 20px;
}
.nav-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 40px 32px;
  background-color: #fff;
}
.nav-content .nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: relative;
  z-index: 1;
}

.nav-content .nav-item::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0px;
  width: 100%;
  height: 0;
  background-color: #eef5f4;
  opacity: 1;
  transition: height 0.2s ease;
  z-index: -1;
}

.nav-content .nav-item:hover::after {
  height: 140px;
}
.nav-content .nav-item img {
  width: 60px;
  height: 60px;
}
.nav-content .nav-item span {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  padding-left: 16px;
}

.nav-content .nav-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

/* trade */
.trade {
}
.trade-content .trade-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-top: 60px;
  margin-bottom: 60px;
}
.trade-content .trade-top .trade-top-left {
  flex: 1;
}
.trade-content .trade-top .trade-top-left .explain {
  position: relative;
}
.trade-content .trade-top .trade-top-left .explain .line {
  position: absolute;
  background: #dbb698;
  width: 16px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.trade-content .trade-top .trade-top-left .explain .text {
  font-weight: normal;
  font-size: 15px;
  color: #b0b0b0;
  letter-spacing: 2px;
  padding-left: 24px;
}
.trade-content .trade-top .trade-top-left .title {
  position: relative;
  margin-top: 10px;
}
.trade-content .trade-top .trade-top-left .title .text {
  font-weight: bold;
  font-size: 48px;
  color: #2f2f2f;
}
.trade-content .trade-top .trade-top-left .title .line-img {
  position: absolute;
  width: 160px;
  height: 20px;
  bottom: 0;
  left: 0;
}
.trade-content .trade-top .trade-top-right {
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.trade-content .trade-top .trade-top-right .num {
  color: #005d52;
  padding: 0 4px;
}
.trade-content .trade-top .trade-top-right .time-box {
  position: relative;
  margin-left: 12px;
}
.trade-content .trade-top .trade-top-right .small-input {
  width: 250px;
  height: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
  padding: 0px 40px 0px 16px;
}
.trade-content .trade-top .trade-top-right .time-img {
  position: absolute;
  width: 14px;
  height: 14px;
}

.trade-content .trade-top .trade-top-right .more-link {
  font-size: 20px;
  color: #005d52;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.trade-content .trade-top .trade-top-right .more-link:hover {
  color: #005d52;
}

.trade-content .trade-top .trade-top-right .more-link .arrow-icon {
  width: 24px;
  height: 24px;
  margin-left: 2px;
  object-fit: contain;
}

/* Recommendation List */
.recommendation-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.recommendation-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.recommendation-item {
  padding: 0px;
  width: 384px;
  background-color: #ffffff;
  box-sizing: border-box;
  margin-bottom: 60px;
  transition: box-shadow 0.3s ease;
}

.recommendation-item:hover {
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.2);
}

.recommendation-img {
  width: 100%;
  height: 236px;
}
.recommendation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recommendation-header {
  padding: 16px 20px 20px 20px;
}
.recommendation-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.recommendation-title {
  font-size: 20px;
  font-weight: bold;
  color: #2f2f2f;
  text-align: left;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.recommendation-box {
  display: flex;
  align-items: center;
  margin: 8px 0 0 0;
}
.recommendation-time {
  font-size: 16px;
  color: #b0b0b0;
}

/* Announcement List */
.announcement-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.announcement-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.announcement-item {
  padding: 24px;
  margin-bottom: 20px;
  width: 588px;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.announcement-item:hover {
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.2);
}

.item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header-img {
  margin-right: 12px;
}
.header-img img {
  width: 56px;
  height: 56px;
}

.header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 56px;
  justify-content: space-between;
}
.item-title {
  font-size: 20px;
  font-weight: bold;
  color: #2f2f2f;
  text-align: left;
  margin: 0;
  width: 480px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-box {
  display: flex;
  align-items: center;
}

.item-type {
  color: white;
  padding: 0px 8px;
  height: 22px;
  font-size: 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-type.xieyi {
  background-color: #1ea091;
}

.item-type.xieyi::before {
  content: "协议";
}

.item-type.jingjia {
  background: #ee5d6c;
}

.item-type.jingjia::before {
  content: "竞价";
}

.item-type.guapai {
  background: #3e79e0;
}

.item-type.guapai::before {
  content: "挂牌";
}
.item-status {
  padding: 0px 8px;
  height: 22px;
  font-size: 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 报名中 */
.item-status.application {
  color: #dc7a39;
  border: 1px solid #dc7a39;
}

.item-status.application::before {
  content: "报名中";
  font-weight: bold;
}

/* 挂牌中 */
.item-status.listing {
  color: #f14c5d;
  border: 1px solid #f14c5d;
}

.item-status.listing::before {
  content: "挂牌中";
  font-weight: bold;
}

/* 全部成交 */
.item-status.fully-traded {
  color: #005d52;
  border: 1px solid #005d52;
}

.item-status.fully-traded::before {
  content: "全部成交";
  font-weight: bold;
}

/* 部分成交 */
.item-status.partially-traded {
  color: #005d52;
  border: 1px solid #005d52;
}

.item-status.partially-traded::before {
  content: "部分成交";
  font-weight: bold;
}

.item-status.end {
  color: #7e7e7e;
  border: 1px solid #7e7e7e;
}

.item-time {
  color: #7e7e7e;
  font-size: 14px;
  line-height: 22px;
}
.item-mr8 {
  margin-right: 8px;
}

.item-body {
  display: flex;
}

.item-info {
  display: grid;
  grid-template-columns: repeat(2, 270px);
  font-size: 16px;
  color: #2f2f2f;
}
.item-info .item-detail {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  height: 32px;
  align-items: end;
}
.item-info .item-detail .title {
  width: 63px;
  word-break: keep-all;
  margin-right: 12px;
  color: #7e7e7e;
  text-align: justify;
  text-align-last: justify;
  letter-spacing: 0;
}
.item-info .item-detail .title.area {
  width: 63px;
}
.item-info .item-detail .title.price {
  color: #005d52;
  width: 63px;
}
.item-info .item-detail .value.price {
  color: #005d52;
  font-size: 22px;
  font-weight: bold;
}
.item-info .item-detail .value {
  max-width: 190px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pagination */
.pagination {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0px;
}

.pagination span,
.pagination a {
  padding: 5px 10px;
  font-size: 14px;
  color: #333;
}

.pagination a.active {
  background-color: #007b5f;
  color: white;
  border-color: #007b5f;
}

.pagination .page-input {
  width: 42px;
  height: 28px;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
}

.blank-spacer {
  height: 120px;
}

/* year */
.year {
  margin-top: 60px;
  background-color: #fff;
  width: 100%;
}
.year-content {
  height: 1000px;
  display: flex;
  flex-direction: row;
  width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
.year-content .chart-box .chart-top {
  flex: 1;
}
.year-content .chart-box .chart-top .explain {
  position: relative;
}
.year-content .chart-box .chart-top .explain .line {
  position: absolute;
  background: #dbb698;
  width: 16px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.year-content .chart-box .chart-top .explain .text {
  font-weight: normal;
  font-size: 15px;
  color: #b0b0b0;
  letter-spacing: 2px;
  padding-left: 24px;
}
.year-content .chart-box .chart-top .title {
  position: relative;
  margin-top: 10px;
}
.year-content .chart-box .chart-top .title .text {
  font-weight: bold;
  font-size: 48px;
  color: #2f2f2f;
}
.year-content .chart-box .chart-top .title .line-img {
  position: absolute;
  width: 160px;
  height: 20px;
  bottom: 0;
  left: 0;
}
.year-content .data-box {
  flex: 1;
}
.year-content .data-box .nav-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  margin-top: 45px;
}
.year-content .data-box .nav-box li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex: 1;
}
.year-content .data-box .nav-box li span {
  font-size: 18px;
  color: #999;
  line-height: 34px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.year-content .data-box .nav-box li.active span {
  color: #333;
  border-bottom: 3px solid #007b5f;
  font-weight: 600;
}
.year-content .data-box .nav-box li span:hover {
  color: #333;
  font-weight: 600;
  border-bottom: 3px solid #007b5f;
}

.chart-container {
  height: 900px;
  width: 600px;
}

/* table-box */
.table-box {
  box-sizing: border-box;
  margin-top: 70px;
  margin-bottom: 40px;
  flex: 1;
}
.table-box table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.table-box table th {
  padding: 12px;
  font-size: 16px;
  color: #999;
  font-weight: normal;
  text-align: left;
}
.table-box table td {
  padding: 12px;
  font-size: 16px;
  color: #333;
  line-height: 20px;
  text-align: left;
}
/* pollution 专用表格样式 */
.table-box.pollution-table table td {
  font-size: 14px;
  line-height: 16px;
}
.table-box.pollution-table table tbody tr {
  height: 48px;
}
.table-box table th.is-center,
.table-box table td.is-center {
  text-align: center;
}
.table-box table td.is-hascolor {
  color: #005d52;
}
.table-box table th.is-first,
.table-box table td.is-first {
  padding-left: 20px;
}
.table-box table tbody tr {
  height: 64px;
}
.table-box table tbody tr:nth-child(odd) {
  background: #f2f6f6;
}
