/* 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 */
.hero {
  position: relative;
  height: 1000px;
  width: 100%;
}
.hero .carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero .carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.hero .carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}
.hero .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-session {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 50%;
  margin-left: -600px;
  height: 100%;
}
.hero .carousel-text {
  position: absolute;
  line-height: 60px;
  bottom: 100px;
  right: 140px;
  color: white;
  font-size: 20px;
}

.hero .carousel-btn {
  position: absolute;
  bottom: 100px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  width: 60px;
  height: 60px;
  cursor: pointer;
  color: #fff;
}
.hero .carousel-btn:hover {
  background: rgba(0, 93, 82, 0.7);
}
.hero .carousel-btn.prev {
  right: 60px;
}
.hero .carousel-btn.next {
  right: 0px;
}
.hero .carousel-btn.prev::before {
  content: "‹";
  font-size: 40px;
  display: block;
  text-align: center;
}
.hero .carousel-btn.next::before {
  content: "›";
  font-size: 40px;
  display: block;
  text-align: center;
}
.hero .hero-session h4 {
  font-size: 48px;
  color: #ffffff;
  font-weight: normal;
  padding-top: 600px;
  padding-bottom: 16px;
  margin: 0;
  letter-spacing: 3px;
}
.hero .hero-session p {
  font-size: 90px;
  color: #ffffff;
  font-weight: bold;
  margin: 0;
  letter-spacing: 5px;
}

/* notice */
.notice {
  margin-top: -35px;
  margin-bottom: 20px;
  position: relative;
  z-index: 100;
}
.notice-content {
  padding: 24px;
  background-color: #fff;
}
.notice-content .notice-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
.notice-content .notice-top span {
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.notice-content .notice-top span.more {
  font-size: 20px;
  color: #005d52;
  font-weight: normal;
}
.notice-content .notice-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.notice-content .notice-list .notice-item {
  width: 570px;
  flex-direction: row;
  align-items: center;
  display: flex;
  margin-top: 12px;
}
.notice-content .notice-list .notice-item div {
  width: 54px;
  height: 24px;
  background: #005d52;
  color: white;
  text-align: center;
  line-height: 24px;
  font-size: 18px;
  margin-right: 8px;
}
.notice-content .notice-list .notice-item span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  color: #333;
}

.notice-content .notice-list .notice-item span:hover {
  color: #005d52;
  cursor: pointer;
  font-weight: bold;
}

