.content-wrapper {
  width: 80%;
  margin-bottom: 100px;
}
.content-wrapper .inform {
  width: 100%;
  display: flex;
  color: #d10303;
  padding: 5px 20px;
  border: 2px solid;
  border-radius: 10px;
  font-size: 20px;
  align-items: center;
  box-sizing: border-box;
}
.content-wrapper .inform h1 {
  font-size: 24px;
}
.content-wrapper .inform img {
  width: 30px;
  margin-left: 15px;
  margin-right: 25px;
}
.content-wrapper .inform .item {
  overflow: hidden;
  flex: 1;
}
.content-wrapper .inform .item span {
  display: inline-block;
  animation: transX 20s linear infinite;
  white-space: nowrap;
}
.content-wrapper .news-inform {
  width: 100%;
}
.content-wrapper .news-inform .container {
  width: 100%;
  height: 380px;
  display: flex;
  color: #062041;
  justify-content: space-between;
  margin-bottom: 30px;
}
.content-wrapper .news-inform .container .content {
  width: 32%;
  overflow: hidden;
}
.content-wrapper .news-inform .container .content h2 {
  width: 100%;
  padding: 10px 0 8px 0;
  border-top: 4px solid #f3f3f3;
  border-bottom: 2px solid #f3f3f3;
}
.content-wrapper .news-inform .careers {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-wrapper .news-inform .careers a {
  width: 24%;
  margin-bottom: 20px;
}
.content-wrapper .containers {
  height: 480px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.content-wrapper .containers .xyfc .content {
  display: flex;
  flex-wrap: wrap;
  height: 380px;
  /* align-content: space-between; */
  justify-content: space-between;
  overflow: hidden;
}
.content-wrapper .containers .xyfc .content a {
  width: 33%;
  height: 49%;
  overflow: hidden;
}
.content-wrapper .containers .xyfc .content a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform:scale(1);
  transition: all 0.5s;
}
.content-wrapper .containers .xyfc .content a:hover img{
  transform:scale(1.2);
}
.content-wrapper .containers .xqhz .content {
  height: 200px;
}
.content-wrapper .containers .xqhz .content a {
  width: 33%;
  height: 100%;
}
.content-wrapper .containers .xqhz .content a img{
  width: 100%;
  height: 100%;
}
.content-wrapper .containers .item {
  width: 48%;
  display: flex;
  flex-direction: column;
}
.content-wrapper ul {
  list-style: inside;
}
.content-wrapper ul li {
  font-size: 16px;
  margin: 8px 0;
  display: flex;
}
.content-wrapper ul li a{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex:1;
}
.content-wrapper ul li .date{
  margin-left:10px;
  color: #999;
}
.content-wrapper .title {
  width: 100%;
  color: #062041;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
  justify-content: space-between;
  border-bottom: 8px solid;
  margin-top: 20px;
  margin-bottom: 30px;
}
.content-wrapper .title h1 {
  flex: 1;
  font-size: 24px;
  display: flex;
  align-items: center;
}
.content-wrapper .title h1 i {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #062041;
  margin-right: 10px;
}
.content-wrapper .title a {
  color: #062041;
  font-size: 18px;
}
.content-wrapper .title a img {
  width: 14px;
  margin-left: 10px;
}

@keyframes transX {
  0% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*# sourceMappingURL=index.css.map */