body {
  overflow-x: hidden;
  font-size: calc( 0.83333333vw + 1px);
}
.f14 {
 font-size: calc( 0.72916667vw + 1px);
}
.f16 {
font-size: calc( 0.83333333vw + 1px);
}
.f18 {
    font-size: calc( 0.9375vw + 1px);
}
.f20 {
    font-size: calc( 1.04166667vw + 1px);
}
.f22 {
    font-size: calc( 1.14583333vw + 1px);
}
.f24 {
    font-size: calc( 1.25vw + 1px);
}
.f26 {
    font-size: calc( 1.35416667vw + 1px);
}
.f30 {
    font-size: calc( 1.5625vw + 1px);
}
.f32 {
    font-size: calc( 1.66666667vw + 1px);
}
.f36 {
    font-size: calc( 1.875vw + 1px);
}
.f40 {
    font-size: calc( 2.08333333vw + 1px);
}
.f48 {
    font-size: calc( 2.5vw + 1px);
}
.f56 {
    font-size: calc( 2.91666667vw + 1px);
}
.f60 {
    font-size: calc( 3.125vw + 1px);
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .f14 {
    font-size: 12px;
  }
  .f16 {
    font-size: 14px;
  }
  .f18 {
    font-size: 16px;
  }
  .f20 {
    font-size: 16px;
  }
  .f22,
  .f24 {
    font-size: 18px;
  }
  .f30,
  .f32,
  .f36 {
    font-size: 22px;
  }
  .f36 {
    font-size: calc(36 / 24 * 1em);
  }
  .f40 {
    font-size: calc(40 / 32 * 1em);
  }
  .f48 {
    font-size: calc(48 / 32 * 1em);
  }
  .f56 {
    font-size: calc(56 / 32 * 1em);
  }
  .f60 {
    font-size: calc(60 / 32 * 1em);
  }
  .f64 {
    font-size: calc(64 / 32 * 1em);
  }
}
.flex,
.flex_js,
.flex_jc,
.flex_ac,
.flex_js_ac,
.flex_jc_ac {
  display: flex;
}
.flex_js {
  justify-content: space-between;
}
.flex_jc {
  justify-content: center;
}
.flex_ac {
  align-items: center;
}
.flex_js_ac {
  justify-content: space-between;
  align-items: center;
}
.flex_jc_ac {
  justify-content: center;
  align-items: center;
}
.w1600 {
  max-width: 1600px;
  width: 96%;
  margin: 0 auto;
}
.body_bg {
  background: url(../images/bg.jpg) repeat-y center top;
  background-size: cover;
}
.hidden {
  overflow: hidden;
}
.ani {
  transition: all 0.5s;
}
a:hover .ani {
  transform: scale(1.15);
}
.header {
  width: 100%;
  z-index: 100;
  position: absolute;
  left: 0;
  top: 0;
  padding: 1.5625vw 0;
}
.header .menuIcon {
  display: none;
}
.header .logo img{max-width:188px;}
.header .other .search {
  position: relative;
}
.header .other .open_search {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 100%;
  cursor: pointer;
}
.header .other .open_search i {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/search.svg) no-repeat center;
  position: relative;
}
.header .other .open_search.on i {
  background: none;
}
.header .other .open_search.on i:before,
.header .other .open_search.on i:after {
  position: absolute;
  content: '';
  width: 90%;
  left: 10%;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
  background: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.header .other .open_search.on i:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.header .other .top_search {
  position: absolute;
  right: 0;
  top: 120%;
  background: #fff;
  width: 300px;
  padding-right: 40px;
  display: none;
  border: 1px solid #947854;
  overflow: hidden;
}
.header .other .top_search .text {
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 45px 0 15px;
  border: none;
  color: #947854;
}
.header .other .top_search .btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background: url(../images/search.png) no-repeat center center #947854;
}
.header .other .search_show .top_search {
  display: block;
}
@media (max-width: 1024px) {
  .header .other {
    z-index: 100;
  }
  .header .search,
  .header .menuIcon {
    margin-left: 15px;
  }
    .header .other .open_search {
      width: 30px;
      height: 30px;
    }
  .header .menuIcon {
    display: inline-block;
    vertical-align: middle;
  }
  .header #open_menu {
    z-index: 100;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: block;
    position: relative;
  }
  .header #open_menu i {
    display: inline-block;
    width: 90%;
    height: 3px;
    border-radius: 4px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
  }
  .header #open_menu::before,
  .header #open_menu::after {
    width: 90%;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    left: 0;
    content: '';
    position: absolute;
  }
  .header #open_menu::before {
    top: 5px;
  }
  .header #open_menu::after {
    bottom: 5px;
    top: auto;
  }
  .header #open_menu.open_menu_on i {
    opacity: 0;
  }
  .header #open_menu.open_menu_on::before,
  .header #open_menu.open_menu_on::after {
    background-color: #fff;
  }
  .header #open_menu.open_menu_on:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 15px;
  }
  .header #open_menu.open_menu_on:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: auto;
    top: 15px;
  }
}
.navTop li {
  float: left;
  position: relative;
  margin-right: 3.125vw;
}
.navTop li span {
  display: inline-block;
  position: relative;
}
.navTop li span > a {
  position: relative;
  display: block;
  color: #fff;
    font-size: 18px;
}
.navTop li .op{display: none;}
.navTop li.aon span > a,
.navTop li span > a:hover {
  color: #947854;
}
.navTop li .sub {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 150px;
/*  background-color: #fff;*/
/*  padding: 10px;*/
  display: none;
/*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
/*  border-radius: 10px;*/
}
.navTop li .sub dl{background-color: #fff;padding: 5px 0;margin-top: 10px;border-radius: 10px;box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);}
.navTop li .sub a {
  display: block;
  text-align: center;
  margin: 20px 0;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .navTop {
    display: none;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-y: auto;
    visibility: hidden;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8);
    line-height: 40px;
    margin-left: 0;
    display: block;
    padding: 0;
    transition: all 0.5s;
    opacity: 0;
    background-image: none;
    margin-right: 0;
  }
  .navTop.navTop_show {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
  .navTop .ul {
    display: block;
    padding-top: 70px;
    position: relative;
    height: 100%;
    width: 250px;
    float: right;
    background-color: #947854;
  }
  .navTop li {
    display: block;
    float: none;
    margin: 0!important;
    padding: 0 10%;
    font-size: 16px;
  }
  .navTop li span {
    display: block;
  }
      .navTop li .sub{left:0;transform: translateX(0);z-index: 2;position: relative;}
    .navTop li .sub dl{background:none;box-shadow: 0 0 BLACK;    margin-top: 0;}
    .navTop li .sub a{margin:0;text-align: left;color: #ccc;font-size: 14px;}
    .navTop li .op{display: block;}
  .navTop li span > a {
     color: #fff!important;
    font-weight: normal;
    text-align: left;
      display: inline-block;
      font-size: 15px;
  }
.navTop li .op{position: absolute; width: 40px; height: 100%; height: 100%; transition: 0.3s; right: 25px; top: 0;}
.navTop li.hover .op,
.navTop li.hover .op{transform: rotate(45deg);}
.navTop li .op-multi:before,
.navTop li .op-multi:after,
.navTop li .op:before,
.navTop li .op:after{position: absolute; content: ''; width: 12px; height: 2px;background: #fff; left: 50%; top: 50%; transform: translate(-50%,-50%);}
.navTop li .op-multi:after,
.navTop li .op:after{ width: 2px; height: 12px;}
.navTop li .op-multi:before,
.navTop li .op-multi:after{background-color: #666;}
}
.Hbanner {
  position: relative;
}
.Hbanner .wapBan {
  display: none;
}
.Hbanner .slick-dots {
  position: absolute;
  left: 0;
  bottom: 2.34375vw;
  width: 100%;
  z-index: 2;
}
@media (max-width: 1024px) {
  .Hbanner .wapBan {
    display: block;
  }
  .Hbanner .pcBan {
    display: none;
  }
}
@media (max-width: 640px) {
	.Hbanner .wapBan{ width: 100%; min-height: 25vh; object-fit: cover; -webkit-object-fit: cover;}
}
.NyBanner {
  overflow: hidden;
  position: relative;
  border-radius: 0 0 0 250px;
}
.NyBanner figure img {
  width: 100%;
}
.NyBanner .wapBan {
  display: none;
}
@media (max-width: 1024px) {
  .NyBanner .wapBan {
    display: block;
  }
  .NyBanner .pcBan {
    display: none;
  }
}
.Htitle {
  padding: calc(150 / 1920 * 100%) 0 calc(85 / 1920 * 100%);
}
.Htitle .left {
  width: calc(500 / 1600 * 100%);
  position: relative;
}
.Htitle .en,
.Htitle .cn {
  font-weight: bold;
}
.Htitle .en {
  color: #947854;
}
.Htitle .cn {
  color: #092f4f;
  margin-top: 10px;
}
.Htitle .line {
  position: absolute;
  top: 0;
  width: 3px;
  background-color: #947854;
  height: 100%;
}
.Htitle .line.rg {
  right: 0;
}
.Htitle .right {
  position: relative;
  padding: 0.5% calc(45 / 1600 * 100%);
  width: calc(100% - 500 / 1600 * 100%);
}
.Htitle .right.txt_right {
  text-align: right;
}
.Htitle .right .title {
  color: #092f4f;
  margin-bottom: 2.08333333vw;
}
.Htitle .right .des {
  line-height: 1.9;
}
@media (max-width: 640px) {
  .Htitle .w1600 {
    flex-flow: column wrap;
    justify-content: flex-start;
  }
    .header .logo img{max-width:146px;}

    .NyBan .txt .cn{font-size: 20px;}
    .NyBan .txt .des{font-size: 18px;}
  .Htitle .left,
  .Htitle .right {
    width: 100%;
  }
  .Htitle .left {
    margin-bottom: 5%;
  }
  .Htitle .left .line {
    display: none;
  }
  .Htitle .right {
    padding-left: 10px;
    border-left: 3px solid #947854;
  }
  .Htitle .right .line {
    display: none;
  }
  .Htitle .right.txt_right {
    text-align: left;
  }
}
.Hmore {
  color: #947854;
  display: inline-block;
}
.Hmore::after {
  content: '';
  width: 17px;
  height: 12px;
  background: url(../images/more.png) no-repeat center;
  display: inline-block;
  margin-left: 30px;
}
.Hmore.whitebg {
  padding: 0 16px;
  line-height: 50px;
  background-color: #fff;
  border-radius: 25px;
}
.Hmore.bg {
  background-color: #947854;
  color: #fff;
  padding: 0 16px;
  line-height: 50px;
  border-radius: 25px;
}
.Hmore.bg::after {
  background-image: url(../images/more2.png);
  margin-left: 47px;
}
.Habout .Htitle .des {
/*  max-width: 410px;*/
}
.Habout .contain .left {
  width: calc(660 / 1920 * 100%);
  position: relative;
}
.Habout .contain .left::before {
  content: '';
  height: 100%;
  width: 122.3%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/Habout_bg.jpg) no-repeat center;
  background-size: cover;
}
.Habout .contain .txtCon {
  max-width: 500px;
  width: 94%;
  margin-left: auto;
  margin-right: 0;
  padding: 5.20833333vw 0;
  position: relative;
  z-index: 2;
}
.Habout .contain .right {
  margin-top: -8.33333333vw;
  width: calc(100% - 660 / 1920 * 100%);
  position: relative;
  z-index: 2;
}
.Habout .contain .num_item {
  max-width: 306px;
  width: 100%;
  color: #fff;
  padding: 4% 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 6.5%;
}
.Habout .contain .num_item .num {
  display: inline-block;
  font-weight: normal;
  margin-right: 5px;
}
.Habout .contain .num_item img {
  margin-bottom: 10px;
}
.Habout .Hmore {
  margin-top: 9%;
}
@media (max-width: 1024px) {
  .Habout .contain .num_item {
    padding: 2% 0;
      margin-bottom: 2%;
}
  .Habout .contain .right {
    padding-left: 5%;
  }
 .Habout .contain .num_item img {
  margin-bottom: 2px;
}
.Habout .Hmore {
  margin-top: 3%;
}
}
@media (max-width: 640px) {
  .Habout .contain {
    flex-flow: column wrap;
  }
  .Habout .contain .left,
  .Habout .contain .right {
    width: 100%;
  }
  .Habout .contain .right {
    padding-left: 0;
  }
  .Habout .contain .left::before {
    width: 100%;
  }
}
.Hcase {
  overflow: hidden;
  padding-bottom: calc(80 / 1920 * 100%);
}
.Hcase .Htitle .w1600 {
  position: relative;
  padding-right: 200px;
}
.Hcase .Htitle .des {
  max-width: 775px;
  margin-left: auto;
  margin-right: 0;
}
.Hcase .page_btn {
  position: absolute;
  right: 0;
  bottom: 1.5625vw;
}
.Hcase figure {
  position: relative;
}
.Hcase figure i {
  display: block;
  width: 100%;
  padding-top: calc(500 / 710 * 100%);
}
.Hcase figure::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #092f4f;
  opacity: 0.6;
}
.Hcase .slick-active figure::before {
  opacity: 0;
}
.Hcase .list {
  padding-right: calc(91.5 / 1600 * 100%);
}
.Hcase .slider {
  margin: 0 calc(-35 / 1600 * 100%);
}
.Hcase .slider .slick-list {
  overflow: initial;
}
.Hcase .box {
  display: block;
  margin: 0 calc(70 / 1600 * 100%);
}
.Hcase .box:hover .tit {
  color: #947854;
}
.Hcase .box:hover figure i {
  transform: scale(1.15);
}
.Hcase .txt {
  border-bottom: 3px solid #947854;
  padding: calc(39 / 710 * 100%) 0;
  padding-right: 120px;
  position: relative;
}
.Hcase .Hmore {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.Hcase .tit {
  color: #222222;
  margin-bottom: calc(20 / 710 * 100%);
}
.Hcase .intro {
  color: #666;
}
@media (max-width: 640px) {
  .Hcase .Htitle .w1600 {
    padding-right: 90px;
  }
  .Hcase .Htitle .right {
    padding-left: 0;
    border-left: 0;
    padding-right: 2%;
  }
  .Hcase .Htitle .right .line {
    display: block;
  }
}
.Hteam::before {
  content: '';
  width: 60%;
  height: 84%;
  background: url(../images/HTeam_bg.jpg) no-repeat center;
  position: absolute;
  right: 0;
  bottom: 3%;
}
.Hteam,
.Hteam .w1600 {
  position: relative;
}
.Hteam figure {
  position: relative;
}
.Hteam figure i {
  display: block;
  width: 100%;
  padding-top: calc(464 / 348 * 100%);
}
.Hteam figure::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  background-image: -ms-linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}
.Hteam .slider {
  margin: 0 calc(-35 / 1600 * 100%) 5%;
}
.Hteam .box {
  display: block;
  margin: 0 calc(31 / 348 * 100%);
  position: relative;
}
.Hteam .tit {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 10%;
}
.Hteam .tit::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 4px;
  background-color: #947854;
}
.Hteam .tit span {
  display: inline-block;
  margin-right: 1vw;
}
.Hnews {
  padding-bottom: 4%;
}
.Hnews .Htitle .right {
  width: calc(100% - 500 / 1600 * 100%);
  max-width: 637px;
  position: relative;
  padding: 0 10px 0 0;
}
.Hnews .Htitle dl {
  display: flex;
  padding-top: calc(35 / 637 * 100%);
}
.Hnews .Htitle dl dt {
  width: 133px;
  flex: 0 0 auto;
  padding-left: 32px;
  background: url(../images/news.png) no-repeat left top;
  font-weight: bold;
  color: #092f4f;
}
.Hnews .Htitle dl dd {
  width: calc(100% - 133px);
}
.Hnews .Htitle .tit {
  color: #222222;
  margin-bottom: 15px;
}
.Hnews .other {
  display: flex;
  align-items: center;
}
.Hnews .other span {
  color: #666666;
  display: block;
}
.Hnews .other .more {
  color: #947854;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.Hnews .other .more::before {
  content: '';
  width: 1px;
  height: 16px;
  background-color: #666;
  display: inline-block;
  margin: 0 15px;
}
.Hnews .txt {
  padding: 2.5vw 0;
}
.Hnews .txt .tit {
  margin-bottom: 1.5625vw;
}
.Hnews figure {
  position: relative;
}
.Hnews figure i {
  display: block;
  width: 100%;
}
.Hnews .top {
  width: 41.875%;
  float: left;
}
.Hnews .top i {
  padding-top: calc(378 / 670 * 100%);
}
.Hnews .listbox {
  width: 55%;
  float: right;
}
.Hnews .listbox .ul {
  margin: 0 calc(-19 / 880 * 100%);
}
.Hnews .listbox .box {
  display: block;
  margin: 0 calc(36 / 880 * 100%);
}
.Hnews .listbox i {
  padding-top: calc(238 / 422 * 100%);
}
.Hnews .page_btn {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 1.5%;
}
.Hnews .page_btn::before {
  content: '';
  width: 100%;
  height: 3px;
  background-color: #947854;
}
.Hnews .page_btn .slick-prev {
  margin-left: 7%;
}
.Hnews .page_btn .slick-arrow {
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .Hnews .Htitle .flex_js_ac {
    flex-flow: column wrap;
  }
  .Hnews .Htitle .left {
    margin-bottom: 0;
  }
  .Hnews .Htitle .right {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }
  .Hnews .Htitle .tit {
    margin-bottom: 5px;
  }
  .Hnews .top,
  .Hnews .listbox {
    float: none;
    width: 96%;
    margin: 0 auto 3%;
  }
  .Hnews .listbox .ul {
    margin-left: auto;
    margin-right: auto;
  }
  .Hnews .listbox .box {
    margin: 0;
  }
}
.footer {
  background-color: #1b1b1b;
  padding-top: calc(140 / 1920 * 100%);
}
.footer .logo {
  width: 25%;
  float: left;
}
.footer .right {
  float: right;
  width: 74%;
}
.footer a {
  color: #fff;
}
.footer dt {
  margin-bottom: 2vw;
}
.footer dd a {
  display: block;
  line-height: 2.4;
  color: #666666;
}
.footer dd a:hover {
  color: #fff;
}
.footer .ewm p {
  margin-top: 10px;
}
.footer .fcontact .tit {
  color: #fff;
}
.footer .fcontact .tel {
  color: #947854;
}
.footer .fcontact .share {
  margin-top: 12%;
    display: none;
}
.footer .fcontact .share a {
  display: inline-block;
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  background: url(../images/sina.png) no-repeat center;
  border-radius: 100%;
  opacity: 0.5;
  margin-right: 12px;
}
.footer .fcontact .share a:hover {
  background-color: #947854;
  border-color: #947854;
  opacity: 1;
}
.footer .fcontact .share .qq {
  background-image: url(../images/qq.png);
}
.footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2% 0;
  margin: 6% 0 2%;
}
.footer .bottom a {
  color: #666;
}
.footer .bottom a:hover {
  color: #fff;
}
.footer .bottom img {
  margin: 0 3px 0 10px;
}
.footer .bottom i {
  margin: 0 10px;
}
.footer .bottom i:last-child {
  display: none;
}
@media (max-width: 1024px) {
  .footer .logo {
    display: none;
  }
  .footer .right {
    width: 100%;
    float: none;
  }
  .footer .right dl {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer{position:relative;}
  .footer .right .flex_js{display: table;width: 100%;}
  .footer .right dl{display:block;}
    .footer .right dl:nth-child(4),.footer .right dl:nth-child(5){margin-bottom: 30px;}
  .footer .right dl dd{display:none;}
  .footer .right dl{width: 33.33%;float:left;text-align: center;}
  .footer .fcontact{float:right;position: absolute;top: 145px;right: 8%;}
  .footer .right .flex_js {
    justify-content: center;
  }
  .footer .ewm {
    margin-right: 4vw;
    margin-left: 8%;
      float: left;
  }
  .footer .bottom {
    flex-flow: column wrap;
  }
  .footer .bottom p {
    margin: 0;
    text-align: center;
    line-height: 2;
  }
  .footer .bottom p a {
    display: inline-block;
  }
}
.NyBan {
  position: relative;
}
.NyBan .wap {
  display: none;
}
.NyBan .txt {
  color: #fff;
  text-align: center;
  left: 0;
  top: 55%;
  width: 100%;
  transform: translateY(-50%);
  position: absolute;
}
.NyBan.NyBan_color .txt {
  color: #947854;
}
.NyBan .cn {
  margin: 1.5vw 0;
}
@media (max-width: 1024px) {
  .NyBan .wap {
    display: block;
  }
  .NyBan .pc {
    display: none;
  }
}
@media (max-width: 640px) {
  .NyBan .wap {
    min-height: 25vh; width: 100%;
    object-fit: cover; -webkit-object-fit: cover;
  }
        .NyBan .txt{top:55%;}
}
.menu {
  line-height: 4.16666667vw;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.menu .w1440 {
  display: flex;
  flex-flow: row-reverse wrap;
  align-items: center;
  justify-content: space-between;
}
.menu .current {
  background: url(../images/home.png) no-repeat left center;
  padding-left: 30px;
}
.menu .current * {
  display: inline-block;
}
.menu .current i {
  font-style: normal;
  margin: 0 10px;
}
.menu .current span,
.menu .current a:hover {
  color: #947854;
}
.menu a {
  color: #555555;
}
.menu a:hover {
  color: #092f4f;
}
.menu .ul {
  display: flex;
  flex-flow: row wrap;
}
.menu li {
  float: right;
  margin-right: 4.16666667vw;
}
.menu li:last-child {
  margin-right: 0;
}
.menu li a {
  display: block;
  text-align: center;
  position: relative;
}
.menu li a::after {
  content: '';
  position: absolute;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  transition: all 0.5s;
  width: 0;
  background-color: #947854;
}
.menu li.on a,
.menu li a:hover {
  color: #947854;
}
.menu li.on a::after,
.menu li a:hover::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .menu .w1440 {
    justify-content: flex-start;
    flex-flow: column wrap;
  }
  .menu .current {
    display: none;
  }
  .menu .ul {
    width: 100%;
    line-height: 50px;
  }
}
@media (max-width: 640px) {
.menu li#nav14 a::after, 
.menu li#nav14 a:hover::after,
.menu li#nav31 a::after, 
.menu li#nav31 a:hover::after{width: 0;}
.menu li#nav14 a, 
.menu#nav14 li a:hover,
.menu li#nav31 a, 
.menu#nav31 li a:hover{color: #333;}
.menu li a{font-size: 16px;}
}
.p100 {
  padding: calc(100 / 1920 * 100%) 0;
}
.SingleBox p,
.SingleBox h2,
.SingleBox h3,
.SingleBox h4,
.SingleBox h5,
.SingleBox h6 {
  margin: 1.6em 0;
}
.Nytitle .line {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #947854;
  margin-top: 1.5vw;
  position: relative;
}
.bp_delivery {
  padding: calc(80 / 1920 * 100%) 0;
  position: relative;
}
.bp_delivery::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 34.5%;
  background-color: #947854;
  opacity: 0.1;
}
.bp_delivery .w1440 {
  position: relative;
  z-index: 2;
}
.bp_delivery .con {
  line-height: 2.1;
  color: #000000;
}
.bp_delivery .txtCon {
  width: 50%;
}
.bp_delivery .img {
  width: 45.695%;
}
@media (max-width: 640px) {
  .bp_delivery .w1440 {
    flex-flow: column wrap;
  }
  .bp_delivery .txtCon,
  .bp_delivery .img {
    width: 100%;
  }
}
.JoinUs .flex {
  flex-flow: row wrap;
}
.JoinUs li {
  width: 32%;
  background-color: #fff;
  margin-right: 2%;
  margin-bottom: 2%;
}
.JoinUs li:nth-child(3n) {
  margin-right: 0;
}
.JoinUs .box {
  padding: 2.5vw 1.5vw 2.5vw 3vw;
  display: block;
}
.JoinUs .tit {
  position: relative;
  margin-bottom: calc(30 / 460 * 100%);
}
.JoinUs .tit::before {
  content: '';
  position: absolute;
  background-color: #947854;
  width: 3px;
  height: 24px;
  left: -1vw;
  top: 2px;
}
.JoinUs .con {
  flex-flow: row wrap;
  display: flex;
  justify-content: space-between;
  color: #555555;
}
.JoinUs .con span {
  width: 49%;
  margin: 5px 0;
}
.JoinUs .more {
  display: inline-block;
  color: #947854;
  margin-top: 5%;
}
.JoinUs .more i {
  font-family: serif;
  font-style: normal;
  font-weight: bold;
  display: inline-block;
  margin-left: 5px;
}
@media (max-width: 1024px) {
  .JoinUs .con span {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .JoinUs li {
    width: 49%;
  }
  .JoinUs li:nth-child(3n) {
    margin-right: 2%;
  }
  .JoinUs li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  .JoinUs .box {
    padding: 8%;
  }
  .JoinUs .tit::before {
    left: -4%;
    height: 20px;
  }
  .JoinUs li {
    width: 100%;
    margin-right: 0;
  }
  .JoinUs li:nth-child(3n) {
    margin-right: 0;
  }
}
.ContactBox .Nytitle {
  padding: calc(100 / 1920 * 100%) 0 calc(50 / 1920 * 100%);
}
.ContactBox .SingleBox {
  line-height: 2.1;
}
.honor_titlist {
  padding-bottom: calc(80 / 1920 * 100%);
}
/*
.honor_titlist .list {
  flex-flow: row wrap;
  justify-content: space-between;
}
*/
.honor_titlist .list {display: block}
.honor_titlist .list dl{
  width: 23%;
  float: left;
}

.honor_titlist .list dl:nth-child(2) {
  padding: 0 10px;
}
.honor_titlist .list dt {
  margin-bottom: 25px;
  color: #947854;
}
.honor_titlist .list dd {
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
  color: #333333;
}
.honor_titlist .list dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35vw;
  width: 8px;
  height: 8px;
  background-color: #947854;
  transform: rotate(45deg);
}
.honor_piclist {
  background-color: rgba(255, 255, 255, 0.5);
  padding: calc(110 / 1920 * 100%) 0;
}
.honor_piclist li {
  width: 20%;
  text-align: center;
  padding: 0 3%;
  margin-bottom: 5%;
  line-height: 1.6;
}
.honor_piclist ol {
  position: relative;
}
.honor_piclist ol::before,
.honor_piclist ol::after {
  content: '';
  position: absolute;
  top: 230px;
  height: 83px;
  z-index: -1;
}
.honor_piclist ol::before {
  width: 90.55%;
  background: url(../images/honor_line3.png) repeat-x;
  left: calc(9.5% / 2);
}
.honor_piclist ol::after {
  left: -12px;
  width: calc(100% + 24px);
  background: url(../images/honor_line1.png), url(../images/honor_line2.png);
  background-repeat: no-repeat;
  background-position: left top, right top;
}
.honor_piclist .wrap {
  position: relative;
  padding-top: 228px;
}
.honor_piclist figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.honor_piclist .pic {
  position: relative;
  padding-bottom: 30px;
  --blur: 2px;
  max-width: 164px;
  margin: 0 auto;
}
.honor_piclist .pic i {
  position: relative;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}
