/* banner */
.banner {
  position: relative;
}

.banner img {
  width: 100%;
}

/* part1 */
.part1 {
  position: relative;
  padding: 0.2rem;
}

.part1-left {
  position: relative;
  z-index: 5;
}

.video {
  position: relative;
}

.video-img img {
  width: 100%;
  
}

.video-play {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transform: translate3d(-50%, -50%, 0);
}

.video-play img {
  width: 0.6rem;
}

.part1-right {
  position: relative;
  z-index: 1;
  padding: 0.2rem 0 0;
}

.part1-right-bg {
  padding: 0.2rem;
  background: #f6f6f6;
}

.part1-title {
  font-size: 0.3rem;
  line-height: 0.4rem;
  color: #333;
}

.part1-p {
  margin: 0.3rem 0;
  font-size: 14px;
  line-height: 24px;
}

.part1-ul {
  display: flex;
  flex-wrap: wrap;
}

.part1-ul li {
  width: 50%;
  padding: 0.1rem;
  background: url(/assets/images/part1_shu.png) no-repeat 0 0.3rem;
}

.part1-li-num {
  font-weight: bold;
  font-size: 0.48rem;
  line-height: 0.6rem;
  color: #021fbb;
}

.part1-li-text {
  padding-left: 0.1rem;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  text-transform: capitalize;
}

.part1-icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.part1-icon-img {
  padding: 2px;
}
.part1-icon img {
  height: 0.75rem;
  max-height: 60px;
}

@media (min-width: 1200px) {
  .part1 {
    position: relative;
    padding: 0;
  }

  .part1-main {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 90vw;
    margin: 0 auto;
  }

  .part1-left {
    width: 40vw;
  }

  .video-play img {
    width: 3.2vw;
  }

  .part1-right {
    width: 50vw;
    padding: 19.2vw 0 0;
  }

  .part1-right-bg {
    position: absolute;
    left: -3vw;
    top: -4vw;
    width: 55vw;
    padding:3vw 4vw;
  }

  .part1-title {
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .part1-p {
    margin: 1.5vw 0;
    padding-right: 6vw;
    font-size: 0.9vw;
    line-height: 1.4vw;
  }

  .part1-ul li {
    width: auto;
    padding: 0 2vw;
    background: url(/assets/images/part1_shu.png) no-repeat 0 1.5vw;
  }

  .part1-ul li:nth-child(1) {
    padding-left: 0;
    background: none;
  }

  .part1-li-num {
    font-size: 3vw;
    line-height: 3.6vw;
  }

  .part1-li-text {
    padding-left: 0.5vw;
    font-size: 0.9vw;
    line-height: 1.2vw;
  }

  .part1-icon {
    flex-wrap: nowrap;
    padding: 0;
  }
  .part1-icon-img {
    padding: 0;
  }
  .part1-icon img {
    height: 2.8vw;
  }
}

/* part2 */
.part2 {
  padding: 0.2rem;
}

.part2-title {
  font-size: 0.48rem;
  line-height: 0.6rem;
  color: #333;
  text-transform: capitalize;
}

.part2-detail {
  padding: 0.2rem 0;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}

.part2-list {
  display: block;
}

.part2-list li {
  width: 100%;
}

.part2-li {
  cursor: pointer;
}

.part2-li-img {
  position: relative;
  overflow: hidden;
  background: #f1f5ff;
  border-radius: 0.3rem;
}

.part2-li-img i {
  display: block;
}

.part2-li-img i img {
  width: 100%;
}

.part2-li-layer {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.6rem;
  background: rgba(0, 4, 182, 0.5);
}

.part2-li-layer a {
  display: block;
  padding-left: 0.2rem;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  background: url(/assets/images/circle_w.png) no-repeat 0 center/0.15rem;
  transition: 0.3s;
}

.part2-li-name {
  display: block;
  padding: 0.2rem 0;
  font-size: 0.3rem;
  line-height: 0.4rem;
  color: #333;
  text-align: center;
}

.part2-li-name:hover {
  color: #021fbb;
}

@media (min-width: 1200px) {
  .part2 {
    padding: 5vw 0;
  }

  .part2-main {
    width: 90vw;
    margin: 0 auto;
  }

  .part2-title {
    font-size: 3vw;
    line-height: 3.6vw;
    color: #333;
    text-transform: capitalize;
  }

  .part2-detail {
    width: 60vw;
    padding: 2vw 0;
    font-size: 0.9vw;
    line-height: 1.2vw;
    color: #333;
  }

  .part2-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.8vw;
  }

  .part2-list li {
    width: 33.3%;
    padding: 0.8vw;
  }

  .part2-li {
    cursor: pointer;
  }

  .part2-li-img {
    position: relative;
    overflow: hidden;
    background: #f1f5ff;
    border-radius: 1.5vw;
  }

  .part2-li-img i {
    display: block;
  }

  .part2-li-img i img {
    width: 100%;
  }

  .part2-li-layer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 2vw;
    background: rgba(0, 4, 182, 0.5);
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: 0.3s;
  }

  .part2-li-img:hover .part2-li-layer {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .part2-li-layer a {
    display: block;
    padding-left: 1.2vw;
    font-size: 0.9vw;
    line-height: 1.5vw;
    color: #fff;
    background: url(/assets/images/circle_w.png) no-repeat 0 center/0.4vw;
    transition: 0.3s;
  }

  .part2-li-layer a:hover {
    transform: translate3d(0.5vw, 0, 0);
  }

  .part2-li-name {
    display: block;
    padding: 1vw 0;
    font-size: 1.5vw;
    line-height: 2vw;
    color: #333;
    text-align: center;
  }

  .part2-li-name:hover {
    color: #021fbb;
  }
}

