/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #fff;
}

.header {
  position: relative;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 80px;
  width: 100%;
  transition: all 0.3s ease;
  background: llinear-gradient(to bottom,
      #068ff0 0%,
      rgba(7, 118, 236, 0) 100%);
  padding-top: 10px;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.top.scrolled {
  background-color: #204aaa;
}

.top-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
  width: 100%;
  background: linear-gradient(to bottom, #204aaa 0%, #204aaa 100%);
  transition: all 0.3s ease;
  padding-top: 10px;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

.box-t {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 60px;
  height: auto;
}

.logo-xin {
  margin-left: 20px;
  width: 20vw;
  height: auto;
}

.logo-box span {
  padding-left: 40px;
}

.logo-title {
  border-left: 1px solid #fff;
  padding-left: 28px;
  margin-left: 28px;
  line-height: 50px;
}

.logo-title a {
  color: #fff;
}

.menu {
  display: flex;
  flex-direction: column;
}

.menu #sub-list {
  display: flex;
  list-style: none;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.menu #sub-list li a {
  font-size: 20px;
  transition: color 0.3s;
  font-weight: normal;
  padding-right: 10px;
}

#sub-list li a:hover {
  border-bottom: 1px solid #fff;
}

#sub-list li:hover .sub {
  display: block;
  opacity: 1;
  visibility: visible;
}

#sub-list li {
  position: relative;
}

.sub {
  position: absolute;
  top: 100%;
  left: -20%;
  font-size: 20px;
  min-width: 8em;
  background: #fff;
  float: left;
  text-align: center;
  background-color: #66baf6;
  border-radius: 8px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sub div {
  padding-bottom: 4px;
  padding: 4% 0;
  padding-left: 10px !important;
}

.sub div a {
  font-size: 16px !important;
}

.sub div:hover {
  background-color: #fff;
  cursor: pointer;
}

.sub div:hover a {
  color: #000;
}

.sub div:first-child:hover {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.sub div:last-child:hover {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.search-icon {
  cursor: pointer;
}

.search-icon img {
  width: 30px;
  height: 30px;
}

.mySwiper .swiper-slide {
  overflow: hidden;
}

.mySwiper .swiper-slide img {
  animation: zoom 10s ease-in-out infinite;
  position: relative;
}

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

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

.mySwiper .swiper-slide img {
  animation: zoom 10s ease-in-out infinite;
  position: relative;
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.swiper-button-next,
.swiper-button-prev {
  padding: 24px !important;
  color: #fff !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(245, 242, 242, 0.8) !important;
  color: #767171 !important;
}

/* 搜索层样式 */
.search-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.search-layer.active {
  display: flex;
  background: rgba(0, 0, 0, 0.8);
}

.search-container {
  width: 80%;
  max-width: 600px;
  position: relative;
}

.search-close {
  position: absolute;
  top: -40px;
  right: 0px;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}

.search-close img {
  width: 30px;
  height: 30px;
}

.search-box input {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
}

.search-box button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 20px;
  background: #204aaa;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.middle {
  padding: 20px 80px;
}

.middle-top {
  font-size: 22px;
  padding: 30px 40px;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.middle-top-box {
  width: 90%;
  position: absolute;
  top: 13px;
  display: flex;
  justify-content: space-evenly;
}

.middle-text {
  cursor: pointer;
}

.middle-line {
  width: 100%;
  height: 2px;
  margin-top: 10px;
}

.middle-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}

.middle-item {
  flex: 0 0 calc(16.666% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
}

.middle-item img {
  width: 84px;
  height: 96px;
  object-fit: cover;
  transition: transform 2s ease;
  transform-style: preserve-3d;
}

.middle-item-text a {
  color: #000;
  padding-top: 15px;
}

.middle-item img:hover {
  transform: rotateY(360deg);
  /* 设置旋转角度 */
}

.middle-two {
  width: 100%;
  background-image: url("/itcenter/img/hbg2.png");
  background-size: 100% 100%;
  background-position: center;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
}

.middle-two-item {
  width: 48%;
  background-color: #fff;
  padding: 10px;
}

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.top-title {
  font-size: 24px;
}

.more {
  font-size: 16px;
  color: gray;
}

.more a {
  color: gray;
}

.title-line {
  width: 100%;
  height: 8px;
  background-image: url("/itcenter/img/box-line.png");
  background-size: 100% 100%;
  background-position: center;
}

.message-box {
  padding: 10px 0;
}

.message {
  border-bottom: 1px dashed #ccc;
  transition: color 1s;
  position: relative;
  cursor: pointer;
  padding: 10px 0px;
}

.item-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}

.message::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #2554a5;
  transition: 0.3s ease;
}

.item-message:hover {
  color: #2554a5;
}

.message:hover::after {
  width: 100%;
}

.item-message:hover .text a {
  color: #2554a5;
  font-weight: bold;
}

.item-message:hover .round {
  background-color: #204aaa;
}

.item-message:hover .round-icon {
  background-image: url("/itcenter/img/round-w.png");
}

.round {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #e5f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.round-icon {
  height: 25px;
  width: 25px;
  background-image: url("/itcenter/img/round-b.png");
  background-size: 100% 100%;
  background-position: center;
}

.time-box {
  display: flex;
  align-items: center;
}

.text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.text-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  display: none;
}

.item-message:hover+.text-content {
  display: block;
}

.text a {
  font-size: 18px;
  padding-left: 20px;
  color: #000;
}

.year {
  font-size: 14px;
  color: #fff;
  background-color: #336cd7;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: center;
  padding: 2px 14px;
}

.date {
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: #2958ac;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 2px 14px;
}

.img-box {
  width: 100%;
  padding: 10px 20px;
}

.swiper-slide a {
  display: block;
  overflow: hidden;
}

.img-box img {
  object-fit: fill;
  transition: transform 3s ease;
  z-index: 1;
}

.img-box img:hover {
  transform: scale(1.2);
}

.img-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 22px;
  color: #068ff0;
}

