.news-info {
  overflow: hidden;
}

.news-info-container {
  text-align: center;
}

.news-info-container .news-title {
  font-family: MiSansVF_Bold;
  font-size: 36px;
  color: #333333;
  line-height: 48px;
  text-align: right;
  font-style: normal;
  text-align: center;
  margin-top: 56px;
  margin-bottom: 40px;
}

.news-info-container .more {
  display: inline-block;
  font-family: MiSansVF;
  font-size: 16px;
  color: #21A13B;
  line-height: 22px;
  font-style: normal;
  padding: 14px 40px;
  border-radius: 4px;
  border: 1px solid #21A13B;
  margin-bottom: 104px;
  background: #fff;
}

.news-info-container .more:hover {
  background: #21A13B;
  color: #ffffff;
  cursor: pointer;
}

.news-info-container .no-more-tip {
  width: auto;
  height: auto;
  font-family: MiSansVF;
  font-size: 14px;
  color: #999999;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  margin-bottom: 104px;
  margin-top: 48px;
}

.news-info-container .news-banner-box {
  width: 100%;
  height: 360px;
  padding: 68px 48px;
  border-radius: 16px;
  position: relative;
}

.news-info-container .news-banner-box .news-banner-cont {
  position: relative;
  text-align: left;
}

.news-info-container .news-banner-box .news-banner-cont span {
  display: block;
}

.news-info-container .news-banner-box .news-banner-cont .news-banner-title {
  font-size: 30px;
  font-family: MiSansVF_Semibold;
  color: #ffffff;
  max-width: 800px;
  display: block;
}

.news-info-container .news-banner-box .news-banner-cont .news-banner-description {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 24px;
  max-width: 800px;
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-info-container .news-banner-box .news-banner-cont .banner-button-box {
  margin-top: 32px;
}

.news-info-container .news-banner-box .news-banner-cont .banner-button-box .banner-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 22px;
  background: #ffffff;
  border-radius: 4px;
  color: #333333;
  transition: all 0.3s;
  border-radius: 6px;
}

.news-info-container .news-banner-box .news-banner-cont .banner-button-box .banner-button:hover {
  background: #21A13B;
  color: #ffffff;
}

.news-info-container .news-banner-box .mask-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 16px;
}

.news-info-container .news-list-box {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
}

.news-info-container .news-list-box .news-content {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 40px;
}

.news-info-container .news-list-box .news-content .news-img {
  display: inline-block;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
}

.news-info-container .news-list-box .news-content .news-img:hover {
  cursor: pointer;
}

.news-info-container .news-list-box .news-content .news-img .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.news-info-container .news-list-box .news-content .news-txt {
  width: 100%;
  margin-top: 20px;
  text-align: left;
}

.news-info-container .news-list-box .news-content .news-txt .news-menu-name {
  font-family: MiSansVF;
  font-size: 14px;
  color: #21A13B;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  background: #E8F5EB;
  border-radius: 4px;
  padding: 4px 8px;
}

