/* 最大显示一行，溢出省略号 */
.txt-line-one {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 最大显示两行，溢出省略号 */
.txt-line-two {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
/* 最大显示三行，溢出省略号 */
.txt-line-three {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.b-line {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  overflow: hidden;
  border-bottom: #e4e4e4 solid 1px;
}
.r-line {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-right: #e4e4e4 solid 1px;
}
.t-line {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  border-top: #e4e4e4 solid 1px;
}
.l-line {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  border-left: #e4e4e4 solid 1px;
}
.clear {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.display-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.flex-0 {
  -webkit-box-flex: 0;
  -webkit-flex: 0;
  flex: 0;
}
.shadow-1 {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
body {
  font-family: "思源黑体", "PingFang SC", "微软雅黑";
  font-size: 16px;
  background: #fff;
}
*,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: #d12f14;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #a2240f;
}
.iconfont {
  font-size: 1rem;
}
.btn-danger {
  background-color: #E83416;
  border-color: #E83416;
}
.btn-danger:focus,
.btn-danger.focus {
  background-color: #eb4c31;
  border-color: #eb4c31;
}
.btn-danger:hover {
  background-color: #eb4c31;
  border-color: #eb4c31;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-color: #eb4c31;
  border-color: #eb4c31;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  background-color: #eb4c31;
  border-color: #eb4c31;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #E83416;
  border-color: #E83416;
}
.btn-danger .badge {
  color: #E83416;
}
.alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}
.header {
  background: #fff;
  height: 9.25rem;
}
.header .header-logo {
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: auto;
  padding: 2.5rem 0 2.25rem;
}
.header .header-logo .logo {
  margin: 0;
  padding: 0;
}
.header .header-logo .logo img {
  display: block;
  height: 4.5rem;
  width: auto;
}
.header .header-logo .logo .slogan {
  display: block;
  height: 1.5rem;
  width: auto;
  margin-top: 1rem;
}
.head-search {
  position: relative;
  margin-top: 1rem;
}
.head-search .input-group-text {
  border-radius: 2rem 0 0 2rem;
  background-color: #fff;
  border-width: 2px;
  border-right-width: 0;
  border-color: #b0b0b0;
  padding-right: 0;
  color: #666;
}
.head-search .form-control {
  border-radius: 0 2rem 2rem 0 !important;
  background-color: #fff;
  border-width: 2px;
  border-left-width: 0;
  border-color: #b0b0b0 !important;
  width: 18rem;
}
.head-search .form-control::placeholder {
  /* WebKit browsers (Chrome/Safari) */
  color: #999;
  font-size: 0.875rem;
}
.head-search .form-control:focus {
  box-shadow: none;
  border-color: #b0b0b0;
  background-color: #f7f7f7;
}
.head-search:last-child .btn {
  border-radius: 0 2rem 2rem 0;
  border-color: #b0b0b0;
  font-size: 0.875rem;
}
.head-search .invalid-feedback {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
}
.menu {
  position: relative;
  z-index: 999;
  background: #E83416;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.5);
}
.menu .navbar {
  margin-bottom: 0;
  min-height: 3.75rem;
  padding: 0 1rem;
}
.menu .navbar .navbar-nav {
  margin: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.menu .navbar .navbar-nav > li {
  float: none;
  text-align: center;
  flex: 1;
}
.menu .navbar .navbar-nav > li:last-child {
  background: transparent;
}
.menu .navbar .navbar-nav > li > a {
  display: block;
  line-height: 1.6;
  height: 3.75rem;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  white-space: nowrap;
  box-sizing: border-box;
  min-width: 5.5rem;
}
.menu .navbar-default {
  border: none;
}
.menu .navbar-default .navbar-nav > li > a {
  color: #fff;
  text-decoration: none;
}
.menu .navbar-default .navbar-nav > li:hover > a,
.menu .navbar-default .navbar-nav > li:focus > a {
  background-color: rgba(0, 0, 0, 0.1);
  background-color: #ed5c44;
  color: #fff !important;
}
.menu .navbar-default .navbar-nav > li.active,
.menu .navbar-default .navbar-nav > li.current-post-ancestor {
  position: relative;
}
.menu .navbar-default .navbar-nav > li.active > a,
.menu .navbar-default .navbar-nav > li.current-post-ancestor > a,
.menu .navbar-default .navbar-nav > li.active > a:hover,
.menu .navbar-default .navbar-nav > li.current-post-ancestor > a:hover,
.menu .navbar-default .navbar-nav > li.active > a:focus,
.menu .navbar-default .navbar-nav > li.current-post-ancestor > a:focus {
  background-color: #fff !important;
  color: #E83416 !important;
  position: relative;
}
.menu .navbar-default .navbar-toggle:hover,
.menu .navbar-default .navbar-toggle:focus {
  background-color: #ed5c44;
}
.menu .navbar-default .navbar-nav > .open > a,
.menu .navbar-default .navbar-nav > .open > a:hover,
.menu .navbar-default .navbar-nav > .open > a:focus {
  background-color: #a72510;
}
.menu .navbar-default .navbar-toggle .icon-bar {
  background-color: #ddd;
}
.menu .navbar-default .dropdown-toggle {
  position: relative;
}
.menu .navbar-default .dropdown-toggle::after {
  display: none;
}
.menu .dropdown-menu {
  width: 100%;
  text-align: center;
  min-width: auto;
  padding: 0;
  margin: 0;
  border-radius: 0 0 0.4rem 0.4rem;
  background-color: transparent;
  overflow: hidden;
  border-width: 0;
}
.menu .dropdown-menu > li > a {
  display: block;
  padding: 1rem 0.75rem;
  clear: both;
  white-space: nowrap;
  text-decoration: none;
  background-color: #fff;
  color: #E83416;
}
.menu .dropdown-menu > li > a:hover {
  background-color: #E83416;
  color: #fff;
}
.menu .dropdown-menu > .active > a,
.menu .dropdown-menu > .active > a:hover,
.menu .dropdown-menu > .active > a:focus {
  background-color: #d12f14;
  color: #fff;
}
/* 滚动焦点图css */
.banner {
  width: 100%;
  position: relative;
  z-index: 150;
  height: 32vw;
  background: top center no-repeat;
}
.banner .button-next,
.banner .button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  font-size: 24px;
  line-height: 44px;
  color: #fff;
  right: 90%;
}
.banner .button-next:hover,
.banner .button-prev:hover {
  background: rgba(0, 0, 0, 0.1);
}
.banner .button-next {
  /* right: 10%; */
  left: 90%;
}
.banner .swiper-wrapper .banner-pic {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.banner .swiper-wrapper .banner-project-count {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 1.5rem 1rem;
}
.banner .swiper-wrapper .banner-project-count .iconfont {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  border-radius: 100%;
  background: #E83416;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
}
.banner .swiper-wrapper .banner-project-count .count-text {
  display: inline-block;
  margin: 0 2rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.banner .swiper-wrapper .banner-project-count span {
  display: inline-block;
  width: 2.25rem;
  height: 4rem;
  line-height: 4rem;
  background: #f0f0f0;
  color: #E83416;
  margin: 0 2px;
  font-size: 2.25rem;
  text-align: center;
  vertical-align: middle;
}
.banner .swiper-pagination > .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #939393;
  opacity: 1;
  margin: 0 23px;
}
.banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #e40b20;
}
.header-pic {
  position: relative;
  background: center center no-repeat;
  background-color: #f5f6f7;
  background-size: cover;
  height: 16rem;
  margin: 0;
}
.header-pic .crumbs-nav {
  padding: 8rem 1rem 1rem;
}
.header-pic .crumbs-nav .page-title {
  position: relative;
  font-size: 24px;
  color: #fff;
}
.header-pic .crumbs-nav .page-title .page-title-text {
  position: relative;
  float: left;
  padding: 0 0 1.25rem;
  line-height: 1.2;
}
.header-pic .crumbs-nav .page-title .page-title-text .pagetitle {
  font-size: 2rem;
  letter-spacing: 0.25rem;
}
.header-pic .crumbs-nav .page-title .page-title-text .slugtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 1.25rem 0;
}
.header-pic .crumbs-nav .page-title .page-title-text .border-line {
  position: absolute;
  display: block;
  font-size: 0;
  width: 5rem;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  left: 0;
  bottom: 0;
  border-radius: 3px;
}
.header-pic .crumbs-nav .page-title .crumbs {
  margin-bottom: 0;
}
.header-kv img {
  display: block;
  margin: auto;
  height: auto;
  min-height: 37.5rem;
  object-fit: contain;
}
.footer {
  background-image: linear-gradient(90deg, #E83416 0.18%, #d12f14 100%);
  background-repeat: repeat;
  background-size: auto;
  background-position: 0 0;
}
.footer .foot-bd {
  padding: 20px 0;
  overflow: hidden;
  color: #fff;
}
.footer .foot-bd .friendlink {
  float: left;
  margin: 0 auto;
  height: 60px;
  line-height: 60px;
  color: rgba(0, 0, 0, 0.5);
}
.footer .foot-bd .friendlink > ul {
  display: inline;
}
.footer .foot-bd .friendlink > ul li {
  display: inline;
}
.footer .foot-bd .friendlink > ul li a {
  margin: 0 10px;
  color: #6D7381;
}
.footer .foot-bd .friendlink > ul li img {
  vertical-align: middle;
}
.footer .foot-bd .footlink {
  margin-top: 1rem;
}
.footer .foot-bd .footlink > li {
  flex: 1;
}
.footer .foot-bd .footlink > li > a {
  color: #333;
  cursor: default;
  text-decoration: none;
  display: block;
  padding-bottom: 10px;
  position: relative;
  line-height: 1.75rem;
}
.footer .foot-bd .footlink > li .dropdown-toggle::after {
  display: none;
}
.footer .foot-bd .footlink .dropdown-menu {
  position: relative;
  top: auto;
  display: block;
  background-color: transparent;
  overflow: hidden;
  border-width: 0;
  line-height: 1.6;
  min-width: auto;
}
.footer .foot-bd .footlink .dropdown-menu > li > a {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
}
.footer .foot-bd .footer-logo .logo {
  display: block;
  width: auto;
  height: 3.5rem;
}
.footer .foot-bd .footer-logo .slogan {
  display: block;
  width: auto;
  height: 2.375rem;
}
.footer .foot-bd .foot-relation.article .article-c {
  color: #fff;
  line-height: 1.5;
}
.footer .foot-bd .foot-relation.article .article-c p {
  margin-bottom: 0.5rem;
}
.footer .foot-bd .foot-share {
  margin: 1rem auto;
}
.footer .foot-bd .foot-share .share-qrcode {
  margin: 1rem 0.5rem;
  background: transparent;
  border: none;
}
.footer .foot-bd .foot-share .share-qrcode .iconfont {
  display: block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  box-sizing: content-box;
  text-align: center;
  border-radius: 100%;
  border: 1px solid #fff;
  font-size: 2.5rem;
  padding: 0.5rem;
  color: #fff;
}
.footer .foot-bd .foot-qrcode {
  width: 80%;
  margin: 0 auto;
}
.footer .foot-bd .foot-qrcode .qr-img {
  display: block;
  width: 100%;
  height: auto;
}
.footer .foot-bd .foot-qrcode .qr-txt {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.5rem;
}
.footer .foot-ft {
  padding: 0.5rem 1rem;
  line-height: 1.5;
  color: #ccc;
  font-size: 1rem;
}
.footer .foot-ft .rights {
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.share-qrcode-popover img {
  display: block;
  width: 100%;
  height: auto;
}
.icon {
  width: 1rem;
  height: 1rem;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
.mobile-nav-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  transition: box-shadow 0.15s ease-in-out;
}
.mobile-nav-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.mobile-nav .menu-item {
  padding: 0.3rem 0.5rem;
}
.mobile-nav a {
  display: block;
  position: relative;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 1rem;
}
.mobile-nav a:active {
  background-color: #f1f1f1;
}
.mobile-nav .dropdown-toggle {
  color: #999;
}
.mobile-nav ul.dropdown-menu {
  display: block;
  position: relative;
  border-width: 0;
  margin-left: 1rem;
  overflow: hidden;
}
.mobile-nav ul.dropdown-menu li {
  width: 50%;
  float: left;
}
/* 分页样式 */
.pagination {
  display: block !important;
  display: block;
  text-align: center;
}
.pagination > li > a,
.pagination > li > span {
  color: #E83416;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #E83416;
  border-color: #d12f14;
  cursor: default;
}
.pagination .nav-links {
  display: inline-block;
  margin: 1.25rem 0;
  text-align: center;
}
.pagination .nav-links a,
.pagination .nav-links span {
  position: relative;
  display: block;
  padding: 0.375rem 0.75rem;
  margin: 0 0.375rem;
  float: left;
  line-height: 1.4;
  background-color: #EDE9E8;
  border: #EDE9E8 solid 1px;
  color: #9C9292;
  text-decoration: none;
  border-radius: 2rem;
  min-width: 2.4rem;
}
.pagination .nav-links a.prev,
.pagination .nav-links span.prev,
.pagination .nav-links a.next,
.pagination .nav-links span.next {
  background-color: transparent;
}
.pagination .nav-links .current {
  cursor: default;
  position: relative;
  display: block;
  padding: 0.375rem 0.75rem;
  float: left;
  line-height: 1.4;
  background-color: #E83416;
  border: #ddd solid 1px;
  border-color: #E83416;
  color: #fff;
  text-decoration: none;
}
.pagination .nav-links .dots {
  color: #ccc;
}
.pagination .nav-links a:hover {
  color: #E83416;
  background-color: #fad6d0;
}
.pager-box {
  text-align: center;
}
.pager {
  display: inline-block;
  margin: 20px 0;
  text-align: center;
}
.pager > a,
.pager > span {
  position: relative;
  display: block;
  padding: 6px 12px;
  margin-left: -1px;
  float: left;
  line-height: 1.428;
  background-color: #fff;
  border: #ddd solid 1px;
  color: #E83416;
  text-decoration: none;
}
.pager > a:first-child,
.pager > span:first-child {
  margin-left: 0;
  border-radius: 4px 0 0 4px;
}
.pager > a:last-child,
.pager > span:last-child {
  border-radius: 0 4px 4px 0;
}
.pager > a:hover,
.pager > span:hover,
.pager > a:focus,
.pager > span:focus {
  z-index: 3;
  color: 555;
  background-color: #eee;
  border-color: #ddd;
}
.pager > span {
  z-index: 2;
  color: #fff;
}
.pager > span,
.pager > span:hover,
.pager > span:focus {
  background-color: #E83416;
  border-color: #d12f14;
  cursor: default;
}
.el-pager-box {
  text-align: center;
  margin: 6rem 0;
  color: #9C9292;
}
.el-pager-box .el-pagination.is-background .btn-next,
.el-pager-box .el-pagination.is-background .btn-prev,
.el-pager-box .el-pagination.is-background .el-pager li {
  border-radius: 1rem;
}
.el-pager-box .el-pagination.is-background .btn-next:hover,
.el-pager-box .el-pagination.is-background .btn-prev:hover,
.el-pager-box .el-pagination.is-background .el-pager li:hover {
  color: #E83416;
}
.el-pager-box .el-pager li {
  height: auto;
  line-height: 1.4;
  border-radius: 2rem;
  min-width: 2.4rem;
  padding: 0.375rem 0.75rem;
  margin: 0 0.375rem;
  background-color: #EDE9E8;
  border: #EDE9E8 solid 1px;
  font-weight: normal;
  color: #9C9292;
  font-size: 1rem;
}
.el-pager-box .el-pager li.active {
  background-color: #E83416;
  color: #fff;
  border-color: #E83416;
}
.el-pager-box .el-pager li:hover {
  color: #E83416;
  background-color: #fad6d0;
}
.el-pager-box .el-pagination.is-background .el-pager li:not(.disabled).active {
  background-color: #E83416;
  color: #fff;
}
.el-pager-box .el-pagination button {
  padding: 0.375rem 0.75rem;
  height: 2.15rem;
  line-height: 1.4;
  font-size: 1rem;
}
.el-pager-box .el-pagination span:not([class*="suffix"]) {
  height: auto;
  line-height: 1.4;
  padding: 0.375rem 1rem;
  font-size: 1rem;
}
.el-pager-box .el-pagination__jump {
  border: #EDE9E8 solid 1px;
  border-radius: 0.5rem;
  padding: 0.375rem 1rem;
}
.el-pager-box .el-pagination__editor {
  height: auto;
}
.el-pager-box .el-pagination__editor .el-input__inner {
  border-width: 0;
}
.el-pager-box .el-pagination__editor.el-input {
  width: 2.5rem;
}
.el-pager-box .el-pagination__editor.el-input .el-input__inner {
  height: auto;
}
.el-pager-box .el-pagination__sizes {
  padding: 0 !important;
}
.el-pager-box .el-pagination__sizes .el-input .el-input__inner {
  border-radius: 0.5rem !important;
  padding: 0.375rem 1rem;
  height: auto;
}
.el-pager-box .el-pagination__sizes .el-input .el-input__inner:hover {
  border-color: #E83416 !important;
}
.el-pager-box .el-range-editor.is-active,
.el-pager-box .el-range-editor.is-active:hover,
.el-pager-box .el-select .el-input.is-focus .el-input__inner {
  border-color: #E83416;
}
.navbar-right .dropdown-menu {
  right: auto;
  left: auto;
}
.el-checkbox__input .el-checkbox__inner:hover {
  border-color: #d12f14 !important;
}
.el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
  background-color: #E83416 !important;
  border-color: #d12f14 !important;
}
.el-select-dropdown__item.selected {
  color: #E83416 !important;
}
.form-check-input:checked {
  background-color: #E83416 !important;
  border-color: #d12f14 !important;
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem #fad6d0;
  border-color: #d12f14 !important;
}
/*面包屑*/
.ah-breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
  color: #999;
  font-size: 0.875rem;
  position: relative;
  padding: 0.75rem 0;
}
.ah-breadcrumb::after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ccc;
}
.ah-breadcrumb li a {
  color: #999;
  font-size: 0.875rem;
}
.ah-breadcrumb li a:hover {
  color: #E83416;
}
.bg-gray {
  background: #f1f1f1;
  position: relative;
  z-index: 100;
  padding-top: 10px;
}
.bg-white {
  background: #fff;
  position: relative;
  z-index: 100;
  overflow: hidden;
}
.left {
  float: left;
}
.right {
  float: right;
}
.imgformat {
  vertical-align: bottom;
  display: block;
}
.program-page .program-page-item {
  margin-bottom: 1rem;
}
.program-page .program-page-item a {
  display: block;
  position: relative;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.program-page .program-page-item a:hover {
  text-decoration: none;
}
.program-page .program-page-item a .right-label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  height: 1.875rem;
  background: rgba(232, 52, 22, 0.6);
  border-radius: 0 0 1rem 0;
  line-height: 1.875rem;
  padding: 0 0.75rem;
  color: white;
  font-size: 1rem;
}
.program-page .program-page-item a .right-label.end {
  background: #aaa;
}
.program-page .program-page-item .thumbnail {
  padding-bottom: 100%;
  width: 100%;
  height: 0;
  position: relative;
  margin-bottom: 0;
  border-radius: 1rem;
  overflow: hidden;
}
.program-page .program-page-item .thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.program-page .program-page-item .title {
  height: 10rem;
  text-align: center;
  padding-bottom: 3.5rem;
  box-sizing: border-box;
  position: relative;
}
.program-page .program-page-item .program-page-title {
  font-size: 1rem;
  color: #333;
  text-align: left;
  margin: 0.75rem 0;
}
.program-page .program-page-item .program-page-desc {
  font-size: 0.875rem;
  color: #999;
  text-align: left;
}
.program-page .program-page-item .program-page-more {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  display: block;
  width: 8rem;
  font-size: 1rem;
  color: #E83416;
  border: #E83416 solid 1px;
  border-radius: 4px;
  padding: 0.3rem 1rem;
  margin: auto;
  border-radius: 3rem;
}
.program-page .program-page-item .program-page-more.donate {
  background: #E83416;
  border-color: #E83416;
  color: #fff;
}
.program-page .program-page-item .program-page-more:hover {
  border-color: #ed5c44;
  background: #ed5c44;
  color: #fff;
}
.program-page .program-page-item.daf-item a {
  display: flex;
}
.program-page .program-page-item.daf-item .thumbnail {
  margin-right: 1.5rem;
  width: 28vw;
  padding-bottom: 18vw;
}
.program-page .program-page-item.daf-item .thumbnail .right-label {
  display: none;
}
.program-page .program-page-item.daf-item .title {
  flex: 1;
  min-width: 0;
}
.program-page .program-page-item.daf-item .program-page-title {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}
.program-page .program-page-item.daf-item .program-page-desc {
  line-height: 2;
}
.program-page .program-page-item.daf-item .program-page-date {
  line-height: 24px;
  display: block;
  color: #9C9292;
  font-size: 1rem;
  margin-top: 2rem;
  text-align: left;
}
.program-page .program-page-item.daf-item .program-page-more {
  display: none;
}
.program-page .program-page-item a:hover,
.program-page .program-page-item a:active {
  box-shadow: inset 0 0 0 1px #f28572;
}
.project-single {
  position: relative;
  overflow: hidden;
  background: #fcf5f5;
}
.project-single .mainbody {
  overflow: visible;
  background: transparent;
}
.project-single .project-hd {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.15);
  margin: 1.5rem 0;
  padding: 2rem 1.25rem;
}
.project-single .project-hd .thumbnail {
  padding-bottom: 65%;
  width: 100%;
  height: 0;
  position: relative;
  margin-bottom: 0;
  border-radius: 1rem;
  overflow: hidden;
}
.project-single .project-hd .thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.project-single .project-hd .project-title {
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 600;
  font-family: '思域黑体';
  margin-bottom: 0.75rem;
}
.project-single .project-hd .project-desc,
.project-single .project-hd .project-info,
.project-single .project-hd .project-amount {
  font-size: 1rem;
  line-height: 2;
}
.project-single .project-hd .project-desc > span,
.project-single .project-hd .project-info > span,
.project-single .project-hd .project-amount > span {
  display: inline-block;
  white-space: nowrap;
}
.project-single .project-hd .project-desc {
  margin-bottom: 0.75rem;
}
.project-single .project-hd .project-amount {
  color: #6E5F5F;
  margin: 0.75rem 0;
}
.project-single .project-hd .project-amount > span {
  color: #E83416;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0.5rem;
}
.project-single .project-hd .project-btns .btn {
  border-radius: 3rem;
  padding: 0.3rem 1rem;
  font-size: 1rem;
}
.project-single .project-hd .project-btns .btn .iconfont {
  font-size: 1rem;
  margin-right: 0.5rem;
}
.project-single .project-hd .project-btns .share-box {
  border-color: #E83416;
}
.project-single .project-hd .project-btns .share-box .share-text {
  color: #E83416;
}
.project-single .project-bd .project-tabs .nav-pills {
  position: relative;
  justify-content: center;
  margin-top: 3rem;
}
.project-single .project-bd .project-tabs .nav-pills::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #dedede;
  top: 50%;
  left: 0;
  z-index: 0;
}
.project-single .project-bd .project-tabs .nav-pills .nav-item {
  position: relative;
  z-index: 10;
  background: #fcf5f5;
  margin: 0 2.5rem;
}
.project-single .project-bd .project-tabs .nav-pills .nav-link {
  color: #333;
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
}
.project-single .project-bd .project-tabs .nav-pills .nav-link.active {
  background-color: transparent;
  color: #E83416;
}
.project-single .project-bd .project-tabs .tab-content {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0px 1px 1rem rgba(0, 0, 0, 0.15);
  margin: 1.5rem 0;
  padding: 3rem;
}
.project-single .project-donate-bar {
  position: relative;
  z-index: 1;
  padding: 1.5rem 2.25rem;
  border-radius: 1rem;
  background: linear-gradient(225.04deg, #FFF1F0 0%, #FFFFFF 100%);
  box-shadow: 0px 1rem 2.5rem rgba(2, 32, 77, 0.08);
}
.project-single .project-donate-bar .donate-num {
  font-size: 2.25rem;
}
.project-single .project-donate-bar .donate-text {
  color: #6E5F5F;
  font-size: 1.25rem;
}
.project-single .donate-form .btn-check:checked + .btn {
  color: #e02401;
  background-color: #fff;
  border-color: #e02401;
}
.project-single .donate-form .btn-check:checked + label {
  color: #e02401;
}
.project-single .donate-form .input-group-text:has(.btn-check:checked) {
  border-color: #e02401;
}
.project-single .donate-form .input-group-text:has(.btn-check:checked) + .form-control {
  border-color: #e02401;
}
.project-single .donate-form .btn .icon {
  vertical-align: middle;
  width: 5rem;
  height: 2rem;
}
.project-single .donate-form .amount-other {
  border-radius: 0.25rem;
  box-shadow: inset 0 0 0 1px #DCDFE6;
}
.project-single .donate-form .amount-other .el-input-group__append,
.project-single .donate-form .amount-other .el-input-group__prepend {
  background-color: transparent;
  color: #333;
  border-width: 0;
  padding: 0 0.5rem;
}
.project-single .donate-form .amount-other .el-input__inner {
  border-width: 0;
  background-color: transparent;
  padding: 0;
}
.project-single .donate-form .pay-type .el-radio-button__inner {
  padding: 0.25rem 0.75rem;
}
.project-single .donate-form .el-radio-button__inner:hover {
  color: #E83416;
}
.project-single .donate-form .el-radio-button__inner .icon {
  vertical-align: middle;
  width: 5rem;
  height: 2rem;
}
.project-single .donate-form .el-radio-button__orig-radio:checked + .el-radio-button__inner {
  color: #E83416;
  background-color: #fff;
  border-color: #E83416;
}
.project-single .donate-form .form-check .form-check-input {
  margin-top: 0.4rem;
  float: none;
  border-radius: 100%;
}
.project-single .donate-form .form-check .form-check-label {
  font-size: 0.875rem;
}
.project-single .pay-code {
  width: 17rem;
  height: 17rem;
}
.project-single .pay-code img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-single .project-single-history {
  width: 80%;
  margin: 0 auto;
}
.project-single .project-single-history a {
  font-size: 1.125rem;
  color: #6E5F5F;
  display: inline-block;
  margin: 1rem 0;
}
.project-single .project-single-history a:hover {
  color: #E83416;
}
.index-news {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
}
.index-news .index-swiper {
  width: 43%;
  height: 300px;
}
.index-news .index-swiper .swiper-news-box {
  display: block;
  overflow: hidden;
  position: relative;
}
.index-news .index-swiper .swiper-news-box .swiper-news-pic {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 300px;
  position: relative;
  z-index: 0;
}
.index-news .index-swiper .swiper-news-box .swiper-news-pic img {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
}
.index-news .index-swiper .swiper-news-box .swiper-news-desc {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 1rem;
}
.index-news .index-swiper .swiper-news-box .swiper-news-desc .news-time {
  width: 5rem;
  height: 5rem;
  color: #fff;
  padding-right: 2rem;
  border-right: rgba(255, 255, 255, 0.7) solid 1px;
  white-space: nowrap;
}
.index-news .index-swiper .swiper-news-box .swiper-news-desc .news-time .day {
  font-size: 1.25rem;
  line-height: 1;
  padding: 1rem 0 0.5rem;
}
.index-news .index-swiper .swiper-news-box .swiper-news-desc .news-time .year {
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}
.index-news .index-swiper .swiper-news-box .swiper-news-desc .news-describe {
  padding: 0 1.5rem;
  color: #fff;
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}
.index-news .index-swiper .swiper-news-box .swiper-news-desc .news-describe .news-title {
  font-size: 1.125rem;
}
.index-news .index-swiper .swiper-news-box .swiper-news-desc .news-describe .news-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}
.index-news .index-swiper .swiper-pagination {
  bottom: 140px;
}
.index-news .news-cont {
  width: 57%;
  background: #fff;
}
.index-news .news-cont .news-block {
  width: 100%;
  overflow: hidden;
}
.index-news .news-cont .news-block .news-title {
  padding: 1.25rem 2rem 1rem;
  display: flex;
  align-items: center;
  position: relative;
}
.index-news .news-cont .news-block .news-title::after {
  content: '';
  display: block;
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0;
  height: 1px;
  background: #e4e4e4;
}
.index-news .news-cont .news-block .news-title .title {
  position: relative;
  font-size: 1.125rem;
  flex: 1;
  min-width: 0;
}
.index-news .news-cont .news-block .news-title .title .iconfont {
  color: #E83416;
  font-size: 1.5rem;
}
.index-news .news-cont .news-block .news-title .more {
  font-size: 1rem;
  background: #f6f6f6;
  padding: 0.4rem 1.5rem;
  border-radius: 2rem;
  color: #333;
}
.index-news .news-cont .news-block .news-title .more .bi {
  margin-left: 0.25rem;
}
.index-news .news-cont .news-block .news-title .more:hover,
.index-news .news-cont .news-block .news-title .more:active {
  color: #fff;
  background: #E83416;
  text-decoration: none;
}
.index-news-list .news-item {
  padding: 0.3rem 1.5rem;
  margin: 1rem 0;
  white-space: nowrap;
}
.index-news-list .news-item:last-child {
  border-bottom-width: 0;
}
.index-news-list .news-item .news-item-title {
  display: block;
  flex: 1;
  min-width: 0;
  color: #3f3f3f;
}
.index-news-list .news-item .news-item-catname {
  color: #E83416;
}
.index-news-list .news-item .news-item-date {
  margin: 0 0.3rem;
  display: block;
  color: #6f6f6f;
}
.index-news-list .news-item a {
  display: block;
  overflow: hidden;
  font-size: 1.125rem;
}
.index-news-list .news-item a:hover {
  text-decoration: none;
}
.index-news-list .news-item a:hover .news-item-describe .msg-title {
  color: #E83416;
}
.index-news-list .news-item:hover {
  color: #E83416;
}
.party-news {
  padding-bottom: 2rem;
}
.party-news > .news-title {
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  border-bottom: 6px solid #E83416;
  margin-bottom: 1.25rem;
}
.party-news > .news-title .title {
  position: relative;
  font-size: 1.25rem;
  color: #fff;
  background: #E83416;
  line-height: 1.5;
  padding: 0.5rem 2rem;
}
.party-news > .news-title .more {
  font-size: 1rem;
  padding: 0.3rem 1.5rem;
  border-radius: 2rem;
  color: #6E5F5F;
}
.party-news > .news-title .more img {
  margin-right: 0.75rem;
  height: 2.25rem;
  width: auto;
}
.party-news > .news-title .more:hover,
.party-news > .news-title .more:active {
  color: #E83416;
  text-decoration: none;
}
.party-news .party-swiper {
  width: 40%;
  height: 330px;
  border-radius: 1.25rem;
}
.party-news .party-swiper .swiper-news-box {
  display: block;
  overflow: hidden;
  position: relative;
}
.party-news .party-swiper .swiper-news-box .swiper-news-pic {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 330px;
  position: relative;
  z-index: 0;
}
.party-news .party-swiper .swiper-news-box .swiper-news-pic img {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
}
.party-news .party-swiper .swiper-news-box .swiper-news-desc {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 1rem;
}
.party-news .party-swiper .swiper-news-box .swiper-news-desc .news-time {
  width: 5rem;
  height: 5rem;
  color: #fff;
  padding-right: 2rem;
  border-right: rgba(255, 255, 255, 0.7) solid 1px;
  white-space: nowrap;
}
.party-news .party-swiper .swiper-news-box .swiper-news-desc .news-time .day {
  font-size: 1.25rem;
  line-height: 1;
  padding: 1rem 0 0.5rem;
}
.party-news .party-swiper .swiper-news-box .swiper-news-desc .news-time .year {
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}
.party-news .party-swiper .swiper-news-box .swiper-news-desc .news-describe {
  padding: 0 1.5rem;
  color: #fff;
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}
.party-news .party-swiper .swiper-news-box .swiper-news-desc .news-describe .news-title {
  font-size: 1.125rem;
  margin: 0;
}
.party-news .party-swiper .swiper-news-box .swiper-news-desc .news-describe .news-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}
.party-news .party-swiper .swiper-pagination {
  bottom: 140px;
}
.party-news .news-cont {
  display: flex;
  flex-wrap: wrap;
}
.party-news .news-cont .news-block {
  width: 60%;
  background: #fff;
  overflow: hidden;
}
.party-news .news-cont .news-block .news-list .news-item {
  padding: 0.2rem 2rem;
  margin: 1rem 0;
  border-bottom-width: 0;
}
.party-news .news-cont .news-block .news-list .news-item:last-child {
  border-bottom-width: 0;
}
.party-news .news-cont .news-block .news-list .news-item .news-item-pic {
  display: none;
}
.party-news .news-cont .news-block .news-list .news-item .news-item-pic img {
  height: 200px;
  background: #777;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.party-news .news-cont .news-block .news-list .news-item .news-item-describe {
  color: #555;
}
.party-news .news-cont .news-block .news-list .news-item .news-item-describe .msg-title {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #3f3f3f;
}
.party-news .news-cont .news-block .news-list .news-item .news-item-describe .msg-title:hover {
  text-decoration: none;
}
.party-news .news-cont .news-block .news-list .news-item .news-item-describe .author {
  color: #666666;
  font-size: 0.875rem;
}
.party-news .news-cont .news-block .news-list .news-item .news-item-describe .msg-date {
  margin: 0.7rem 0 0.3rem;
  display: block;
  line-height: 1;
  color: #6f6f6f;
  font-size: 0.875rem;
}
.party-news .news-cont .news-block .news-list .news-item .news-item-describe .item-description {
  margin-top: 1.875rem;
}
.party-news .news-cont .news-block .news-list .news-item a {
  display: block;
  overflow: hidden;
}
.party-news .news-cont .news-block .news-list .news-item a:hover {
  text-decoration: none;
}
.party-news .news-cont .news-block .news-list .news-item a:hover .news-item-describe .msg-title {
  color: #E83416;
}
.party-news .news-cont .news-block .news-list .news-item:hover {
  background: #eee;
}
@keyframes scalexy {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.03);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.party-tabs {
  background-image: url(../../images/djgz_bg02.png), url(../../images/djgz_bg03.png);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center bottom;
  background-size: 100% auto, 100% auto;
  padding: 0 0 20rem;
  overflow: hidden;
}
.party-tabs .nav-pills {
  position: relative;
  justify-content: space-evenly;
  margin: 5rem 0;
}
.party-tabs .nav-pills .nav-item {
  position: relative;
  z-index: 10;
}
.party-tabs .nav-pills .nav-link {
  color: #E83416;
  font-size: 1.5rem;
  padding: 1rem 2.5rem;
  border: #E83416 solid 3px;
  border-radius: 1rem;
}
.party-tabs .nav-pills .nav-link.active {
  background-color: #E83416;
  color: #fff;
}
.party-tabs .nav-pills .nav-link .tab-icon {
  display: inline-block;
  width: auto;
  height: 2.5rem;
}
.jobs-tabs .nav-link {
  cursor: pointer;
  color: #333;
  font-size: 1.25rem;
}
.jobs-tabs .nav-link:hover,
.jobs-tabs .nav-link.active {
  color: #E83416;
}
.swiper-dsj {
  border-bottom: #ddd solid 1px;
  padding: 0 4rem !important;
}
.swiper-dsj::before,
.swiper-dsj::after {
  content: '';
  display: block;
  position: absolute;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  top: 0;
  z-index: 2;
}
.swiper-dsj::before {
  left: 0;
}
.swiper-dsj::after {
  right: 0;
}
.swiper-dsj .swiper-slide {
  width: auto !important;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-property: all;
}
.swiper-dsj .swiper-dsj-prev,
.swiper-dsj .swiper-dsj-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 100%;
  background: #E83416;
  color: #fff;
  font-size: 0.825rem;
  text-align: center;
  line-height: 1.25rem;
}
.swiper-dsj .swiper-dsj-prev.swiper-button-disabled,
.swiper-dsj .swiper-dsj-next.swiper-button-disabled {
  background: #ccc;
}
.swiper-dsj .swiper-dsj-prev {
  left: 2rem;
}
.swiper-dsj .swiper-dsj-next {
  right: 2rem;
}
.swiper-dsj .dsj-tabs .nav-item {
  margin: 0 1rem;
}
.swiper-dsj .dsj-tabs .nav-link {
  display: block;
  position: relative;
  padding: 1rem;
  color: #333;
  font-size: 1rem;
  border: none;
  background: none;
  height: 4rem;
  line-height: 1;
}
.swiper-dsj .dsj-tabs .nav-link.active {
  color: #E83416;
  font-size: 1.5rem;
  font-weight: bold;
}
.swiper-dsj .dsj-tabs .nav-link.active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background-color: #E83416;
}
.index-intro .intro-list .intro-item {
  cursor: pointer;
  color: #E83416;
  line-height: 1.6;
  text-align: center;
  padding: 1rem;
  margin: auto;
  max-width: 16rem;
  position: relative;
}
.index-intro .intro-list .intro-item::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: 1rem;
  background: linear-gradient(134.29deg, #FFFFFF 0%, #FAF7F7 100%);
  border: 1px solid #DEDEDE;
}
.index-intro .intro-list .intro-item::after {
  display: none;
}
.index-intro .intro-list .intro-item:hover::before {
  background: linear-gradient(133.73deg, #FFFFFF 0%, #FFEDED 100%);
  border: 1px solid #E83416;
}
.index-intro .intro-list .intro-item:hover::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  background: url(../../images/jxw.png) no-repeat top right;
  background-size: 56% auto;
  width: 100%;
  height: 0;
  padding-top: 40%;
  top: 0;
  right: 0;
  margin-top: -40%;
}
.index-intro .intro-list .intro-item .intro-icon .iconfont {
  font-size: 3rem;
}
.index-intro .intro-list .intro-item .intro-label {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.index-intro .intro-list .intro-item .intro-desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  height: 4rem;
  margin-top: 1rem;
}
.map-tatal {
  position: absolute;
  bottom: 20%;
  left: 0;
  z-index: 999;
  background: #fff;
  text-align: left;
  color: #333;
}
.map-tatal li {
  padding: 0.5rem 1rem;
}
.map-tatal li .iconfont {
  color: #E83416;
  background: linear-gradient(180deg, #EDB5AB 0%, #FCEBE6 100%);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 100%;
  display: inline-block;
  font-size: 0.865rem;
  margin: 0 0.5rem 0 0;
}
.map-tatal li span {
  margin: 0 0.5rem;
  font-weight: bold;
  vertical-align: -2px;
}
#mapArea {
  min-height: 70vh;
  width: 100%;
  background: white;
  margin: 0;
}
.index-project {
  overflow: hidden;
  background: linear-gradient(223.42deg, #FFE5E3 0%, #FAFAFA 100%);
}
.index-project .swiper-program {
  position: relative;
}
.index-project .swiper-program .swiper-program-cont {
  overflow: hidden;
}
.index-project .swiper-program .swiper-program-cont .program-page .program-page-item {
  margin: 1rem 1.5rem;
}
.index-project .program-next {
  position: absolute;
  right: -40px;
  top: 50%;
  width: 40px;
  height: 60px;
  margin-top: -30px;
  z-index: 9999;
  font-size: 2rem;
  line-height: 60px;
  color: #ccc;
}
.index-project .program-prev {
  position: absolute;
  left: -40px;
  top: 50%;
  width: 40px;
  height: 60px;
  margin-top: -30px;
  z-index: 9999;
  font-size: 2rem;
  line-height: 60px;
  color: #ccc;
}
.index-project .swiper-button-disabled {
  display: none;
}
.index-funds .funds-count-bar {
  background: #E83416;
  color: #fff;
}
.index-funds .funds-count-bar .item {
  border-right: rgba(255, 255, 255, 0.3) dashed 1px;
}
.index-funds .funds-count-bar .item:last-child {
  border-right-width: 0;
}
.index-funds .funds-count-bar .item .count-label {
  font-size: 1.125rem;
}
.index-funds .funds-count-bar .item .count-num {
  font-size: 1.75rem;
  font-weight: bold;
}
.index-funds .funds-card .card-header {
  font-size: 1.125rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
}
.index-funds .funds-card .card-body {
  padding: 1rem;
}
.index-funds .funds-table {
  width: 100%;
}
.index-funds .funds-table td {
  padding: 10px;
  line-height: 20px;
  font-size: 15px;
}
.index-funds .funds-table td.column-1 {
  width: 25%;
}
.index-funds .funds-table td.column-2 {
  width: 20%;
}
.index-funds .funds-table td.column-3 {
  width: 20%;
}
.index-funds .funds-table td.column-4 {
  width: 35%;
  text-align: right;
}
.index-funds .funds-table td.column-num {
  width: 50px;
}
.index-funds .funds-table td.column-33 {
  width: 33%;
}
.index-funds .funds-table td.column-67 {
  width: 67%;
}
.index-funds .donate-Scroll,
.index-funds .disburse-Scroll {
  height: 200px;
  overflow: hidden;
}
.index-funds .donate-Scroll .bd,
.index-funds .disburse-Scroll .bd {
  overflow: hidden;
  height: 200px;
}
.talk .swiper-talk {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.talk .swiper-talk .talk-item {
  border-radius: 1.25rem;
  background: linear-gradient(225.04deg, #fff1f0 0%, #ffffff 100%);
  box-shadow: 0px 0.875rem 1.75rem rgba(2, 32, 77, 0.08);
  padding: 1.25rem;
  margin: 3rem 2rem;
}
.talk .swiper-talk .talk-item .talk-pic {
  position: relative;
  flex: 0 0 32%;
  height: 0;
  padding-top: 40%;
  margin-right: 2rem;
}
.talk .swiper-talk .talk-item .talk-pic img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.talk .swiper-talk .talk-item .talk-box {
  flex: 1;
  min-width: 0;
}
.talk .swiper-talk .talk-item .talk-title {
  text-align: center;
  position: relative;
  padding: 1rem 0;
}
.talk .swiper-talk .talk-item .talk-title a {
  font-size: 1.25rem;
  color: #333;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}
.talk .swiper-talk .talk-item .talk-title > span {
  font-size: 0.875rem;
  line-height: 1.2;
  display: block;
  color: #ccc;
}
.talk .swiper-talk .talk-item .talk-title::before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background: #E83416;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
}
.talk .swiper-talk .talk-item .talk-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  border-bottom: #E83416 dashed 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.7;
}
.talk .swiper-talk .talk-item .talk-content {
  font-size: 1rem;
  line-height: 1.6;
  padding: 1.25rem 0;
  color: #6e5f5f;
}
.talk .talk-next {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 40px;
  height: 60px;
  margin-top: -30px;
  font-size: 2rem;
  line-height: 60px;
  color: #ccc;
  z-index: 10;
}
.talk .talk-prev {
  position: absolute;
  right: 0px;
  top: 50%;
  width: 40px;
  height: 60px;
  margin-top: -30px;
  z-index: 9999;
  font-size: 2rem;
  line-height: 60px;
  color: #ccc;
  z-index: 10;
}
.partner > .container {
  position: relative;
}
.partner .left-btn {
  position: absolute;
  left: -40px;
  top: 50%;
  width: 40px;
  height: 60px;
  margin-top: 1.75rem;
  font-size: 2rem;
  line-height: 60px;
  color: #ccc;
}
.partner .right-btn {
  position: absolute;
  right: -40px;
  top: 50%;
  width: 40px;
  height: 60px;
  margin-top: 1.75rem;
  z-index: 9999;
  font-size: 2rem;
  line-height: 60px;
  color: #ccc;
}
.partner-container {
  width: 100%;
  height: 20rem;
  background-color: #fff;
  margin: 0 auto 5rem !important;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0.5rem !important;
  z-index: 1;
}
.partner-container .swiper-slide {
  display: flex;
  flex-wrap: wrap;
}
.partner-container .swiper-slide .partner-pic {
  flex: 0 0 calc(16.66% - 0.4rem);
  margin: 1.25rem 0.2rem;
  height: 7rem;
  width: 100%;
  background: #fff center center no-repeat;
  background-size: contain;
}
.dsj-steps {
  position: relative;
  padding: 1rem;
  margin: 4rem 0;
}
.dsj-steps::before {
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 1px;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #b0b0b0;
}
.dsj-steps > li {
  width: 50%;
  position: relative;
  text-align: right;
  padding: 0 1.5rem;
  margin-bottom: 6rem;
  cursor: pointer;
}
.dsj-steps > li::before {
  content: '';
  position: absolute;
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  border: #b0b0b0 solid 1px;
  background: #b0b0b0;
  left: -7px;
  right: auto;
  top: 0.875rem;
}
.dsj-steps > li > a {
  color: #333;
  font-size: 1.25rem;
  line-height: 1.5;
  display: inline-block;
}
.dsj-steps > li .dsj-desc {
  font-size: 1rem;
  line-height: 2;
  color: #6E5F5F;
}
.dsj-steps > li:hover > a {
  color: #E83416;
}
.dsj-steps > li:hover::before {
  border-color: #E83416;
  background: #fff;
}
.dsj-steps > li:nth-child(odd)::before {
  left: auto;
  right: -7px;
}
.dsj-steps > li:nth-child(even) {
  margin-left: 50%;
  text-align: left;
}
.atten-qrcode {
  border-radius: 1.5rem;
  background: #FCF5F5;
  padding: 6rem 2rem 5rem;
}
.atten-qrcode .qr-item {
  width: 18%;
  text-align: center;
}
.atten-qrcode .qr-item .qr-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100% !important;
  border: #b0b0b0 solid 1px;
  border-radius: 1.5rem;
  overflow: hidden;
}
.atten-qrcode .qr-item .qr-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border: #FCF5F5 solid 10px;
  border-radius: 1.5rem;
}
.atten-qrcode .qr-item .qr-txt {
  font-size: 1rem;
  line-height: 2;
}
.axjz-page .axjz-list .axjz-item a {
  background: #E83416;
  padding: 0.75rem;
}
.axjz-page .donate-table th {
  font-size: 1.5rem;
}
.axjz-page .donate-table td {
  font-size: 1.125rem;
}
.axjz-page .donate-table .donate-table-thead {
  background: linear-gradient(217.67deg, #FFD1D1 0%, #FFF0F0 100%);
}
.axjz-page .axjz-tab .axjz-tab-item {
  background-color: #EDE9E8;
  font-size: 1.375rem;
  color: #6E5F5F;
  min-width: 13.75rem;
  text-align: center;
  cursor: pointer;
  padding: 1rem;
  margin: 0 0.25rem;
}
.axjz-page .axjz-tab .axjz-tab-item.active {
  background-color: #E83416;
  color: #fff;
}
.second-title {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  position: relative;
}
.second-title .title-desc {
  font-size: 1rem;
  color: #9C9292;
  line-height: 1.5;
  padding: 0.75rem 0 0;
  font-weight: normal;
  width: 36rem;
  max-width: 100%;
  margin: 0 auto;
}
.second-title .more-right {
  position: absolute;
  right: 0;
  overflow: hidden;
  top: 0;
}
.second-title::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  width: 4rem;
  overflow: hidden;
  background-color: #E83416;
}
.index-more {
  text-align: center;
  margin: 2rem 0 5rem;
}
.index-more .btn {
  border-radius: 4rem;
  padding: 0.25rem 3rem;
}
/*内页*/
.content {
  padding: 1.5rem 0;
  background: #fff;
  border-radius: 1rem;
  position: relative;
  z-index: 10;
}
.mainbody {
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.mainbody .sub-title {
  position: relative;
  margin: 1.75rem 0 1.5rem;
}
.mainbody .sub-title h3 {
  line-height: 1.4;
  padding: 1rem 0;
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #333;
  position: relative;
}
.mainbody .sub-title h3::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 0;
  border-bottom: #E83416 solid 2px;
}
.mainbody .sub-title2 {
  position: relative;
  margin: 2.125rem 0 2rem;
}
.mainbody .sub-title2 h3 {
  height: 1.875rem;
  line-height: 1;
  padding: 1rem;
  margin: 0;
  box-sizing: content-box;
  border-bottom: #eee solid 1px;
  font-size: 1.875rem;
  font-weight: 500;
  color: #333;
  position: relative;
}
.mainbody .sub-title2 h3::after {
  content: '';
  display: block;
  position: absolute;
  top: 1.125rem;
  left: 0;
  bottom: 1.125rem;
  width: 4px;
  background: #E83416;
  overflow: hidden;
}
.mainbody .sub-title2 .more {
  font-size: 1rem;
  float: right;
}
.mainbody .sub-title-sm {
  height: 1rem;
  position: relative;
  margin: 2rem 0 0.75rem;
}
.mainbody .sub-title-sm h3 {
  height: 1rem;
  line-height: 1;
  padding: 0 0.5rem;
  margin: 0;
  border-left: #ed5c44 solid 4px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.mainbody .mb-line {
  border-left: #eee solid 1px;
}
.mainbody .sub-cont {
  padding: 1.25rem 0;
  min-height: 22.5rem;
}
.mainbody .sub-cont .hospital .sel-province {
  width: 150px;
  height: 40px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  margin: 20px 0;
  text-indent: 10px;
  font-size: 20px;
  line-height: 18px;
}
.sidenav {
  height: 5.5rem;
  background: #f7f6f6;
  padding: 0.5rem 0;
}
.sidenav .sidebar-title {
  background: #FFDEDE;
  color: #E83416;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}
.sidenav .sidebar-cont {
  padding: 1rem;
}
.sidenav ul {
  margin-bottom: 0;
}
.sidenav ul li {
  margin: 1px;
}
.sidenav ul li > a,
.sidenav ul li > span {
  position: relative;
  display: block;
  padding: 1rem 3.25rem 1rem 0;
  color: #333;
  font-size: 1.125rem;
  line-height: 2;
  text-align: center;
  white-space: nowrap;
}
.sidenav ul li > a .xmicon,
.sidenav ul li > span .xmicon {
  position: absolute;
  display: block;
  height: 1.75rem;
  width: 1.75rem;
  line-height: 1.75rem;
  font-size: 1.75rem;
  top: 50%;
  left: 0.875rem;
  margin: -0.875rem 0 0 0;
  color: #E83416;
}
.sidenav ul li > a:hover {
  text-decoration: none;
  color: #E83416;
}
.sidenav ul li > a:hover .xmicon {
  color: #fff;
}
.sidenav ul li.current-cat > a,
.sidenav ul li.current_page_item > a,
.sidenav ul li.current-page-ancestor > a,
.sidenav ul li.current-cat > span,
.sidenav ul li.current_page_item > span,
.sidenav ul li.current-page-ancestor > span {
  color: #E83416;
}
.sidenav ul li.current-cat > a::before,
.sidenav ul li.current_page_item > a::before,
.sidenav ul li.current-page-ancestor > a::before,
.sidenav ul li.current-cat > span::before,
.sidenav ul li.current_page_item > span::before,
.sidenav ul li.current-page-ancestor > span::before {
  content: '';
  display: block;
  position: absolute;
  left: 1.25rem;
  right: 4.75rem;
  bottom: 0.625rem;
  height: 2px;
  background: #E83416;
  border-radius: 2px;
}
.sidenav ul li.current-cat > a:hover:hover .xmicon,
.sidenav ul li.current_page_item > a:hover:hover .xmicon,
.sidenav ul li.current-page-ancestor > a:hover:hover .xmicon {
  color: #E83416;
}
.sidenav ul li > .children {
  display: none;
}
/* 列表 */
.list-style1 .item {
  padding: 20px 0;
  border-bottom: #eee solid 1px;
}
.list-style1 .item .list-date {
  text-align: right;
  font-size: 12px;
}
.list-style1 .item .list-date span {
  display: inline-block;
  padding: 0 10px;
  white-space: nowrap;
  background: #E83416;
  line-height: 20px;
  border-radius: 20px;
  color: #fff;
}
.list-style1 .item .list-date p {
  padding: 5px 0;
  color: #999;
  white-space: nowrap;
}
.list-style1 .item .list-cont {
  padding: 0 0 0 20px;
  line-height: 20px;
}
.list-style1 .item .list-cont h4.list-title {
  margin: 0;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 20px;
}
.list-style1 .item .list-cont p.list-info {
  font-size: 12px;
  color: #666;
  min-height: 40px;
}
.list-style1 .item .list-cont a.list-more {
  border: #ccc solid 1px;
  font-size: 12px;
  color: #555;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 1.875rem;
}
.list-style1 .item .list-cont a.list-more:hover {
  border-color: #E83416;
  background-color: #E83416;
  text-decoration: none;
  color: #fff;
}
.list-page-c {
  text-align: center;
}
/* 项目列表 */
.list-style2 li {
  padding: 0.25rem 0.75rem;
  border-bottom: #ccc dashed 1px;
}
.list-style2 a {
  overflow: hidden;
  display: block;
  color: #666;
  font-size: 0.875rem;
}
.list-style2 a:hover {
  text-decoration: none;
}
.list-style2 a:hover,
.list-style2 a:focus,
.list-style2 a:active {
  color: #E83416;
}
.list-style2 a .item-date {
  float: right;
  color: #999;
  font-size: 0.75rem;
}
.progress-list {
  min-height: 28.125rem;
  padding-left: 3.5rem;
  position: relative;
}
.progress-list::before {
  content: '';
  display: block;
  position: absolute;
  left: 1.125rem;
  top: 0;
  bottom: 0;
  width: 0px;
  border-left: 1px solid #b0b0b0;
}
.progress-list .list-item {
  position: relative;
  padding: 0.75rem 0;
}
.progress-list .list-item::before {
  content: '';
  display: block;
  position: absolute;
  left: -3rem;
  top: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #E83416;
  z-index: 1;
}
.progress-list .list-item .list-item-pic {
  margin-right: 1.875rem;
  position: relative;
}
.progress-list .list-item .list-item-pic img {
  display: inline-block;
  background: #eee;
  object-fit: cover;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 1.125rem 2.25rem 1.125rem 0;
}
.progress-list .list-item .list-item-describe {
  color: #555;
  flex: 1;
  min-width: 0;
}
.progress-list .list-item .list-item-describe .item-title {
  display: block;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #E83416;
  margin: 0.25rem 0;
}
.progress-list .list-item .list-item-describe .item-title:hover {
  text-decoration: none;
}
.progress-list .list-item .list-item-describe .msg-date {
  line-height: 24px;
  display: block;
  color: #9C9292;
  font-size: 1.125rem;
  margin-top: 1.5rem;
}
.progress-list .list-item .list-item-describe .item-description {
  margin: 1rem 0;
  font-size: 1.25rem;
  color: #3f3f3f;
  word-break: break-all;
}
/* 会员列表 */
.member-list {
  display: flex;
  flex-wrap: wrap;
}
.member-list .member-col {
  flex: 0 0 12.5%;
  min-width: 0;
  padding: 0 3rem 2.5rem 0;
}
.member-list .member-item {
  padding: 0 0.5rem 2rem;
  cursor: pointer;
  width: 100%;
}
.member-list .member-item .thumbnail {
  position: relative;
  width: 75%;
  height: 0;
  padding-bottom: 94%;
  border-radius: 4px;
  overflow: hidden;
  margin: auto;
}
.member-list .member-item .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}
.member-list .member-item .thumbnail .member-post {
  position: absolute;
  left: 0;
  bottom: 1rem;
  z-index: 1;
  background: #BBA772;
  border-radius: 0 1.5rem 1.5rem 0;
  line-height: 1.8;
  padding: 0 1rem 0 0.75rem;
  white-space: nowrap;
  color: white;
  font-size: 1rem;
}
.member-list .member-item .name {
  font-size: 2.375rem;
  text-align: center;
  color: #E83416;
  margin-top: 1rem;
}
.member-list .member-item .remark {
  font-size: 1.125rem;
  text-align: center;
  color: #6E5F5F;
}
.member-list .member-item-small {
  padding: 1rem 0.5rem;
  border: #dedede solid 1px;
  text-align: center;
  position: relative;
  border-radius: 0.5rem;
}
.member-list .member-item-small::after {
  content: '';
  display: block;
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: -1px;
  height: 1px;
  background-color: #E83416;
}
.member-list .member-item-small .name {
  font-size: 1.25rem;
  text-align: center;
  color: #333;
}
.member-list .member-item-small .remark {
  font-size: 1rem;
  text-align: center;
  color: #6E5F5F;
}
.member-tab .member-tab-item {
  background-color: #EDE9E8;
  font-size: 1.375rem;
  color: #6E5F5F;
  min-width: 13.75rem;
  text-align: center;
  cursor: pointer;
  padding: 1rem 4rem;
  margin: 0 0.25rem;
}
.member-tab .member-tab-item.active {
  background-color: #E83416;
  color: #fff;
}
/* 图片列表 */
.photo-list .photo-item {
  padding: 0 4rem 2rem 0;
}
.photo-list .photo-item .thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  border-radius: 4px;
  overflow: hidden;
}
.photo-list .photo-item .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}
.photo-list .photo-item .name {
  font-size: 1rem;
  text-align: center;
  margin-top: 0.75rem;
}
.photo-list .photo-item .remark {
  font-size: 0.875rem;
  text-align: center;
  color: #666;
}
/* 文章详情 */
.article {
  padding: 0.625rem 0 1.875rem;
}
.article .article-title {
  line-height: 1.5;
  overflow: hidden;
  padding: 0 2.5rem;
  text-align: center;
}
.article .article-title h2 {
  font-size: 1.75rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
}
.article .article-info {
  color: #999999;
  line-height: 2.75rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 12.5rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  border-bottom: #eee solid 1px;
  overflow: hidden;
}
.article .article-info .share-box {
  margin-right: -12.5rem;
}
.article .article-line {
  margin: 1.25rem 0;
  border-bottom: #eee solid 1px;
  overflow: hidden;
}
.article .hint {
  color: red;
  padding-left: 2.25rem;
}
.article .article-c {
  font-size: 1rem;
  line-height: 1.8;
  overflow: hidden;
  color: #444;
}
.article .article-c img,
.article .article-c p img {
  max-width: 100%;
  height: auto;
}
.article.member-article {
  background: #fafafa;
  padding: 3rem 1.625rem;
  border-radius: 1.5rem;
}
.article.member-article .article-title {
  font-size: 2.375rem;
  color: #E83416;
}
.article.member-article .article-title h2 {
  margin-bottom: 0;
}
.article.member-article .article-info {
  font-size: 1.375rem;
  color: #E83416;
}
.article.member-article .article-c {
  padding: 2rem 5rem;
}
.list02 {
  padding: 10px 0;
}
.list02 ul li {
  height: 140px;
  padding: 0 0 20px;
  border-bottom: #e6e6e6 solid 1px;
  margin-bottom: 20px;
  position: relative;
}
.list02 ul li .photo {
  position: absolute;
  top: 0;
  left: 0;
}
.list02 ul li .photo,
.list02 ul li .photo img {
  width: 260px;
  height: 120px;
  border-radius: 5px;
}
.list02 ul li .cont {
  margin-left: 270px;
  height: 140px;
  overflow: hidden;
}
.list02 ul li .cont .list02_t {
  line-height: 2rem;
}
.list02 ul li .cont .list02_t a {
  font-size: 18px;
}
.list02 ul li .cont .list02_c {
  line-height: 22px;
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: #666;
}
/*下载*/
.listdl a {
  background: #fad6d0 none repeat scroll 0 0;
  border: 1px solid #ed5c44;
  border-radius: 5px;
  color: #a2240f;
  display: block;
  font-size: 0.875rem;
  height: 33px;
  line-height: 33px;
  overflow: hidden;
  padding: 0 10px;
}
.listhospital ul {
  padding: 10px 0;
}
.listhospital ul li {
  margin: 0 20px 20px 0px;
  float: left;
  position: relative;
}
.listhospital ul li a {
  display: block;
  background: #fad6d0 none repeat scroll 0 0;
  border: 1px solid #ed5c44;
  border-radius: 20px;
  color: #a2240f;
  line-height: 1.875rem;
  overflow: hidden;
  padding: 0 15px 2px;
  font-size: 0.875rem;
}
.news-list {
  min-height: 28.125rem;
  padding-left: 0 !important;
}
.news-list .news-item {
  position: relative;
  border-bottom: #f1f1f1 solid 1px;
  padding: 0.75rem 0;
}
.news-list .news-item .news-item-pic {
  margin-right: 1.5rem;
  position: relative;
}
.news-list .news-item .news-item-pic img {
  display: block;
  background: #eee;
  object-fit: cover;
  width: 23rem;
  height: 13rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.news-list .news-item .news-item-pic .play {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background: transparent;
}
.news-list .news-item .news-item-pic .news-time {
  width: 5rem;
  height: 5rem;
  background: #f6f6f6;
  color: #333;
  text-align: center;
}
.news-list .news-item .news-item-pic .news-time .day {
  font-size: 1.5rem;
  line-height: 1;
  padding: 1.1rem 0 0.5rem;
}
.news-list .news-item .news-item-pic .news-time .year {
  line-height: 1;
  color: #999;
  font-size: 0.875rem;
}
.news-list .news-item .news-item-pic .news-public {
  position: relative;
}
.news-list .news-item .news-item-pic .news-public .bg {
  display: block;
}
.news-list .news-item .news-item-pic .news-public .year {
  width: 60%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 2.25rem;
  line-height: 2.25rem;
  white-space: nowrap;
  color: #7FBADA;
  font-size: 1.5rem;
  text-align: center;
}
.news-list .news-item .news-item-describe {
  color: #555;
  flex: 1;
  min-width: 0;
}
.news-list .news-item .news-item-describe .msg-title {
  display: block;
  font-size: 1.375rem;
  line-height: 1;
  color: #3f3f3f;
  margin: 0.25rem 0;
}
.news-list .news-item .news-item-describe .msg-title:hover {
  text-decoration: none;
}
.news-list .news-item .news-item-describe .author {
  color: #666666;
  font-size: 0.875rem;
}
.news-list .news-item .news-item-describe .msg-date {
  line-height: 24px;
  display: block;
  color: #9C9292;
  font-size: 1rem;
  margin-top: 1.25rem;
}
.news-list .news-item .news-item-describe .item-description {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: #3f3f3f;
  word-break: break-all;
}
.news-list .news-item .news-item-describe .item-btn {
  margin-top: 10px;
  overflow: hidden;
}
.news-list .news-item .news-item-describe .item-btn .btn-more {
  display: inline-block;
  background: #e40b20;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
}
.news-list .news-item a {
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: 1.5rem 3rem;
}
.news-list .news-item a:hover,
.news-list .news-item a:active,
.news-list .news-item a:focus {
  text-decoration: none;
  box-shadow: inset 0 0 0 1px #f28572;
  border-radius: 0.5rem;
}
.news-list .news-item a:hover .news-item-pic .news-time,
.news-list .news-item a:active .news-item-pic .news-time,
.news-list .news-item a:focus .news-item-pic .news-time {
  background: #E83416;
  color: #fff;
  text-align: center;
}
.news-list .news-item a:hover .news-item-pic .news-time .year,
.news-list .news-item a:active .news-item-pic .news-time .year,
.news-list .news-item a:focus .news-item-pic .news-time .year {
  color: #fff;
}
.share-box {
  float: right;
  border-radius: 1.5rem;
  border: 1px solid #DEDEDE;
  padding: 0.3rem 1rem;
  background: #fff;
  height: 1.5rem;
  line-height: 1;
  box-sizing: content-box;
}
.share-box span {
  vertical-align: middle;
}
.share-box .share-text {
  position: relative;
  font-size: 1rem;
  color: #9C9292;
}
.share-box .share-text .iconfont {
  font-size: 1.125rem;
  margin-right: 5px;
  vertical-align: -2px;
}
.share-box .sosh-item-icon {
  width: 14px;
  height: 14px;
  padding: 4px;
}
.public-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 !important;
}
.public-list .news-item {
  margin: 3.75rem 0;
  flex: 0 0 33.33%;
}
.public-list .news-item:nth-child(3n + 1) > a {
  margin: 0 auto 0 0;
}
.public-list .news-item:nth-child(3n + 2) > a {
  margin: 0 auto 0;
}
.public-list .news-item:nth-child(3n + 3) > a {
  margin: 0 0 0 auto;
}
.public-list .news-item .news-item-pic {
  position: relative;
  width: 21.25rem;
  height: 30rem;
}
.public-list .news-item .news-item-pic img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.public-list .news-item .news-item-pic .pic-title {
  position: absolute;
  left: 2rem;
  top: 7.5rem;
  color: #E83416;
  font-size: 1.75rem;
  line-height: 1.2;
}
.public-list .news-item .news-item-pic .pic-title .title-txt {
  font-size: 1.75rem;
}
.public-list .news-item .news-item-pic .pic-title .title-txt span {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}
.public-list .news-item .news-item-pic .pic-title .slug-txt {
  color: #6E5F5F;
  font-size: 1rem;
}
.public-list .news-item .news-item-pic .pic-title.white > * {
  color: #fff !important;
}
.public-list .news-item .news-item-pic .pic-title.management {
  top: 8rem;
}
.public-list .news-item .news-item-pic .pic-title.management .title-txt {
  background-image: linear-gradient(90deg, #B88B62, #DDB38C, #B88B62);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.125rem;
  font-weight: bold;
}
.public-list .news-item .news-item-pic .pic-title.management .slug-txt {
  font-size: 0.875rem;
}
.public-list .news-item .news-item-describe {
  margin-top: 2rem;
}
.public-list .news-item .news-item-describe .msg-title {
  text-align: center;
  font-size: 1.5rem;
}
.public-list .news-item .news-item-describe .msg-date,
.public-list .news-item .news-item-describe .item-description {
  display: none;
}
.public-list .news-item a {
  display: block;
  color: #333;
  width: 21.25rem;
}
.notice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 !important;
}
.notice-list .news-item {
  margin: 3.75rem 0;
  flex: 0 0 30%;
}
.notice-list .news-item .news-item-pic {
  width: 100%;
  height: 0;
  padding-top: 55.2%;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.notice-list .news-item .news-item-pic img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.notice-list .news-item .news-item-describe {
  color: #555;
  flex: 1;
  min-width: 0;
}
.notice-list .news-item .news-item-describe .msg-title {
  display: block;
  font-size: 1.625rem;
  line-height: 1.4;
  color: #3f3f3f;
  margin: 1.125rem 0 1.375rem;
  min-height: 4.5625rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.notice-list .news-item .news-item-describe .msg-title:hover {
  text-decoration: none;
}
.notice-list .news-item .news-item-describe .msg-date {
  line-height: 24px;
  display: block;
  color: #9C9292;
  font-size: 1.125rem;
  margin-bottom: 1.75rem;
}
.notice-list .news-item a {
  display: block;
  overflow: hidden;
  padding: 1.25rem 0.75rem 3.125rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px #dedede;
  border-radius: 1rem;
}
.notice-list .news-item a:hover,
.notice-list .news-item a:active,
.notice-list .news-item a:focus {
  text-decoration: none;
  box-shadow: inset 0 0 0 1px #f28572;
}
.video-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 !important;
}
.video-list .news-item {
  margin: 2.5rem 0;
  flex: 0 0 32%;
}
.video-list .news-item .news-item-pic {
  width: 100%;
  height: 0;
  padding-top: 55.2%;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.video-list .news-item .news-item-pic .bofang {
  position: absolute;
  right: 1.75rem;
  bottom: 1.25rem;
  z-index: 10;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.video-list .news-item .news-item-pic img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-list .news-item .news-item-describe {
  color: #555;
  flex: 1;
  min-width: 0;
}
.video-list .news-item .news-item-describe .msg-title {
  display: block;
  font-size: 1.625rem;
  line-height: 1.4;
  color: #3f3f3f;
  margin: 1.125rem 0 1.375rem;
  min-height: 4.5625rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}
.video-list .news-item .news-item-describe .msg-title:hover {
  text-decoration: none;
}
.video-list .news-item .news-item-describe .item-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  margin: 1rem 0 0;
  font-size: 1rem;
  color: #6E5F5F;
  word-break: break-all;
}
.video-list .news-item .news-item-describe .msg-date {
  display: none;
}
.video-list .news-item a {
  display: block;
  overflow: hidden;
  padding: 1.25rem 0.75rem 3.125rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px #dedede;
  border-radius: 1rem;
}
.video-list .news-item a:hover,
.video-list .news-item a:active,
.video-list .news-item a:focus {
  text-decoration: none;
  box-shadow: inset 0 0 0 1px #E83416;
}
.page-list .page-item {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
.page-list .page-item:last-child {
  border-bottom-width: 0;
}
.page-list .page-item:nth-child(even) {
  flex-direction: row-reverse;
}
.page-list .page-item .page-item-pic {
  flex: 0 0 40%;
}
.page-list .page-item .page-item-pic .pic-box {
  width: 100%;
  height: 0;
  padding-top: 66%;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.page-list .page-item .page-item-pic img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.page-list .page-item .page-item-describe {
  color: #555;
  margin: 2rem;
  flex: 1;
  min-width: 0;
}
.page-list .page-item .page-item-describe .msg-title {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 1.625rem;
  line-height: 1.2;
  color: #3f3f3f;
}
.page-list .page-item .page-item-describe .msg-title:hover {
  text-decoration: none;
  color: #E83416;
}
.page-list .page-item .page-item-describe .border-line {
  display: block;
  font-size: 0;
  width: 4rem;
  height: 4px;
  background: #f28572;
  border-radius: 3px;
  margin-top: 1rem;
}
.page-list .page-item .page-item-describe .page-item-more {
  text-align: right;
}
.page-list .page-item .page-item-describe .page-item-more i.bi {
  margin: 0 5px;
}
.page-list .page-item .page-item-describe .msg-date {
  margin: 0.7rem 0 0.3rem;
  display: block;
  line-height: 1;
  color: #6f6f6f;
  font-size: 0.875rem;
}
.page-list .page-item .page-item-describe .item-description {
  margin: 1.875rem 0;
  font-size: 1rem;
}
.search-header .search-title {
  font-size: 1.5rem;
}
.search-header .search-title .search-results {
  color: #E83416;
}
.search-header .search-count {
  color: #666666;
  font-size: 0.875rem;
}
.search-page .search-list .page-header {
  border-bottom: none;
}
.search-page .search-list .search-item {
  border-bottom: 1px solid rgba(136, 136, 136, 0.2);
  padding-bottom: 2.25rem;
  margin-bottom: 2.25rem;
}
.search-page .search-list .search-item .search-pic a {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 65%;
}
.search-page .search-list .search-item .search-pic img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eee;
  border-radius: 0.5rem;
}
.search-page .search-list .search-item .search-text .msg-title {
  display: block;
  font-size: 24px;
  color: black;
}
.search-page .search-list .search-item .search-text .msg-title:hover {
  text-decoration: none;
}
.search-page .search-list .search-item .search-text .author {
  color: #666666;
  font-size: 0.875rem;
}
.search-page .search-list .search-item .search-text .msg-date {
  color: #666666;
  font-size: 0.875rem;
  margin-right: 20px;
}
.search-page .search-list .search-item .search-text .item-description {
  margin: 0.75rem 0;
  min-height: 5rem;
}
.table th,
.table td {
  padding: 1rem;
  font-size: 1rem;
  color: #6E5F5F;
}
.form-horizontal .col-xs-1,
.form-horizontal .col-sm-1,
.form-horizontal .col-md-1,
.form-horizontal .col-lg-1,
.form-horizontal .col-xs-2,
.form-horizontal .col-sm-2,
.form-horizontal .col-md-2,
.form-horizontal .col-lg-2,
.form-horizontal .col-xs-3,
.form-horizontal .col-sm-3,
.form-horizontal .col-md-3,
.form-horizontal .col-lg-3,
.form-horizontal .col-xs-4,
.form-horizontal .col-sm-4,
.form-horizontal .col-md-4,
.form-horizontal .col-lg-4,
.form-horizontal .col-xs-5,
.form-horizontal .col-sm-5,
.form-horizontal .col-md-5,
.form-horizontal .col-lg-5,
.form-horizontal .col-xs-6,
.form-horizontal .col-sm-6,
.form-horizontal .col-md-6,
.form-horizontal .col-lg-6,
.form-horizontal .col-xs-7,
.form-horizontal .col-sm-7,
.form-horizontal .col-md-7,
.form-horizontal .col-lg-7,
.form-horizontal .col-xs-8,
.form-horizontal .col-sm-8,
.form-horizontal .col-md-8,
.form-horizontal .col-lg-8,
.form-horizontal .col-xs-9,
.form-horizontal .col-sm-9,
.form-horizontal .col-md-9,
.form-horizontal .col-lg-9,
.form-horizontal .col-xs-10,
.form-horizontal .col-sm-10,
.form-horizontal .col-md-10,
.form-horizontal .col-lg-10,
.form-horizontal .col-xs-11,
.form-horizontal .col-sm-11,
.form-horizontal .col-md-11,
.form-horizontal .col-lg-11,
.form-horizontal .col-xs-12,
.form-horizontal .col-sm-12,
.form-horizontal .col-md-12,
.form-horizontal .col-lg-12 {
  padding-left: 10px;
  padding-right: 10px;
}
.form-group .required {
  margin-right: 4px;
  color: #e02401;
}
.wpcf7-form {
  text-align: center;
}
.wpcf7-form p .inp-name {
  display: inline-block;
  width: 12rem;
  text-align: right;
  margin: 0.125rem 1rem 0 0;
  vertical-align: top;
}
.wpcf7-form p textarea {
  width: 30rem;
  height: 100px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.wpcf7-form p input {
  width: 30rem;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.wpcf7-form p input[type="radio"] {
  width: auto;
  vertical-align: top;
  margin: -0.125rem 0.375rem 0 0;
}
.wpcf7-form p input[type="checkbox"] {
  width: auto;
  vertical-align: top;
  margin: -0.125rem 0.375rem 0 0;
}
.wpcf7-form p .wpcf7-checkbox {
  width: 30rem;
  display: inline-table;
  text-align: left;
}
.wpcf7-form p .wpcf7-checkbox .wpcf7-list-item {
  margin: 0 0 10px 0;
  width: 100px;
  display: inline-block;
  white-space: nowrap;
}
.wpcf7-form p .wpcf7-radio {
  width: 30rem;
  display: inline-table;
  text-align: left;
}
.wpcf7-form p .wpcf7-radio .wpcf7-list-item {
  margin-right: 1rem;
}
.wpcf7-form p .wpcf7-radio .wpcf7-list-item.last {
  margin-right: 0;
}
.wpcf7-form p input[type="submit"] {
  background: #E83416;
  width: 8rem;
  color: white;
  font-size: 18px;
  line-height: 18px;
  border-radius: 25px;
  position: relative;
  margin-left: 12.125rem;
  margin-top: 3rem;
}
.wpcf7-form p i {
  color: #e02401;
  vertical-align: text-top;
  margin: 0 0.375rem 0 0;
}
@media (max-width: 1400px) {
  html,
  body {
    font-size: 14px;
  }
  .header {
    padding-top: 0;
  }
  .header .menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
  }
  .header .menu .navbar-default .navbar-nav > li > a {
    padding: 1.75rem 0.5rem;
    font-size: 0.875rem;
  }
  .index-project .swiper-program .swiper-program-cont .program-page .program-page-item {
    margin: 1rem;
  }
}
@media (max-width: 1200px) {
  html,
  body {
    font-size: 14px;
  }
  .header {
    padding-top: 0;
  }
  .header .menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
  }
  .header .menu .navbar-default .navbar-nav > li > a {
    padding: 1.75rem 0.5rem;
    font-size: 0.875rem;
  }
  .index-intro .intro-list .intro-item .intro-label {
    font-size: 2rem;
  }
}
@media (max-width: 992px) {
  html,
  body {
    font-size: 14px;
  }
  .index-intro .intro-list .intro-item .intro-label {
    font-size: 1.5rem;
  }
  .index-intro .intro-list .intro-item .intro-desc {
    font-size: 1rem;
    height: 3rem;
  }
}
@media (max-width: 768px) {
  html,
  body {
    font-size: 12px;
  }
  .header {
    padding-top: 0;
    height: 6rem;
  }
  .header .header-logo {
    padding: 1rem;
  }
  .header .header-logo .logo img {
    height: 4rem;
  }
  .header .menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
  }
  .header .menu .navbar-default .navbar-nav > .active > a::before,
  .header .menu .navbar-default .navbar-nav > .active > a:hover::before,
  .header .menu .navbar-default .navbar-nav > .active > a:focus::before {
    width: 5rem;
    margin: auto;
    bottom: 1.25rem;
  }
  .header .menu .dropdown-menu > li > a {
    color: #333;
    background-color: #f6f6f6;
  }
  .header .menu .dropdown-menu > .active > a,
  .header .menu .dropdown-menu > .active > a:hover,
  .header .menu .dropdown-menu > .active > a:focus {
    background-color: #ffffff;
    color: #E83416;
  }
  .map-tatal {
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
  }
  .index-intro .intro-list .intro-item {
    padding: 0.5rem;
    line-height: 1.2;
  }
  .index-intro .intro-list .intro-item .intro-label {
    font-size: 1.25rem;
  }
  .index-intro .intro-list .intro-item .intro-desc {
    font-size: 1rem;
    margin-top: 0.5rem;
    height: 4.25rem;
  }
  #mapArea {
    min-height: 100vw;
  }
  .header-kv img {
    min-height: auto;
    padding: 0;
  }
  .index-news .index-swiper {
    width: 100%;
    height: 56vw;
  }
  .index-news .index-swiper .swiper-news-box .swiper-news-pic {
    padding-top: 56vw;
  }
  .index-news .news-cont {
    width: 100%;
  }
  .index-news .news-cont .news-block .news-list {
    min-height: auto;
  }
  .program-page .program-page-item {
    margin-bottom: 0.3rem;
  }
  .program-page .program-page-item .thumbnail {
    padding-bottom: 75%;
  }
  .program-page .program-page-item .title {
    height: 10rem;
  }
  .program-page .program-page-item .program-page-more {
    font-size: 1rem;
    bottom: 0;
    padding: 0.2rem 1rem;
  }
  .program-page .program-page-item.daf-item .thumbnail {
    margin-right: 1rem;
  }
  .program-page .program-page-item.daf-item .title {
    height: auto;
    padding-bottom: 0;
  }
  .program-page .program-page-item.daf-item .program-page-title {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
  }
  .program-page .program-page-item.daf-item .program-page-desc {
    line-height: 1.4;
  }
  .program-page .program-page-item.daf-item .program-page-date {
    margin-top: 0.5rem;
  }
  .index-project .swiper-program .swiper-program-cont .program-page .program-page-item {
    margin: 0.3rem;
    bottom: 0;
    padding: 0;
  }
  .talk .swiper-talk .swiper-slide .row {
    flex-direction: column;
  }
  .talk .swiper-talk .talk-item {
    box-shadow: 0px 0.875rem 0.625rem rgba(2, 32, 77, 0.08);
    margin: 1rem 0.5rem;
  }
  .talk .swiper-talk .talk-item .talk-pic {
    margin-right: 1rem;
  }
  .second-title {
    margin-top: 1.5rem;
  }
  .mainbody .sub-title {
    margin: 1rem 0;
  }
  .mainbody .sub-title h3 {
    font-size: 2rem;
    padding: 0.5rem 0;
  }
  .mainbody .sub-title2 {
    margin: 1rem 0;
  }
  .mainbody .sub-cont {
    padding: 0.5rem;
    min-height: 15rem;
  }
  .sidenav {
    width: 100%;
    height: auto;
    float: none;
    padding: 0;
  }
  .sidenav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sidenav ul li {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    height: auto;
  }
  .sidenav ul li a {
    padding: 10px 5px;
    line-height: 1.5;
    text-align: center;
    font-size: 1.25rem;
    white-space: nowrap;
  }
  .sidenav ul li a .xmicon {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
    left: auto;
  }
  .sidenav ul li.current-cat a {
    border-left-width: 0;
  }
  .sidenav ul li.current-cat > a::before,
  .sidenav ul li.current_page_item > a::before,
  .sidenav ul li.current-cat > span::before,
  .sidenav ul li.current_page_item > span::before {
    left: 1rem;
    right: 1rem;
    bottom: 0;
  }
  .sidenav .left-qr {
    display: none;
  }
  .article {
    padding: 0 0 10px;
  }
  .video-list .news-item {
    flex: 0 0 49%;
    margin: 0.5rem 0;
  }
  .project-single .project-hd {
    padding: 1.5rem;
  }
  .project-single .project-hd .thumbnail {
    padding-bottom: 56.25%;
    margin-bottom: 1rem;
  }
  .project-single .project-hd .project-desc,
  .project-single .project-hd .project-info,
  .project-single .project-hd .project-amount {
    font-size: 1rem;
    line-height: 1.4;
  }
  .project-single .project-bd .project-tabs .nav-pills {
    margin-top: 1rem;
    margin-bottom: 0 !important;
  }
  .project-single .project-bd .project-tabs .nav-pills .nav-item {
    margin: 0 0.5rem;
  }
  .project-single .project-bd .project-tabs .nav-pills .nav-link {
    padding: 0.5rem;
    font-size: 1.25rem;
  }
  .project-single .project-bd .project-tabs .tab-content {
    margin: 1rem 0;
    padding: 1rem 1.5rem;
  }
  .project-single .project-donate-bar {
    box-shadow: 0px 1rem 1rem rgba(2, 32, 77, 0.08);
    padding: 1.5rem;
  }
  .progress-list {
    padding-left: 2rem;
  }
  .progress-list::before {
    left: 0.125rem;
    border-color: #ddd;
  }
  .progress-list .list-item::before {
    left: -2.5rem;
    width: 1.25rem;
    height: 1.25rem;
  }
  .progress-list .list-item .list-item-describe .item-title {
    font-size: 1.5rem;
  }
  .progress-list .list-item .list-item-describe .item-description {
    margin: 0.5rem 0;
  }
  .progress-list .list-item .list-item-describe .msg-date {
    line-height: 1.5;
    font-size: 1rem;
    margin-top: 1rem;
  }
  .footer .foot-bd {
    padding: 10px;
  }
  .footer .foot-bd .friendlink {
    float: none;
    text-align: center;
    height: auto;
    line-height: normal;
  }
  .footer .foot-bd .friendlink img {
    height: 24px;
    width: auto;
  }
  .footer .foot-bd .footlink {
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  .footer .foot-bd .footlink > li {
    width: 100%;
    flex: auto;
  }
  .footer .foot-bd .footlink > li > a {
    color: #fff;
    cursor: default;
    text-decoration: none;
    display: block;
    padding: 0.75rem;
    position: relative;
  }
  .footer .foot-bd .footlink > li .dropdown-toggle::after {
    display: inline-block;
  }
  .footer .foot-bd .footlink > li .dropdown-toggle > .caret {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
  }
  .footer .foot-bd .footlink > li:first-child {
    display: none;
  }
  .footer .foot-bd .footlink .dropdown-menu {
    padding: 0.75rem;
  }
  .footer .foot-bd .foot-relation {
    padding: 2rem 10vw;
  }
  .partner .left-btn {
    left: 0;
  }
  .partner .right-btn {
    right: 0;
  }
  .news-list .news-item .news-item-pic {
    margin-right: 1rem;
  }
  .news-list .news-item .news-item-pic img {
    width: 30vw;
    height: 20vw;
  }
  .news-list .news-item .news-item-describe .msg-title {
    font-size: 1.25rem;
  }
  .news-list .news-item a {
    padding: 1rem;
  }
  .public-list .news-item {
    flex: 0 0 50%;
    margin: 1rem 0;
  }
  .public-list .news-item .news-item-pic {
    width: 100%;
    height: 0;
    padding-bottom: 141.17%;
  }
  .public-list .news-item .news-item-pic img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .public-list .news-item .news-item-pic .pic-title {
    z-index: 2;
    top: 30% !important;
    left: 1.5rem;
  }
  .public-list .news-item .news-item-pic .pic-title .title-txt {
    font-size: 1.25rem !important;
  }
  .public-list .news-item .news-item-pic .pic-title .title-txt span {
    font-size: 1.5rem !important;
    font-weight: 700;
    display: block;
  }
  .public-list .news-item .news-item-describe {
    margin-top: 1rem;
  }
  .public-list .news-item a {
    width: auto;
    margin: 0 0.5rem !important;
  }
  .notice-list .news-item {
    margin: 0.6rem 0;
    flex: 0 0 50%;
  }
  .notice-list .news-item .news-item-describe {
    color: #555;
    flex: 1;
    min-width: 0;
  }
  .notice-list .news-item .news-item-describe .msg-title {
    font-size: 1.25rem;
    min-height: 3.5rem;
  }
  .notice-list .news-item .news-item-describe .msg-date {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .notice-list .news-item a {
    padding: 1rem;
    margin: 0 0.5rem;
  }
  .atten-qrcode {
    padding: 2.5rem 0.5rem;
  }
  .atten-qrcode .qr-item {
    width: 42%;
  }
  .jobs-tabs .nav-link {
    font-size: 1.125rem;
  }
  .sosh-item-icon {
    width: 1rem;
    height: 1rem;
  }
  .wpcf7-form {
    text-align: left;
  }
  .wpcf7-form p .inp-name {
    display: block;
    width: auto;
    text-align: left;
    margin: 0;
  }
  .wpcf7-form p textarea {
    width: auto;
  }
  .wpcf7-form p input {
    width: auto;
  }
  .wpcf7-form p input[type="radio"] {
    width: auto;
  }
  .wpcf7-form p input[type="checkbox"] {
    width: auto;
  }
  .wpcf7-form p .wpcf7-checkbox {
    width: auto;
  }
  .wpcf7-form p .wpcf7-radio {
    width: auto;
  }
  .wpcf7-form p input[type="submit"] {
    display: block;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-right: auto;
    margin-left: auto;
    margin-top: 2rem;
  }
}
@media (max-width: 576px) {
  .header .menu .navbar-default .navbar-brand {
    font-size: 0.875rem;
  }
}
/*# sourceMappingURL=./index.css.map */