/* part3 */
.part3 {
  padding: 0.2rem;
  background: #f1f5ff;
}

.part3-main {
  position: relative;
}

.part3-title {
  font-weight: bold;
  font-size: 0.48rem;
  line-height: 0.8rem;
  color: #000;
}

.part3-detail {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #000;
}

.part3-map {
  position: relative;
  padding: 0.2rem 0 0;
  text-align: center;
  overflow: hidden;
}

.part3-map-img img {
  width: 115%;
}

.part3-map-ul {
  display: flex;
  flex-wrap: wrap;
}
.part3-map-li {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 2px;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
}
.part3-map-li i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.part3-map-li p {
  padding-left: 5px;
}

.part3-map-li:nth-child(1) i {
  background: #fdbd84;
}
.part3-map-li:nth-child(1) p {
  color: #fdbd84;
}
.part3-map-li:nth-child(2) i {
  background: #19a4c6;
}
.part3-map-li:nth-child(2) p {
  color: #19a4c6;
}
.part3-map-li:nth-child(3) i {
  background: #bacfa5;
}
.part3-map-li:nth-child(3) p {
  color: #bacfa5;
}
.part3-map-li:nth-child(4) i {
  background: #ffa6b7;
}
.part3-map-li:nth-child(4) p {
  color: #ffa6b7;
}
.part3-map-li:nth-child(5) i {
  background: #10218e;
}
.part3-map-li:nth-child(5) p {
  color: #10218e;
}
.part3-map-li:nth-child(6) i {
  background: #f0c812;
}
.part3-map-li:nth-child(6) p {
  color: #f0c812;
}

@media (min-width: 1200px) {
  .part3 {
    padding: 5vw;
  }

  .part3-title {
    font-size: 3vw;
    line-height: 4.2vw;
  }

  .part3-detail {
    font-size: 0.9vw;
    line-height: 2vw;
  }

  .part3-map {
    position: relative;
    padding: 4vw 0 0;
  }

  .part3-map-img img {
    width: 63.4vw;
  }

  .part3-map-ul {
    display: block;
    position: absolute;
    right: 8vw;
    top: 12vw;
  }
  .part3-map-li {
    display: flex;
    align-items: center;
    width: auto;
    padding: 0 0 0.5vw;
    font-size: 1.2vw;
    line-height: 1.6vw;
  }
  .part3-map-li i {
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
  }
  .part3-map-li p {
    padding-left: 0.5vw;
  }
}

