/* 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 */
.huangShan .hero {
  background: url("../../assets/huangShan/plat-bg.png") no-repeat center center;
  background-size: cover;
  color: white;
  padding-top: 617px;
  padding-bottom: 0px;
}

.hero .entrance {
  width: 1200px;
  height: 517px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}

.hero .entrance .text-wrapper {
  background-color: rgba(11, 47, 5, 0.2);
  height: 80px;
  width: 276px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .entrance .image-wrapper img {
  width: 276px;
  height: 437px;
  object-fit: cover;
}

.hero .entrance .group-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  width: 276px;
  height: 517px; /* text-wrapper (80px) + image-wrapper (437px) */
}

.hero .entrance .group-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.2);
  transition: height 0.3s ease;
  z-index: 1;
  box-sizing: border-box;
}

.hero .entrance .group-link:hover::after {
  height: 100%;
}

.hero .entrance [class^="group"] .text-wrapper,
.hero .entrance [class^="group"] .text {
  position: relative;
  z-index: 2;
}

.hero .entrance .text-wrapper .text {
  width: 95px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  line-height: 24px;
  margin: 0;
}

/* 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;
  flex-direction: row;
}
.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;
}

/* trade */
.trade {
}
.item-body {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 60px 0;
}
.item-body .trade-content .trade-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-top: 60px;
  margin-bottom: 40px;
}
.item-body .trade-content .trade-top .trade-top-left {
  flex: 1;
}
.item-body .trade-content .trade-top .trade-top-left .explain {
  position: relative;
}
.item-body .trade-content .trade-top .trade-top-left .explain .line {
  position: absolute;
  background: #dbb698;
  width: 16px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.item-body .trade-content .trade-top .trade-top-left .explain .text {
  font-weight: normal;
  font-size: 15px;
  color: #b0b0b0;
  letter-spacing: 2px;
  padding-left: 24px;
}
.item-body .trade-content .trade-top .trade-top-left .title {
  position: relative;
  margin-top: 10px;
}
.item-body .trade-content .trade-top .trade-top-left .title .text {
  font-weight: bold;
  font-size: 48px;
  color: #2f2f2f;
}
.item-body .trade-content .trade-top .trade-top-left .title .line-img {
  position: absolute;
  width: 160px;
  height: 20px;
  bottom: 0;
  left: 0;
}
.item-body .trade-content .trade-top .trade-top-right {
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.item-body .trade-content .trade-top .trade-top-right .num {
  color: #005d52;
  padding: 0 4px;
}
.item-body .trade-content .trade-top .trade-top-right .time-box {
  position: relative;
  margin-left: 12px;
}
.item-body .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;
}
.item-body .trade-content .trade-top .trade-top-right .time-img {
  position: absolute;
  width: 14px;
  height: 14px;
}

.item-body .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;
}

.item-body .trade-content .trade-top .trade-top-right .more-link:hover {
  color: #005d52;
}

.item-body .trade-content .trade-top .trade-top-right .more-link .arrow-icon {
  width: 24px;
  height: 24px;
  margin-left: 2px;
  object-fit: contain;
}

/* Recommendation List */
.item-body .recommendation-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.item-body .recommendation-item {
  padding: 0px;
  width: 384px;
  background-color: #ffffff;
  box-sizing: border-box;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.item-body .recommendation-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.item-body .recommendation-item:hover {
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.2);
}
.item-body .recommendation-img {
  width: 100%;
  height: 236px;
}
.item-body .recommendation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-body .recommendation-header {
  padding: 16px 20px 20px 20px;
}
.item-body .recommendation-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.item-body .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;
}
.item-body .recommendation-box {
  display: flex;
  align-items: center;
  margin: 8px 0 0 0;
}
.item-body .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-item {
  padding: 24px;
  margin-bottom: 20px;
  width: 588px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.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-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: 34px;
}
.item-info .item-detail .title {
  width: 63px;
  word-break: keep-all;
  margin-right: 12px;
  color: #7e7e7e;
}
.item-info .item-detail .title.area {
  width: 63px;
  letter-spacing: 7px;
}
.item-info .item-detail .title.price {
  color: #005d52;
}
.item-info .item-detail .value.price {
  color: #005d52;
  font-size: 22px;
  font-weight: bold;
}

/* Pagination */
.pagination {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 100px;
}

.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;
}

/* year */
.year {
  margin-top: 60px;
  background-color: #fff;
  width: 100%;
}
.year-content {
  height: 930px;
  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;
}
.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;
}

/* trading region */
.year-content .chart-box .chart-top .trading-region img {
  width: 1200px;
  height: 791px;
  display: block;
}
