/* 当前站点公共样式，如公共头部、公共页脚等 */
/* 全局变量 */
: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 {
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
}
header .inner {
  padding: 40px 0;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner .right {
  width: 100%;
}
header .inner .right .bottom {
  height: 57px;
  background: rgba(27, 127, 89, 0.75);
}
header .inner .right .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner .right .top > span {
  width: 1px;
  height: 14px;
  background: #E9CDAE;
  display: block;
  margin: 0 20px;
}
header .inner .right .top > a {
  font-size: 14px;
  color: #fff;
}
header .inner .logo {
  height: 70px;
  width: auto;
}
header .top-logo .right > a:hover {
  color: #EDAC5C;
}
header .bottom {
  border-top: 1px solid #ffdfba41;
}
header nav {
  display: flex;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
header nav .nav__item:hover {
  border-bottom: 4px solid #E8AF72;
}
header nav .nav__item:hover .nav_main {
  transform: scale(1, 1);
  opacity: 1;
}
header nav .nav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border-bottom: 4px solid transparent;
}
header nav .nav__item > a {
  padding: 6px 10px;
  margin: 0 10px;
  font-size: 18px;
  color: #FFDFBA;
}
header nav .nav__item .nav_main_top {
  width: 100%;
  height: auto;
  position: absolute;
  top: -10px;
  left: 0;
}
/* 选中 */
header nav .nav__item .nav_main {
  width: 164px;
  position: absolute;
  top: 72px;
  left: calc(50% - 82px);
  background: rgba(161, 36, 30, 0.9);
  -webkit-transform: scale(1, 0);
  transform-origin: center top;
  -webkit-transition: 0.5s;
  opacity: 0;
  z-index: 500;
}
header nav .nav__item .nav_main a {
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #FFDFBA;
  display: block;
  transition: all 0.2s linear;
}
header nav .nav__item .nav_main a:hover {
  background: #A1241E;
  color: #FFFFFF;
}
header > .inner .search-icon {
  width: 315px;
  height: 42px;
  background-color: rgba(255, 223, 186, 0.249);
}
header > .inner .search-icon form {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}
header > .inner .search-icon form i {
  color: #FFDFBA;
}
header > .inner .search-input {
  width: calc(100% - 36px);
  height: 100%;
  display: block;
}
header > .inner .search-input input {
  height: 100%;
  width: 100%;
  font-size: 14px;
  color: #fff;
  outline: none;
  border: 0;
  float: left;
  box-sizing: border-box;
  padding: 0 0 0 15px;
}
header > .inner .search-input input::placeholder {
  color: #FFDFBA;
}
.image-g img {
  max-height: 400px;
  min-height: 230px;
}
.article-title {
  font-weight: bold;
  color: #333333;
  font-size: 24px;
  margin: 0px 0 20px;
  text-align: center;
  position: relative;
}
.page-none {
  text-align: center;
  margin: 20px 0;
}
.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: #EDAC5C;
  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 #EDAC5C;
}
.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 #EDAC5C;
}
.search-icon.active .search-border {
  width: 260px;
  box-sizing: border-box;
  border: 1px solid #EDAC5C;
  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: #BA2922;
  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: #BA2922;
  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: #BA2922;
  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 {
  background: #CC3B29;
  background-size: 100% 100%;
}
footer > .bottom {
  height: 48px;
  background: #90191B;
  line-height: 48px;
  text-align: center;
  color: #ffffffb2;
  font-size: 14px;
}
footer .link {
  width: 100%;
}
footer .link .inner {
  display: flex;
    justify-content: space-between;
  border-bottom: 1px solid #ffffff39;
}
footer .link .inner > div {
  margin-right: 20px;
  text-align: center;
  line-height: 54px;
}
footer .link p {

  text-align: center;
  line-height: 54px;
  color: #fff;
}
.footer-main {
  background-color: #BA2922;
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}
footer .footer-main > .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}
footer .inner .logo img {
  height: 121px;
  width: auto;
}
footer .inner .logo p {
  color: #fff;
  margin-top: 24px;
}
footer .inner .middle {
  font-size: 16px;
  color: #ffffffda;
}
footer .inner .middle p {
  margin-top: 20px;
font-size:14px;
}
footer .inner .middle p:nth-of-type(1) {
margin-top:0;
  margin-bottom: 10px;
  font-size: 24px;
}
footer .inner .right {
  display: flex;
  align-items: center;
}
footer .inner .right .code:hover > div {
  display: block;
}
footer .inner .right .code:hover > div::after {
  content: "";
  border: 7px solid transparent;
  border-top-color: #fff;
  position: absolute;
  bottom: -14px;
  left: calc(50% - 10px);
  z-index: 199;
}
footer .inner .right .code {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
footer .inner .right .code > div {
  position: absolute;
  width: 122px;
  height: 122px;
  background-color: pink;
  top: -140px;
  display: none;
}
footer .inner .right .code img {
  max-width: 88px;
  max-height: 88px;
  border: 6px solid #B9554D;
}
footer .inner .right .code p {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
footer .inner .right .code:nth-of-type(2) {
  margin-left: 20px;
}
footer .inner .right .code:nth-of-type(3) {
  margin-left: 20px;
}
.son_page {
  background-image: url(../images/son-page-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 700px;
  background-position: left bottom;
  background-color: #FFFAFA;
}
.son_page .inner > .left a {
  transition: all 0.2s linear;
  border-right: 3px solid transparent;
  position: relative;
}
.son_page .inner > .left a::after {
  content: "";
  width: 90%;
  height: 1px;
  background-color: #e1b7556b;
  position: absolute;
  left: 5%;
  bottom: 0;
}
.son_page .inner > .left a:hover {
  background: #ffffff30;
  border-right: 3px solid #C3A465;
  color: #A52325;
}
.son_page .inner > .left a:hover img {
  display: block;
}
.home-title a:nth-of-type(1) {
  transition: all 0.2s linear;
}
.son_page {
  padding: 30px 0;
}
.son_page .inner {
  display: flex;
  justify-content: space-between;
}
.son_page .inner > .left {
  width: 266px;
  height: fit-content;
}
.son_page .inner > .left h2 {
  width: 100%;
  height: 111px;
  line-height: 111px;
  background: #A1241E;
  border-radius: 40px 0px 0px 0px;
  font-size: 26px;
  color: #fff;
  font-weight: bolder;
  position: relative;
  text-align: center;
}
.son_page .inner > .left h2 span {
  position: relative;
  z-index: 10;
}
.son_page .inner > .left h2 .top-bg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 100%;
  z-index: 0;
  max-height: 100%;
}
.son_page .inner > .left .category-inner {
  position: relative;
  background: url(../images/category-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 165px;
  background-position: left bottom;
  width: 100%;
  background-color: #fff;
  padding: 0 0px 90px;
}
.son_page .inner > .left .bottom-bg {
  width: 100%;
  max-height: 250px;
  margin-top: 10px;
}
.son_page .inner > .left .sonLeft-bg {
  width: 100%;
  height: auto;
}
.son_page .inner > .left a {
  display: block;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 18px;
  position: relative;
}
.son_page .inner > .left a img {
  max-width: 17px;
  max-height: 17px;
  position: absolute;
  /* margin-left: 80px; */
  right: 30px;
}
.son_page .inner > .left a span {
  display: none;
  margin-left: 40px;
}
.son_page .inner > .left a img {
  display: none;
  top: 50%;
  transform: translateY(-50%);
}
.son_page .inner > .left a:hover span {
  display: block;
}
.son_page .inner > .left .active {
  background: #ffffff30;
  border-right: 6px solid #C3A465;
}
.son_page .inner > .left .active img {
  display: block;
}
.son_page .inner > .left .active span {
  display: block;
}
.son_page .inner .right {
  width: 940px;
}
.son_page .inner .right > .main {
  background: #FFFFFF;
  padding: 40px;
}
.nav-search {
  width: 280px;
  height: 44px;
}
.nav-search form {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.nav-search form .nav-input {
  height: 100%;
}
.nav-search form .nav-input input {
  height: 100%;
  color: #fff;
}
.nav-search form .nav-input input::-webkit-input-placeholder {
  color: #fff;
}
.nav-search form .submit {
  cursor: pointer;
}
.nav-search form .submit i {
  color: #fff;
}
.son_page .inner .right .son_page_title {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #A1241E;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.son_page .inner .right .son_page_title .left-title {
  padding-top: 10px;
  font-size: 28px;
  height: 55px;
  font-weight: bolder;
  font-family: '宋体';
  color: #BA2922;
}
.son_page_title .right-title p {
  width: 110px;
}
.son_page .inner .right .son_page_title .right-title {
  font-size: 16px;
  color: #333;
  display: flex;
}
.son_page_title .right-title p img {
  margin-right: 5px;
}
.son_page .inner .right .son_page_title .right-title p {
  width: 105px;
}
.son_page_title .right-title {
  display: flex;
}
.son_page_title .right-title p img {
  width: 16px;
  height: auto;
}
.son_page .inner .right .son_page_title .right-title p img {
  width: 16px;
  height: auto;
}
.son_page .inner .right .son_page_title .right-title span {

}
.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: #BA2922;
  border: 1px solid rgba(30, 107, 194, 0);
  color: #fff;
}
.list-pr-btn.active {
  background: #BA2922;
  border: 1px solid #BA2922;
  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);
}
footer .link p {
  cursor: pointer;
}
footer .link p:hover {
  color: #E3B679 !important;
}
@media screen and (max-width: 1200px) {
  header .bottom {
    display: none;
  }
  .son_page .inner > .left .category-inner {
    background-size: cover;
    padding-bottom: 0;
  }
  .son_page > .inner > .left {
    margin-bottom: 20px;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide {
    flex-direction: column;
  }
  .son_page .inner > .left .sonLeft-bg {
    display: none;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-left {
    margin-bottom: 20px !important;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-left .img {
    width: 50% !important;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-left .money-left-item-title {
    width: 50% !important;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-right .donate-right-item .img {
    width: 280px !important;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-right .donate-right-item .content {
    width: calc(100% - 300px) !important;
  }
  .home-plateOne .inner {
    flex-direction: column;
  }
  .home-plateOne .inner > div {
    width: 100% !important;
  }
  .home-plateOne .inner .plateOne-left .plateOne-left-main .left-main-item {
    width: 49% !important;
  }
  .son_page .inner > .left {
    top: 0 !important;
  }
  footer .inner {
    flex-direction: column;
    text-align: center;
  }
  footer .inner > div {
    margin-bottom: 40px;
    width: 100% !important;
    justify-content: center;
  }
  .home-donate .inner {
    flex-direction: column;
    padding: 0 20px;
  }
  .home-donate .inner > div {
    width: 100% !important;
  }
  .home-donate .inner > div:nth-of-type(1) {
    margin-bottom: 30px;
  }
  .home-news .inner {
    flex-direction: column;
  }
  .home-news .inner > div {
    width: 100% !important;
  }
  .home-news .inner > div:nth-of-type(1) {
    margin-bottom: 40px;
  }
  .mySwiper .swiper-pagination {
    left: 0 !important;
  }
  .search-icon {
    position: absolute !important;
    top: 32%;
    right: 8%;
    color: #fff !important;
  }
  header {
    position: relative;
  }
  header > .inner {
    display: none;
  }
  .mobile_header {
    display: block;
    position: relative;
  }
  .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: 1000px) {
  .money-left-item {
    width: 100% !important;
  }
}
@media screen and (max-width: 800px) {
  .son_page_title {
    display: none !important;
  }
  .home-donate .inner .donate-item .main {
    background-color: transparent !important;
    flex-direction: column;
  }
  .home-donate .inner .donate-item .main > div {
    width: 100% !important;
    background-color: #fff;
    margin-bottom: 20px;
  }
  .home-news .inner .home-news-banner .main .news-banner-left-list {
    flex-direction: column;
  }
  .home-news .inner .home-news-banner .main .news-banner-left-list > div {
    width: 100%;
  }
  .home-news .inner .home-news-banner .main .news-banner-left-list > div:nth-of-type(1) {
    margin-bottom: 20px;
  }
  footer .top .inner p {
    margin-bottom: 20px;
  }
  footer .top .inner div {
    margin-bottom: 20px;
  }
  footer .middle {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
  footer .middle > img {
    margin: 20px 0;
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .right {
    justify-content: center;
  }
  footer .inner .logo {
    height: auto !important;
    display: flex;
    justify-content: center;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-left {
    flex-direction: column;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-left > .img {
    width: 100% !important;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-left > .money-left-item-title {
    width: 100% !important;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-right .donate-right-item {
    flex-direction: column !important;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-right .donate-right-item > .img {
    width: 100% !important;
  }
  .home-plateTwo .plateTwo-main .donateList-banner .swiper-slide .donate-right .donate-right-item > .content {
    width: 100% !important;
  }
  .home-plateOne .inner .plateOne-left .plateOne-left-main .left-main-item {
    width: 100% !important;
  }
  .son_page_title .right-title {
    display: none;
  }
  .son_page_title .left-title {
    font-size: 24px;
  }
  .son_page_title {
    height: 55px;
  }
  .image_list_item .main {
    width: 100% !important;
  }
}
