* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 .zhaopin {
        width: 200px;
        height: 100px;
        background-color: red;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .zhaopin>a {
        font-size: 30px;
        color: rgb(223, 252, 0);
        font-family: 微软雅黑;
        text-decoration: none;
    }
.float-container {
      position: relative;
      z-index:99999999999999999999;
    }

    .float-container p {
      text-align: right;
      position: absolute;
      margin: 0;
      top: -25px;
      right: 0;
      cursor: pointer;
    }
ul {
  list-style-type: none;
}

.fs-8 {
  font-size: 8px;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

a {
  text-decoration: none;
}

header a {
  color: #fff;
  text-decoration: none;
}

header {
  padding: 24px;
  background: rgb(143, 8, 2);
  overflow: hidden;
}

header .header-img {
  max-width: 100%;
  height: 64px;
  object-fit: contain;
}

header .search-block {
  float: right;
}

.search-block .search-link {
  text-align: right;
  margin: 0 0 7px;
}

.search-block .search-box {
  background: #fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  width: 192px;
  height: 36px;
  line-height: 36px;
}

.search-box input {
  display: block;
  border: none;
  width: 156px;
  padding: 0 6px;

}

.search-box input:focus {
  outline: none;
  padding: 0 6px;
}

.search-box button {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
}

.iconfont.icon-sousuo {
  font-size: 22.6px;
}

.color-red {
  color: rgb(143, 8, 2);
}

nav {
  color: #fff;
  background: rgb(143, 8, 2);
  padding-bottom: 24px;
}

nav .menu {
  margin: auto;
  max-width: 1440px;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
}

nav .menu .menu-item {
  display: inline-block;
  position: relative;
  text-align: center;
  flex: 1 1 auto;
  z-index: 999;
}

nav .menu-item .menu-second {
  display: none;
  background: transparent;
  padding-top: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav .menu-item:hover .menu-second {
  display: block;
}

nav .menu-second-item {
  display: block;
  height: 36px;
  line-height: 36px;
  padding: 0 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgb(143, 8, 2);
}

nav .menu-second-item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 36px;
}

nav .menu-item a,
nav .menu-second-item a {
  color: #fff;
}

nav .menu-second-item:hover::before {
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

main {
  padding: 48px 72px;
  background: rgb(241, 243, 245);
  overflow-x: hidden;
}

main .news-notice {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1440px;
}

main .news {
  display: inline-block;
  width: 65%;
  overflow: hidden;
}

.news .main {
  display: flex;
  flex-flow: row nowrap;
  border-top: rgb(143, 8, 2) 1px solid;
  border-bottom: rgb(143, 8, 2) 1px solid;
}

.news .main .image-block {
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 65%;
  height: 386px;
  color: #fff;
}

.image-block::before {
  content: attr(data-title);
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  padding: 6px;
  width: 100%;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.2);
  z-index: 99;
}

#news-img-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.image-block img {
  display: none;
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-block img.selected {
  display: block;
  animation: gradientShow 0.5s ease-in;
  animation-fill-mode: forwards;
}

@keyframes gradientShow {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.image-block ul {
  display: none;
  list-style-type: circle;
  z-index: 99;
}

.image-block ul li.selected {
  list-style-type: disc;
}

.news .main .news-list {
  list-style: none;
  flex: 0 1 35%;
  min-width: 100px;
  margin: 3px 0 3px 3px;
  background: #fff;
}

.news-list .news-list-item {
  height: 76px;
  color: rgb(143, 8, 2);
  padding: 4px 0;
}

.news-list-item:nth-child(n+2) {
  border-top: 1px solid rgb(143, 8, 2);
}

.news-list-item .item-content {
  display: -webkit-box;
  height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0 9px;
  color: rgb(143, 8, 2);
}

.news-list-item .item-date {
  float: right;
  color: #fff;
  background: rgb(143, 8, 2);
  height: 17px;
  line-height: 17px;
  padding: 0 3px;
  margin-top: 10px;
  margin-right: 2px;
}

.news-list-item.selected,
.news-list-item:hover,
.news-list-item.selected .item-content,
.news-list-item:hover .item-content {
  animation: colorGradient1 0.2s ease-in;
  animation-fill-mode: forwards;
}

.news-list-item.selected .item-date,
.news-list-item:hover .item-date {
  animation: colorGradient2 0.2s ease-in;
  animation-fill-mode: forwards;
}

@keyframes colorGradient1 {
  0% {
      color: rgb(143, 8, 2);
      background: #fff;
  }
  100% {
      color: #fff;
      background: rgb(143, 8, 2);
  }
}

@keyframes colorGradient2 {
  0% {
      color: #fff;
      background: rgb(143, 8, 2);
  }
  100% {
      color: rgb(143, 8, 2);
      background: #fff;
  }
}

main .notice {
  display: inline-block;
  width: 30%;
  min-width: 150px;
  overflow: hidden;
}

.notice .main {
  border-top: rgb(143, 8, 2) 1px solid;
  border-bottom: rgb(143, 8, 2) 1px solid;
}

.notice-list .notice-list-item {
  height: 70px;
  margin: 6px 0;
  background: #fff;
  border-left: 3px solid rgb(63, 63, 63);
  padding: 6px 9px;
}

.notice-list-item.top {
  border-left: 3px solid rgb(143, 8, 2);
}

.notice-list-item.top .item-content {
  color: rgb(143, 8, 2);
}

.notice-list-item.top .item-date {
  color: rgb(143, 8, 2);
}

.notice-list-item.top:hover {
  border-left: 6px solid rgb(143, 8, 2);
}

.notice-list-item:hover {
  border-left: 6px solid rgb(63, 63, 63);
}

.notice-list-item .item-content {
  height: 45px;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: rgb(63, 63, 63);
}

.notice-list-item .item-date {
  height: 13px;
  line-height: 13px;
  color: rgb(63, 63, 63);
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  margin: auto;
  max-width: 1440px;
}

.block {
  width: 30%;
  min-width: 172px;
  margin-top: 48px;
}

.list {
  border-top: 1px solid rgb(143, 8, 2);
  border-bottom: 1px solid rgb(143, 8, 2);
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  height: 36px;
  padding: 12px;
}

.list-item .item-content {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #000;
}

.list-item .item-content::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  background: #000;
  padding: 3px;
  margin-right: 3px;
  vertical-align: middle;
}

.list-item .item-content:hover {
  color: rgb(143, 8, 2);
  font-weight: bold;
}

.list-item .item-content:hover::before {
  background: rgb(143, 8, 2);
}

.list-item .item-date {
  color: rgb(143, 8, 2);
  flex: 0 0 84px;
  font-size:14px;
  text-align: right;
}

.list-item .item-date .iconfont.icon-riqi {
  height: 14px;
  line-height: 14px;
}

.list-item .item-date .iconfont.icon-riqi::before {
  font-size: 14px;
  margin-right: 2px;
}

footer {
  background: rgb(143, 8, 2);
  color: #fff;
  padding: 0 72px;
  overflow-x: hidden;
}

.lr {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin: auto;
  max-width: 1440px;
}

hr {
  margin: auto;
  max-width: 1440px;
}

footer .marx-logo {
  height: 120px;
}

.kv {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.kv:nth-child(n + 2) {
  margin-top: 24px;
}

.kv .key {
  flex: 0 0 84px;
  font-weight: bold;
}

.kv .value a {
  margin-right: 16px;
  word-break: keep-all;
  color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header a {
  color: rgb(143, 8, 2);
}

.header .iconfont.icon-xinwen,
.header .iconfont.icon-gonggao,
.header .iconfont.icon-danghui1,
.header .iconfont.icon-benkejiaoxue,
.header .iconfont.icon-yanjiushengjiaoyu,
.header .iconfont.icon-xuetuangongzuo-1,
.header .iconfont.icon-kexueyanjiu,
.header .iconfont.icon-deyuzaixian {
  font-weight: bold;
  padding-bottom: 4px;
  border-bottom: 6px solid rgb(143, 8, 2);
}

.header .iconfont.icon-xinwen::before,
.header .iconfont.icon-gonggao::before,
.header .iconfont.icon-danghui1::before,
.header .iconfont.icon-benkejiaoxue::before,
.header .iconfont.icon-yanjiushengjiaoyu::before,
.header .iconfont.icon-xuetuangongzuo-1::before,
.header .iconfont.icon-kexueyanjiu::before,
.header .iconfont.icon-deyuzaixian::before {
  font-weight: normal;
  margin-right: 3px;
}

aside {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

aside a {
  color: black;
}

aside ul i {
  display: block;
  width: 24px;
  height: 24px;
  margin: 24px;
}

aside ul i::before {
  font-size: 24px;
}

aside ul {
  list-style-type: none;
  overflow: auto;
}

aside .first-menu {
  float: right;
  width: 60%;
  height: 100%;
  background: rgb(241, 243, 245);
}

aside ul li {
  display: block;
  text-align: left;
  text-decoration: none;
  padding: 12px 24px;
}

aside ul li.selected {
  background: #fff;
}

aside .first-menu .first-menu-item {
  padding: 36px 24px 12px;
}

aside .second-menu {
  padding: 12px 0;
}

.selected .second-menu {
  display: block;
}

aside .second-menu {
  display: none;
}

header>.iconfont.icon-mulu {
  display: none;
}

main {
  background-image: url("./body-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

@media screen and (max-width: 940px) {
  main {
      padding: 24px;
  }
  nav,
  .search-block {
      display: none;
  }
  header>.iconfont.icon-mulu {
      display: block;
      float: right;
      color: #fff;
      margin: 0 6px;
      font-size: 24px;
  }
  header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-right: 42px;
      padding: 12px;
  }
  header .header-img {
      max-width: 80%;
  }
  .news-notice {
      flex-flow: row wrap;
  }
  .news-notice .notice {
      margin-top: 24px;
  }
  .content .block {
      margin-top: 24px;
  }
  .news-notice .news,
  .news-notice .notice,
  .content .block {
      width: 100%;
  }
  footer .lr {
      flex-flow: column-reverse;
  }
  footer .lr .marx-logo {
      margin-bottom: 24px;
  }
  footer .copyright {
      margin-top: 12px;
  }
}

@media screen and (max-width: 480px) {
  .news-list {
      display: none;
  }
  .news .main .image-block ul {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
  }
  .news .main .image-block ul li {
      display: inline;
      height: 21px;
      margin-left: 21px;
      float: left;
  }
  .news .main .image-block ul li::before {
      content: '';
      display: list-item;
  }
  footer {
      padding: 0 24px;
  }
  .kv {
      flex-flow: column;
  }
  .kv .key {
      flex: auto;
      margin-bottom: 12px;
  }
}