.banner {
  position: relative;
}

.banner .img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-position: center;
  object-fit: cover;
}

.banner .title {
  left: 50%;
  bottom: 27%;
  transform: translateX(-50%);
  position: absolute;
  text-align: center;
}

.banner .title .ch {
  font-family: OPPOSans-R;
  font-weight: bold;
  font-size: 60px;
  line-height: 1.33;
  color: #ffffff;
}

.banner .title .en {
  font-family: Gilroy-Regular;
  font-size: 24px;
  line-height: 1.25;
  color: #ffffff;
}

.myContent {
  padding: 100px 0 140px;
}

.myContent .content {
  display: flex;
}

.myContent .content .left {
  margin-right: 43px;
}

.myContent .content .left .title {
  font-family: OPPOSans-R;
  font-weight: bold;
  font-size: 40px;
}

.myContent .content .left .describe {
  padding-top: 10px;
  display: flex;
  align-items: center;
  font-family: OPPOSans-R;
  font-size: 14px;
  line-height: 1.57;
  color: #1b1b1b;
  padding-bottom: 33px;
  border-bottom: 1px solid #e5e5e5;
}

.myContent .content .left .describe .time {
  color: #016de9;
  font-family: OPPOSans-R;
  font-weight: bold;
  font-size: 18px;
  margin-right: 17px;
}

.myContent .content .left .describe .author {
  margin-right: 17px;
}

.myContent .content .left .text {
  padding-top: 45px;
  padding-bottom: 35px;
  border-bottom: 1px solid #e5e5e5;
}

.myContent .content .left .text p {
  font-family: OPPOSans-R;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 25px;
  text-align: justify;
}

.myContent .content .left .text .img {
  margin-top: 20px;
  margin-bottom: 45px;
  width: 100%;
  height: auto;
}

.myContent .content .left .newsChange {
  display: flex;
  padding-top: 50px;
  justify-content: space-between;
  align-items: center;
}

.myContent .content .left .newsChange .prev {
  display: flex;
}

.myContent .content .left .newsChange .prev .icon {
  width: 15px;
  height: 28px;
  margin-right: 26px;
}

.myContent .content .left .newsChange .prev .icon .img {
  object-fit: cover;
  object-position: center;
}

.myContent .content .left .newsChange .next {
  display: flex;
  flex-direction: row-reverse;
}

.myContent .content .left .newsChange .next .icon {
  width: 15px;
  height: 28px;
  margin-left: 26px;
}

.myContent .content .left .newsChange .next .img {
  object-fit: cover;
  object-position: center;
}

.myContent .content .right {
  width: 28.57%;
  flex-shrink: 0;
}

.myContent .content .right .search {
  background: #f3f6f8;
  padding: 40px;
}

.myContent .content .right .search .title {
  font-family: OPPOSans-R;
  font-size: 24px;
  color: #1b1b1b;
}

.myContent .content .right .search .searchBox {
  position: relative;
}

.myContent .content .right .search .searchBox .inp {
  height: 60px;
  border: solid 1px #e5e5e5;
  transition: all 0.3s;
  padding-left: 22px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-top: 26px;
}

.myContent .content .right .search .searchBox .inp:focus {
  border: solid 1px var(--theme-color);
}

.myContent .content .right .search .searchBox .icon {
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}

.myContent .content .right .search .searchBox .icon .img {
  width: 21px;
  height: 21px;
}

.myContent .content .right .recommend {
  margin-top: 20px;
  padding: 40px;
  background: #f3f6f8;
}

.myContent .content .right .recommend .title {
  font-family: OPPOSans-R;
  font-size: 24px;
  color: #1b1b1b;
}

.myContent .content .right .recommend .box {
  display: flex;
  flex-direction: column;
}

.myContent .content .right .recommend .box .item {
  padding: 25px 0;
  border-bottom: 1px solid #e5e5e5;
}

.myContent .content .right .recommend .box .item .time {
  font-family: AvenirLTStd-Black;
  font-size: 18px;
  color: #016de9;
  line-height: 1.33;
}

.myContent .content .right .recommend .box .item .smallTitel {
  font-family: OPPOSans-R;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.33;
  color: #434343;
  padding: 5px 0;
}

.myContent .content .right .recommend .box .item .text {
  font-family: OPPOSans-R;
  font-size: 14px;
  line-height: 1.57;
  color: #7d7d7d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.myContent .rightFlag {
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 10vh;
  z-index: 2;
  display: none;
}

@media (max-width: 1200px) {
  .banner .title .ch {
    font-size: 38px;
  }
  .banner .title .en {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .banner .title {
    bottom: 50%;
    transform: translate(-50%, 50%);
  }
  .banner .title .ch {
    font-size: 32px;
  }
  .banner .title .en {
    font-size: 16px;
  }
  .myContent {
    padding: 60px 0;
  }
  .myContent .content {
    position: relative;
    overflow: hidden;
  }
  .myContent .content .left {
    margin-right: 0;
  }
  .myContent .content .right {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    overflow-y: scroll;
    padding-top: 10%;
    width: 400px;
    max-width: 90.5%;
    background: #FFF;
    z-index: 1;
    height: 100%;
    transform: translateX(calc(100% + 40px));
    transition: all 0.3s;
  }
  .myContent .content .right.active {
    transform: translateX(0);
  }
  .myContent .rightFlag {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .myContent .rightFlag .img {
    width: 55%;
    height: 55%;
  }
}

@media (max-width: 768px) {
  .banner .title .ch {
    font-size: 24px;
  }
  .banner .title .en {
    font-size: 15px;
  }
  .myContent {
    padding: 40px 0;
  }
  .myContent .content .left .title {
    font-size: 20px;
  }
  .myContent .content .left .describe {
    font-size: 12px;
    padding-bottom: 15px;
  }
  .myContent .content .left .describe .time {
    font-size: 14px;
  }
  .myContent .content .left .text {
    padding-top: 20px;
  }
  .myContent .content .left .text p {
    font-size: 14px;
    padding-bottom: 15px;
  }
  .myContent .content .left .text .img {
    margin: 10px 0 25px;
  }
  .myContent .content .right .search {
    padding: 20px;
    padding-top: 30px;
  }
  .myContent .content .right .search .title {
    font-size: 18px;
  }
  .myContent .content .right .search .searchBox .inp {
    height: 35px;
    padding-left: 15px;
    margin-top: 10px;
  }
  .myContent .content .right .search .searchBox .icon {
    right: 15px;
  }
  .myContent .content .right .search .searchBox .icon .img {
    width: 15px;
    height: 15px;
  }
  .myContent .content .right .recommend {
    margin-top: 15px;
    padding: 20px;
  }
  .myContent .content .right .recommend .title {
    font-size: 18px;
  }
  .myContent .content .right .recommend .box .item {
    padding: 10px 0;
  }
  .myContent .content .right .recommend .box .item .time {
    font-size: 14px;
  }
  .myContent .content .right .recommend .box .item .smallTitel {
    font-size: 15px;
  }
  .myContent .content .right .recommend .box .item .text {
    font-size: 12px;
  }
}
