.main-tabs {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  padding: 10px 0;
  background-color: #fff;
}
.main-tabs .tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 72px;
  border: 1px solid rgba(153,153,153,0.4);
  border-radius: 16px;
  font-weight: 500;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.main-tabs .tab-item:hover {
  border-color: #ab7038;
  color: #ab7038;
}
.main-tabs .tab-item-on {
  background-color: #ab7038;
  color: #fff;
}
.main-tabs .tab-item-on:hover {
  color: #fff;
}
.tabs-content {
  margin-bottom: 100px;
}
.tabs-content .tab-content-item {
  display: none;
}
.tabs-content .tab-content-item-on {
  display: block;
}
.tabs-content .module-zh.tab-content-item-on {
  display: flex;
}
.module-ys .ys-item {
  display: flex;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 0 50px 0 rgba(153,153,153,0.32);
}
.module-ys .ys-item:hover .ys-img img {
  transform: scale(1.05);
}
.module-ys .ys-item .ys-img {
  overflow: hidden;
  width: 48.8%;
}
.module-ys .ys-item .ys-img img {
  width: 100%;
  height: 580px;
  transition: all 0.3s;
  object-fit: cover;
}
.module-ys .ys-item .ys-txt {
  flex: 1;
}
.module-ys .ys-item .ys-txt .txt-top {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  height: 126px;
  background: linear-gradient(90deg, #ab7038, #f6b576);
  color: #fff;
}
.module-ys .ys-item .ys-txt .txt-top img {
  height: 100%;
}
.module-ys .ys-item .ys-txt .txt-top h3 {
  margin-left: 24px;
  font-weight: bold;
  font-size: 36px;
}
.module-ys .ys-item .ys-txt .txt-intro {
  padding: 40px 30px 20px;
  color: #ab7038;
  font-size: 28px;
}
.module-ys .ys-item .ys-txt .txt-list {
  padding: 0 30px;
  padding-left: 48px;
}
.module-ys .ys-item .ys-txt .txt-list li {
  display: list-item;
  margin-bottom: 24px;
  list-style-type: disc;
  font-size: 24px;
  line-height: 40px;
}
.module-zh {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.module-zh .zh-item {
  flex-basis: 48.5%;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 4px;
}
.module-zh .zh-item .cover {
  position: relative;
  display: block;
  color: #fff;
  transition: all 0.3s;
}
.module-zh .zh-item .cover:hover .more-cover {
  opacity: 1;
}
.module-zh .zh-item .cover img {
  width: 100%;
  height: 368px;
  object-fit: cover;
}
.module-zh .zh-item .cover .more-cover {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.3s;
}
.module-zh .zh-item .cover .more-cover .more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  height: 68px;
  border: 1px solid #fff;
  border-radius: 68px;
  font-size: 20px;
}
.module-zh .zh-item .cover .more-cover .more-btn:after {
  width: 50px;
  height: 28px;
  background: url("../static/image/ar-white.png") center/cover no-repeat;
  content: '';
}
.module-zh .zh-item .text {
  display: block;
  padding: 22px;
  background-color: #f3f3f3;
}
.module-zh .zh-item .text:hover h3 {
  color: #ab7038;
}
.module-zh .zh-item .text h3 {
  margin-bottom: 8px;
  color: #000;
  font-weight: bold;
  font-size: 24px;
  transition: all 0.3s;
}
.module-zh .zh-item .text p {
  height: 56px;
  color: #666;
  font-size: 18px;
  line-height: 28px;
}