/* part4 */
.part4 {
  padding: 0.2rem;
  background: #f1f5ff url(/assets/images/part4_bg.png) no-repeat center 0/100%
    100%;
}

.part4-title {
  font-weight: bold;
  font-size: 0.48rem;
  line-height: 0.6rem;
  color: #333;
  text-align: center;
}

.part4-box {
  position: relative;
  z-index: 6;
  padding: 0.4rem 0.6rem;
}

.part4-prev,
.part4-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  background: #0004b6;
  transform: translate3d(0, -50%, 0);
  cursor: pointer;
}

.part4-prev {
  left: 0.1rem;
}

.part4-next {
  right: 0.1rem;
}

.part4-prev img,
.part4-next img {
  width: 0.3rem;
}

.part4-banner {
  position: relative;
  z-index: 1;
}

.part4-banner .swiper-slide {
  width: 3rem;
  height: 4rem;
  transform-origin: center center;
  transition: 0.3s;
}
.part4-banner .swiper-slide a {
  display: block;
}
.part4-banner .swiper-slide img {
  width: 100%;
  height: 100%;
}

@media (min-width: 1200px) {
  .part4 {
    padding: 0;
  }

  .part4-main {
    width: 94vw;
    margin: 0 auto;
    padding: 10vw 0;
  }

  .part4-title {
    font-size: 3vw;
    line-height: 3.6vw;
  }

  .part4-box {
    padding: 4vw 10vw;
  }

  .part4-prev,
  .part4-next {
    width: 2.8vw;
    height: 2.8vw;
  }

  .part4-prev {
    left: 9vw;
  }

  .part4-next {
    right: 9vw;
  }

  .part4-prev img,
  .part4-next img {
    width: 1.5vw;
  }

  .part4-banner .swiper-slide {
    width: 30vw;
    height: 40vw;
  }
}

/* part5 */
.part5 {
  padding: 0.2rem;
  background: url(/assets/images/part5_bg.jpg) no-repeat center 0 / cover;
}

.part5-title {
  font-weight: bold;
  font-size: 0.48rem;
  line-height: 0.6rem;
  color: #000;
}

.part5-detail {
  padding: 0.2rem 0 0.4rem;
  font-size: 14px;
  line-height: 24px;
  color: #000;
}

.part5-more {
  width: 1.6rem;
}

.part5-more a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  text-align: center;
  border: 1px solid #000;
  border-radius: 0.2rem;
}

.part5-box {
  padding: 0.2rem 0 0;
}

.part5-banner {
  position: relative;
}

.part5-banner a {
  display: block;
}

.new-li-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.new-li-time {
  margin: 0.1rem 0 0.2rem;
  padding-left: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  background: url(/assets/images/date_icona.png) no-repeat 0 center/12px;
}

.new-li-p {
  height: 100px;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

.part5-page {
  display: flex;
}

.part5 .swiper-pagination-bullet {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border: 1px solid #0004b6;
  border-radius: 50%;
  cursor: pointer;
}

.part5 .swiper-pagination-bullet-active {
  background: #0004b6;
}

@media (min-width: 1200px) {
  .part5 {
    padding: 6vw 4vw;
  }

  .part5-title {
    font-size: 3vw;
    line-height: 3.6vw;
  }

  .part5-detail {
    padding: 1vw 0 2vw;
    font-size: 0.9vw;
    line-height: 1.4vw;
  }

  .part5-more {
    width: 8vw;
  }

  .part5-more a {
    font-size: 0.9vw;
    line-height: 2.4vw;
    border-radius: 1vw;
  }
  .part5-more a:hover {
    background: #0004b6;
    color: #fff;
  }

  .part5-box {
    padding: 0 0 0 42vw;
  }

  .new-li-title {
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .new-li-time {
    margin: 0.5vw 0 1vw;
    padding-left: 1vw;
    font-size: 0.9vw;
    line-height: 1.2vw;

    background: url(/assets/images/date_icona.png) no-repeat 0 center/0.8vw;
  }

  .new-li-p {
    height: 7vw;
    font-size: 0.9vw;
    line-height: 1.4vw;
  }
}
