@charset "UTF-8";
* {
  box-sizing: border-box;
  color: #333;
}

.w {
  width: 87.8125rem;
  margin: 0 auto;
}

header {
  position: relative;
  background-color: #72c2fa;
}
header .logo {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 2.25rem;
  background: #fff;
  padding: 0.3rem 0;
}
header .logo img {
  /* width: 20rem; */
  height: 5rem;
}
header .banner {
  position: relative;
}
header .banner .banner-bg {
  margin: 0 auto;
  width: 100%;
}
header .banner .banner-title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}
header .banner .banner-title h1 {
  font-family: songti, "宋体";
  font-size: 6.25rem;
  color: #1f29ef;
  text-shadow: -0.25rem 0.25rem 0rem #000;
}

main {
  margin-top: 2rem;
  margin-bottom: 5rem;
}
main .info-item {
  position: relative;
  padding: 1rem 0;
  min-height: 34.6875rem;
}
main .info-item + .info-item {
  margin-top: 2rem;
}
main .info-item .info-item-title {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 4.0625rem;
  padding-top: 3rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  width: 26.25rem;
  height: 34.6875rem;
  background: no-repeat center center/cover;
  background-image: url("./img1.jpg");
  border-radius: 2.6rem;
}
main .info-item .info-item-title p {
  font-size: 2.25rem;
  line-height: 1;
  color: #1f29ef;
  margin-bottom: 0.5em;
  text-shadow: -0.15rem 0.15rem 0rem #fff, 0.15rem -0.15rem 0rem #fff;
}
main .info-item .info-item-content {
  position: relative;
  padding: 2rem 0;
  padding-left: 33.25rem;
  padding-right: 5rem;
  background-color: #f3fafe;
  height: 100%;
}
main .info-item .info-item-content .content {
  min-height: 28.125rem;
  position: relative;
  height: 100%;
}
main .info-item .info-item-content .content .content-item > * {
  display: flex;
  position: relative;
  padding: 0.6em 0;
  padding-left: 1rem;
  font-size: 1.45rem;
  border-bottom: 1px solid #ccc;
}
main .info-item .info-item-content .content .content-item > *::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 0.2em;
  height: 0.2em;
  background-color: #333;
  display: inline-block;
}
main .info-item .info-item-content .content .content-item > * .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
main .info-item .info-item-content .content .content-item > * .time {
  flex-shrink: 0;
  color: #999;
  margin-left: 0.3em;
}
main .info-item .info-item-content .more {
  color: #666;
  text-align: right;
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
}
main .info-item:nth-child(2) .info-item-title {
  left: inherit;
  right: 4.0625rem;
  background-image: url("./img2.jpg");
}
main .info-item:nth-child(2) .info-item-content {
  padding-left: 5rem;
  padding-right: 33.25rem;
  background-color: #f3fafe;
  height: 100%;
}
main .info-item:nth-child(3) .info-item-title {
  background-image: url("./img3.jpeg");
}

@media screen and (max-width: 1366px) {
  .w {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .w {
    width: 100%;
    padding: 0 1.5rem;
  }

  header .banner .banner-title h1 {
    font-size: 5.5rem;
  }
  header .logo {
    font-size: 1.8rem;
  }
  header .logo img {
    width: 15rem;
  }

  main .info-item + .info-item {
    margin-top: 0;
  }
  main .info-item .info-item-title {
    position: relative;
    width: auto;
    height: auto;
    left: 0;
    right: 0;
    padding: 1rem 0;
    background-position: center center;
    background-size: cover;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
  }
  main .info-item .info-item-title p {
    margin-bottom: 0;
    line-height: 1.5;
  }
  main .info-item .info-item-content {
    padding: 2rem;
  }
  main .info-item .info-item-content .content .more {
    font-size: 1.3rem;
  }
  main .info-item .info-item-content .content .content-item > * {
    font-size: 1.55rem;
  }
  main .info-item:nth-child(2) .info-item-title {
    right: 0;
  }
  main .info-item:nth-child(2) .info-item-content {
    padding: 2rem;
  }
}