.flex {
  display: flex
}

.flex_s_b {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.flex_s_a {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex_f_s {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}


.flex_s_b_f_s {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex_s_a_f_s {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.flex_column {
  flex-direction: column;
}

.flex_wrap {
  flex-wrap: wrap;
}


.flex_none {
  flex: none;
}


.flex_1 {
  flex: 1;
}

.flex_half {
  width: 50%;
}


.content {
  width: 1260px;
  margin: 0 auto;
}

/* header */
header {
  padding: 18px 0; 
  background-color: #003e1b;
}

.logo {
  cursor: pointer;
}

.header_title {
  position: relative;
  top: 8px;
  margin-left: 8px;
  color: #fff;
}

.header_title .title_zh {
  font-size: 30px;
}

.header_title .title_en {
  font-size: 9px;
}

.header_r {
  position: relative;
}

.header_r input {
  /* width: 340px; */
  /* height: 40px; */
  /* box-sizing: border-box; */
  /* padding-left: 23px; */
  /* padding-right: 46px; */
  /* background-color: #d0e9db; */
  /* border-radius: 20px; */
  /* border: none; */
}


.header_r .search_icon {
  position: absolute;
  top: 8px;
  right: 17px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.header_r .search_icon img {
  width: 100%;
  height: 100%;
}


/* nav */
.nav {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
}

.nav a {
  position: relative;
  display: block;
  width: 10%;
  color: #333333;
}

.nav a:hover {
  background-color: #01953d;
  color: #fff;
}

.nav .active {
  background-color: #01953d;
  color: #fff;
}

.nav a::after {
  position: absolute;
  top: 23px;
  right: 0;
  content: '';
  width: 1px;
  height: 15px;
  background-color:#dbdbdb;
}
.nav a:last-child::after,
.nav a:hover::after,
.nav .active::after {
  width: 0;
}
.nav a.selected{    background-color: #01953d;
    color: #fff;}
.nav a:last-child::after, .nav a:hover::after, .nav .selected::after {
    width: 0;
}
/* footer */
footer {
  background-color: #003e1b;
  color: #b2b2b2;
}


footer .footer_link {
  padding: 36px 0;
  border-bottom: 1px solid #fff;
}

footer .footer_link a {
  margin-left: 22px;
  color: #b2b2b2;
}

footer .footer_link .link_down {
  margin-top: 14px;
  padding-left: 62px;
}

footer .footer_link a:hover {
  color: #fff;
}

footer .footer_info {
  padding: 45px 0;
  text-align: center;
}

.common_wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* banner common */
.banner_common {
  height: 350px;
}

.banner_common img {
  width: 100%;
  height: 100%;
}

/* router */
.router {
  width: 272px;
  padding-bottom: 43px;
  background-color: #dee6f2;
}

.router .router_title {
  padding: 46px 0 33px 0;
  background-color: #003e1b;
  text-align: center;
  color: #fff;
}
.router .router_title .Column_Anchor{font-size:30px;}
.router .router_title .router_title_zh {
  font-size: 30px;
}

.router .router_title .router_title_en {
  font-size: 18px;
}

.router_list {
  padding: 28px 0 0 0;
}

.router_list .router_item  {
  padding: 16px 0;
  text-align: center;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}
.router_list .router_item a{
  padding: 16px 0;
  text-align: center;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}

.router_list .router_item:hover,
.router_list .router_item.selected {
  background-color: #b7c6e0;
  color: #003e1b;
}

.enter {
  width: 272px;
  /*padding: 40px 17px 25px 17px;*/
  background-color: #dee6f2;
  box-sizing: border-box;
}

.enter .enter_title {
  padding-bottom: 30px;
  font-size: 24px;
  color: #333333;
}

.enter .enter_item {
  padding: 20px 0;
  border-top: 1px solid #c0cde1;
  cursor: pointer;
}


.enter_item .enter_icon {
  width: 70px;
  height: 70px;
  margin-right: 16px;
}

.enter_item .enter_icon img {
  width: 100%;
  height: 100%;
}

.enter_item .enter_r_zh {
  font-size: 16px;
  color: #333333;
}

.enter_item .enter_r_zh:hover {
  color:#003e1b;
}

.enter_item .enter_r_en {
  position: relative;
  padding: 2px 6px;
  margin-top: 10px;
  background-color: #b7c6e0;
  color: #dee6f2;
  font-size: 12px;
}


.enter_item .enter_r_en::after {
  position: absolute;
  content: "";
  top: 6px;
  right: -3px;
  width: 10px;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 5px solid #fff;
  border-bottom: 5px solid transparent;
}


.qrcode {
  text-align: center;
}

.qrcode .qrcode_img {
  width: 103px;
  height: 103px;
  margin: 0 auto 15px auto;
}

.qrcode .qrcode_img img {
  width: 100%;
  height: 100%;
}

/* detail */

.detail {
  overflow: hidden;
  margin-left: 30px;
}

.detail .detail_title  {
  position: relative;
  padding: 20px 0;
  border-bottom: 2px solid #e6e6e6;
}

.detail .detail_title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 190px;
	height: 2px;
	background-color: #003e1b;
}

.detail .title_icon {
  width: 27px;
  height: 29px;
}

.detail .title_icon img {
  width: 100%;
  height: 100%;
}

.detail .title_text {
  margin-left: 20px;
  font-size: 30px;
  color: #333333;
}

.detail .detail_nav {
  cursor: pointer;
}
.detail .detail_nav a {
  cursor: pointer;
  color: #333333;
}

.detail .detail_nav .curr {
  color: #989898;
}


.detail .list .item {
  position: relative;
  padding: 23px 0 23px 16px;
  border-bottom: 1px solid#efefef;
  font-size: 16px;
  cursor: pointer;
}

.detail .list .item:hover {
  color: #ee780f;
}

.detail .list .item::before {
  position: absolute;
  content: "";
  top: 48%;
  left: 0;
  transform: translate(0, -48%);
  transform: rotate(-45deg);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 5px solid #ee780f;
  border-top: 5px solid transparent;
}

.detail .list .item .item_text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
}

.detail .list .item .item_time {
  color: #989898;
}
.detail .list .item .item_text a {
  color: #333;
}
.detail .list .item .item_text a:hover {
  color: #ee780f;
}
.detail .pagination {
  margin-top: 55px;
  text-align: center;
}
.detail .pagination span {
  display: inline-block;
  margin-right: 10px;
  padding: 5px 12px;
  border: 1px solid #dedede;
  cursor: pointer;
  background-color: #efefef;
  background-color: #efefef;
  user-select: none;
}

.detail .pagination span:hover,
.detail .pagination span.active {
  background-color: #fff;
}

.detail_heading {
  padding: 45px 0 0 0;
  color: #333333;
  font-size: 34px;
  text-align: center;
}

.detail_main p {
  margin: 30px 0;
  font-size: 16px;
  line-height: 32px;
  color: #333333;
  text-indent: 30px;
  text-align: justify;
}


/* detail_donation_ways */
.detail_donation_ways .ways {
  margin-top: 45px;
}

.detail_donation_ways .ways_title{
  font-size: 16px;
  color: #333333;
}

.detail_donation_ways .ways_content div {
  padding: 8px 0;
}
.clearfix:after{clear: both;content: ".";display: block;height:0;visibility: hidden;}
.clearfix{ display: block; *zoom:1; }
/*系统默认搜索*/
.wp_search{ display:inline-block;position:relative;padding-left:4px;border: 1px solid #d0d0d0;}
.wp_search #keyword{ width:160px!important;padding: 4px 0; border:none;height:20px; line-height:20px; background:transparent; color:#fff; }
.wp_search .search{width:32px;height: 30px;border:0px; background: #FFFFFF url(images/sous.png) no-repeat center;cursor: pointer; vertical-align:top; }
/*自定义输入框*/
.searchbox{width: 340px;text-align:right;float:right;}
.wp-search {position: relative;background: #d0e9db;border-radius: 20px;}
.wp-search form {display: block;}
.wp-search .search-input {margin-left: 23px;margin-right: 40px;}
.wp-search .search-input input.search-title {width: 100%;height: 40px;line-height: 40px;background: none;color: #404040;font-size: 14px;border:0;outline: 0;font-family: "微软雅黑";padding: 0;}
.wp-search .search-btn {width: 40px;height: 40px;position: absolute;right: 0;top:0%;}
.wp-search .search-btn input.search-submit {width: 40px;height: 40px;border:0;outline: 0;background: url(search.png) no-repeat left center;cursor: pointer;}
/*搜索去背景色：*/
input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,input:-webkit-autofill:active {-webkit-transition-delay: 99999s;-webkit-transition: color 99999s ease-out, background-color 99999s ease-out;}

