body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
}
a {
  text-decoration: none;
}
@keyframes hideShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 淡出动画 */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.app {
  margin: 0px;
  padding: 0px;
  width: 100%;
  min-width: 1300px;
}
.top {
  /* width: 1920px; */
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-message {
  /* width: 257px; */
  /* height: 20px; */
  height: 100%;
  max-width: 1450px;
  min-width: 1300px;
  margin: auto;
  font-weight: bold;
  font-size: 14px;
  /* margin-left: 1583px; */
  color: #d5e5e1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}
.top-list {
  display: flex;
  margin: 0;
  padding: 0;
}
.top-list li {
  list-style: none;
  padding-bottom: 5px;
  padding-left: 10px;
}
.top-list a {
  color: #d5e5e1;
  font-size: 14px;
}
.top-list a:hover {
  color: #f7f7f7;
}
.header {
  /* width: 1920px; */
  height: 467px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  /* box-shadow: inset 0px 20px 20px 60px #505050,
                inset 0px -20px -20px 60px #adadad; */
  box-shadow: inset 0px 70px 90px -50px #272727,
    inset 0px -70px 90px -50px #272727;
}
.header-content {
  max-width: 1450px;
  /* min-width: 1300px; */
  height: 100%;
  margin: auto;
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;
}
.header-logo {
  padding-top: 14px;
  padding-left: 56px;
  position: absolute;
}
.header-nav {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.header-nav a {
  color: #ffffff;
  font-size: 18px;
}
.header-nav-list {
  list-style: none;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
}
.header-nav-item {
  padding-left: 45px;
  position: relative;
  padding-bottom: 20px;
}
.header-nav-item:hover > .hide-list {
  display: block;
  animation: hideShow 0.5s;
}
.bannerList {
  position: absolute;
  z-index: 0;
  height: 100%;
  display: flex;
  transition: 1s;
}

.hide-list {
  display: none;
  position: absolute;
  left: 18%;
  top: 30px;
  z-index: 9999;
  min-width: 120px;
  background: rgba(1, 161, 133, 0.9);
  list-style: none;
  padding: 0;
  overflow: hidden;
}
.hide-item {
  width: 100%;
  line-height: 40px;
}
.hide-item a {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 15px;
  text-align: center;
  color: #fff;
  font-weight: 400;
}
.hide-item a:hover {
  background-color: rgb(213, 235, 232);
  color: #00a185;
}
.searchButton {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-left: 20px;
  width: 140px;
  border: none;
  background-color: rgba(179, 209, 228, 0.9);
}
.searchButton:focus {
  outline: none;
  border: none;
}
.header-search {
  width: 100%;
  display: flex;
position: relative;
  justify-content: flex-end;
}
.searchIcon {
  cursor: pointer;
}

.header-tool {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 15px;
  position: absolute;
  width: 1450px;
  bottom: 0;
}
.header-tool-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 20px;
  font-weight: normal;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
}
.header-tool-item:hover {
  font-weight: bold;
}
footer {
  /* width: 1920px; */
  padding-top: 0px;
  margin-top: 0px;
  height: 307px;
  width: 100%;
  background-size: cover;
  /* background-image: url('../img/foot_dt.png'); */
}
.question {
  width: 440px;
}
.question-list {
  height: 495px;
  padding-left: 8px;
  /* margin-top: 20px; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  list-style: none;
  box-sizing: border-box;
  border-left: solid 6px #d4ece8;
  border-bottom: solid 6px #d4ece8;
}
.question-item {
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
}

.question-item:hover {
  color: #00a185;
  font-weight: bold;
}
.question-item-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}
.question-item-point {
  color: #00a185;
  margin-right: 10px;
  height: 6px;
  width: 6px;
  margin: 0 5px;
  background-color: #00a185;
  border-radius: 50%;
}
.addImg {
  display: flex;
  justify-content: center;
}
.line {
  width: 95%;
  height: 1px;
  background-color: #ebebeb;
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
  justify-items: center;
}
.public-item {
  padding: 10px;
  padding-top: 30px;
  height: 200px;
  position: relative;
  cursor: pointer;
  border: solid 2px #dadada;
}
.public-item:hover .public-item-title {
  color: #00a185;
}
.public-date-box {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.public-date {
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background-color: #00a185;
  height: 30px;
  border-radius: 20px;
  padding: 0 20px;
}
.public-item-content {
  font-size: 13px;
  overflow: hidden;
}
.footer-footet {
  color: #697074;
  display: flex;
  text-align: center;
  margin-bottom: 24px;
}
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-left {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-medium-0 {
  height: 75px;
  margin-top: 18px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-medium-1 {
  margin-top: 48px;
  height: 75px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-medium-2 {
  margin-top: 48px;
  height: 75px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-right {
  height: 200px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-container {
  margin-top: 30px;
  min-width: 1300px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 12px;
}
.dot {
  cursor: pointer;
  height: 5px;
  width: 5px;
  margin: 0 5px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.dot-active {
  background-color: #003436;
}
.square {
  width: 10px;
  height: 36px;
  background-color: #00a185;
}
.square2 {
  width: 36px;
  height: 10px;
  background-color: #00a185;
  margin-left: 10px;
}
.square4 {
  width: 70px;
  height: 7px;
  background-color: #d4ece8;
}

.rc-bottom .pb_sys_style3 .p_no_d {
    border: 1px solid #00a185;
    color: #fff;
    background-color: #00a185;
}
@media screen and (max-width: 1980px) {
  .bannerImg {
    height: 100%;
  }
}
@media screen and (min-width: 1980px) {
  .bannerImg {
    width: 100vw;
  }
}