.honor_piclist .pic i picture::before,
.honor_piclist .pic i::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
}
.honor_piclist .pic i picture::before {
  top: 0;
  height: 100%;
  background: url(../images/honor_bg.png) no-repeat;
  background-size: 100% 100%;
}
.honor_piclist .pic i::after {
  bottom: 0;
  transform: skewX(6deg);
  left: 9%;
  width: 90%;
  height: 50%;
  box-shadow: -1px 1px var(--blur) 1px rgba(0, 0, 0, 0.1), -2px 2px var(--blur) 1px rgba(0, 0, 0, 0.09), -3px 3px var(--blur) 1px rgba(0, 0, 0, 0.08), 4px 0 var(--blur) 1px rgba(0, 0, 0, 0.07), 5px 0 var(--blur) 1px rgba(0, 0, 0, 0.06), 6px 0 var(--blur) 1px rgba(0, 0, 0, 0.05), 7px 0 var(--blur) 1px rgba(0, 0, 0, 0.04), 8px 0 var(--blur) 1px rgba(0, 0, 0, 0.03);
  background-color: #969696;
  z-index: -1;
}
.honor_piclist picture {
  max-height: 100%;
  overflow: hidden;
  position: relative;
}
.honor_piclist img {
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 1366px) {
  .honor_piclist .wrap {
    padding-top: 200px;
  }
  .honor_piclist ol::before,
  .honor_piclist ol::after {
    top: 202px;
  }
}
@media (min-width: 1025px) {
.honor_titlist .list dl:not(:nth-child(4n)) {
 margin-right: 2%;   
}
}
@media (max-width: 1024px) {
  .honor_piclist .wrap {
    padding-top: 160px;
  }
  .honor_piclist ol::before,
  .honor_piclist ol::after {
    top: 162px;
  }
     .honor_titlist .list dl{width: 48%;}
    .honor_titlist .list dl:not(:nth-child(2n)){margin-right: 4%;}
}
@media (max-width: 768px) {
  .honor_piclist .wrap {
    padding-top: 130px;
  }
  .honor_piclist ol::before,
  .honor_piclist ol::after {
    top: 132px;
  }
    .honor_titlist .list dl{width: 100%;}
}
@media (max-width: 640px) {
  .honor_piclist {
    padding: 10% 4%;
  }
  .honor_piclist .wrap {
    padding-top: 200px;
  }
  .honor_piclist ol::before,
  .honor_piclist ol::after {
    top: 202px;
  }
  .honor_piclist ol::after {
    background-size: 10% auto;
    top: 206px;
  }
  .honor_piclist img {
    max-width: 99%;
  }
  .honor_piclist li {
    width: 50%;
  }
}
.caseLogo_list {
  flex-flow: row wrap;
  margin: 0 calc(-17 / 1440 * 100%);
}
.caseLogo_list li {
  width: 20%;
  margin-bottom: calc(34 / 1440 * 100%);
}
.caseLogo_list .box {
  margin: 0 calc(17 / 260 * 100%);
  display: block;
  background-color: #fff;
  position: relative;
}
.caseLogo_list .box:hover {
  z-index: 10;
}
.caseLogo_list .box:hover .hover {
  display: block;
}
.caseLogo_list figure {
  position: relative;
  padding-top: calc(126 / 260 * 100%);
  z-index: 2;
}
.caseLogo_list figure i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caseLogo_list figure img {
  max-height: 98%;
  max-width: 98%;
}
.caseLogo_list .hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 356%;
  padding-top: calc(126 / 260 * 100%);
  border: 1px solid #947854;
  background-color: #fff;
  display: none;
}
.caseLogo_list .con {
  padding: 1% 15% 5%;
  line-height: 1.8;
  text-align: justify;
  max-height: 100%;
  overflow: auto;
  color: #333;
}
@media (max-width: 768px) {
  .caseLogo_list li {
    width: 25%;
  }
}
@media (max-width: 640px) {
  .caseLogo_list li {
    width: 50%;
  }
}
.newsBox .top .other {
  display: flex;
  align-items: center;
}
.newsBox .top .other span {
  color: #666666;
  display: block;
}
.newsBox .top .other .more {
  color: #947854;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.newsBox .top .other .more::before {
  content: '';
  width: 1px;
  height: 16px;
  background-color: #666;
  display: inline-block;
  margin: 0 15px;
}
.newsBox .top .txt {
  padding: 2.08333333vw 0;
}
.newsBox .top .txt .tit {
  margin-bottom: 1.5625vw;
}
.newsBox .top figure {
  position: relative;
}
.newsBox .top figure i {
  display: block;
  width: 100%;
  padding-top: calc(260 / 440 * 100%);
}
.newsBox .top .ul {
  margin: 0 calc(-19 / 880 * 100%) 5%;
}
.newsBox .top .box {
  display: block;
  margin: 0 calc(36 / 880 * 100%);
}
.newsList .box {
  padding: 3% 0;
  border-top: 1px solid #947854;
}
.newsList li:last-child {
  border-bottom: 1px solid #947854;
}
.newsList figure {
  width: 20.834%;
  position: relative;
  flex: 0 0 auto;
}
.newsList figure i {
  display: block;
  width: 100%;
  padding-top: calc(184 / 300 * 100%);
}
.newsList .wrap {
  width: 76%;
  position: relative;
  padding-right: 140px;
}
.newsList time {
  display: block;
  color: #666666;
  margin: 1.6% 0 3.4%;
}
.newsList .more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #947854;
  padding-right: 35px;
  background: url(../images/btn_right.png) no-repeat right center;
}
.newsList .des {
  line-height: 1.8;
  color: #666666;
}
@media (max-width: 640px) {
  .newsList figure {
    width: 40%;
  }
.newsBox .top .ul .slick-arrow{margin-top: -50px;}
  .newsList .wrap {
    padding-right: 0;
    width: 55%;
  }
    .newsList .wrap .tit{font-size: 16px;}
  .newsList .more {
    display: inline-block;
    position: static;
    transform: none;
    display: none;
  }
}
.newsTitle {
  text-align: center;
  border-bottom: 1px solid #947854;
  padding-bottom: 1%;
}
.newsTitle .title {
  color: #222222;
}
.newsTitle p {
  padding: 2% 0;
  color: #666666;
}
.newsTitle p span {
  display: inline-block;
  margin: 0 10px;
}
.newsDetails .SingleBox {
  line-height: 2;
  border-bottom: 1px solid #947854;
  padding-bottom: 3%;
  margin-bottom: 3%;
}
.newsDetails .SingleBox img{ max-width:100%!important;}
.newsDetails .SingleBox p{font-size: 15px!important;}
.newsDetails .page_back {
  position: relative;
  padding-right: 105px;
}
.newsDetails .page_back .back {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 35px;
  background: url(../images/btn_left.png) no-repeat left center;
  color: #947854;
}
.newsDetails .page_back span {
  line-height: 2;
}
.newsDetails .page_back span a {
  color: #666666;
}
.newsDetails .page_back span a:hover {
  color: #947854;
}
@media (max-width: 640px) {
  .newsDetails .SingleBox { font-size: 14px;}
  .newsDetails .SingleBox img{ height:auto!important; max-width:100%!important;}
  .newsTitle .title{font-size: 20px;}
  .newsDetails .page_back {
    padding-right: 0;
  }
  .newsDetails .page_back .back {
    position: static;
    transform: none;
    float: right;
    margin-bottom: 2%;
  }
  .newsDetails .page_back span {
    clear: both;
  }
}
.investBox {
  padding-bottom: 2%;
}
.investBox .Htitle {
  width: 40%;
  max-width: 470px;
}
.investBox .Htitle .des {
  margin-top: 10%;
  padding: 5px 0 5px 45px;
  border-left: 2px solid #947854;
  line-height: 1.8;
}
.investBox .list {
  width: 54.2%;
  padding-top: 5%;
}
.investBox .list li {
  width: 22%;
  padding-top: 22%;
  position: relative;
}
.investBox .list li .box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  background-color: #947854;
  color: #fff;
}
.investBox .list li img {
  max-width: 40%;
}
.investBox .list li p {
  margin-top: 1vw;
}
@media (max-width: 768px) {
  .investBox .Htitle .des {
    padding-left: 25px;
  }
  .investBox .list {
    width: 60%;
  }
  .investBox .list li {
    width: 24%;
    padding-top: 24%;
  }
}
@media (max-width: 640px) {
  .investBox {
    flex-flow: column wrap;
  }
  .investBox .Htitle,
  .investBox .list {
    width: 100%;
    max-width: 100%;
  }
  .investBox .list {
    font-size: 14px;
  }
  .investBox .list .ul {
    flex-flow: row wrap;
  }
  .investBox .list li {
    width: 35%;
    padding-top: 35%;
    margin: 3%;
  }
}
.investImg {
  position: relative;
}
.investImg .line {
  position: absolute;
  left: 50%;
  max-width: 1440px;
  width: 96%;
  transform: translateX(-50%);
  bottom: 0;
}
.investImg .line::before {
  content: '';
  display: block;
  width: calc(334 / 1660 * 100%);
  height: 50px;
  background-color: #947854;
  margin-bottom: -25px;
}
.CoreBox {
  padding: 2% 0 5%;
  background: url(../images/invest_bg.jpg) no-repeat center top;
  background-size: cover;
}
.CoreBox .Htitle {
  padding-bottom: calc(52 / 1920 * 100%);
}
.CoreBox .des {
  position: relative;
  padding: 5px 0 5px 45px;
  line-height: 2.2;
  color: #222222;
  width: 20%;
}
.CoreBox .des::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  background-color: #947854;
  height: 40%;
}
.CoreBox .list {
  width: 79%;
  margin-top: -3vw;
}
.CoreBox .list figure {
  position: relative;
  padding-top: 23.48958333vw;
}
.CoreBox .list figure::before,
.CoreBox .list figure::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
.CoreBox .list figure::before {
  height: 100%;
  background-color: #947854;
  opacity: 0.4;
  z-index: 2;
}
.CoreBox .list figure::after {
  height: 40%;
  background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  background-image: -ms-linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}
