body{
    max-width: 100%
}
.gwm-footer{
    position: relative !important;
    z-index: 2
}
.section1 {
  position: relative;
}
.section1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section1 h3 {
  position: absolute;
  z-index: 1;
  font-weight: normal;
  top: 2rem;
  right: 2rem;
  color: #fffefe;
  font-size: 1rem;
}

.section2 {
  display: flex;
  position: relative;
  background-color: #3b6480;
}
.section2 .left {
  width: 64%;
  position: sticky;
  height: 100vh;
  top: 0;
  padding-top: 1.5rem;
}
.section2 .left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section2 .right {
  width: 45%;
  padding: 1.9rem 1.1rem;
}
.section2 .right .title {
  font-size: 0.4rem;
  color: #fff;
  margin-top: 1rem;
  border-bottom: 1px solid #6c879a;
  padding-bottom: .3rem;
}
.section2 .right .desc {
  font-size: 0.2rem;
  color: #fff;
  margin-top: 0.5rem;
  line-height: 2;
  font-weight: 300;
}
.section2 .right .name {
  color: #fff;
  font-size: 0.22rem;
  text-align: right;
  margin-top: 0.74rem;
  font-weight: 300
}
.section2 .right .name span {
  font-size: 0.3rem;
  font-weight: normal
}
.section2 .right .down-box {
  margin-top: 1.2rem;
  position: relative;
  display: block;
}
.section2 .right .down-box .detail-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
}
.section2 .right .down-box .detail-box .t {
  color: #fff;
  font-size: 0.22rem;
}
.section2 .right .down-box .detail-box img {
  width: 0.32rem;
}
.section2 .right .down-box .line {
  position: relative;
}
.section2 .right .down-box .line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(232, 232, 215, 0.2);
}
.section2 .right .down-box .line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: rgba(232, 232, 215, 0.2);
  transition: 0.3s ease-in 0s;
}
.section2 .right .down-box:hover .line::after {
  width: 100%;
}

@media (max-width: 768px) {
    .section1 h3{
        right: auto;
        left: .8rem;
        top: 1.7rem;
        font-size: 0.6rem;
    }
    .section2 {
        padding: .8rem .55rem;
        flex-direction: column
    }
    .section2 .left{
        width: 100%;
        position: static;
        height: auto;
        top: 0;
        padding-top: 0;
    }
    .section2 .right{
        padding: 0;
        width: 100%
    }
}