/* market */
.market {
}
.market-content .market-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-top: 60px;
  margin-bottom: 60px;
}
.market-content .market-top .market-top-left {
  flex: 1;
}
.market-content .market-top .market-top-left .explain {
  position: relative;
}
.market-content .market-top .market-top-left .explain .line {
  position: absolute;
  background: #dbb698;
  width: 16px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.market-content .market-top .market-top-left .explain .text {
  font-weight: normal;
  font-size: 15px;
  color: #b0b0b0;
  letter-spacing: 2px;
  padding-left: 24px;
}
.market-content .market-top .market-top-left .title {
  position: relative;
  margin-top: 10px;
}
.market-content .market-top .market-top-left .title .text {
  font-weight: bold;
  font-size: 44px;
  color: #2f2f2f;
}
.market-content .market-top .market-top-left .title .line-img {
  position: absolute;
  width: 160px;
  height: 20px;
  bottom: 0;
  left: 0;
}

/* Announcement List */
.announcement-list {
  display: grid;
  grid-template-columns: repeat(3, 384px);
  justify-content: space-between;
  padding-bottom: 100px;
}
.announcement-item {
  margin-bottom: 30px;
  width: 384px;
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.announcement-item .sort {
  font-size: 80px;
  color: #005d52;
  position: absolute;
  bottom: 0px;
  right: 0px;
  text-transform: none;
  font-weight: bold;
  opacity: 0.15;
  z-index: 0;
}
.announcement-item .header-img img {
  width: 100%;
  height: 250px;
}
.announcement-item .item-header {
  margin: 20px 0px 24px 24px;
}
.announcement-item .item-header p {
  font-size: 22px;
  color: #333;
  font-weight: bold;
  margin: 0;
}
.announcement-item .item-header p.explain {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  font-weight: normal;
}
.announcement-item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.announcement-item:hover {
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.2);
}

/* news */
.news {
  background-color: #fff;
  width: 100%;
}
.news-content {
  padding-top: 60px;
  padding-bottom: 60px;
}
.news-content .nav-box-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.news-content .news-nav {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.news-content .nav-item {
  margin-right: 36px;
  cursor: pointer;
}
.news-content .nav-item .explain {
  position: relative;
}
.news-content .nav-item .explain .line {
  position: absolute;
  background: #dbb698;
  width: 16px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.news-content .nav-item .explain .text {
  font-weight: normal;
  font-size: 15px;
  color: #b0b0b0;
  letter-spacing: 2px;
  padding-left: 24px;
}
.news-content .nav-item .title {
  position: relative;
  margin-top: 10px;
}
.news-content .nav-item .title .text {
  font-weight: bold;
  font-size: 44px;
  color: #2f2f2f;
}
.news-content .nav-item .title .line-img {
  position: absolute;
  width: 160px;
  height: 20px;
  bottom: 0;
  left: 0;
}
.news-content .default-item span {
  font-size: 24px;
  color: #2f2f2f;
  line-height: 50px;
}
.news-content .more {
  font-size: 20px;
  color: #005d52;
  line-height: 50px;
}

.news-detail {
  display: flex;
  flex-direction: row;
  padding-top: 60px;
  padding-bottom: 60px;
}
.news-detail .new-left {
  width: 600px;
  margin-right: 24px;
}
.news-detail .new-left .new-img img {
  width: 600px;
  height: 305px;
  margin-bottom: 16px;
}
.news-detail .new-left .new-explain {
  font-size: 16px;
  color: #7e7e7e;
}
.news-detail .new-left .new-explain h4 {
  font-weight: bold;
  font-size: 24px;
  color: #333;
  line-height: 38px;
  margin: 0;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-detail .new-left .new-explain p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-detail .new-right {
  flex: 1;
}
.news-detail .new-right .new-list {
  display: flex;
  flex-direction: column;
}
.news-detail .new-right .new-list .new-item {
  padding-left: 24px;
  position: relative;
  margin-bottom: 52px;
}
.news-detail .new-right .new-list .new-item:last-child {
  margin-bottom: 0;
}
.news-detail .new-right .new-list .new-item h4 {
  font-size: 20px;
  color: #2f2f2f;
  font-size: bold;
  line-height: 28px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-detail .new-right .new-list .new-item:hover h4 {
  color: #005d52;
  font-weight: bold;
}

/* 左侧新闻链接样式 */
.news-detail .news-content-item .new-left-link {
  display: flex;
  text-decoration: none;
  width: 600px;
  margin-right: 24px;
}

/* 左侧新闻链接hover效果 */
.news-detail .news-content-item .new-left-link:hover .new-explain h4 {
  color: #005d52;
  font-weight: bold;
}

.news-detail .news-content-item .new-left-link:hover .new-explain p.explain {
  color: #005d52;
  font-weight: bold;
}
.news-detail .new-right .new-list .new-item {
  text-decoration: none;
  display: block;
}
.news-detail .new-right .new-list .new-item p {
  font-size: 16px;
  color: #7e7e7e;
  line-height: 23px;
  margin: 0;
}
.news-detail .new-right .new-list .new-item p.explain {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 6px;
  margin-bottom: 4px;
}
.news-detail .new-right .new-list .new-item::before {
  content: " ";
  width: 12px;
  height: 12px;
  background: #005d52;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 8px;
}

/* platform */
.platform {
}
.platform-content .platform-nav {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-top: 60px;
  margin-bottom: 0px;
}
.platform-content .platform-item {
  margin-right: 36px;
  cursor: pointer;
}
.platform-content .platform-item .explain {
  position: relative;
}
.platform-content .platform-item .explain .line {
  position: absolute;
  background: #dbb698;
  width: 16px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.platform-content .platform-item .explain .text {
  font-weight: normal;
  font-size: 15px;
  color: #b0b0b0;
  letter-spacing: 2px;
  padding-left: 24px;
}
.platform-content .platform-item .title {
  position: relative;
  margin-top: 10px;
}
.platform-content .platform-item .title .text {
  font-weight: bold;
  font-size: 44px;
  color: #2f2f2f;
}
.platform-content .platform-item .title .line-img {
  position: absolute;
  width: 160px;
  height: 20px;
  bottom: 0;
  left: 0;
}
.platform-content .default-item span {
  font-size: 24px;
  color: #2f2f2f;
  line-height: 50px;
  cursor: pointer;
}
.platform-content .money-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 30px;
  background-color: #fff;
  margin-top: 60px;
  margin-bottom: 60px;
}
.platform-content .money-list .money-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.platform-content .money-list .money-item .money-img img {
  width: 64px;
  height: 64px;
}
.platform-content .money-list .money-item .money-text {
  flex: 1;
  margin-left: 12px;
}
.platform-content .money-list .money-item .money-text p {
  margin: 0;
  font-size: 18px;
  color: #333;
}
.platform-content .money-list .money-item .money-text p.value {
  font-size: 30px;
  color: #005d52;
  font-weight: bold;
}

.chart-box {
  display: flex;
}
.chart-container {
  height: 900px;
  width: 600px;
}
/* table-box */
/* .table-box {
  box-sizing: border-box;
  margin-top: 40px;
  margin-bottom: 40px;
  flex: 1;
  table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    tr {
    }
    th {
      padding: 12px;
      font-size: 16px;
      color: #999999;
      font-weight: normal;
      text-align: left;
    }
    td {
      padding: 12px;
      font-size: 16px;
      color: #333333;
      line-height: 20px;
      text-align: left;
      line-height: 34px;
    }
    th.is-center,
    td.is-center {
      text-align: center;
    }
    td.is-hascolor {
      color: #005d52;
    }
    th.is-first,
    td.is-first {
      padding-left: 20px;
    }
    tbody tr:nth-child(odd) {
      background: #fff;
    }
  }
} */

.table-box {
  box-sizing: border-box;
  margin-top: 40px;
  margin-bottom: 40px;
  flex: 1;
}
.table-box table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
/* .table-box table tr {
  } */
.table-box table th {
  padding: 12px;
  font-size: 16px;
  color: #999999;
  font-weight: normal;
  text-align: left;
}
.table-box table td {
  padding: 12px;
  font-size: 16px;
  color: #333333;
  line-height: 20px;
  text-align: left;
  line-height: 34px;
}
.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:nth-child(odd) {
  background: #fff;
}

/* service */
.service {
  background: url("../assets/home/footindex.png") no-repeat center center;
  background-size: cover;
  /* height: 700px;
	 */
}
.service .service-content {
  display: flex;
  flex-direction: row;
}
.service .service-left {
  flex: 1;
  margin-top: 60px;
  margin-right: 150px;
}
.service .service-left .service-top-left .explain {
  position: relative;
}
.service .service-left .service-top-left .explain .line {
  position: absolute;
  background: #dbb698;
  width: 16px;
  height: 2px;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.service .service-left .service-top-left .explain .text {
  font-weight: normal;
  font-size: 15px;
  color: #fff;
  letter-spacing: 2px;
  padding-left: 24px;
}
.service .service-left .service-top-left .title {
  position: relative;
  margin-top: 10px;
}
.service .service-left .service-top-left .title .text {
  font-weight: bold;
  font-size: 44px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.service .service-left .service-top-left .title .line-img {
  position: absolute;
  width: 160px;
  height: 20px;
  bottom: 0;
  left: 0;
}
.service .service-left .service-text {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 60px;
  line-height: 30px;
}
.service .service-left .service-text h4 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  font-weight: bold;
  margin-top: 90px;
  margin-bottom: 40px;
}
.service .service-left .service-more {
  width: 136px;
  height: 48px;
  background-color: rgba(0, 93, 82, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.service .service-left .service-more img {
  width: 16px;
  height: 7px;
  margin-left: 4px;
}
.service .service-right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 600px;
  background-color: rgba(0, 0, 0, 0.6);
}
.service .service-right .service-item {
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.service .service-right .service-item .service-img img {
  width: 90px;
  height: 90px;
}
.service .service-right .service-item p {
  margin: 0;
  font-size: 32px;
  color: #fff;
  padding: 40px 0;
}
.service .service-right .service-item a {
  margin: 0;
  font-size: 20px;
  color: #fff;
  opacity: 0;
}
.service .service-right .service-item.active {
  background-color: rgba(0, 93, 82, 0.7);
}
.service .service-right .service-item.active a {
  opacity: 1;
}
.service .service-right .service-item:hover:not(.active) {
  background-color: rgba(0, 93, 82, 0.3);
}
.service .service-right .service-item:hover:not(.active) a {
  opacity: 0;
}
.service .service-right .service-item.active {
  background-color: rgba(0, 93, 82, 0.7);
}
.service .service-right .service-item.active a {
  opacity: 1;
}
