.banner-wework {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 432px;
  background-image: url('../images/weWork/top-banner.webp');
  background-size: 100% 100%;

  .banner-wework-title-1 {
    margin-top: -30px;
    font-size: 96px;
    font-weight: bold;
    color: #FFFFFF;
  }
  .banner-wework-title-2 {
   
    font-size: 16px;
    color: #FFFFFF;
  }
}
.block-left{
  background-color: #fff;
  padding-top: 120px;
  padding-bottom: 80px;
  .block-left-inner{
    width: 1200px;
    margin: 0 auto;
    .title{
      text-align: center;
      font-size: 48px;
      font-weight: 600;
      color: #000000;
    }
    .block-content{
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      .block-content-left{
        width: 502px;
        .text1{
          font-size: 18px;
          line-height: 27px;
          color: #000000;
          }
          .contact-us{
            display: block;
            margin-top: 50px;       
            width: 198px;
            height: 40px;
            background-color: #6C4BDA;
            color: #FFFFFF;
            text-align: center;
            line-height: 40px;
            border-radius: 4px;
            transition: 0.3s;
          }
          .contact-us:hover{
           transform: scale(1.05);
          }
        }
        .video-box{
          width: 530px;
          height: 328px;
          position: relative;
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
          border-radius: 12px;
          overflow: hidden;
          .play-btn{
            width: 67px;
            height: 67px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
          }
        }
        .block-content-img{
          width: 530px;
          height: 328px;
          border-radius: 12px;
        }
    }
  }
  
}
.block-right{
  background-color: #F6F6F6;
}
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.video-modal-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.5);
}
.video-modal-content .close-btn{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  color: #000;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
}
.video-modal-content video{
  width: 100%;
  height: 100%;
}
