.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 0 80PX;
}

.header .header_logo {
  display: flex;
  align-items: center;
  width: 40%;
  height: 100PX;
  font-size: 30PX;
  color: #fff;
}

.header .header_logo > a > img {
  width: 108PX;
  margin-right: 20PX;
}

.header .header_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  box-sizing: border-box;
}

.header .header_list > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100PX;
}

.header .header_list > li > a {
  display: flex;
  align-items: center;
  height: 100PX;
  font-size: 18PX;
  color: #999999;
}
.header .header_list > li>span{
  display: none;
}

.header .header_list > li > a:hover, .header .header_list .active a{
  color: #fff;
}

.header .header_list>.active::after{
  display: block;
}

.header .header_list > li::after{
  display: none;
  content: "";
  position: absolute;
  top: 20PX;
  left: 0;
  bottom: 60PX;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 0.15rem solid transparent;
  border-right: 0.15rem solid transparent;
  border-top: 0.15rem solid #ffffff;
}

.header .header_list > li:hover::after {
  display: block;
}

.header .header_list > li .header_hover_twolist {
  display: none;
  position: fixed;
  top: 100PX;
  left: 0;
  width: 100%;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.45);
}

.header .header_list > li .header_hover_twolist > .container {
  display: flex;
  min-width: 1200PX;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 30PX 0;
}

.header .header_list > li .header_hover_twolist .twolist_img {
  width: 15%;
  height: 89PX;
  position: relative;
}

.header .header_list > li .header_hover_twolist .twolist_img > img {
  width: 100%;
}

.header .header_list > li .header_hover_twolist .twolist_img > span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 34PX;
  font-size: 20PX;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.55);
}

.header .header_list > li .header_hover_twolist .twolist_main {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
}

.header .header_list > li .header_hover_twolist .twolist_main > li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40PX;
  width: auto;
}

.header .header_list > li .header_hover_twolist .twolist_main > li > a {
  font-size: 16PX;
  color: #ffffff;
  width: 200px;
}

.header .header_list > li:hover .header_hover_twolist {
  display: block;
}

.header .header_list > span {
  display: block;
  width: 1PX;
  height: 12PX;
  background-color: #fff;
}

.header .header_list > span:last-child {
  display: none;
}

.header .header_list .header_search {
  position: relative;
  display: flex;
  align-items: center;
  height: 100PX;
}

.header .header_list .header_search > input {
  width: 124PX;
  height: 23PX;
  border-radius: 13PX;
  outline: none;
  border: none;
  box-sizing: border-box;
  padding: 0 30PX 0 10PX;
  font-size: 14PX;
}

.header .header_list .header_search .header_search_btn {
  position: absolute;
  right: 2PX;
  top: 0;
  left: 90PX;
  bottom: 0;
  width: 15PX;
  margin: auto;
  cursor: pointer;
  background-image: url(/dist/images/include/search.png);
  background-color: #fff;
  border: 0;
  height: 15px;
}

.header .header_app {
  display: none;
}

@media screen and (max-width: 1500px) {
  .header {
    padding: 0 20PX;
  }

  .header .header_logo {
    width: 10%;
  }

  .header .header_logo > span {
    display: none;
  }

  .header .header_list {
    width: 80%;
  }
}

@media screen and (max-width: 1050px) {
  .header > .header_list > .header_search {
    display: none;
  }

  .header > .header_list > li .header_hover_twolist .twolist_img {
    display: none;
  }

  .header > .header_list > li .header_hover_twolist .twolist_main {
    width: 100%;
  }

  .header > .header_list > li .header_hover_twolist .twolist_main > li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40PX;
  }

  .header > .header_list > li .header_hover_twolist .twolist_main > li > a {
    font-size: 16PX;
    color: #ffffff;
  }
}

@media screen and (max-width: 768px) {
  .header {
    background-color: #000000;
  }

  .header .header_logo {
    width: 30%;
  }

  .header .header_list {
    display: none;
    position: absolute;
    top: 100PX;
    left: 0;
    flex-direction: column;
    width: 100%;
    background-color: #000000;
  }
  .header .header_list>.active::after{
    display: none;
  }

  .header .header_list > li {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0.75rem 0.5rem;
    box-sizing: border-box;
  }

  .header .header_list > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 0.7rem;
    color: #ffffff;
  }

  .header .header_list > li > a:hover {
    color: #999999;
  }

  .header .header_list > li > span {
    display: block;
    position: absolute;
    cursor: pointer;
    color: #ffffff;
    right: 0.5rem;
    top: 0.5rem;
    font-size: 1rem;
  }

  .header .header_list > li .hide_sub {
    display: none;
  }

  .header .header_list > li:hover::after {
    display: none;
  }

  .header .header_list > li .header_hover_twolist {
    background-color: #000000;
    display: none;
    position: static;
  }

  .header .header_list > li .header_hover_twolist .container {
    padding: 0.75rem 0;
    flex-direction: column;
  }

  .header .header_list > li .header_hover_twolist .twolist_main {
    display: flex;
    flex-direction: column;
  }

  .header .header_list > li .header_hover_twolist .twolist_main > li {
    width: 100%;
    box-sizing: border-box;
    height: auto;
    padding: 0.5rem 0.5rem;
    justify-content: left;
  }

  .header .header_list > li .header_hover_twolist .twolist_main > li > a {
    font-size: 0.6rem;
  }

  .header .header_list > li:hover .header_hover_twolist {
    display: none;
  }

  .header .header_list > span {
    display: none;
  }

  .header .header_app {
    display: block;
    height: 100PX;
    position: relative;
  }

  .header .header_app > span {
    position: absolute;
    top: 40%;
    right: 5%;
    font-size: 1rem;
    color: #ffffff;
    cursor: pointer;
  }

  .header .header_app #hide {
    display: none;
  }
}

.content_page {
  margin-top: 35PX;
}

.content_page ul {
  display: flex;
  justify-content: center;
}

.content_page ul li {
  width: 35PX;
  height: 35PX;
  margin-left: 15PX;
  box-sizing: border-box;
  background-color: #cecece;
  font-size: 18PX;
  color: #fff;
  text-align: center;
  line-height: 32PX;
  border: 0.025rem solid #cbcbcb;
}

.content_page ul li a {
  font-size: 18PX;
  color: #fff;
}

.content_page ul li:first-child {
  margin-left: 0;
  width: 80px;
}
.content_page ul li:last-child {
  width: 80px;
}

.content_page ul .disabled {
  width: 80PX;
  height: 35PX;
  cursor: pointer;
}

.content_page ul .active {
  background-color: #ff0000;
}


@media screen and (max-width: 768px) {
  .content_page {
    margin-top: 0.875rem;
  }

  .content_page ul li {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.375rem;
    font-size: 0.7rem;
    line-height: 1.2rem;
  }

  .content_page ul li {
    font-size: 0.7rem;
  }

  .content_page ul .disabled {
    width: 2.5rem;
    height: 1.25rem;
  }
}