.CoreBox .list li {
  width: 17.582%;
  transition: all 0.5s;
  cursor: pointer;
}
.CoreBox .list li:not(.hover) {
  flex: 0 0 auto;
}
.CoreBox .list li:not(:last-child) {
  margin-right: 1.5%;
}
.CoreBox .list li:nth-child(2n) {
  transform: translateY(-25px);
}
.CoreBox .list .box {
  position: relative;
}
.CoreBox .list .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  color: #fff;
  padding: 1vw;
}
.CoreBox .list .hover {
  width: 100%;
}
.CoreBox .list .hover .cn {
  font-size: 1.5625vw;
}
@media (max-width: 768px) {
  .CoreBox .des {
    padding-left: 25px;
  }
}
@media (max-width: 640px) {
  .CoreBox .content {
    flex-flow: column wrap;
  }
  .CoreBox .des,
  .CoreBox .list {
    width: 100%;
    margin-bottom: 5%;
  }
  .CoreBox .des .ul,
  .CoreBox .list .ul {
    flex-flow: column wrap;
  }
  .CoreBox .des li,
  .CoreBox .list li {
    width: 100%;
    margin-bottom: 2%;
  }
  .CoreBox .des li:not(:last-child),
  .CoreBox .list li:not(:last-child) {
    margin-right: 0;
  }
  .CoreBox .des li:nth-child(2n),
  .CoreBox .list li:nth-child(2n) {
    transform: translateY(0);
  }
  .CoreBox .des figure,
  .CoreBox .list figure {
    padding-top: calc(451 / 700 * 100%);
  }
  .CoreBox .des .txt,
  .CoreBox .list .txt {
    padding: 2vw;
  }
  .CoreBox .des .txt .cn,
  .CoreBox .list .txt .cn {
    font-size: calc(36 / 24 * 1em);
  }
}
.aboutBox {
  background-position: left bottom;
  padding-top: 8.33333333vw;
  background-repeat: no-repeat;
}
.aboutBox .left {
  width: 50.5%;
}
.aboutBox .numBox {
  width: 270px;
  flex: 0 0 auto;
  margin: 0 2%;
}
.aboutBox .img {
  width: 29.375%;
  margin-top: -5.20833333vw;
}
.aboutBox .num_item {
  max-width: 306px;
  width: 100%;
  color: #947854;
  padding: 1.25vw 0;
  border-bottom: 1px solid rgba(148, 120, 84, 0.2);
}
.aboutBox .num_item:not(:last-child) {
  margin-bottom: 3.125vw;
}
.aboutBox .num_item .num {
  display: inline-block;
  font-weight: normal;
  margin-right: 5px;
}
.aboutBox .num_item img {
  margin-bottom: 10px;
}
.aboutBox .contain {
  max-width: 730px;
  margin-left: auto;
  margin-right: 0;
  padding-right: 4.6875vw;
  width: 94%;
}
.aboutBox .contain .des,
.aboutBox .contain .content {
  text-align: justify;
  line-height: 2;
}
.aboutBox .contain .content {
  display: none;
}
.aboutBox .Htitle {
  padding: 0 0 4.79166667vw;
}
.aboutBox .Hmore {
  margin-top: 3.38541667vw;
}
@media (max-width: 1024px) {
  .aboutBox {
    flex-flow: row wrap;
  }
  .aboutBox .left {
    width: 100%;
  }
  .aboutBox .contain {
    width: 94%;
    max-width: 100%;
    padding-right: 0;
    margin-right: auto;
  }
  .aboutBox .img {
    width: 50%;
  }
  .aboutBox .numBox {
    padding-top: 5%;
    padding-left: 1%;
  }
}
@media (max-width: 640px) {
  .aboutBox {
    justify-content: center;
  }
  .aboutBox .img {
    width: 100%;
    margin-top: 5%;
  }
}
.history {
  padding: 3% 0;
  background: url(../images/history_bg.png) no-repeat center bottom;
  margin-bottom: 5%;
}
.history .slider-for {
  max-width: 1160px;
  margin: 0 auto;
}
.history .slider-for li {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2.60416667vw;
}
.history .slider-for time {
  width: 26%;
  font-size: 4.375vw;
  color: #947854;
  line-height: 1;
  position: relative;
  text-align: center;
}
.history .slider-for time::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: #999999;
  opacity: 0.3;
}
.history .slider-for article {
  width: 47%;
  position: relative;
  padding-left: 3.38541667vw;
  line-height: 2;
}
.history .slider-for figure {
  width: 25.85%;
}
@media (max-width: 640px) {
  .history .slider-for li {
    padding: 2%;
  }
  .history .slider-for .flex_js_ac {
    flex-flow: column wrap;
  }
  .history .slider-for time,
  .history .slider-for article,
  .history .slider-for figure {
    width: 100%;
  }
  .history .slider-for time {
    text-align: left;
    font-size: calc(84 / 32 * 1em);
  }
  .history .slider-for time::after {
    display: none;
  }
  .history .slider-for article {
    padding-left: 0;
    margin: 5% 0;
  }
}
.history .slider-nav {
  position: relative;
  margin-top: 1.8%;
}
.history .slider-nav .w1440 {
  position: relative;
}
.history .slider-nav::before {
  content: '';
  position: absolute;
  width: 100%;
  padding-top: 60px;
  background: url(../images/history_line.png) no-repeat center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
}
.history .slider-nav .ul {
  max-width: 1160px;
  margin: 0 auto;
  transform: translateX(-2.3%);
  position: relative;
  z-index: 10
}
.history .slider-nav li {
  text-align: center;
  display: flex;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  height: 110px;
  font-size: 18px;
  color: #222222;
}
.history .slider-nav li:nth-child(2n) {
  align-items: flex-start;
  padding-top: 45px;
}
.history .slider-nav li:nth-child(2n) aside {
  flex-flow: column-reverse wrap;
}
.history .slider-nav aside {
  display: flex;
  flex-flow: column wrap;
}
.history .slider-nav .line {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #947854;
  margin: 10px auto;
  border-radius: 100%;
  position: relative;
}
.history .slider-nav .line::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border-radius: 100%;
  background-color: #947854;
}
.history .slider-nav .page_btn {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 62%;
  transform: translateY(-50%);
  z-index: 1;
}
.history .slider-nav .page_btn .slick-arrow {
  border-radius: 100%;
  background-color: #f4f1ee;
}
.history .slider-nav .page_btn .slick-next {
  background-color: #e3dcd4;
}
.history .slider-nav .slick-current {
  color: #947854;
}
@media (max-width: 1024px) {
  .history .slider-nav {
    margin-top: 5%;
  }
  .history .slider-nav::before {
    height: 1px;
    background: #947854;
    padding-top: 0;
    transform: none;
    top: 12px;
  }
.history .slider-nav .ul {
  transform: translateX(0);
   z-index: 1;
}
  .history .slider-nav li {
    height: 50px;
  }
  .history .slider-nav li:nth-child(2n) {
    align-items: flex-end;
    padding-top: 0;
  }
  .history .slider-nav li:nth-child(2n) aside {
    flex-flow: column wrap;
  }
  .history .slider-nav .page_btn {
    top: 25%;
      z-index: 10;
  }
}
.teamList {
  padding-bottom: 5%;
}
.teamList .ul {
  margin: 0 calc(-18 / 1440 * 100%);
}
.teamList .item {
  width: 33.33%;
  float: left;
  margin: 5% 0 3%;
}
.teamList .box {
  display: block;
  margin: 0 calc(18 / 454 * 100%);
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  height: 280px;
  padding: 2.60416667vw;
}
.teamList .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 100%;
  background: url(../images/team_bg.png) no-repeat right top;
}
.teamList figure {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 100%;
}
.teamList figure img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 130%;
}
.teamList .tit {
  color: #947854;
  margin-bottom: 13px;
}
.teamList .des {
  color: #555555;
  max-width: 55%;
}
.teamList article {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  flex-flow: column wrap;
}
@media (max-width: 1024px) {
  .teamList .box {
    height: 180px;
  }
}
@media (max-width: 640px) {
  .teamList .item {
    width: 100%;
    margin-top: 13%;
  }
  .teamList .box {
    height: 150px;
    padding: 5%;
  }
  .teamList .tit {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .teamList .des {
    font-size: 14px;
  }
}
.popup_open {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #333333;
  display: none;
  z-index: 101;
}
.popup_open .flex_jc_ac {
  width: 100%;
  height: 100%;
}
.popup_open .inner {
  position: relative;
  width: 90%;
  height: 523px;
  max-width: 920px;
}
.popup_open .content {
  background-color: #fff;
  padding: 3%;
}
.popup_open .close {
  position: absolute;
  width: 28px;
  height: 28px;
  right: -45px;
  top: 0;
  border: 2px solid #fff;
  border-radius: 100%;
  cursor: pointer;
}
.popup_open .close::before,
.popup_open .close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 60%;
  background-color: #fff;
}
.popup_open .close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup_open .close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup_open .flex_js {
  width: 100%;
}
.popup_open figure {
  position: relative;
  width: 37.827%;
}
.popup_open figure i {
  padding-top: calc(404 / 348 * 100%);
  background-color: #34332e;
  display: block;
  position: relative;
}
.popup_open figure img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-height: 100%;
}
.popup_open article {
  width: 60%;
  padding: 3%;
}
.popup_open .edu,
.popup_open .name {
  color: #947854;
  margin-bottom: 10px;
}
.popup_open .title {
  padding-bottom: 8%;
  margin-bottom: 10%;
  position: relative;
}
.popup_open .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #947854;
}
.popup_open .con {
  line-height: 1.6;
}
@media (max-width: 768px) {
  .popup_open .close {
    right: -30px;
    top: 50%;
    margin-top: -184px;
    margin-right: 10px;
  }
  .popup_open .inner {
    height: 100%;
    display: inline-grid;
    align-items: center;
    width: 100%;
    padding: 5%;
  }
  .popup_open .content {
    height: 300px;
    overflow: auto;
  }
  .popup_open .close {
    right: 0;
    border-color: #fff;
  }
  .popup_open .close::before,
  .popup_open .close::after {
    background-color: #fff;
  }
  .popup_open .con {
    font-size: 14px;
  }
}
.searchList li {
  margin-bottom: 20px;
}
.searchList li a {
  display: block;
  position: relative;
  padding: 3% 3.5%;
  padding-right: 150px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.5s;
}
.searchList li a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.searchList li .tit {
  font-weight: normal;
  margin-bottom: 1%;
}
.searchList li time {
  color: #999999;
}
.searchList li .more {
  position: absolute;
  right: 3.5%;
  top: 50%;
  transform: translateY(-50%);
  color: #947854;
  padding-right: 35px;
  background: url(../images/btn_right.png) no-repeat right center;
}
@media (max-width: 640px) {
  .searchList li a {
    padding: 4%;
  }
  .searchList li .more {
    display: inline-block;
    position: relative;
    transform: none;
    right: auto;
  }
  .searchList li time {
    display: block;
    margin: 6px 0;
    font-size: 14px;
  }
  .searchList li .tit {
    font-size: 16px;
  }
}