.news-info-container .news-list-box .news-content .news-txt .news-name {
  width: 100%;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: #333333;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* 使用弹性盒子模型 */
  -webkit-line-clamp: 2;
  /* 限制行数，例如3行 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  margin-top: 8px;
  font-family: MiSansVF_Semibold;
}

.news-info-container .news-list-box .news-content .news-txt .news-date {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
  margin-top: 16px;
  line-height: 22px;
  font-family: MiSansVF;
}

.news-info-container .news-list-box .news-content:hover .news-img .img {
  transform: scale(1.1);
}

.news-info-container .news-list-box .news-content:nth-child(3n) {
  margin-right: 0;
}

/* tab */
.public-tabs {
  margin-bottom: 56px;
  border-bottom: 1px solid #E8E8E8;
}

.tabs-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.first_tab {
  margin-right: 64px;
}

.tabs-li {
  font-family: MiSansVF;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  text-align: left;
  font-style: normal;
  padding: 20px 0;
  cursor: pointer;
  display: inline-block;
}

.tabs:hover .tabs-li {
  color: #21A13B;
}

.tab-active:hover .tabs-li {
  color: #fff;
}

.tab-active {
  color: #21A13B;
  border-bottom: 2px solid #21A13B;
}

/* 展会信息 */
.expo {
  display: flex;
  flex-direction: column;
  font-family: MiSansVF_Semibold;
  font-size: 16px;
  color: #333333;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  margin-bottom: 48px!important;
}

.expo .expo-item {
  height: 390px;
  display: flex;
  justify-content: flex-end;
  border-radius: 16px;
}

.expo .expo-item .expo-date {
  margin-top: 44px;
  width: 100%;
  text-align: right;
}

.expo .expo-item .expo-date .year {
  font-size: 16px;
}

.expo .expo-item .expo-date .day {
  min-width: 88px;
  white-space: nowrap;
  font-size: 20px;
}

.expo .expo-item .line-icon {
  width: 56px;
  height: 28px;
  margin-top: 44px;
  margin-left: 12px;
  margin-right: -42px;
  z-index: 2;
}

.expo .expo-item .line-icon img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.expo .expo-item .expo-right {
  width: 100%;
  padding-left: 40px;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 30px;
  border-left: 1px solid #E8E8E8;
}

.expo .expo-item:nth-child(10n) .expo-right {
  padding-bottom: 0px;
}

.expo .expo-item:nth-child(10n + 1) .expo-right {
  padding-top: 30px;
}

.expo .expo-item:last-child .expo-right {
  padding-bottom: 0px;
}

.expo .expo-item:first-child .expo-right {
  padding-top: 0px;
}

.expo .expo-item .expo-right .expo-right-content {
  background: #F7F8F9;
  padding: 40px 32px;
  text-align: left;
  border-radius: 16px 0px 0px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.expo .expo-item .expo-right .expo-right-content .right-content-title {
  font-size: 24px;
  color: #333333;
  line-height: 34px;
  text-align: left;
  font-style: normal;
  margin-bottom: 16px;
  font-family: MiSansVF_Semibold;
  width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.expo .expo-item .expo-right .expo-right-content .right-content-tag {
  background: #EDB321;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  max-width: 106px;
  font-family: MiSansVF;
}

.expo .expo-item .expo-right .expo-right-content .green {
  background: #21A13B;
}

.expo .expo-item .expo-right .expo-right-content .grey {
  background: #C1C1C1;
}

.expo .expo-item .expo-right .expo-right-content .content-icon-box {
  line-height: 26px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.expo .expo-item .expo-right .expo-right-content .right-content-icon-ads {
  line-height: 20px;
  display: flex;
  align-items: center;
}

.expo .expo-item .expo-right .expo-right-content .right-content-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 20px;
  color: #9E9F9F;
}

.expo .expo-item .expo-right .expo-right-content .right-content-address {
  font-family: MiSansVF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  line-height: 20px;
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.expo .expo-item .expo-right .expo-right-img {
  width: 560px;
  height: 100%;
  border-radius: 0px 16px 16px 0px;
  overflow: hidden;
}

.expo .expo-item .expo-right .expo-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1600px) {
  .expo .expo-item .expo-right .expo-right-content .content-icon-box {
    margin-top: 16px;
  }

  .expo .expo-item .expo-right .expo-right-content .right-content-icon-ads {
    margin-top: 10px;
    align-items: normal;
  }

  .expo .expo-item .expo-right .expo-right-content .right-content-address {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}

@media screen and (max-width: 1440px) {
  .tabs-li {
    margin-right: 24px;
  }

  .news-info-container .news-title {
    font-size: 32px;
  }

  .news-info-container .news-banner-box .news-banner-cont .news-banner-title {
    font-size: 28px;
  }

  .expo .expo-item .expo-right .expo-right-content .content-icon-box {
    margin-top: 16px;
  }

  .news-info-container .news-list-box .news-content .news-txt .news-name {
    font-size: 16px;
    line-height: 26px;
  }

  .news-info-container .news-list-box .news-content .news-txt .news-date {
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
  }
  .tabs-list {
    width: 92%;
  }

  .expo .expo-item {
    height: auto;
  }

  .expo .expo-item .expo-right {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .expo .expo-item .expo-right .expo-right-content {
    border-radius: 0;
  }
  .expo .expo-item .expo-right .expo-right-content .right-content-title {
    width: 100%;
  }

  .expo .expo-item .expo-right .expo-right-img {
    width: 100%;
    height: 360px;
    border-radius: 0;
  }

  .expo .expo-item .expo-right .expo-right-content .content-icon-box {
    margin-top: 16px;
  }

  .expo .expo-item .expo-right .expo-right-content .right-content-address {
    max-width: 100%;
  }
  .expo .expo-item .expo-right .expo-right-img img {
    object-fit: contain;
  }
  .expo .expo-item .expo-date {
    width: 15%;
  }
}
@media screen and (max-width: 1200px) {
  .expo .expo-item .expo-date {
    width: 24%;
  }
}
@media screen and (max-width: 768px) {
  .expo .expo-item .expo-right .expo-right-content .right-content-icon-ads {
    margin-top: 0px;
  
  }
  .expo .expo-item .expo-right .expo-right-content .right-content-address {
    line-height: 20px;
    font-size: 14px;
    -webkit-line-clamp : 1;
  }
  .expo .expo-item .expo-right .expo-right-img img {
    object-fit: cover;
  }
  .news-info-container .news-list-box .news-content .news-img {
    border-radius: 12px;
  }
  .news-info-container .news-banner-box .mask-bg {
    border-radius: 12px;
  }
  .news-info-container .news-banner-box .news-banner-cont .news-banner-title {
    font-size: 24px;
    line-height: 32px;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .public-tabs {
    margin-bottom: 0px;
  }
  .news-info-container .news-title {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 24px;
  }
  .news-info-container .news-banner-box {
    padding: 32px 16px 40px;
    height: auto;
  }
  .news-info-container .news-banner-box .news-banner-cont .news-banner-description {
    height: 48px;
    font-size: 14px;
    margin-top: 8px;
    line-height: 24px;
  }
  .news-info-container .news-banner-box .news-banner-cont .banner-button-box {
    margin-top: 24px;
  }
  .news-info-container .news-banner-box .news-banner-cont .banner-button-box .banner-button {
    padding: 12px 24px;
    font-size: 12px;
    line-height: 16px;
  }
  .news-info-container .news-list-box {
    margin-top: 24px;
  }
  .news-info-container .news-list-box .news-content .news-txt {
    margin-top: 12px;
  }
  .news-info-container .news-list-box .news-content .news-txt .news-menu-name {
    font-size: 12px;
    line-height: 16px;
  }

  .news-info-container .news-list-box .news-content {
    width: calc((100% - 30px) / 2);
    margin-bottom: 30px;
  }

  .news-info-container .news-list-box .news-content:nth-child(2n) {
    margin-right: 0px;
  }

  .news-info-container .news-list-box .news-content:nth-child(2n+1) {
    margin-right: 30px;
  }
  .expo .expo-item .expo-date {
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin-top: 16px;
    line-height: 24px;
    margin-bottom: 12px;
    margin-left: 19px;
  }
  .expo .expo-item .expo-date .day {
    font-size: 18px;
    min-width: unset;
  }
  .expo .expo-item .expo-date .year {
    font-size: 14px;
    line-height: 20px;
    margin-left: 6px;
  }
  .expo {
    border-left: 1px solid #E8E8E8;
    margin-left: 13px;
  }
  .expo .expo-item .line-icon {
    width: 48px;
    height: 24px;
    margin-top: 16px;
    margin-left: -24px;
    margin-right: -36px;
  }
  .expo .expo-item .expo-date .year,.day {
    display: inline-block;
  }
  .expo .expo-item .expo-right .expo-right-img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0px 0px;
  }
  .expo .expo-item .expo-right {
    padding-left: 16px;
    padding-bottom: 14px;
    border-left: 0;
  }
  .expo .expo-item:nth-child(10n + 1) .expo-right {
    padding-top: 0px;
    margin-top: 0px;
  }
  .expo .expo-item .expo-right .expo-right-content {
    width: 100%;
    height: 212px;
    flex: none;
    padding: 20px 20px 24px;
    border-radius: 0px 0px 12px 12px;
  }
  .expo .expo-item .expo-right .expo-right-content .right-content-title {
    font-size: 20px;
    color: #333333;
    line-height: 28px;
    -webkit-line-clamp: 2;
    margin-bottom: 12px;
  } 
  .expo .expo-item:nth-child(10n + 1) {
    margin-top: 14px;
  }
  .expo .expo-item:first-child {
    margin-top: 0px;
  }
  .news-info-container .no-more-tip {
    margin-top: 32px;
    margin-bottom: 48px;
  }
  .expo .expo-item .expo-right .expo-right-content .right-content-tag {
    font-size: 12px;
    line-height: 16px;
  }
  .expo {
    margin-bottom: 32px!important;
  }
  .news-info-container .more {
    margin-bottom: 48px;
  }
  .expo .expo-item .expo-right .expo-right-content .content-icon-box {
    margin-top: 12px;
    margin-bottom: 12px;
    align-items: normal;
  }
  .expo .expo-item .expo-right .expo-right-content .right-content-icon {
    font-size: 18px;
    line-height: 20px;
  }
}

@media screen and (max-width: 500px) {
  .tabs-li {
    font-family: MiSansVF;
  }
  .expo .expo-item .expo-right .expo-right-img {
    height: 202px;
  }
  .news-info-container .news-list-box .news-content {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .news-info-container .news-list-box .news-content:last-child {
    margin-bottom: 0px;
  }
 
  .news-info-container .news-list-box .news-content:nth-child(2n+1) {
    margin-right: 0px;
  }
}