.news-layer1 {
  margin: 0 auto 50px;
  width: 1200px;
}
.news-layer1 .box{
  display: flex;
  justify-content: space-between;
}
.l1-left {
  width: 590px;
  cursor: pointer;
}
.l1-left .img {
  width: 570px;
  height: 334px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 10px solid #fff;
  overflow: hidden;
}
.l1-left .img img{
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.l1-left .img img:hover {
  transform: scale(1.1);
}
.l1-left .txt {
  padding: 20px 20px 30px;
  background: #fff;
  border-bottom: 2px solid #fff;
  position: relative;
}
.l1-left .txt::after {
  display: block;
  content: '';
  width: 0;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .5s;
}
.l1-left .txt h3{
  text-align: center;
  color: #282634;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .5s;
}
.l1-left .txt p{
  font-size: 18px;
  color: #7A7D8E;
  line-height: 27px;
  height: 54px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 最多显示2行 */
  overflow: hidden; /* 隐藏超出的内容 */
  text-overflow: ellipsis; /* 使用省略号 */
}
.l1-left .txt:hover::after{
  background-color: #156BFD;
  width: 100%;
}
.l1-left .txt:hover h3{
  color: #156BFD;
}
.l1-right {
  width: 590px;
}
.l1-right li {
  background-color: #fff; 
  margin-bottom: 20px;
  cursor: pointer;
  padding: 25px 15px 14px;
  position: relative;
}
.l1-right li::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left:0;
  bottom:0;
  transition: all .5s;
} 
.l1-right li:hover::after{
  width: 100%;
  background-color: #156BFD;
}
.l1-right li:hover h3 {
  color: #156BFD;
}
.l1-right li:hover .view{
  color: #156BFD;
}
.l1-right li:hover .view::after{
  border-color: #156BFD;
}
.l1-right li h3 {
  height: 24px;
  font-size: 20px;
  font-weight: bold;
  color: #282634;
  line-height: 24px;
  margin-bottom: 7px;
  transition: all 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.l1-right li .intro { 
  height: 54px;  
  font-size: 18px;
  color: #7A7D8E;
  line-height: 27px;
  text-align: left;
  font-style: normal;
  padding: 8px 0 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 最多显示2行 */
  overflow: hidden; /* 隐藏超出的内容 */
  text-overflow: ellipsis; /* 使用省略号 */
} 
.bottom-bar{
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #B1B1B9;
  line-height: 22px;
}
.bottom-bar .view{
  display: flex;
  align-items: center;
}
.bottom-bar .view::after{
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #B1B1B9;
  border-right: 1px solid #B1B1B9;
  transform: rotate(45deg);
}
.more-btn{
  width: 220px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  text-align: center;
  border: 1px solid #D0D0D0;
  font-size: 18px;
  color: #7C7C7C;
  margin: 50px auto;
  cursor: pointer;
  transition: all .5s;
}
.more-btn:hover{
  color: #156BFD;
  border: 1px solid #156BFD;
}
.news-layer2 {
  width: 1200px;
  margin: 0 auto;
}

.news-layer2 .item {
}
.news-layer2 .item .img {
  overflow: hidden;
  width: 232px;
  height: 166px;
}
.news-layer2 .item img {
  width: 232px;
  height: 166px;
  transition: all 0.5s;
}

.news-layer2 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-layer2 li {
  height: 166px;
  margin-bottom: 28px;
  flex: 0 0 588px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  background-color: #fff;
  overflow: hidden;
}
.news-layer2 li:last-child {
  border: 0;
  margin: 0;
}
.news-layer2 .item li:hover img {
  transform: scale(1.1);
}
.news-layer2 .item li:hover h3 {
  color: #156BFD;
}
.news-layer2 .item li:hover .txt::after{
  background-color: #156BFD;
  width: 100%;
}
.news-layer2 li .txt {
  flex: 0 0 356px;
  overflow: hidden;
  padding: 20px 15px;
  box-sizing: border-box;
  position: relative;
}
.news-layer2 li .txt::after {
  display: block;
  content: '';
  height: 2px;
  width: 0;
  background-color: #fff;
  transition: all .5s;
  position: absolute;
  bottom:0;
  left:0;
}
.news-layer2 li h3 {
  height: 22px;
  font-size: 18px;
  font-weight: bold;
  color: #282634;
  line-height: 22px;
  margin-bottom: 8px;
  transition: all 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-layer2 li .intro {
  height: 66px;
  font-size: 14px;
  font-weight: 400;
  color: #7A7D8E;
  line-height: 22px;
  margin-bottom: 9px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 最多显示2行 */
  overflow: hidden; /* 隐藏超出的内容 */
  text-overflow: ellipsis; /* 使用省略号 */
}
.news-layer2 li .bot {
  color: #c4c4c4;
  font-size: 14px;
}
.news-layer2 li .bot span {
  margin-right: 10px;
}
.meeting {
}
.meeting .title {
  cursor: pointer;
}
.news-layer1 .title,
.meeting .title,
.news-layer2 .title,
.team-layer .title {
  width: 1200px;
  height: 100px;
  margin: 0 auto 50px;
  position: relative;
}
.news-layer1 h3,
.meeting .title h3,
.news-layer2 .title h3,
.team-layer .title h3 {
  font-family: AlibabaPuHuiTi;
  font-size: 30px;
  color: #101229;
  line-height: 42px;
  text-align: left;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-layer1 .title h3:before,
.meeting .title h3:before,
.news-layer2 .title h3:before,
.team-layer .title h3:before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #156BFD;
  margin-right: 20px;
}
.news-layer1 .title h3:after,
.meeting .title h3:after,
.news-layer2 .title h3:after,
.team-layer .title h3:after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #156BFD;
  margin-left: 20px;
}
.news-layer1 .title span,
.meeting .title span,
.news-layer2 .title span,
.team-layer .title span {
    height: 48px;
    font-family: AlibabaPuHuiTi;
    font-size: 34px;
    color: #B0B7BF;
    line-height: 48px;
    text-align: center;
    font-style: normal;
    display: block;
}
.meeting-1 {
  width: 1200px;
  margin: 0 auto 50px;
  position: relative;
}
.meeting-1 .item {
  width: 670px;
  height: 560px;
  background: #ffffff;
  box-shadow: 0px 5px 10px -5px #eaeaea;
  border-radius: 10px;
  margin: 0 auto;
  cursor: pointer;
}
.meeting-1 .item img {
  width: 670px;
  height: 394px;
  transition: all 0.5s;
}
.meeting-1 .item .img {
  width: 670px;
  height: 394px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.meeting-1 .item:hover img {
  transform: scale(1.1);
}
.meeting-1 .item .txt {
  height: 80px;
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  line-height: 40px;
  margin: 12px 12px 22px;
  transition: all 0.5s;
  word-break: break-all;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.meeting-1 .item:hover .txt {
  color: #156BFD;
}
.meeting-1 .item .bot {
  margin: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.meeting-1 .item .bot .type {
  font-size: 24px;
  color: #156BFD;
  line-height: 33px;
}
.meeting-1 .item .bot .person {
  font-size: 24px;
  line-height: 33px;
}
.meeting-1 .item .bot .person span {
  color: #156BFD;
}
.meeting-1 .item-l {
  width: 219px;
  height: 386px;
  background: linear-gradient(270deg, #156BFD 0%, rgba(133, 192, 255, 0) 100%);
  opacity: 0.33;
  position: absolute;
  left: 20px;
  top: 10px;
  border-radius: 0 10px 10px 0;
  transform: perspective(0.5em) rotateY(359.6deg) scale(0.9);
}
.meeting-1 .item-r {
  width: 219px;
  height: 386px;
  background: linear-gradient(270deg, #156BFD 0%, rgba(133, 192, 255, 0) 100%);
  opacity: 0.33;
  position: absolute;
  right: 20px;
  top: 10px;
  border-radius: 10px;
  transform: perspective(1.5em) rotateY(1deg) scale(0.9) rotate(180deg);
}
.meeting-2 {
  width: 1200px;
  margin: 0 auto 50px;
  position: relative;
}
.meeting-2 ul {
  display: flex;
  justify-content: space-around;
}
.meeting-2 li {
  width: 503px;
  height: 436px;
  background: #ffffff;
  box-shadow: 0px 5px 10px 0px #eaeaea;
  border-radius: 10px;
  padding-bottom: 18px;
  cursor: pointer;
}
.meeting-2 li .img {
  width: 503px;
  height: 296px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.meeting-2 li img {
  width: 503px;
  height: 296px;
  transition: all 0.5s;
}
.meeting-2 li:hover img {
  transform: scale(1.1);
}
.meeting-2 li:hover .txt {
  color: #156BFD;
}
.meeting-2 li .txt {
  height: 74px;
  font-size: 26px;
  font-weight: 500;
  color: #333333;
  line-height: 37px;
  transition: all 0.5s;
  margin: 12px 12px 22px;
  word-break: break-all;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.meeting-2 li .bot {
  margin: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.meeting-2 li .bot .type {
  font-size: 20px;
  color: #156BFD;
  line-height: 28px;
}
.meeting-2 li .bot .person {
  font-size: 20px;
  line-height: 28px;
}
.meeting-2 li .bot .person span {
  color: #156BFD;
}
.meeting-3 {
  width: 1200px;
  margin: 0 auto;
}
.meeting-3 .el-carousel__container {
  padding: 0 50px;
  box-sizing: border-box;
  height: 460px;
}
.meeting-3 .el-carousel__item {
  /* width: 435px; */
  width: 595px;
  height: 450px;
  background: #ffffff;
  box-shadow: 0px 5px 10px -5px #eaeaea;
  border-radius: 10px;
}
.meeting-3 .img {
  width: 595px;
  height: 328px;
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
}
.meeting-3 img {
  width: 595px;
  height: 328px;
  background: #d8d8d8;
  transition: all 0.5s;
}
.meeting-3 .txt {
  height: 60px;
  font-size: 22px;
  font-weight: 500;
  color: #333333;
  line-height: 30px;
  margin: 12px 12px 8px;
  transition: all 0.5s;
  word-break: break-all;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.meeting-3 .bot {
  margin: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.meeting-3 .bot .type {
  font-size: 16px;
  color: #156BFD;
  line-height: 22px;
}
.meeting-3 .bot .person {
  font-size: 16px;
  line-height: 22px;
}
.meeting-3 .bot .person span {
  color: #156BFD;
}
.meeting-3 .is-active:hover img {
  transform: scale(1.1);
}
.meeting-3 .is-active:hover .txt {
  color: #156BFD;
}
.el-carousel__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.22;
}
.team-layer {
  margin-bottom: 50px;
}
.team-layer .el-carousel{
  margin-bottom: 0;
}
.team-layer .el-carousel__arrow--left{
  left: 50%;
  transform: translateX(-600px);
}
.team-layer .el-carousel__arrow--right{
  right: 50%;
  transform: translateX(600px);
}
.team-layer .cont{
  width: 100%;
}
.team-swiper {
  width: 100%;
  background-color: #fff;
}
.team-swiper .w{
  display: flex;
  justify-content: space-between;
  width: 1200px;
  height: 520px;
  margin: 60px auto 0;
  padding: 0 120px 0 120px;
  box-sizing: border-box;
}
.team-swiper .img{
  height: 576px;
  width: 380px;
  margin-top: -56px;
}
.team-swiper .intro{
  margin-top: 76px;
  width: 480px;
}
.team-swiper .intro .name{
  font-weight: bold;
  font-size: 42px;
  color: #101229;
  line-height: 59px;
  margin-bottom: 5px;
}
.team-swiper .intro .jobs{
  font-size: 20px;
  color: #4F4F4F;
  line-height: 28px;
  height: 60px;
  border-bottom: 2px solid #E3EDF9;
  margin-bottom: 30px;
}
.team-swiper .intro .txt{
  height: 250px;
  line-height: 28px;
  font-size: 18px;
  color: #494949;
  overflow-y: auto;
}