/* 当前站点公共样式，如公共头部、公共页脚等 */
/* 全局变量 */
:root {
  --color-primary: #00757f;
  --color-secondary: #cfa484;
  --swiper-pagination-color: #047781;
  --swiper-pagination-bullet-inactive-color: #047781;
}
body {
  background-color: #fff;
}
/* 引入宋体 */
@font-face {
  font-family: 'SourceHanSerifCN';
  src: url('../font/SourceHanSerifCN.ttf');
}
/* 头部样式 */
header .pc-header {
  width: 100%;
  height: 169px;
  background-image: url(../images/pc-header-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
header .pc-header .inner {
  padding-top: 35px;
}
header .pc-header .inner .top {
  width: 100%;
  height: 42px;
  display: flex;
  justify-content: space-between;
}
header .pc-header .inner .top .logo-title {
  max-width: 216px;
  max-height: 34px;
}
header .pc-header .inner .top .top-link {
  display: flex;
  align-items: center;
}
header .pc-header .inner .top .top-link .line {
  width: 1px;
  height: 15px;
  background-color: #fff;
  margin: 0 10px;
}
header .pc-header .inner .top .top-link .link {
  font-size: 16px;
  color: #FFFFFF;
    cursor: pointer;
}
header .pc-header .inner .top .top-link .search-logo {
  width: 37px;
  height: 37px;
  margin-left: 15px;
}
header .pc-header .inner nav {
  width: 1280px;
  height: 67px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 100;
}
header .pc-header .inner nav .nav_logo {
  width: 200px;
  height: 250px;
  position: relative;
top:-102px;
}

header .pc-header .inner nav .nav-active {
  background-image: url(../images/nav-active.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #006B5E !important;
  transition: all 0.2s linear;
}
footer .inner .two .item1 img{
 transition: all 0.2s linear;
}
footer .inner .two .item1 img:hover{
  transform: scale(1.1);
}
header .pc-header .inner nav .nav__item:hover {
  background-image: url(../images/nav-active.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #006B5E !important;
}
header .pc-header .inner nav .nav__item:hover .nav_main {
  display: block !important;
}
header .pc-header .inner nav .nav__item:hover .nav_main {
  transform: scale(1, 1);
  opacity: 1;
}
header .pc-header .inner nav .nav__item {
  padding: 0 20px;
  height: 100%;
  text-align: center;
  line-height: 67px;
  color: #fff;
  position: relative;
}
header .pc-header .inner nav .nav__item > a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
header .pc-header .inner nav .nav__item .nav_main {
  position: absolute;
  left: 0;
  background-color: #006B5E;
  -webkit-transform: scale(1, 0);
  transform-origin: center top;
  -webkit-transition: 0.5s;
  z-index: 500;
  width: 100%;
}
header .pc-header .inner nav .nav__item .nav_main a {
  display: block;
  width: 100%;
  height: 54px;
  text-align: center;
  line-height: 54px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.2s linear;
}
header .pc-header .inner nav .nav__item .nav_main a:hover {
  background-color: #DCCDA6;
  color: #006B5E !important;
}
.image-g img {
  height: 50vw;
  max-height: 532px;
  min-height: 230px;
}
.article-title {
  font-weight: bold;
  color: #333333;
  font-size: 24px;
  margin: 30px 0;
  text-align: center;
  position: relative;
}
.article-title::after {
  content: "";
  width: 64px;
  height: 10px;
  background: #006B5E3d;
  position: absolute;
  bottom: -4px;
  left: calc(50% - 32px);
}
.son_page {
  background-image: url(../images/son_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
}
.son_page .inner {
  display: flex;
  justify-content: space-between;
}
.son_page .inner > .left {
  width: 280px;
  height: fit-content;
  position: relative;
  background: #006B5E;
}
.son_page .inner > .left h2 {
  width: 100%;
  height: 83px;
  font-size: 24px;
  color: #fff;
  background-image: url(../images/top-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-indent: 20px;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.son_page .inner > .left h2 span {
  line-height: normal;
  position: relative;
  z-index: 10;
}
.son_page .inner > .left h2 span::after {
  content: "";
  width: 118px;
  height: 2px;
  background: #E1C19D;
  position: absolute;
  bottom: -10px;
  left: 20px;
}
.son_page .inner > .left h2 .top-bg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
}
.son_page .inner > .left .bottom-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 82px;
}
.son_page .inner > .left a {
  display: block;
  width: calc(100% - 40px);
  margin-left: 20px;
  height: 70px;
  display: flex;
  align-items: center;
  color: #DCCDA6;
  font-size: 16px;
  position: relative;
  border-bottom: 1px solid #ffffff39;
}
.son_page .inner > .left .son_left_logo {
  width: 92px;
  height: 104px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.son_page .inner > .left a span:nth-of-type(1) {
  width: 6px;
  height: 6px;
  background: #0D776F;
  display: inline-block;
  margin: 0 20px;
}
.son_page .inner > .left .son_left_bottom {
  height: 24px;
  margin-top: 30px;
}
.son_page .inner > .left a span:nth-of-type(2) {
  position: absolute;
  right: 20%;
  top: calc(50% - 3px);
  width: 16px;
  height: 6px;
}
.son_page .inner > .left a:hover {
  width: calc(100% - 20px) !important;
  background: #DCCDA6;
  color: #07726C;
}
.son_page .inner > .left a:hover span {
  display: block;
}
.son_page .inner > .left .active {
  background: #006B5E;
  color: #fff;
}
.son_page .inner > .left .active span {
  display: block;
}
.son_page .inner .right {
  width: 926px;
}
.son_page .inner .right .son_page_title {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #9d000021;
}
.son_page .inner .right .son_page_title .left-title {
  padding-top: 10px;
  font-size: 26px;
  height: 70px;
  color: #006B5E;
  font-weight: bolder;
}
.son_page .inner .right .son_page_title .right-title {
  font-size: 16px;
  color: #666666;
}
.son_page .inner .right .son_page_title .right-title img {
  width: 13px;
  height: 16px;
}
.son_page_title_ac {
  justify-content: flex-start !important;
}
.son_page_title_ac .right-title img {
  width: 13px;
  height: 16px;
}
.son_page .inner .right .son_page_title .right-title span {
  width: 3px;
  height: 3px;
  background: #999999;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
.son_page_title {
  width: 100%;
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid #006B5E;
}
.son_page_title .left-title {
  font-size: 32px;
  color: #333333;
  font-weight: bolder;
  font-family: "宋体";
}
.son_page_title .right-title {
  font-size: 16px;
  color: #666666;
}
.son_page_title .right-title span {
  display: inline-block;
  margin: 0 10px;
}
.son_page_title .right-title a:hover {
  color: #006B5E;
}
.page-none {
  text-align: center;
  margin: 20px 0;
}
.list-pr-g {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 56px 0 20px;
}
.list-pr-btn {
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #939393;
  margin: 0 5px;
  font-size: 14px;
}
.list-pr-btn:hover {
  background: #006B5E;
  border: 1px solid rgba(30, 107, 194, 0);
  color: #fff;
}
.list-pr-btn.active {
  background: #006B5E;
  border: 1px solid #006B5E;
  color: #fff;
}
.list-span {
  color: #939393;
  margin: 0 5px;
  width: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(0, -5px);
}
/* 移动端头部 */
.search-input {
  display: none;
  width: calc(100% - 36px);
  height: 100%;
}
.image-inner {
  height: 100%;
}
.search-border {
  width: 36px;
  box-sizing: border-box;
  height: 36px;
  border-radius: 36px;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  font-size: 34px;
  color: #fff;
  transition: all 0.3s linear;
  /* border: 1px solid #fff; */
}
.search-input input {
  height: 100%;
  width: 100%;
  font-size: 14px;
  color: #006B5E;
  outline: none;
  border: 0;
  float: left;
  box-sizing: border-box;
  padding: 0 0 0 15px;
  background: rgba(255, 255, 255, 0);
}
.search-icon.active .search-border .search-input {
  display: block;
}
.search-icon.active .search-border:hover {
  border: 1px solid #006B5E;
}
.search-icon.active::before {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}
.search-icon.active .search-border:hover {
  border: 1px solid #006B5E;
}
.search-icon.active .search-border {
  width: 260px;
  box-sizing: border-box;
  border: 1px solid #006B5E;
  height: 36px;
}
.search-icon::before {
  left: 0;
  top: 0;
  right: 0;
  content: "";
  bottom: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
}
body.active {
  overflow: hidden;
}
.mobile_header {
  display: none;
  width: 100%;
  height: 100px;
  background-color: #006B5E;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 15px;
}
.mobile_header .header-right {
  right: 6%;
  max-width: 31%;
}
.mobile_header > div {
  height: 100%;
  z-index: 9999;
  position: relative;
}
.mobile_header > div > div.w12 {
  height: 100%;
}
.mobile_header .mobile_header_logo {
  max-height: 83%;
  max-width: 36%;
  min-width: 250px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.mobile_header_r {
  font-size: 0;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mobile_header_menu {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mobile_header_menu > span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 5px;
  background: #fff;
  border-radius: 2px;
  -webkit-transform-origin: 20px;
  transform-origin: 19px;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s;
}
.mobile_header_menu > span:last-child {
  margin-bottom: 0;
}
.mobile_header_menu.active > span {
  opacity: 1;
  transform: rotate(45deg);
}
.mobile_header_menu.active > span:first-child {
  opacity: 1;
  transform: rotate(-45deg);
  position: relative;
  top: 1px;
}
.mobile_header_menu.active > span:nth-child(2) {
  width: 0;
  opacity: 0;
  transform: rotate(0);
  transition: width 0.5s;
}
#menu-wrapper {
  position: fixed;
  top: 85px;
  left: 0;
  z-index: 999;
  background-color: #006B5E;
  width: 100%;
  color: #ffffff;
  height: calc(100% - 70px);
}
#menu-wrapper.active {
  display: none;
}
#menu-wrapper > div > ul {
  overflow-y: auto;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#menu-wrapper .mobile_menu_item1 {
  line-height: 50px;
  position: relative;
  padding: 0 5%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
#menu-wrapper .mobile_menu_item2 {
  background-color: #006B5E;
  display: none;
  color: rgba(255, 255, 255, 0.8);
}
#menu-wrapper .mobile_menu_item2 .arrow_btn::before {
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-left: 2px solid rgba(255, 255, 255, 0.8);
}
#menu-wrapper .mobile_menu_item2 > li {
  line-height: 50px;
  position: relative;
  padding-left: 7%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
#menu-wrapper li a {
  z-index: 2;
  position: relative;
  color: #fff;
}
.arrow_btn {
  width: 80%;
  height: 100%;
  position: absolute;
  right: 5%;
  top: 0;
}
.arrow_btn.active::before {
  transform: rotate(45deg);
}
.arrow_btn::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-radius: 2px;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  right: 22px;
  margin: -7px 0 0;
}
/* 缩小后列表 */
.menu-mobile {
  width: 50px;
  height: 60px;
  position: fixed;
  right: 30px;
  top: 30px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  display: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.menu-mobile.active {
  right: 50px;
  z-index: 3;
}
.menu-mobile.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-mobile.active .menu-line:nth-child(2) {
  opacity: 0;
}
.menu-mobile.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.menu-line {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  margin: 2.5px auto;
  background: #fff;
  transform-origin: center center;
  -webkit-transform-origin: center center;
}
footer {
  position: relative;
  padding: 42px 0 0cqb;
  background-image: url(../images/footer-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
footer > p {
  line-height: 54px;
  text-align: center;
  font-size: 14px;
  background: #015E52;
  color: #FFFFFF;
}
footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .inner > div {
  flex: 1;
}
footer .inner .left .footer-logo {
  max-width: 244px;
  max-height: 57px;
}
footer .inner .left .content {
  margin-top: 30px;
}
footer .inner .left .content p {
  line-height: 20px;
  color: #ffffffc4;
  font-size: 14px;
  margin-bottom: 14px;
}
footer .inner .two {
  display: flex;
  justify-content: center;
}
footer .inner .two .item1 {
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}
footer .inner .two .item1 img {
  width: 100px;
  height: 100px;
}
footer .inner .two .item1 span {
  text-align: center;
  width: 100%;
  font-size: 14px;
  color: #ffffffc4;
  margin-top: 15px;
}
footer .inner .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
footer .inner .right .link-item:nth-of-type(2) {
  margin-top: 28px;
}
footer .inner .right .link-item:hover > .link {
  display: block;
}
footer .inner .right .link-item {
  width: 260px;
  height: 46px;
  background: #ffffff47;
  color: #fff;
  position: relative;
}
footer .inner .right .link-item > p {
  height: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #ffffffbd;
}
footer .inner .right .link-item > p span:nth-of-type(2) {
  font-size: 12px;
}
footer .inner .right .link-item .link {
  position: absolute;
  width: 100%;
  /* height: 80px; */
  bottom: 46px;
  left: 0;
  border-radius: 4px;
  background-color: #fff;
  z-index: 100;
  display: none;
}
footer .inner .right .link-item .link > p:hover {
  background-color: #015E52;
  color: #fff;
}
footer .inner .right .link-item .link p {
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  color: #333333;
  cursor: pointer;
}
footer .inner .right .link-item .link p::before {
  content: "";
  border: 7px solid transparent;
  border-top-color: #fff;
  position: absolute;
  bottom: -14px;
  left: calc(50% - 10px);
  z-index: 199;
}
@media screen and (max-width: 1200px) {
  .son_page .inner > .left .son_left_logo {
    display: none;
  }
  .son_page .inner > .left .son_left_bottom {
    display: none;
  }
  body > div > .inner {
    flex-direction: column;
    padding: 0 20px;
  }
  body > div > .inner > div {
    width: 100% !important;
    margin-bottom: 40px;
  }
  .home-plateFour .inner .plateFour-left .left-main .donateList .donate-item .donate-content {
    width: 68% !important;
  }
  .home-plateThree .inner .plateThree-left .left-main .four-item .data {
    width: 100px;
  }
  .home-plateTwo .inner .plateTwo-left .plateTwo-main .left-main {
    width: 50% !important;
  }
  .home-plateTwo .inner .plateTwo-left .plateTwo-main .right-main {
    width: 50% !important;
  }
  .home-plateOne .inner .plateOne-title {
    width: 88px !important;
  }
  .home-plateTwo .inner .plateTwo-right .plateTwo-main .list-item {
    width: 100% !important;
  }
  .home-plateOne .inner .plateOne-main {
    height: auto !important;
    flex-wrap: wrap;
  }
  .home-plateOne .inner .plateOne-main img {
    margin-bottom: 20px;
  }
  .home-plateOne .inner .plateOne-title {
    margin-bottom: 40px;
  }
  header .pc-header {
    height: 120px;
  }
  .header .pc-header > .inner {
    display: none;
  }
  .son_page .inner .right .son_page_title {
    margin-top: 20px;
  }
  .son_page .inner > .left a span {
    margin-left: 3%;
  }
  footer .inner {
    flex-direction: column;
    padding: 0 20px;
    align-items: center;
  }
  footer .inner .left {
    flex-direction: column;
    align-items: center;
  }
  footer .inner .right {
    align-items: center;
  }
  footer .inner > div {
    width: 100% !important;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  footer .inner .logo {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    margin: 40px 0;
  }
  .search-icon {
    position: absolute !important;
    top: 35%;
    right: 8%;
    color: #fff !important;
  }
  .top-logo {
    display: none;
  }
  header {
    position: relative;
  }
  header > .inner {
    display: none;
  }
  .mobile_header {
    display: block;
    position: relative;
    height: 100%;
  }
  .son_page > .inner {
    flex-direction: column;
    padding: 0 10px;
  }
  .son_page > .inner > .left {
    width: 100%;
    display: flex;
  }
  .son_page > .inner > .left h2 {
    display: none;
  }
  .son_page > .inner .right {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .home-plateFour .inner .plateFour-left .left-main .donateList .donate-item .img {
    display: none;
  }
  .home-plateFour .inner .plateFour-left .left-main .donateList .donate-item .donate-content {
    width: 100%;
  }
  footer .top .inner p {
    margin-bottom: 20px;
  }
  footer .top .inner div {
    margin-bottom: 20px;
  }
  .son_page .inner .activity-list .item {
    width: 48% !important;
  }
  footer .middle {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
  footer .middle > img {
    margin: 20px 0;
    left: 0;
  }
  footer .inner .link-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  .home-plateOne .inner .plateOne-main img {
    width: 45% !important;
    height: auto;
  }
  .son_page_title .right-title {
    display: none;
  }
  .son_page .inner .activity-list .item {
    width: 100% !important;
    margin-bottom: 30px !important;
  }
  .son_page_title_ac .right-title {
    display: block;
    padding-left: 30px;
  }
  .mySwiper .inner-banner .inner {
    display: none;
  }
  .son_page_title .left-title {
    font-size: 24px;
  }
  .son_page_title {
    height: 55px;
  }
  .image_list_item .img {
    display: none;
  }
  .image_list_item .data {
    display: none !important;
  }
  .image_list_item .main {
    width: 100% !important;
  }
}







