
.max{
  width: 100%;
}

.gs_news {
  width: 100%;
  box-sizing: border-box;
}
.gs_title {
  font-size: 60px;
  font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
  font-weight: bold;
  color: #ffffff;
  line-height: 90px;
  text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 250px;
  left: calc(50% - 120px);
  border-bottom: 6px solid #ffffff;
}

.gs_content_top {
  padding: 0 260px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.new_title {
  font-size: 42px;
  font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
  font-weight: 500;
  color: #000000;
  line-height: 49px;
}
.content {
  padding: 91px 260px 125px 260px;
  box-sizing: border-box;
}

.news_item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 48px 63px 48px 60px;
  margin-bottom: 25px;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 20px;
  cursor: pointer;

  .img {
    width: 473px;
    height: 264px;
  }
  .info {
    display: flex;
    flex-direction: column;
    margin-left: 36px;
    .date {
      height: 23px;
      font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
      font-weight: 400;
      font-size: 20px;
      color: #5D5D5D;
      text-align: left;
      font-style: normal;
      text-transform: none;
    }
    .sub_title {
      height: 100px;
      margin: 10px 0 12px 0;

      font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
      font-weight: 500;
      font-size: 32px;
      color: #333333;
      line-height: 50px;
      text-align: left;
      font-style: normal;
      text-transform: none;
      word-break: break-all;

      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .des {
      flex: 1;
      min-height: 0;
      font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
      font-weight: 400;
      font-size: 20px;
      color: #9EA1A8;
      line-height: 40px;
      text-align: left;
      font-style: normal;
      text-transform: none;
      word-break: break-all;

      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;

    }
  }

  &:hover {
    box-shadow: 0px 10px 20px 0px rgba(19,46,67,0.1);
    .sub_title {
      color: #455DAE;
    }
    
  }

}



.page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 71px;
  
}
.page > li {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  margin: 0 4px;

}
.page > .page_active {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #15af2b;
  color: #15AF2B;
}
.page li.pre{
  background: url("https://app-1302672195.cos.ap-beijing.myqcloud.com/website/img/pre.png") no-repeat;
  background-size: 50% 50%;
  background-position: center;
}
.page li.next{
  background: url("https://app-1302672195.cos.ap-beijing.myqcloud.com/website/img/next.png") no-repeat;
  background-size: 50% 50%;
  background-position: center;
}
.dis_flex_start{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}