/***********全局重置CSS*****************/
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
dd {
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol,
li {
  padding-left: 0;
  list-style-type: none;
}

/***消除img默认边框*****/
img {
  border: 0;
  display: inline-block;
}

a {
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
}

/*细线表格*/
table {
  border-collapse: collapse;
}

em {
  font-style: normal;
}

/***默认让所有浏览器出现右边滚动条****/
html {
  font-size: 16px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/***默认清除浮动****/
body {
  font-family: "微软雅黑", "sans-serif", "Arial";
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.conter {
  max-width: 70%;
  margin: 0 auto;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.nav-bt {
  display: none;
}

.cont_tit {
  /* display: flex; */
  /* align-items: flex-end; */
  position: relative;
}

/* .cont_tit:after {
  content: "";
  position: absolute;
  background: url("../images/index20231114_8.png") center center no-repeat;
  background-size: 100% auto;
  width: 32.375em;
  height: 4em;
  left: -1.75em;
  bottom: -2.5em;
}

.cont_tit p {
  display: inline-block;
  font-size: 2.1875em;
  padding-right: 0.5285em;
  line-height: 1.1;
  position: relative;
  margin-right: 0.6285em;
  font-weight: 600;
  color: #a8292e;
}

.cont_tit p:after {
  content: "";
  position: absolute;
  height: 0.9142em;
  width: 0.0857em;
  left: 100%;
  bottom: 0.0257em;
  background: #cda667;
}

.cont_tit span {
  display: inline-block;
  font-size: 0.9375em;
  padding-bottom: 0.1875em;
  color: #b1b1b1;
} */

.top {
  width: 100%;
  bottom: calc(100% - 5em);
  padding-bottom: 5em;
  left: 0;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  z-index: 99;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.top .top_cont {
  box-shadow: 0 0 5px 0 #0000001e;
  background: #fff;
  width: 100%;
}

.top.untop {
  bottom: calc(100% - 2em);
  padding-bottom: 2em;
}

.top.untop:hover {
  bottom: calc(100% - 7em);
}

.top .conter {
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5em;
}

.top .logo {
  width: 28%;
  display: flex;
  align-items: center;
}

.top .logo img {
  width: 100%;
}

.top .logo a:first-child img {
  width: auto;
  height: 48px;
  margin-right: 20px;
}

.top .menu {
  color: #333;
  display: flex;
  max-height: calc(100vh - 5em);
  align-items: center;
  z-index: 130;
}

.top .menu .ind {
  margin-right: 2em;
  display: flex;
  align-items: center;
}

.top .menu .ind > li {
  margin: 0 1.2em;
  height: 5em;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.top .menu .ind > li:hover > a {
  color: #cea769;
}

.top .menu .ind .active > a {
  color: #cea769;
}

/* .top .menu .ind>li:hover .sub {
	display:flex;
}
*/
.top .menu .ind a {
  font-size: 1.125em;
}

.top .menu .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: calc((100% - 10.4375em) / 2);
  width: 10.4375em;
  background: #fff;
  padding: 0.875em 0 1em;
  flex-direction: column;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 0 5px 0 #cda66730;
  z-index: 88;
}

.top .menu .sub > li {
  width: 100%;
}

.top .menu .sub a {
  padding: 0.5em 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-size: 1em;
}

.top .menu .sub a:hover {
  background: linear-gradient(-90deg, #cda668, #f2dd9f);
  color: #fff;
}

.top .search_box {
  display: flex;
  align-items: center;
}

.top .search_box > * {
  margin-right: 0.5em;
}

.top .search_box a img {
  width: 1.75em;
}

.top .search {
  width: 16.3125em;
  position: relative;
}

.top .search input {
  width: 100%;
  outline: none;
  padding: 0;
  border: 1px solid #b5b5b5;
  border-radius: 50px;
  height: 1.875em;
  box-sizing: border-box;
  padding-left: 0.75em;
  font-size: 1em;
}

.top .search input::placeholder {
  font-size: 0.875em;
  color: #d2d2d2;
}

.top .search button {
  position: absolute;
  background: url("../images/index20231114_4.png") center center no-repeat;
  background-size: 100% auto;
  width: 1.125em;
  height: 1.25em;
  top: calc((100% - 1.25em) / 2);
  right: 0.875em;
  border: 0;
  padding: 0;
  outline: none;
  font-size: 1em;
  cursor: pointer;
}

.footer {
  height: auto;
  padding: 5em 0 8.5em;
  background: url("../images/index20231114_32.png") left bottom no-repeat;
  background-size: 100% auto;
}

.footer .conter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer .link {
  width: 25.6666%;
  margin-right: 5%;
}

.footer .link .tit {
  font-size: 1.3125em;
  color: #333;
}

.footer .link .select {
  margin-top: 1.625em;
  width: 100%;
  padding: 0.625em 1em;
  box-sizing: border-box;
  border: 1px solid #939393;
  position: relative;
  cursor: pointer;
}

.footer .link .select span {
  color: #6f6f6f;
  font-size: 1.125em;
}

.footer .link .select:after {
  content: "";
  position: absolute;
  border-left: 0.5em solid transparent;
  border-right: 0.5em solid transparent;
  border-top: 0.5em solid #cea769;
  top: calc((100% - 0.5em) / 2);
  right: 0.8125em;
  transition: all 0.5s;
}

.footer .link .select .list {
  display: none;
  position: absolute;
  bottom: calc(100% + 1px);
  left: 0;
  width: 100%;
  height: 11.4em;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 -5px 5px 0 rgba(255, 255, 255, 0.3);
  z-index: 100;
}

/* .footer .link .select:hover .list {
  display: flex;
} */

.footer .link .select ul {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 0.25em 0.75em 0.25em 1.125em;
  border-radius: 0.5em;
  border: 0.1em solid #e0e0e0;
  border-bottom: none;
}

.footer .link .select ul::-webkit-scrollbar {
  background: #ededed;
  width: 0.375em;
}

.footer .link .select ul::-webkit-scrollbar-thumb {
  background: #a0a0a0;
}

.footer .link .select ul li {
  width: 100%;
}

.footer .link .select ul a {
  font-size: 1.125em;
  padding: 0.7222em 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  border-bottom: 1px solid #dcdcdc;
  color: #333;
}

.footer .link .select ul a:hover {
  color: #cda667;
}

.footer .link .select.show .list {
  display: block;
}

.footer .link .select.show:after {
  transform: rotate(180deg);
}

.footer .link .lj {
  margin-bottom: 3.625em;
}

.footer .info {
  width: 69.3334%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 1.5em;
}

.footer .info .footer_menu {
  width: 100%;
  flex-basis: 100%;
  margin-bottom: 1.225em;
}

.footer .info .footer_menu ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

.footer .info .footer_menu a {
  display: flex;
  align-items: center;
  font-size: 1.225em;
  white-space: nowrap;
}

.footer .info .footer_menu img {
  margin-right: 0.5em;
  height: 1.2285em;
}

.footer .info .text span {
  display: flex;
  align-items: center;
  padding: 0.45em 0;
  font-size: 1.075em;
  color: #7e7e7e;
  background: #f9f9f9;
  font-family: SHSCR, "sans-serif", "Arial";
}

.footer .info .text {
  flex-basis: 70%;
  background: #f9f9f9;
  padding: 0.5em 1.6em;
  box-sizing: border-box;
}

.footer .info .text span img {
  width: 1.2333em;
  margin-right: 0.5em;
}

.footer .info .ewm {
  text-align: center;
  box-sizing: border-box;
  background: #f9f9f9;
  flex-basis: calc(30% - 1.5em);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.6em;
  justify-content: center;
  color: #7e7e7e;
}

.footer .info .ewm p span {
  display: block;
}

.footer .info .ewm img {
  width: 6.25em;
}

.footer .info .footer_menu ul li:hover img {
  -webkit-animation-duration: 0.7s;
  -moz-animation-duration: 0.7s;
  -o-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-name: rateRight;
  -moz-animation-name: rateRight;
  -o-animation-name: rateRight;
  animation-name: rateRight;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@font-face {
  font-family: SHSCR;
  src: url("../images/SourceHanSansCN-Regular.otf") format("opentype");
}

.bg {
  margin-top: 5em;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.bg img {
  width: 100%;
}

/* .title {
  padding-top: 3.375em;
  margin-bottom: 4.375em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title .crumb {
  color: #585858;
  font-size: 1.125em;
}

.title .crumb a {
  margin: 0 0.4375em;
  display: inline-block;
} */

/* .cont {
  width: 100%;
  overflow-x: auto;
}

.cont::-webkit-scrollbar {
  display: none;
}

.cont .tis {
  box-sizing: border-box;
  border-bottom: 0.125em solid #cda767;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 2em;
  padding-top: 0.2em;
}

.cont .tis a {
  font-size: 1.3125em;
  padding-bottom: 1.5238em;
  line-height: 1;
  position: relative;
  cursor: pointer;
  text-align: center;
}

.cont .tis a.hover {
  font-weight: bold;
  color: #cda667;
}

.cont .tis a.hover:after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  border-color: #cda667 #cda667 #fff #fff;
  border-style: solid;
  border-width: 0.1em;
  top: calc(100% - 0.49em);
  left: 50%;
  background: #fff;
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
} */

.customBootstrap {
  text-align: center;
  padding: 0 4em;
}

.customBootstrap .pagination > li > a {
  margin-right: 0.3em;
  border-radius: 2px;
  background: #fff;
  color: #333;
  border-color: #ccc;
  padding: 0.3em 0.8em;
  font-size: 0.9em;
  line-height: 1.7em;
  margin-bottom: 1em;
}

.customBootstrap .pagination > li > a:hover,
.customBootstrap .pagination > li > a:focus {
  color: #fff;
  background: linear-gradient(#f1db9d, #cda768);
  border-color: #f1db9d;
}

.customBootstrap .pagination > .active > a,
.customBootstrap .pagination > .active > a:hover,
.customBootstrap .pagination > .active > a:focus {
  color: #fff;
  background: linear-gradient(#f1db9d, #cda768);
  border-color: #f1db9d;
}

.customBootstrap .pagination > .disabled > a,
.customBootstrap .pagination > .disabled > a:hover,
.customBootstrap .pagination > .disabled > a:focus {
  color: #999;
  background: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.left-time {
  box-sizing: border-box;
  border: 2px solid #cda667;
  width: 5.18em;
  height: 5.7em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #cda667;
  margin-right: 2em;
}

.left-time .day {
  font-size: 2.48em;
}

.year-month {
  font-size: 1em;
}

.datalist li:hover .left-time {
  border: transparent;
  background: linear-gradient(#f1db9d, #cda768);
  color: #fff;
}

.datalist li .list-title a {
  font-weight: 400;
}

.datalist li:hover .list-title a {
  font-weight: 600;
  color: #cda768;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    /* transform:translateX(100%);
	*/
  }

  100% {
    opacity: 1;
    /* transform:translateX(0) */
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rateRight {
  0% {
    transform: rotate(30deg);
  }

  33% {
    transform: rotate(0deg);
  }

  66% {
    transform: rotate(30deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.footer .conter .info .ewm p {
  /* width: 52%; */
  text-align: center;
}

@media (max-width: 800px) {
  html {
    font-size: 12px !important;
  }

  .crumb {
    display: none;
  }

  .cont .tis a.hover:after {
    top: calc(100% - 0.58em);
  }

  .cont .tis {
    overflow: visible;
    min-width: 100%;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    padding-top: 0.2em;
  }

  .cont::-webkit-scrollbar {
    display: none;
  }

  .cont .tis a {
    white-space: nowrap;
    display: inline-block;
    /* width: 8em; */
    font-size: 1.3125em;
    padding-bottom: 1.5238em;
    line-height: 1;
    position: relative;
  }

  .footer {
    height: auto;
    padding: 7em 0 8.5em;
    background: url("../images/index20231114_32.png") center no-repeat;
    background-size: 220% 100%;
  }
  .fixed {
    position: fixed;
    bottom: 0;
  }

  .footer .conter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer .conter .box {
    display: none !important;
  }

  .footer .link {
    width: 25.6666%;
    margin-right: 5%;
  }

  .footer .link .tit {
    font-size: 1.3125em;
    color: #333;
  }

  .footer .link .select {
    margin-top: 1.625em;
    width: 100%;
    padding: 0.625em 1em;
    box-sizing: border-box;
    border: 1px solid #939393;
    position: relative;
    cursor: pointer;
  }

  .footer .link .select span {
    color: #6f6f6f;
    font-size: 1.125em;
  }

  .footer .link .select:after {
    content: "";
    position: absolute;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-top: 0.5em solid #cea769;
    top: calc((100% - 0.5em) / 2);
    right: 0.8125em;
    transition: all 0.5s;
  }

  .footer .link .select .list {
    display: none;
    position: absolute;
    bottom: calc(100% + 1px);
    left: 0;
    width: 100%;
    height: 11.4em;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 -5px 5px 0 rgba(255, 255, 255, 0.3);
    z-index: 100;
  }

  .footer .link .select ul {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    padding: 0.25em 0.75em 0.25em 1.125em;
  }

  .footer .link .select ul::-webkit-scrollbar {
    background: #ededed;
    width: 0.375em;
  }

  .footer .link .select ul::-webkit-scrollbar-thumb {
    background: #a0a0a0;
  }

  .footer .link .select ul li {
    width: 100%;
  }

  .footer .link .select ul a {
    font-size: 1.125em;
    padding: 0.7222em 0;
    width: 100%;
    display: inline-block;
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
    color: #333;
  }

  .footer .link .select ul a:hover {
    color: #cda667;
  }

  .footer .link .select.show .list {
    display: block;
  }

  .footer .link .select.show:after {
    transform: rotate(180deg);
  }

  .footer .link .lj {
    margin-bottom: 3.625em;
  }

  .footer .info {
    width: 69.3334%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }

  .footer .info .footer_menu {
    width: 100%;
    margin-bottom: 1.125em;
  }

  .footer .info .footer_menu ul {
    display: flex;
    justify-content: space-between;
  }

  .footer .info .footer_menu a {
    display: flex;
    align-items: center;
    font-size: 1.3125em;
  }

  .footer .info .footer_menu img {
    margin-right: 0.5em;
    height: 1.4285em;
  }

  .footer .info .text span {
    display: flex;
    align-items: center;
    padding: 0.75em 0;
    font-size: 1.125em;
    color: #7e7e7e;
    font-family: SHSCR, "sans-serif", "Arial";
  }

  .footer .info .text span img {
    width: 1.3333em;
    margin-right: 0.5em;
  }

  .footer .info .ewm {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer .info .ewm img {
    margin-left: 1.6875em;
    width: 7.25em;
  }

  .footer .info .ewm p {
    text-align: center;
    color: #333;
    margin-left: 1.6875em;
    line-height: 1.5em;
  }

  .footer .Top {
    position: absolute;
    bottom: 9.1875em;
    right: 2.8em;
  }

  .footer .Top img {
    width: 4em;
    height: 4em;
  }

  .footer {
    padding-bottom: 11em;
  }

  .footer .link {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .footer .link > div {
    width: 48%;
  }

  .footer .info {
    width: 100%;
  }

  .footer .info .ewm {
    right: 0;
    top: 3em;
  }

  .banner {
    height: auto;
  }

  .page_banner {
    height: 300px !important;
  }

  .page_banner .pos {
    top: 36% !important;
    margin: unset !important;
  }

  .w1200 {
    width: 100%;
  }

  .subnav {
    height: 50px;
  }

  .subnav .fl {
    display: none;
  }

  .subnav .fr {
    float: unset;
  }

  .subnav .fr a {
    line-height: 50px;
  }

  .about_us .brief .br_img img {
    scale: 1.4;
    margin: 60px 0 30px;
  }

  .organization .org01 img {
    max-width: 95%;
  }

  .speech .briefs .br_img img {
    scale: 1.4;
    margin: 60px 0 30px;
  }

  .information ul li a {
    padding: 20px;
  }

  .information ul li a .pic {
    float: unset;
    width: 100%;
    object-fit: cover;
  }

  .information ul li a .next {
    float: unset;
    width: 100%;
    margin-top: 12px;
  }

  .information ul li a .next b {
    margin-bottom: 14px;
  }

  .information ul li a .next p {
    margin-bottom: 10px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .information ul li a .next i {
    float: right;
    font-size: 16px;
  }

  .policy ul li a {
    padding: 30px 16px 30px;
    display: flex;
    box-sizing: border-box;
  }

  .policy ul li a .next {
    width: 100%;
  }

  .policy ul li a .time {
    float: unset;
    margin-right: 12px;
  }

  .policy ul li a .time b {
    font-size: 32px;
  }

  .policy ul li a .time p {
    font-size: 16px;
  }

  .policy ul li a .next p {
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .pagination {
    margin: 0 1%;
  }

  .new_xq {
    padding-bottom: unset;
    background: #fff;
  }

  .new_xq .subnav {
    display: none;
  }

  .new_xq .w1200 {
    margin-top: 50px;
  }

  .new_xq .w1200 .next {
    padding: 0 16px;
    box-shadow: none;
  }

  .new_xq .w1200 .title {
    font-size: 20px;
    font-weight: 600;
  }

  .new_xq .w1200 .next .go div.clearfix {
    display: flex;
    align-items: center;
  }

  .new_xq .w1200 .next .go i {
    width: 80px;
    height: 40px;
  }

  .new_xq .w1200 .next .go a {
    margin-left: 10px;
    line-height: unset;
  }

  .bus01 {
    background: #fff;
  }

  .bus01 .left {
    float: unset;
    width: 100%;
    height: auto;
    padding: 1px 0 50px;
  }

  .bus01 .left .text {
    width: 92%;
  }

  .bus01 .left .text b {
    margin-top: 60px;
    padding-bottom: 24px;
    font-size: 28px;
  }

  .bus01 .left .text p {
    font-size: 16px;
    line-height: 28px;
  }

  .bus01 .picture {
    margin-top: 40px;
  }

  .bus01 .mod18 {
    float: unset;
    width: 100%;
    height: auto;
  }

  .bus01 .mod18 .listBox {
    height: 800px;
  }

  .bus01 .mod18 .listBox ul {
    height: 800px;
  }

  .bus01 .mod18 .btn {
    top: 50%;
  }

  .bus01 .mod18 .listBox ul li a {
    height: 800px;
  }

  .bus01 .mod18 .listBox ul li a .pos {
    top: 38%;
  }

  .project .pro01 {
    width: 92%;
    margin: 0 auto;
  }

  .project .pro01 .left i {
    display: none;
  }

  .project .pro01 .left b {
    margin-top: 40px;
    font-size: 65px;
  }

  .project .pro01 .right {
    float: unset;
    width: 100%;
  }

  .project .pro01 .right .pic .bd {
    width: 100%;
    height: auto;
  }

  .project .pro01 .right .pic .bd .list {
    width: 100% !important;
    height: 400px !important;
  }

  .project .pro01 .right .pic .bd .list li {
    width: 100% !important;
    height: 100%;
  }

  .project .pro01 .right .pic .bd .list li a {
    height: 100%;
  }

  .project .pro01 .right .pic .bd .list li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .project .pro01 .b {
    padding: 24px 0 30px;
  }

  .resources .tit b {
    padding: 40px 0 20px;
    font-size: 24px;
  }

  .resources .tit p {
    font-size: 16px;
  }

  .resources .res03 {
    width: 92%;
    margin: 0 auto;
  }

  .resources .res03 .tit b {
    padding: 10px 0 40px;
  }

  .resources .res03 .list {
    width: 100%;
  }

  .resources .res03 .list ul {
    width: 100%;
  }

  .resources .res03 .list ul li {
    width: 32%;
  }

  .resources .res03 .list ul li .r {
    right: 10px;
    top: 36px;
  }

  .resources .res03 .list ul li a .icon {
    width: 95px;
    height: 95px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .resources .res03 .list ul li a .icon p {
    padding: unset;
    width: 50px;
    height: 50px;
  }

  .resources .res03 .text .fl {
    width: 100%;
    float: unset;
  }

  .resources .res03 .download {
    padding: 0 8px;
    width: 150px;
    line-height: 45px;
    font-size: 16px;
  }

  .contact_us .con01 .left {
    width: 100%;
    height: 400px;
    float: unset;
  }
  .contact_us .con01 .left #dituContent {
    height: 400px !important;
  }

  .contact_us .con01 .right {
    width: 100%;
    height: 400px;
  }

  .contact_us .con01 .right .text {
    width: 90%;
    line-height: 24px;
  }

  .contact_us .con01 .right .text b {
    padding: 40px 0 30px;
    font-size: 28px;
  }

  .contact_us .con01 .right .text div {
    padding-bottom: 25px;
  }

  .current-list .list-item {
    position: relative;
    padding: 0 0 60px;
    justify-content: unset;
    align-items: unset;
    flex-direction: column;
    border-bottom: 1px solid #eee;
  }

  .current-list .next {
    width: 80%;
    position: absolute;
    top: 160px;
    right: 0;
  }

  .current-list .pic {
    width: auto;
    height: 150px;
    object-fit: cover;
  }

  .current-list .date {
    color: #333;
    width: unset;
    text-align: left;
    padding: unset;
  }

  .current-list .date .day {
    font-size: 30px;
  }
  .current-list .date .year-month {
    font-size: 15px;
  }

  .current-list .next-title {
    color: #333;
    font-size: 18px;
    margin-bottom: 6px;
    height: 48px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .current-list .next-centent {
    margin-left: -25%;
    color: #b1b1b1;
  }

  .wap,
  .dqwz {
    display: none !important;
  }

  .tyxl .lm {
    top: 0;
    padding: unset;
  }

  .tyxl .lm .detail {
    padding: 1em;
  }

  .tyxl .control {
    flex-direction: column;
  }

  .tyxl .control .black {
    text-align: right;
  }

  .c-container {
    width: 92%;
    margin: 0 auto;
    padding: 0;
  }

  .c-container .main-card {
    height: auto;
    width: 100%;
    margin: 18px 0 0;
  }

  .c-container .main-card li {
    margin-bottom: 20px;
  }

  .contact-us {
    flex-direction: column;
  }

  .contact-us > div > div {
    align-items: center;
  }

  .contact-us .icon {
    width: 30px;
    height: 30px;
  }

  .contact-us .qr-code {
    margin-top: 12px;
    width: 170px;
  }

  .news {
    padding: 0 20px;
    margin-bottom: 16px;
    height: 120px;
  }
  .news .dddate {
    width: 28%;
    margin-right: unset;
  }
  .dddate em {
    font-size: 26px;
  }
  .news dd div:nth-child(2) {
    width: 72%;
  }

  .layui-laypage-pageTheme span,
  .layui-laypage-pageTheme a {
    font-size: 1rem !important;
  }

  .acticle-content img {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 580px) {
  .cont_tit {
    width: 100%;
  }

  .cont_tit span {
    width: calc(100% - 12.2em);

    font-size: 0.9375em;
    padding-bottom: 0.1875em;
    color: #b1b1b1;
  }

  .conter {
    max-width: 100%;
  }

  .top .conter {
    margin: unset;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5em;
  }

  .top .logos {
    width: 50%;
  }

  .top .logo {
    width: 50%;
    margin-left: 2em;
  }

  .top .logo a img {
    width: auto;
    height: 2.5em !important;
  }

  .top .menu .ind a {
    font-size: 1.1666em;
  }

  .top .menu {
    width: 100%;
    display: block;
    position: absolute;
    top: 5em;
    left: 0;
    background: #fff;
    transform-style: preserve-3d;
    border-top: 1px solid #dfdada;
    z-index: 99;
  }

  .mask {
    display: none;
    position: fixed;
    top: 5em;
    left: 0;
    height: 100vh;
    transform: translateZ (-1px);
    background: rgba(51, 51, 51, 0.237);
    width: 100%;
  }

  .cont .tis {
    justify-content: space-around !important;
    overflow: visible;
    white-space: nowrap;
    text-align: center;
  }

  .cont .tis a {
    display: inline-block;
    margin: 0px 0.75rem !important;
    padding: 0 0.25rem !important;
    line-height: 4rem !important;
    font-size: 1.32rem !important;
  }
  .cont .tis a:last-child {
    margin-right: 0;
  }

  .cont .tis .hover {
    font-weight: bold;
    color: #047fc3 !important;
    background: unset !important;
  }

  .title .crumb {
    display: none;
  }

  .top .menu .ind {
    margin: 0;
    display: block;
    width: 100%;
  }

  .top .search_box {
    width: 100%;
    justify-content: center;
    margin: 1em 0;
  }

  .top .search {
    width: 70vw;
  }

  .footer {
    padding: 0;
    margin-top: 6em;
  }

  .footer .conter {
    margin: 0 4% !important;
  }

  .cz .swiper-box {
    padding: 0 2em;
  }

  .footer .info {
    gap: 1em;
    margin-bottom: 2em;
  }

  .footer .info .footer_menu img {
    margin-right: 0.2em;
    height: 1.1285em;
  }

  .footer .info .footer_menu a {
    display: flex;
    align-items: center;
    font-size: 1.225em;
  }

  .footer .info .footer_menu ul {
    flex-wrap: nowrap;
  }

  .footer .info .ewm img {
    width: 6em;
    /* margin: 0; */
  }

  .footer .info .text {
    flex-basis: 70%;
    background: unset;
    padding: unset;
    box-sizing: border-box;
  }

  .footer .info .text span {
    display: flex;
    align-items: flex-start;
    padding: 0.55em 0;
    font-size: 1em;
    color: #5f5f5f;
    font-family: SHSCR, "sans-serif", "Arial";
    background: unset;
  }

  .footer .info .ewm {
    background: unset;
    font-size: 1em;
    flex-direction: column;
    flex-wrap: wrap-reverse;
    flex-basis: calc(30% - 1.5em);
  }

  .footer .link .select:hover .list {
    display: flex;
  }

  .nav-bt {
    display: inline-block;
    width: 2em;
    cursor: pointer;
    margin-right: 1em;
  }

  .top .menu {
    overflow-y: auto;
    transition: all ease 0.1s;
    z-index: 130;
    display: none;
  }

  .top .menu .ind a {
    display: inline-block;
    padding: 1em 0;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
  }

  .top .menu .ind a::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-50vw + 50%);
    height: 100%;
    width: 100vw;
  }

  .top .menu .ind .active > a {
    border-bottom: 2px solid #cda767;
  }

  .top .menu .ind > li {
    margin: 0 2em;
    height: auto;
    display: block;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid #ebe9e9;
    font-weight: bold;
    font-size: 1.2em;
  }

  .top .menu .sub {
    display: none;
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    flex-direction: column;
    border-top: 1px solid #ebe9e9;
    box-shadow: none;
    z-index: 99;
  }

  .top .menu .sub a {
    padding: 0.5em 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    color: #8c8a8a;
    font-size: 1em;
  }

  .top .search_box {
    display: flex;
    align-items: center;
  }

  .top .search_box > * {
    margin-right: 0.5em;
  }

  .top .search_box a img {
    width: 1.75em;
  }

  .top .search input {
    width: 100%;
    outline: none;
    padding: 0;
    border: 1px solid #b5b5b5;
    border-radius: 50px;
    height: 1.875em;
    box-sizing: border-box;
    padding-left: 0.75em;
    font-size: 1.2em;
  }

  .top .search input::placeholder {
    font-size: 0.875em;
    color: #d2d2d2;
  }

  .top .search button {
    position: absolute;
    background: url("../images/index20231114_4.png") center center no-repeat;
    background-size: 100% auto;
    width: 1.125em;
    height: 1.25em;
    top: calc((100% - 1.25em) / 2);
    right: 0.875em;
    border: 0;
    padding: 0;
    outline: none;
    font-size: 1em;
    cursor: pointer;
  }
}
