.video01 {
  position: relative;
}
.video01 .background {
  width: 100%;
}
.video01 .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.video01 .title p {
  font-weight: 100;
  font-size: 64px;
  color: #FFFFFF;
}
.video01 .title h4 {
  font-weight: bold;
  font-size: 42px;
  color: #FFFFFF;
}
.video02 {
  padding-bottom: 30px;
}
.video02 .wrap {
  width: 1400px;
  margin: 100px auto;
}
.video02 .wrap .top {
  text-align: center;
  padding-bottom: 80px;
}
.video02 .wrap .top .item {
  width: 172px;
  height: 64px;
  background: #F1F1F1;
  border-radius: 32px;
  font-weight: 400;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 32px;
  padding: 18px 30px;
  transition: all 0.6s;
}
.video02 .wrap .top .item:nth-child(1) {
  margin-right: 10px;
}
.video02 .wrap .top .item:hover {
  background-color: #005BAC;
  color: #FFFFFF;
}
.video02 .wrap .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
  margin-bottom: 60px;
  padding-top: 30px;
}
.video02 .wrap .box .item {
  width: 430px;
  border-radius: 12px;
  position: relative;
}
.video02 .wrap .box .item .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.video02 .wrap .box .item .mask img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video02 .wrap .box .item .pic img {
  width: 100%;
}
.video02 .wrap .box .item .time {
  padding: 80px 40px 0;
  padding-top: 50px;
}
.video02 .wrap .box .item .title {
  position: absolute;
  padding: 20px 40px 10px 0;
  font-weight: bold;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 28px;
  transition: all 0.6s;
}
.video02 .wrap .box .item a {
  color: #999;
  display: flex;
  align-items: center;
  padding-left: 40px;
}
.video02 .wrap .box .item .icon-right-1-copy {
  padding-left: 10px;
  font-size: 12px;
}
.video02 .wrap .box .item .title:hover {
  color: #005BAC;
}
@media screen and (max-width: 1024px){
      .video01 .title{
    top: 65%;
  }
  .video01 .title p{
    font-size: 18px;
  }
  .video01 .title h4{
    font-size: 24px;
  }
  .video02 {
    width: 100%;
  }
  .video02 .wrap{
    width: 90%;
   margin: 40px auto;
  }
  .video02 .wrap .top{
    padding-bottom: 40px;
  }
  .video02 .wrap .box{
    padding-top: 0;
  }
  .video02 .wrap .box{
        grid-template-columns: repeat(1, 1fr);
  }
  .video02 .wrap .box .item{
    width: 100%;
    margin-bottom: 40px;
  }
}