.img-msg {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
}

.middle-three {
  width: 100%;
  background-image: url("/itcenter/img/hbg3.png");
  background-size: 100% 100%;
  background-position: center;
  padding: 20px 80px;
}

.middle-three-box {
  margin-top: 20px;
  height: 400px;
  width: 100%;
  background-image: url("/itcenter/img/h3bg.png");
  background-size: 100% 100%;
  background-position: center;
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
}

.list {
  width: 48%;
}

.list-item {
  width: 100%;
  border-bottom: 1px dashed #ccc;
  padding: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
}

.list-item:hover {
  background-color: #0a4399;
  color: #fff;
}

.list-text {
  padding-left: 20px;
}

.list-text a {
  color: #000;
}

.list-item:hover a {
  color: #fff;
}

.foot {
  background-color: #204aaa;
  color: #fff;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
}

.foot-img {
  width: 200px;
  height: 50px;
  background-image: url(/itcenter/img/bottm-bg.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.foot-line {
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  color: #99abd4;
}

/* 列表页样式 */

.list-box {
  background-color: #e4f1ff;
  padding: 20px 120px;
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.navigation {
  width: 300px;
  background: url(/itcenter/img/list-bg.png) #033695;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 20px;
}

.navigation-title {
  color: #fff;
  font-size: 26px;
  padding-left: 20px;
}

.navigation-list {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  margin-top: 20px;
  font-size: 18px;
}

.navigation-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 1px dashed #ccc;
  align-items: center;
  cursor: pointer;
}

.navigation-item-title a {
  color: #000;
}

.navigation-icon {
  height: 20px;
  width: 20px;
  background-image: url("/itcenter/img/round-g.png");
  background-size: 100% 100%;
  background-position: center;
}

.navigation-item.active .navigation-item-title a {
  color: #003c94;
}

.navigation-item.active .navigation-icon {
  background-image: url("/itcenter/img/round-b.png");
}

.list-right {
  background-color: #fff;
  padding: 0px 20px;
  flex: 1;
  margin-left: 50px;
  width: 100%;
}

.title-box {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0px;
}

.title-line-list {
  width: 100%;
  height: 8px;
  background-image: url("/itcenter/img/box-line.png");
  background-size: 170% 100%;
  background-position: center;
}

.right-title {
  font-size: 20px;
  font-weight: 500;
}

.address {
  color: #8d8d8d;
  font-size: 14px;
}

.address a {
  color: #8d8d8d;
}

.article-list {
  padding: 10px 0px;
}

.article-item {
  display: flex;
  padding: 10px;
  justify-content: space-between;
  border-bottom: 1px dashed #ccc;
}

.article-item .item-one {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #4d4b4b;
  font-size: 16px;
}

.article-item:hover {
  border: 2px solid #013c95;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.article-item .item-one:hover {
  color: #005245;
}

.article-item .item-two {
  color: #ccc;
  font-size: 16px;
}

.fy {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.fy .fy-item {
  border: 1px solid #ccc;
  padding: 0px 10px;
  margin-right: 10px;
  font-size: 16px;
}

.fy .fy-item a {
  text-decoration: none;
  color: #000;
}

.action {
  background-color: #258cff;
  color: #fff !important;
}

.action a {
  color: #fff !important;
}

/* 详情 */
.details-title-box {
  padding: 20px;
  border-bottom: 2px solid #ccc;
  line-height: 30px;
}

.details-title {
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  padding: 20px 0;
}

.other-box {
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.other-msg {
  font-size: 16px;
  color: #ccc;
  padding: 0 10px;
}

.other-box img {
  width: 20px;
  height: 20px;
}

/* 动画样式 */
.animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visible-element {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1920px) {
  .menu ul li a {
    font-size: 20px;
  }

  .sub {
    font-size: 16px;
  }
}

@media (max-width: 1600px) {
  .logo-title a {
    font-size: 16px;
  }

  .menu #sub-list li a {
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  .top-list {
    padding: 5px 0px;
    display: block;
  }

  .logo-title {
    padding-left: 18px;
    margin-left: 18px;
    line-height: 20px;
  }

  .logo-xin {
    width: 140px;
  }

  .list-box {
    margin-top: 96px;
  }

  .menu #sub-list {
    gap: 0px;
  }

  .menu #sub-list li a {
    font-size: 10px;
  }

  .search-icon {
    display: none;
  }

  .middle-two {
    flex-direction: column;
  }

  .middle-two-item {
    width: 100%;
  }

  .middle-item img {
    width: 65px;
    height: 74px;
  }

  .middle-item-text a {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .top {
    padding: 10px 0px;
    display: block;
  }

  .search-icon {
    display: none;
  }

  .middle {
    padding: 10px 0;
  }

  .middle-top {
    font-size: 14px;
    padding: 30px 10px;
  }

  .middle-item {
    flex: 0 0 calc(27% - 10px)
  }

  .middle-item-text a {
    font-size: 10px;
  }

  .middle-two {
    padding: 10px 0;
  }

  .middle-three-box {
    padding: 50px 10px;
  }

  .date {
    font-size: 10px;
  }

  .text {
    width: 300px;
  }

  .round {
    display: none;
  }

  .middle-three {
    padding: 10px 0;
  }

  .list-item {
    font-size: 10px;
  }


  .logo-title {
    font-size: 14px;
  }

  .list-box {
    padding: 10px 0;
  }

  .list-right {
    margin-left: 10px;
  }

  .navigation-title {
    font-size: 16px;
  }

  .navigation-list {
    font-size: 12px;
    padding: 10px;
  }

  .title-box {
    font-size: 12px !important;
  }

  .navigation {
    display: none;
  }

  .list-right {
    width: 70%;
  }

  .other-msg {
    font-size: 10px;
  }

  .right-title {
    font-size: 12px;
  }

  .address {
    font-size: 10px;
  }

  .article-item {
    padding: 5px;
  }

  .article-item .item-one {
    font-size: 12px;

  }

  .article-item .item-two {
    font-size: 10px;
    white-space: nowrap;

  }

  .fy .fy-item {
    font-size: 10px;
    white-space: nowrap;
    margin-right: 4px;
  }

  .foot-top {
    padding: 30px 20px;
  }

  .foot-bottom {
    display: block;
    padding: 30px 20px;
  }
}