.home {
  width: 100%;
  position: relative;
}

.home .banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  animation: big2 32s forwards linear;
}

@keyframes big2 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.home .banner .t1 {
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  color: #ffffff;
  font-size: 40px;
  font-weight: bolder;
  letter-spacing: 3px;
}

.home .banner .links {
  position: absolute;
  left: 15%;
  width: 70%;
  bottom: 10%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.home .banner .links i {
  color: #ffffff;
}

.home .banner .links a,
.home .banner .links p {
  color: #ffffff;
  font-weight: 200;
}

.home .banner .links a {
  margin: 0 8px;
  display: inline-block;
}

.home .main {
  width: 100%;
}

.home .main .navList {
  width: 70%;
  margin: 0 auto;
  display: flex;
  transform: translateY(-35px);
  background-color: #ffffff;
}

.home .main .navList .item {
  width: 50%;
  text-align: center;
  color: #333333;
  position: relative;
  padding: 25px 0;
  transition: all 600ms;
  cursor: pointer;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
}

.home .main .navList .item p {
  transition: all 600ms;
}

.home .main .navList .item p:nth-child(2) {
  position: absolute;
  left: 0;
  bottom: 5px;
  opacity: 0;
  text-align: center;
  width: 100%;
  font-family: "Raleway-Regular";
  font-size: 12px;
  text-transform: uppercase;
}

.home .main .navList .item:hover {
  background-color: #11327E;
  color: #ffffff;
  border-color: #11327E;
}

.home .main .navList .item:hover p {
  transform: translateY(-7px);
}

.home .main .navList .item:hover p:nth-child(2) {
  opacity: 1;
}

.home .main .navList .active {
  background-color: #11327E;
  color: #ffffff;
  border-color: #11327E;
}

.home .main .navList .active p {
  transform: translateY(-7px);
}

.home .main .navList .active p:nth-child(2) {
  opacity: 1;
}

.home .main .navList .item:last-child {
  border-right: 1px solid #E5E5E5;
}

.home .main .t1 {
  text-align: center;
  width: 70%;
  margin: 60px auto 40px auto;
  font-size: 24px;
  font-weight: bolder;
}

.home .main .time {
  display: flex;
  flex-direction: row;
  width: 70%;
  margin: 0 auto;
  padding-bottom: 30px;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #EEEEEE;
}

.home .main .time i {
  color: #cbc2c2;
  font-size: 25px;
}

.home .main .time span {
  color: #cbc2c2;
  font-size: 18px;
  font-weight: 200;
  display: inline-block;
  margin-left: 5px;
}

.home .main .html {
  width: 65%;
  margin: 30px auto;
  color: #030303;
}

.home .main .pager {
  width: 70%;
  margin: 30px auto 0 auto;
  border-top: 1px solid #EEEEEE;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.home .main .pager .prev {
  display: flex;
  align-items: center;
  color: #646464;
  font-size: 14px;
  transition: all 600ms;
}

.home .main .pager .prev i {
  display: inline-block;
  margin: 0 10px;
  font-size: 10px;
  transform: rotateY(180deg);
}

.home .main .pager .prev:hover {
  color: #11327E;
}

.home .main .pager .back {
  color: #646464;
  font-size: 14px;
  font-weight: 200;
  transition: all 600ms;
}

.home .main .pager .back:hover {
  color: #11327E;
}

.home .main .pager .next {
  display: flex;
  align-items: center;
  color: #646464;
  font-size: 14px;
  transition: all 600ms;
}

.home .main .pager .next i {
  display: inline-block;
  margin-right: 10px;
  font-size: 10px;
}

.home .main .pager .next:hover {
  color: #11327E;
}

@media screen and (max-width: 1300px) {
  .home .banner img {
    height: 300px;
  }

  .home .banner .t1 {
    font-size: 20px;
  }

  .home .main .navList {
    width: 80%;
  }

  .home .main .t1 {
    width: 90%;
    margin: 30px auto 15px auto;
    font-size: 18px;
    line-height: 25px;
  }

  .home .main .time {
    width: 90%;
    padding-bottom: 15px;
  }

  .home .main .html {
    width: 90%;
  }

  .home .main .html img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .home .main .pager {
    width: 90%;
    padding: 15px 0;
  }
}

/*# sourceMappingURL=newsInfo.css.map */