/* header start */
.header {
  font-size: 0;
  position: relative;
}

.header video {
  width: 100%;
  height: auto;
}

.header .header-content {
  position: absolute;
  top: 120px;
  left: 10vw;
}

.header .header-content .p-1 {
  padding: 0 !important;
  font-weight: bold;
  font-size: 32px;
  line-height: 50px;
  color: #090E34;
}

.header .header-content .p-2 {
  padding: 0 !important;
  font-size: 16px;
  color: #53566C;
  font-weight: normal;
}

.header .header-content button {
  background: linear-gradient(270deg, #1FA9F7 0%, #065CFF 100%);
  border-radius: 4px;
  padding: 6px 15px;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}

/* 当屏幕分辨率小于768时的样式 */
@media (max-width: 768px) {
  .fixed-top {
    background: #fff;
  }

  .header video {
    margin-top: 60px;
    height: 150px;
    object-fit: cover;
  }

  .header .header-content {
    bottom: 10px;
    background: rgb(255 255 255 / 51%);
    width: 80%;
    border-radius: 6px;
    padding-left: 10px;
    height: 60px;
    top: unset;
  }

  .header .header-content .p-1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    font-weight: bold;
  }

  .header .header-content .p-2 {
    font-size: 13px;
    line-height: 22px;
    margin: 0;
    font-weight: normal;
  }

  .header .header-content .p-3 {
    font-size: 13px;
    margin: 0;
    font-weight: normal;
  }

  .header .header-content button {
    float: right;
    margin-top: -45px;
    margin-right: 10px;
    font-size: 12px;
  }
}

/* header end */


.item-container {
  padding: 40px 0;
  /* max-width: 1440px; */
  margin: 0 auto;
}

@media (min-width: 1440px) {
  .item-container {
    padding: 40px calc(50vw - 710px);
  }
}

.item-container .item-container-title {
  text-align: center;
  margin-bottom: 20px;
}

.item-container .item-container-title p {
  font-weight: bold;
  font-size: 26px;
  color: #090E34;
  margin: 0;
  line-height: 50px;
}

.item-container .item-container-title span {
  font-weight: normal;
  font-size: 13px;
  color: #53566C;
  line-height: 24px;
}


.pagination {
  justify-content: center;
  margin: 20px auto;
}
.pagination .page-link{
  font-size: 12px;
}
.pagination .page-link:focus {
  box-shadow: none;
}

.news {
  width: 70%;
  margin: 0 auto;
}

.news ul li {
  cursor: pointer;
  display: flex;
  margin: 15px 0;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0px 0 8px 1px rgba(30, 75, 151, 0.1);
}

.news ul li img {
  width: 300px;
  object-fit: cover;
  height: 160px;
}

.news ul li div {
  width: calc(100% - 300px);
  padding: 0 15px;
}

.news ul li div h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  margin: 0;
  margin-bottom: 8px;
  line-height: 40px;
}

.news ul li div p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 13px;
  color: #53566C;
  line-height: 24px;
  margin-bottom: 5px;
}

.news ul li div span {
  font-size: 14px;
  color: #666;
}

/* 当屏幕分辨率小于768时的样式 */
@media (max-width: 768px) {
  .news ul li {
    display: block;
  }

  .news ul li img {
    width: 100%;
    height: 120px;
  }

  .news ul li div {
    width: 100%;
    padding: 0;
  }

  .news ul li div h1 {
    margin: 8px 0;
  }
}

.bottom-part {
  position: relative;
}

.bottom-part img {
  width: 100%;
}

.bottom-part p {
  position: absolute;
  top: 120px;
  left: 200px;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #090E34;
}

/* 当屏幕分辨率小于768时的样式 */
@media (max-width: 768px) {
  .bottom-part p {
    line-height: 20px;
    position: unset;
    text-align: center;
    font-size: 15px;
  }
}