.fixed_side {
  opacity: 1;
  pointer-events: all;
}

body {
  background-color: #F7F7F9;
}

.section1 .wrap {
  width: 1440px;
  margin: 0 auto;
  padding-top: 170px;
  padding-bottom: 70px;
}

.section1 .wrap .return {
  transform: translateX(-100%);
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 20px;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #23528E 0%, #5AB3C1 100%);
}

.section1 .wrap .return .icon {
  margin-right: 10px;
}

.section1 .wrap .return .icon span {
  font-weight: 200;
  font-size: 20px;
}

.section1 .wrap .main .top {
  padding-bottom: 34px;
  border-bottom: 1px solid #DBDFE6;
}

.section1 .wrap .main .top .title {
  margin-bottom: 10px;
}

.section1 .wrap .main .top .title h3 {
  color: #111;
  font-size: 36px;
}

.section1 .wrap .main .top .time {
  color: #666;
  font-size: 16px;
}

.section1 .wrap .main .bottom {
  padding-top: 34px;
  padding-bottom: 80px;
}

.section1 .wrap .main .bottom p {
  color: #111;
  font-size: 20px;
  line-height: 40px;
}

/* .section1 .wrap .main .bottom p:not(:last-child) {
  margin-bottom: 50px;
} */
.section1 .wrap .main .bottom p img {
  border-radius: 10px;
  overflow: hidden;
  height: auto;
}

.section1 .wrap .main .tab {
  grid-gap: 70px;
  display: flex;
}

.section1 .wrap .main .tab a {
  display: flex;
  align-items: center;
  border-top: 1px solid #DBDFE6;
  border-bottom: 1px solid #DBDFE6;
  padding: 30px 0;
  justify-content: space-between;
  flex: 1;
}

.section1 .wrap .main .tab a:hover .more::after {
  opacity: 1;
}

.section1 .wrap .main .tab a:hover .left p:nth-child(2) {
  color: #0D4082;
}

.section1 .wrap .main .tab a:hover .more span {
  color: #fff;
}

.section1 .wrap .main .tab a .left {
  width: 540px;
}

.section1 .wrap .main .tab a .left p:nth-child(1) {
  color: #666;
  font-size: 16px;
  margin-bottom: 10px;
}

.section1 .wrap .main .tab a .left p:nth-child(2) {
  color: #666;
  font-size: 20px;
  transition: all 0.6s;
}

.section1 .wrap .main .tab a .more {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section1 .wrap .main .tab a .more span {
  color: #0D4082;
  font-weight: 700;
  transform: rotate(-90deg);
  position: relative;
  z-index: 2;
  transition: all 0.6s;
}

.section1 .wrap .main .tab a .more::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.6s;
  background: linear-gradient(90deg, #23528E 0%, #5AB3C1 100%);
}

.section2 .wrap {
  width: 1440px;
  margin: 0 auto;
  padding-bottom: 110px;
}

.section2 .wrap .commonTitle {
  margin-bottom: 30px;
}

.section2 .wrap .commonTitle h3 {
  color: #111111;
  background: none;
  -webkit-text-fill-color: unset;
  -webkit-background-clip: unset;
}

.section2 .wrap .list {
  border-top: 1px solid #D5D7DE;
}

.section2 .wrap .list .item {
  border-bottom: 1px solid #D5D7DE;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section2 .wrap .list .item .left {
  display: flex;
}

.section2 .wrap .list .item .left .time {
  margin-right: 90px;
}

.section2 .wrap .list .item .left .time .d {
  color: #D6DADF;
  font-size: 74px;
  line-height: 1;
}

.section2 .wrap .list .item .left .time .ym {
  color: #D6DADF;
  font-size: 20px;
  line-height: 2;
}

.section2 .wrap .list .item .left .text {
  width: 970px;
}

.section2 .wrap .list .item .left .text h4 {
  color: #333333;
  font-size: 22px;
  margin-bottom: 12px;
  transition: all .6s;
}

.section2 .wrap .list .item:hover .left .text h4 {
  color: #0D4082;
}

.section2 .wrap .list .item .left .text p {
  color: #687081;
  font-size: 18px;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.section2 .wrap .list .item .more {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(90deg, #23528E 0%, #5AB3C1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section2 .wrap .list .item .more span {
  color: #fff;
  transform: rotate(-90deg);
}

@media screen and (max-width: 1919px) {
  .section1 .wrap {
    width: 75vw;
    padding-top: 8.8541666667vw;
    padding-bottom: 3.6458333333vw;
  }

  .section1 .wrap .return {
    font-size: 0.9375vw;
    border-radius: 1.5625vw;
    padding: 0.5208333333vw 1.0416666667vw;
    margin-bottom: 2.0833333333vw;
  }

  .section1 .wrap .return .icon {
    margin-right: 0.5208333333vw;
  }

  .section1 .wrap .return .icon span {
    font-size: 1.0416666667vw;
  }

  .section1 .wrap .main .top {
    padding-bottom: 1.7708333333vw;
  }

  .section1 .wrap .main .top .title {
    margin-bottom: 0.5208333333vw;
  }

  .section1 .wrap .main .top .title h3 {
    font-size: 1.875vw;
  }

  .section1 .wrap .main .top .time {
    font-size: 0.8333333333vw;
  }

  .section1 .wrap .main .bottom {
    padding-top: 1.7708333333vw;
    padding-bottom: 4.1666666667vw;
  }

  .section1 .wrap .main .bottom p {
    font-size: 1.0416666666vw;
    line-height: 2.0833333333vw;
  }

  .section1 .wrap .main .bottom p img {
    border-radius: 0.5208333333vw;
  }

  .section1 .wrap .main .tab {
    gap: 3.6458333333vw;
  }

  .section1 .wrap .main .tab a {
    padding: 1.5625vw 0px;
  }

  .section1 .wrap .main .tab a .left {
    width: 28.125vw;
  }

  .section1 .wrap .main .tab a .left p:nth-child(1) {
    font-size: 0.8333333333vw;
    margin-bottom: 0.5208333333vw;
  }

  .section1 .wrap .main .tab a .left p:nth-child(2) {
    font-size: 1.0416666667vw;
  }

  .section1 .wrap .main .tab a .more {
    width: 2.6041666667vw;
    height: 2.6041666667vw;
  }

  .section2 .wrap {
    width: 75vw;
    padding-bottom: 5.7291666667vw;
  }

  .section2 .wrap .commonTitle {
    margin-bottom: 1.5625vw;
  }

  .section2 .wrap .list .item {
    padding: 3.125vw 0px;
  }

  .section2 .wrap .list .item .left .time {
    margin-right: 4.6875vw;
  }

  .section2 .wrap .list .item .left .time .d {
    font-size: 3.8541666667vw;
  }

  .section2 .wrap .list .item .left .time .ym {
    font-size: 1.0416666667vw;
  }

  .section2 .wrap .list .item .left .text {
    width: 50.5208333333vw;
  }

  .section2 .wrap .list .item .left .text h4 {
    font-size: 1.1458333333vw;
    margin-bottom: 0.625vw;
  }

  .section2 .wrap .list .item .left .text p {
    font-size: 0.9375vw;
  }

  .section2 .wrap .list .item .more {
    width: 2.6041666667vw;
    height: 2.6041666667vw;
  }

  .section2 .wrap .list .item .more span,
  .section1 .wrap .main .tab a .more span {
    font-size: 0.8333333vw;
  }
}

@media screen and (max-width: 1024px) {
  .section1 .wrap {
    width: 90%;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section1 .wrap .return {
    transform: none;
  }

  .section1 .wrap .return .icon span {
    font-size: 14px;
  }

  .section1 .wrap .return {
    font-size: 14px;
    border-radius: 20px;
    padding: 8px 20px;
    margin-bottom: 30px;
  }

  .section1 .wrap .main .top .title h3 {
    font-size: 20px;
  }

  .section1 .wrap .main .top .title {
    margin-bottom: 10px;
  }

  .section1 .wrap .main .top .time {
    font-size: 14px;
  }

  .section1 .wrap .main .top {
    padding-bottom: 20px;
  }

  .section1 .wrap .main .bottom p {
    font-size: 14px;
    line-height: 2;
  }

  .section1 .wrap .main .tab a {
    padding: 20px 0;
  }

  .section1 .wrap .main .tab a .left p:nth-child(1) {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .section1 .wrap .main .tab a .left p:nth-child(2) {
    font-size: 14px;
    line-height: 2;
  }

  .section1 .wrap .main .tab a .more {
    width: 36px;
    height: 36px;
  }
  .section1 .wrap .main .tab a .more span{
    font-size: 14px;
  }
  .section1 .wrap .main .tab a .left{
    flex: 1;
    margin-right: 30px;
  }
  .section1 .wrap .main .tab{
    flex-direction: column;
    gap: 20px;
  }
  .section2 .wrap{
    width: 90%;
    padding-bottom: 60px;
  }
  .section2 .wrap .commonTitle{
    margin-bottom: 20px;
  }



   .section2 .wrap .list .item .left{
    flex-direction: column;
  }
  .section2 .wrap .list .item .left .time .d,
  .section2 .wrap .list .item .left .time .ym{
    font-size: 12px;
    color: #666;
  }
  .section2 .wrap .list .item .left .time .ym::after{
    content: "/";
  }
  .section2 .wrap .list .item .left .time{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-right: 0;
    flex-direction: row-reverse;
    margin-bottom: 10px;
  }
  .section2 .wrap .list .item .left .text h4{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .section2 .wrap .list .item .left .text p{
    font-size: 14px;
  }
 .section2 .wrap .list .item{
    flex-direction: column;
  }
  .section2 .wrap .list .item .left .text{
    width: 100%;
  }
  .section2 .wrap .list .item .left{
    width: 100%;
  }
  .section2 .wrap .list .item{
    align-items: start;
  }
 .section2 .wrap .list .item .more{
    width: 36px;
    height: 36px;
    margin-top: 20px;
  }

  .section2 .wrap .list .item .more span{
    font-size: 14px;
  }
  .section2 .wrap .list .item{
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .section1 .wrap .main .tab a{
    flex-direction: column;
  }
  .section1 .wrap .main .tab a .left{
    width: 100%;
    margin-right: 0;
  }
  .section1 .wrap .main .tab a .right{
    display: none;
  }
  .section1 .wrap{
    padding: 100px 0 50px;
  }
}