.ic {
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
}
.contenter {
  content: '';
  display: block;
  position: absolute;
}
.main {
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .main {
    padding-bottom: 90px;
  }
}
@media (max-width: 768px) {
  .main {
    padding-bottom: 60px;
  }
}
@media (max-width: 640px) {
  .main {
    padding-bottom: 50px;
  }
}
.pos-r {
  position: relative;
}
.pos-a {
  position: absolute;
}
.right0 {
  right: 0;
  left: auto;
  position: absolute;
}
.mi > * {
  vertical-align: middle;
  display: inline-block;
}
.row1 {
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.row2,
.row3,
.row4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.row2 {
  -webkit-line-clamp: 2;
}
.row3 {
  -webkit-line-clamp: 3;
}
.row4 {
  -webkit-line-clamp: 4;
}
.row6 {
  -webkit-line-clamp: 6;
}
.ml0:first-child {
  margin-left: 0!important;
}
.mt0:first-child {
  margin-top: 0!important;
}
.btn {
  text-align: center;
  padding: 0;
}
.btn-xs-line {
  height: 38px;
  line-height: 38px;
  border: 1px solid #364756;
  border-radius: 5px;
  text-align: center;
  font-size: 12px;
  display: inline-block;
  min-width: 106px;
}
.btn-xs-line:hover {
  background: #c3b571;
  border-color: #c3b571;
  color: #fff;
}
.c-gold {
  color: #c3b571;
}
.bg-gold {
  background: #c3b571;
}
.c-blue {
  color: #494e58;
}
.bg-blue {
  background: #494e58;
}
.hv-white:hover {
  color: #fff;
}
.hv-gold:hover {
  color: #c3b571;
}
.hv-bg-gold:hover {
  background: #c3b571;
}
.hv-scale-sm {
  display: block;
  overflow: hidden;
}
.hv-scale-sm img {
  transition: 0.3s;
}
.hv-scale-sm:hover img {
  transform: scale(1.1);
}
/* 垂直排列 */
.flex-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* 两端对齐 水平居中*/
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* x轴 左中右  居中  text-align: center*/
.flex-x {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* 垂直居中 vertical:middle */
.flex-y {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
/* 垂直居下 */
.flex-y-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}
/* 垂直排列  水平居中 垂直居中 */
.flex-col-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
/* 不缩放 */
.flex-grow-0 {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
/* 如果所有项目的flex-grow属性都为1，则它们将等分剩余空间（如果有的话）。
    如果一个项目的flex-grow属性为2，其他项目都为1，则前者占据的剩余空间将比其他项多一倍。
 */
.flex-grow-1 {
  min-width: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.ic-logo {
  background-image: url('../images/hd_logo.png');
  height: 100px;
  width: 166px;
}
.header {
  background: #c3b571;
  position: relative;
}
.header .inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo-txt {
  line-height: 100px;
  color: #f5f1e0;
  font-size: 20px;
  font-style: italic;
  position: relative;
  left: -15px;
}
.header .head-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.header .head-right .content {
  border-bottom: 1px solid #a8b6bf;
  color: #a8b6bf;
}
.header .head-search {
  color: #a8b6bf;
  line-height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header .head-search .key {
  border: 0;
  height: 40px;
  line-height: 40px;
  width: 330px;
  flex: 1;
  background: none;
  text-indent: 20px;
  font-size: 18px;
  color: #fff;
}
.header .head-search .submit {
  color: #a8b6bf;
  text-align: center;
  width: 50px;
  background: none;
  border: 0;
  line-height: 40px;
  cursor: pointer;
  font-size: 22px;
}
.header .head-search .submit:hover {
  color: #fff;
}
.header .head-menu {
  position: relative;
}
.header .head-menu .drop-btn {
  height: 100px;
}
.header .head-menu .ic-menu {
  width: 120px;
  height: 100%;
  background-image: url('../images/ic_menu.png');
  cursor: pointer;
  background-color: #c3b571;
}
.header .head-menu .ic-close {
  background-image: url('../images/ic_close.png');
}
.header .head-language {
  line-height: 40px;
  position: relative;
  padding-left: 20px;
}
.header .head-language::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 16px;
  background: #5c6069;
  left: 0;
  top: 50%;
  margin-top: -8px;
}
.header .head-language .val {
  font-size: 16px;
}
.header .head-language .iconfont {
  font-size: 12px;
}
.header .menus {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 436px;
  background: #c3b571;
  color: #fff;
  z-index: 555;
}
.header .menus a {
  display: block;
  height: 50px;
  line-height: 50px;
  border-top: 1px solid #fffdf6;
  font-size: 17px;
  color: #494e58;
  padding-left: 80px;
}
.header .menus a em {
  color: #c3b571;
  padding-right: 15px;
}
.header .menus a.active,
.header .menus a:hover {
  background: #bcae68;
  color: #fff;
}
.header .menus a.active em,
.header .menus a:hover em {
  color: #fff;
}
@media (min-width: 1200px) {
  .header {
    height: 100px;
  }
  .header:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 50%;
    background: #494e58;
    z-index: 1;
  }
  .header .head-left {
    width: 436px;
  }
  .header .head-right {
    width: 764px;
    background: #494e58;
    height: 100px;
    position: absolute;
    left: 436px;
    top: 0;
    z-index: 2;
    color: #fff;
  }
}
@media (max-width: 1200px) {
  .header {
    background: #494e58;
  }
  .header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .head-language,
  .header .ic-logo {
    display: -none;
  }
  .header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .head-left .logo-txt {
    display: none;
  }
  .header .head-right {
    width: 80%;
  }
  .header .head-right .content {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .header {
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 55;
  }
  .header .head-menu .drop-btn {
    height: 60px;
  }
  .header .head-language,
  .header .ic-logo {
    display: none;
  }
  .header .head-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
  }
  .header .head-right .content {
    flex: 1;
    width: auto;
  }
  .header .head-search {
    width: 100%;
  }
  .header .head-search .tit {
    min-width: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .header .head-search .key {
    flex: 1;
    width: auto;
  }
  .header .menus {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    top: 60px;
    right: 0;
    background: #000;
    z-index: -1;
    backface-visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    padding: 7.5% 0 0;
  }
  .header .menus .show {
    opacity: 1;
    z-index: 120;
  }
  .header .menus a {
    display: block;
    text-align: center;
    padding-left: 0;
    font-size: 16px;
    letter-spacing: 2px;
    position: relative;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .header .menus a em {
    display: none;
  }
  .header .menus a:first-child {
    border-top: 0;
  }
  .header .menus a.active {
    background: none;
  }
  .header .menus a.active span {
    color: #bcae68;
  }
  .header .menus.active {
    bottom: 0;
    z-index: 999;
    opacity: 1;
  }
}
@media (max-width: 640px) {
  .header .inner {
    margin-left: 0;
    margin-right: 15px;
  }
  .header .head-left {
    margin-right: 20px;
  }
  .header .head-right {
    width: auto;
    margin-left: 70px;
    flex: 1;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .header .head-right {
    width: auto;
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .header + div {
    margin-top: 60px;
  }
}
.nav-box {
  text-align: center;
  padding: 40px 0;
}
.nav-box li {
  float: left;
  height: 84px;
  width: 12.5%;
}
.nav-box img {
  display: block;
  margin: 0 auto 10px;
}
.nav-box a {
  display: block;
  padding-top: 5px;
  color: #4d4d4d;
  border-left: 1px dashed #dcdcdc;
  transition: 0.3s;
}
.nav-box a:hover {
  transform: translateY(-5px);
  color: #c3b571;
}
.nav-box li:first-child a {
  border-left: 0;
}
@media (max-width: 992px) {
  .nav-box {
    padding-bottom: 20px;
  }
  .nav-box li {
    width: 25%;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .nav-box {
    padding-bottom: 10px;
  }
  .nav-box li {
    width: 33.3%;
  }
}
.footer {
  color: #fff;
  background: #494e58;
}
.footer .ft-left {
  width: 316px;
}
.footer .ft-right {
  width: 690px;
}
.footer .address {
  padding: 50px 0 20px;
  line-height: 25px;
}
.footer .address p {
  padding-top: 2px;
}
.footer .content {
  padding-top: 48px ;
  padding-bottom: 40px;
}
.footer .ic-logo {
  height: 70px;
}
.copryright {
  height: 50px;
  line-height: 50px;
  background: #c3b571;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.service h5 {
  color: #c3b571;
  margin-bottom: 10px;
}
.service a {
  display: inline-block;
  margin-right: 50px;
}
.service a .iconfont {
  color: #a7a7a6;
  font-size: 22px;
}
.service a .iconfont:hover {
  color: #fff;
}
.ft-right dl {
  padding-top: 20px;
  line-height: 30px;
}
.ft-right dl dt {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}
.ft-right dl dd {
  color: #a3a3a3;
}
.ft-right dl dd a {
  color: #a3a3a3;
}
.ft-right dl dd a:hover {
  color: #fff;
}
.ft-right .contact dd span {
  margin-right: 30px;
  display: inline-block;
}
.ft-right .contact dd span:last-child {
  margin-right: 0;
}
.ft-right .nav .item {
  width: 25%;
  float: left;
}
.ft-right .nav .active {
  color: #fff;
}
@media (max-width: 1200px) {
  .footer .ft-right {
    width: 580px;
  }
}
@media (max-width: 992px) {
  .footer .ft-left,
  .footer .ft-right {
    float: none;
    width: 100%;
  }
  .footer .ft-right {
    padding-top: 30px;
  }
  .footer .ft-right .contact dd span {
    margin-left: 0;
    display: block;
    float: none;
  }
  .footer .ft-right .nav .item {
    float: none;
    display: inline-block;
    margin-right: 10px;
    width: auto;
    min-width: 6em;
  }
}
@media (max-width: 640px) {
  .footer .address {
    padding: 20px 0 18px;
    line-height: 1.5;
    font-size: 12px;
  }
  .footer .ft-right dl dt {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: normal;
  }
  .footer .ft-right .nav .item {
    font-size: 12px;
  }
  .footer .contact dd {
    font-size: 12px;
  }
  .copryright {
    font-size: 14px;
    height: 36px;
    line-height: 36px;
  }
}
.base-hd {
  line-height: 1.4;
  position: relative;
}
.base-hd h2 {
  font-size: 30px;
  color: #929ca6;
  font-weight: bold;
  padding-left: 45px;
  background: url('../images/ic_video.png') no-repeat 2px 6px;
  font-weight: normal;
  color: #333;
}
.base-hd .en {
  color: #c3b571;
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  font-style: italic;
  padding-left: 45px;
}
.base-hd.hd-right {
  text-align: right;
}
.base-hd.hd-right h2 {
  padding-left: 0;
  padding-right: 45px;
  background-position: right center;
}
@media (max-width: 992px) {
  .base-hd h2 {
    font-size: 26px;
  }
  .base-hd .en {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .base-hd h2 {
    font-size: 24px;
    padding-left: 30px;
  }
  .base-hd .en {
    font-size: 16px;
    padding-left: 30px;
  }
}
@media (max-width: 640px) {
  .base-hd h2 {
    background: none;
    font-size: 20px;
  }
  .base-hd h2,
  .base-hd .en {
    padding-left: 0;
  }
}
.index-box2 {
  background: url(../images/bg2.jpg) no-repeat center;
  background-size: cover;
}
.index-box2 .content {
  max-width: 734px;
  padding-bottom: 80px;
  padding-top: 80px;
}
.index-box2 .icons-wrap {
  text-align: center;
  font-size: 16px;
  color: #525252;
}
.index-box2 .icons-wrap p img {
  margin: 0 auto 15px;
  width: 60%;
  max-width: 88px;
  display: block;
}
.index-box2 .info {
  padding-top: 20px;
  color: #4d4d4d;
  line-height: 24px;
  text-indent: 2em;
}
.index-box2 .info p {
  padding-top: 5px;
}
.index-box2 .btn-more {
  position: absolute;
  left: 78px;
  bottom: 0;
  background: #000;
  transform: translateY(50%);
}
@media (min-width: 1200px) {
  .index-box2 .icons-wrap {
    width: 70%;
    margin-left: 15%;
  }
}
@media (max-width: 992px) {
  .index-box2 {
    background-image: url('../images/bg9.jpg');
    padding-top: 50px;
  }
  .index-box2 .content {
    max-width: 100%;
    padding-top: 60px;
  }
}
@media (max-width: 640px) {
  .index-box2 .icons-wrap {
    font-size: 14px;
  }
  .index-box2 .icons-wrap p img {
    margin-bottom: 5px;
  }
  .index-box2 .hd {
    height: auto;
    margin-bottom: 20px;
  }
  .index-box2 .content {
    padding: 10px 0 40px;
  }
  .index-box2 .btn-more {
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
.btn-more {
  width: 190px;
  height: 66px;
  line-height: 66px;
  background: #494e58;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  display: block;
  font-size: 18px;
  transition: 0.3s;
}
.btn-more .iconfont {
  font-size: 14px;
  padding-left: 2px;
}
.btn-more:hover {
  background: #c3b571;
  color: #fff;
}
@media (max-width: 992px) {
  .btn-more {
    width: 160px;
    height: 54px;
    line-height: 54px;
  }
}
@media (max-width: 768px) {
  .btn-more {
    width: 140px;
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 640px) {
  .btn-more {
    width: 100px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }
}
.index-box3 {
  background: url(../images/bg3.png);
  padding: 100px 0 0;
}
.index-box3 .btn-more {
  right: 0;
  left: auto;
  position: absolute;
  top: 5px;
}
@media (max-width: 640px) {
  .index-box3 {
    padding-top: 80px;
  }
}
.news-list {
  margin-top: 42px;
}
.news-list li {
  margin-bottom: 45px;
}
.news-list li .inner {
  padding: 60px 28px 0;
  height: 170px;
  transition: 0.3s;
  cursor: pointer;
  background: #f3f4f6;
  position: relative;
}
.news-list li .tag {
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  line-height: 30px;
  background: #c3b571;
  text-align: center;
  padding: 0 12px;
  color: #fff;
  font-size: 12px;
}
.news-list li .time {
  color: #727272;
}
.news-list li .info,
.news-list li h3 {
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-list li h3 {
  font-size: 16px;
  margin: 5px 0;
  font-weight: bold;
}
.news-list li .info {
  color: #6b6b6b;
}
.news-list li:hover .inner {
  background: #494e58;
}
.news-list li:hover .inner > * {
  color: #fff;
}
@media (max-width: 768px) {
  .news-list li {
    margin-bottom: 30px;
  }
  .news-list li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  .news-list {
    margin-top: 30px;
  }
  .news-list li {
    margin-bottom: 20px;
  }
  .news-list li .inner {
    padding: 40px 28px 20px;
    height: auto;
  }
}
.index-box1 {
  background: url(../images/bg1.jpg) no-repeat center;
  overflow: hidden;
  margin-bottom: 130px;
  background-size: cover;
}
@media (max-width: 992px) {
  .index-box1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 640px) {
  .index-box1 {
    margin-bottom: 40px;
  }
}
.index-box1 .tabs {
  height: 308px;
  text-align: center;
  position: relative;
  margin-left: -154px;
  max-width: 1335px;
}
.index-box1 .tabs li {
  float: left;
  width: 488px!important;
  background: #eaeaee;
  background: url(../images/tab_bg2.png) no-repeat top right;
  position: relative;
  margin-left: -82px;
  box-sizing: border-box;
  cursor: pointer;
}
.index-box1 .tabs li .inner {
  height: 308px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.index-box1 .tabs li:first-child {
  margin-left: 0;
}
.index-box1 .tabs .tit {
  font-size: 18px;
}
.index-box1 .tabs .swiper-slide-thumb-active {
  background-image: url('../images/tab_bg1.png');
}
.index-box1 .tabs .swiper-slide-thumb-active .tit {
  color: #c3b571;
}
.index-box1 .tabs img {
  width: 224px;
}
@media (max-width: 1200px) {
  .index-box1 .tabs {
    margin-left: 0;
    margin-top: 5px;
    height: 260px;
  }
  .index-box1 .tabs li {
    width: 33.33% !important;
    background: #eaeaee;
    margin-left: 0;
  }
  .index-box1 .tabs li .inner {
    height: 260px;
  }
  .index-box1 .tabs img {
    width: 50%;
  }
  .index-box1 .tabs .swiper-slide-thumb-active {
    background: #fff;
  }
  .index-box1 .tabs li:nth-child(2) .inner {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
.index-box1 .swiper {
  height: 423px;
  width: 1260px;
}
.index-box1 .swiper .content {
  max-width: 1250px;
  float: left;
  padding-top: 40px;
}
.index-box1 .swiper .item {
  position: relative;
}
.index-box1 .swiper .img {
  width: 768px;
  height: 423px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.index-box1 .swiper .info {
  font-size: 12px;
  margin: 20px 0;
  height: 150px;
  -webkit-line-clamp: 6;
  line-height: 25px;
}
.index-box1 .swiper .inner {
  padding-left: 45px;
}
@media (max-width: 1200px) {
  .index-box1 .swiper {
    width: 100%;
    height: 360px;
  }
  .index-box1 .swiper .img {
    width: 60%;
    height: auto;
  }
}
.index-box1 .pnext-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 55;
}
.index-box1 .swiper-sm {
  height: auto;
}
.index-box1 .swiper-sm .item {
  padding-bottom: 20px;
}
.index-box1 .swiper-sm .content {
  width: 100%;
  text-align: center;
  float: none;
}
.index-box1 .swiper-sm .info {
  height: auto;
}
.index-box1 .swiper-sm .inner {
  padding-left: 0;
}
.index-box1 .swiper-sm .img {
  position: inherit;
  width: 100%;
  margin: 20px 0 0;
}
.index-box1 .swiper-sm .base-hd h2 {
  background: none;
}
.index-box1 .swiper-sm .base-hd h2,
.index-box1 .swiper-sm .base-hd .en {
  padding-left: 0;
}
.swiper-next,
.swiper-prev {
  width: 44px;
  height: 44px;
  background: #494e58;
  color: #fff;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
}
.swiper-next:hover,
.swiper-prev:hover,
.swiper-next.active,
.swiper-prev.active {
  background: #c3b571;
  color: #fff;
}
.swiper-prev {
  margin-right: 6px;
}
.swiper-banner {
  height: 853px;
}
.swiper-banner a {
  height: 100%;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.swiper-banner .pagination {
  position: absolute;
  z-index: 20;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.swiper-banner .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #555;
  margin: 0 2px;
  cursor: pointer;
}
.swiper-banner .swiper-pagination-bullet-active {
  background: #c3b571;
  width: 20px;
}
@media (max-width: 1200px) {
  .swiper-banner {
    height: 700px;
  }
}
@media (max-width: 992px) {
  .swiper-banner {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .swiper-banner {
    height: 400px;
  }
}
@media (max-width: 640px) {
  .swiper-banner {
    height: 220px;
  }
}
.banner {
  text-align: center;
}
.msg-b1 {
  position: relative;
}
.msg-b1 .wrap {
  background: #f7f7f7;
  padding-bottom: 50px;
}
.msg-b1::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f7f7f7;
  z-index: -1;
}
.msg-left .inner {
  box-sizing: border-box;
  padding: 70px 0 0 38px;
}
.msg-left .info {
  padding: 50px 0 0 45px;
  font-size: 12px;
  line-height: 30px;
}
@media (max-width: 992px) {
  .msg-left .inner {
    padding-top: 40px;
  }
  .msg-left .info {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .msg-left .inner {
    padding-left: 0;
  }
  .msg-left .info {
    padding: 30px 0;
  }
}
.msg-right .img {
  border: 16px solid #fff;
  box-shadow: 0 0 10px #ccc;
}
@media (max-width: 992px) {
  .msg-right .img {
    width: 50%;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .msg-right .img {
    width: 70%;
    border-width: 5px;
  }
}
.msg-b2 {
  overflow: hidden;
}
.msg-b2 .pnext-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 55;
}
.msg-b2 .msg-swiper .big {
  width: 100%;
}
@media (min-width: 1200px) {
  .msg-b2 h2 {
    padding: 100px 0 50px;
  }
}
@media (min-width: 992px) {
  .msg-b2 {
    padding-bottom: 50px;
    position: relative;
  }
  .msg-b2 h2 {
    padding: 65px 0 50px;
    font-size: 30px;
    color: #c3b571;
    text-align: right;
    font-weight: normal;
  }
  .msg-b2::after {
    content: '';
    display: block;
    position: absolute;
    background: url(../images/bg4.png) no-repeat center;
    width: 1562px;
    bottom: 0;
    left: 50%;
    margin-left: -600px;
    top: 0;
    z-index: -1;
  }
}
@media (max-width: 992px) {
  .msg-b2 .hd {
    margin: 40px 0 20px;
  }
  .msg-b2 .tabs-sm li {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
  }
  .msg-b2 .tabs-sm li .tit {
    padding: 10px 0 0;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .msg-b2 .tabs-sm li img {
    width: 100%;
    box-shadow: 0 0 20px #ccc;
  }
  .msg-b2 .tabs-sm li .time {
    color: #999;
  }
  .msg-b2 .tabs-sm li .time em {
    display: none;
  }
}
@media (max-width: 640px) {
  .msg-b2 .tabs-sm {
    margin-left: 0;
    margin-right: 0;
  }
  .msg-b2 .tabs-sm li {
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .msg-b2 .tabs-sm .tit {
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .msg-b2 .tabs-sm .time {
    font-size: 12px;
  }
}
.msg-b2 .small-box {
  text-align: right;
  padding-top: 42px;
}
.msg-b2 .small-box img {
  display: inline-block;
  margin-left: 5%;
  width: 40%;
}
.msg-b2 .msg-swiper {
  height: auto!important;
}
.msg-b2 .msg-swiper .swiper-wrapper,
.msg-b2 .msg-swiper .swiper-slide {
  height: auto!important;
}
.msg-b2 .tabs .img {
  width: 50%;
}
.msg-b2 .tabs .img img {
  display: block;
  width: 100%;
}
.msg-b2 .tabs .info {
  box-sizing: border-box;
  padding: 0 10px;
  overflow: hidden;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  border-left: 0;
}
.msg-b2 .tabs li {
  margin-bottom: 9px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  color: #494e58;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  border: 1px solid #d2d2d2;
  align-items: stretch;
}
.msg-b2 .tabs li:last-child {
  margin-bottom: 0;
}
.msg-b2 .tabs em {
  color: #c3b571;
}
.msg-b2 .tabs .tit {
  line-height: 20px;
  height: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  margin-bottom: 15px;
}
.msg-b2 .tabs .time {
  font-size: 12px;
  width: 100%;
}
.msg-b2 .tabs li:hover,
.msg-b2 .tabs .active {
  background: #c3b571;
  border-color: #c3b571;
  color: #fff;
}
.msg-b2 .tabs li:hover em,
.msg-b2 .tabs .active em {
  color: #fff;
}
.clumbs {
  background: url(../images/ic_home.png) no-repeat 0 center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  font-size: 23px;
  padding: 50px 0;
  padding-left: 46px;
}
.clumbs a {
  color: #5e5e5e;
}
.clumbs a:hover {
  color: #c3b571;
}
.clumbs .iconfont {
  font-size: 14px;
  margin: 0 5px;
}
.clumbs.s2 {
  padding-bottom: 20px;
}
@media (max-width: 992px) {
  .clumbs {
    font-size: 18px;
    padding: 40px 0 40px 36px;
  }
}
@media (max-width: 768px) {
  .clumbs {
    font-size: 18px;
    padding: 30px 0 30px 26px;
    background-size: 22px;
  }
}
@media (max-width: 640px) {
  .clumbs {
    padding: 20px 0 20px 26px;
    font-size: 16px;
  }
}
.swiper3 {
  position: relative;
  text-align: center;
  height: auto!important;
}
.swiper3 .swiper-slide,
.swiper3 .swiper-wrapper {
  height: auto!important;
}
.swiper3 img {
  width: 100%;
}
.shadow {
  box-shadow: 0 0 20px #ccc;
}
.pnext-wrap.s2 i {
  width: 40px;
  height: 80px;
  background-color: #494e58;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}
.pnext-wrap.s2 i:hover,
.pnext-wrap.s2 i.active {
  background-color: #c3b571;
}
.pnext-wrap.s2 .swiper-prev {
  left: 0;
}
.pnext-wrap.s2 .swiper-next {
  right: 0;
}
.pnext-wrap.s2 .ic-left {
  background-image: url('../images/ic_prev.png');
}
.pnext-wrap.s2 .ic-right {
  background-image: url('../images/ic_next.png');
}
@media (max-width: 640px) {
  .pnext-wrap.s2 i {
    height: 42px;
    width: 26px;
  }
}
.other-detail {
  padding-top: 15px;
}
.other-detail h3 {
  color: #c3b571;
  font-size: 24px;
  margin-bottom: 25px;
}
.other-detail dl dt {
  font-size: 24px;
  color: #494e58;
  margin-bottom: 25px;
  font-weight: normal;
}
.other-detail dl dd {
  font-size: 18px;
  color: #494e58;
  line-height: 30px;
}
.other-detail dl .info {
  padding-bottom: 30px;
  line-height: 1.8;
  padding-top: 26px;
}
@media (min-width: 1200px) {
  .other-detail dl .info {
    min-height: 348px;
  }
}
.other-detail .images p {
  margin-left: 10px;
  display: inline-block;
}
.other-detail .images p:first-child {
  margin-left: 0;
}
.other-detail .images img {
  width: 48px;
  border: 1px solid #767676;
}
.other-detail .images .bor-gold {
  border-color: #c3b571;
}
.other-detail .images .active img {
  border-color: #c3b571;
}
.other-detail .btn {
  width: 148px;
  height: 48px;
  line-height: 48px;
  background: #c3b571;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  text-align: center;
  border-radius: 0px;
}
.other-detail .btn:Hover {
  background: #b7a862;
}
@media (max-width: 1200px) {
  .other-detail .info {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .other-detail {
    text-align: center;
  }
  .other-detail h3 {
    padding-top: 20px;
  }
}
@media (max-width: 640px) {
  .other-detail h3 {
    font-size: 20px;
    margin-bottom: 15px;
    padding-top: 15px;
  }
  .other-detail .btn {
    height: 36px;
    line-height: 36px;
    font-size: 16px;
  }
  .other-detail dl dt {
    font-size: 18px;
  }
  .other-detail dl dd {
    font-size: 14px;
    line-height: 1.8;
  }
  .other-detail dl .info {
    height: auto;
    padding-bottom: 30px;
  }
}
.pd-detail-body {
  padding-bottom: 56px;
}
.swiper3-tabs {
  padding-top: 30px;
  margin-left: -7px;
  margin-right: -7px;
}
.swiper3-tabs .item {
  padding-left: 7px;
  padding-right: 7px;
}
.swiper3-tabs img {
  border: 1px solid #767676;
  cursor: pointer;
}
.swiper3-tabs .active img {
  border-color: #c3b571;
}
@media (min-width: 992px) {
  .pd-detail-body {
    padding-top: 24px;
  }
}
.bg1 {
  background: url(../images/bg8.jpg) repeat-y center;
  background-size: cover;
}
.bg2 {
  background: url(../images/bg3.png);
}
.about-1 {
  background: url(../images/bg6.png) no-repeat center bottom;
  padding: 50px 0 0;
  height: 714px;
  position: relative;
  z-index: 2;
}
.about-1 .text {
  width: 620px;
  padding-top: 60px;
  height: 426px;
  margin-bottom: 72px;
  line-height: 30px;
  color: #494e58;
  text-indent: 2em;
  overflow: hidden;
}
.about-1 .text p {
  padding-top: 5px;
}
@media (max-width: 1200px) {
  .about-1 .text {
    background: rgba(255, 255, 255, 0.15);
  }
}
.about-1 .data {
  text-align: center;
  width: 48%;
}
.about-1 .data li {
  float: left;
  width: 25%;
  position: relative;
}
.about-1 .data li::after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 75px;
  opacity: 0.3;
  left: 0;
  top: 50%;
  border-left: 1px dashed #fff;
  transform: translateY(-50%);
}
.about-1 .data li:first-child::after {
  display: none;
}
.about-1 .data h5 {
  font-size: 18px;
  color: #c3b571;
  margin-bottom: 5px;
}
.about-1 .data p {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 992px) {
  .about-1 {
    background: none;
    height: auto;
  }
  .about-1 .data,
  .about-1 .text {
    width: 100%;
    height: auto;
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .about-1 .data {
    background: #494e58;
    padding: 30px 0 25px;
  }
  .about-1 .img {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .about-1 .data h5 {
    font-size: 12px;
  }
  .about-1 .data p {
    font-weight: normal;
    font-size: 14px;
  }
  .about-1 .data li:after {
    height: 100%;
  }
}
.about-2 {
  position: relative;
  margin-top: -107px;
  padding-top: 64px;
  z-index: 1;
  padding-bottom: 150px;
}
.about-2 .bd {
  margin-top: 65px ;
  position: relative;
  padding: 0 50px;
}
@media (max-width: 992px) {
  .about-2 {
    padding-bottom: 50px;
    margin-top: 0;
  }
  .about-2 .base-hd {
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .about-2 {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .about-2 .base-hd {
    margin-bottom: 15px;
    text-align: left;
  }
}
.about-2 li img {
  display: block;
  margin: 0 auto;
  border: 1px solid #d2d2d2;
}
.about-2 .swiper-sm li {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-2 .swiper-sm {
    margin-left: 0;
    margin-right: 0;
  }
  .about-2 .swiper-sm li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .about-2 .swiper-sm img {
    width: 80%;
  }
}
@media (max-width: 640px) {
  .about-2 .swiper-sm li {
    padding-left: 5px;
    padding-right: 5px;
  }
  .about-2 .swiper-sm img {
    width: 90%;
  }
}
.swiper4 {
  width: 100%;
  height: auto!important;
}
.swiper4 .swiper-wrapper,
.swiper4 .swiper-slide {
  height: auto!important;
}
.swiper4 li {
  text-align: center;
  width: 20%;
  float: left;
}
.swiper4 img {
  max-width: 182px;
  width: 90%;
}
.swiper4 img:hover {
  border-color: #c3b571;
  box-shadow: 0 0 20px #ccc;
}
.pnext-wrap.pnext i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pnext-wrap.pnext .swiper-prev {
  left: 0;
}
.pnext-wrap.pnext .swiper-next {
  right: 0;
}
.about-3 .base-hd {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .about-3 .base-hd {
    margin-bottom: 20px;
  }
}
.about-3 .pnext-wrap {
  right: 0;
  left: auto;
  position: absolute;
  top: 30px;
}
.about-3 .swiper-sm li {
  margin-bottom: 30px;
  text-align: center;
}
.about-3 .swiper-sm p {
  font-size: 14px;
  padding-top: 10px;
}
@media (max-width: 640px) {
  .about-3 .swiper-sm {
    margin-left: 0;
    margin-right: 0;
  }
  .about-3 .swiper-sm li {
    padding-left: 0;
    padding-right: 0;
  }
}
.swiper5 {
  height: auto!important;
}
.swiper5 .swiper-wrapper,
.swiper5 .swiper-slide {
  height: auto!important;
}
.swiper5 li {
  float: left;
  text-align: center;
  position: relative;
  margin-left: -5%;
  width: 28.8%;
}
.swiper5 li img {
  width: 90%;
  display: block;
}
.swiper5 li:nth-child(1) {
  margin-left: 0;
}
.swiper5 li:nth-child(3) {
  margin-left: -5.8%;
}
.swiper5 p {
  line-height: 78px;
  font-size: 16px;
  color: #494e58;
}
.center-1 {
  height: 533px;
  padding: 78px 0 30px;
  margin-bottom: 30px;
}
.center-1 .swiper6 {
  width: 732px;
  height: 425px;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  top: 0;
}
.center-1 .swiper-item {
  background: url(../images/tab_bg3.png) no-repeat 0 bottom;
  background-size: contain;
}
.center-1 .swiper-item img {
  padding-left: 25px;
  padding-bottom: 10px;
}
@media (max-width: 1200px) {
  .center-1 {
    height: 480px;
  }
  .center-1 .swiper6 {
    transform-origin: right center;
    transform: scale(0.85);
  }
}
@media (max-width: 992px) {
  .center-1 {
    height: auto;
  }
}
@media (max-width: 640px) {
  .center-1 {
    padding-top: 30px;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .center-swiper-list {
    padding-top: 40px;
  }
  .center-swiper-list li {
    margin-bottom: 30px;
  }
  .center-swiper-list p {
    text-align: center;
    padding-top: 10px;
  }
}
@media (max-width: 640px) {
  .center-swiper-list {
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
  }
  .center-swiper-list li {
    padding-left: 0;
    padding-right: 0;
  }
}
.swiper6-tabs {
  width: 50%;
  margin-top: 50px;
  padding-left: 4px;
  overflow: hidden;
}
.swiper6-tabs .item {
  width: 165px;
  height: 42px;
  line-height: 42px;
  cursor: pointer;
  float: left;
  text-align: center;
  color: #fff;
  font-size: 12px;
  position: relative;
  margin: 1px;
}
.swiper6-tabs .item em {
  position: absolute;
  z-index: 55;
  left: 0;
  right: 0;
  text-align: center;
}
.swiper6-tabs .item::after {
  content: '';
  display: block;
  position: absolute;
  transform: skewX(-10deg);
  background: #494e58;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.swiper6-tabs .active::after,
.swiper6-tabs .item:hover::after {
  background: #c3b571;
}
@media (max-width: 1200px) {
  .swiper6-tabs {
    width: 45%;
  }
  .swiper6-tabs .item {
    width: 46%;
  }
}
@media (max-width: 991px) {
  .swiper6-tabs {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-left: 0;
  }
  .swiper6-tabs .item {
    width: 33%;
    background: #fff;
    border: 1px solid #494e58;
    color: #333;
    margin: -1px -1px 0 0;
    position: relative;
  }
  .swiper6-tabs .item::after {
    display: none;
  }
  .swiper6-tabs .item:nth-child(1),
  .swiper6-tabs .item:nth-child(2),
  .swiper6-tabs .item:nth-child(3) {
    margin-top: 0;
  }
  .swiper6-tabs .item.active {
    background: #494e58;
    color: #fff;
  }
}
@media (max-width: 991px) and (max-width: 640px) {
  .swiper6-tabs .item {
    width: 50%;
  }
  .swiper6-tabs .item:nth-child(3) {
    margin-top: -1px;
  }
}
.center-list ul {
  padding-bottom: 10px;
}
.center-list li {
  margin-bottom: 30px;
}
.center-list .inner {
  border: 1px solid #a0a0a0;
  position: relative;
}
.center-list .link {
  display: none;
}
.center-list li:hover .inner {
  box-shadow: 0 0 20px #ccc;
  background: #fff;
}
.center-list li:hover .inner .tit {
  color: #c3b571;
}
.center-list img {
  display: block;
  border-bottom: 1px solid #a0a0a0;
  width: 100%;
}
.center-list .tit {
  font-size: 18px;
  color: #5b5b5b;
  line-height: 64px;
  text-align: center;
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 5%;
}
@media (max-width: 640px) {
  .center-list ul {
    padding-left: 10px;
    padding-right: 10px;
  }
  .center-list li {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 20px;
  }
  .center-list .link {
    width: 50px;
    bottom: -10px;
  }
  .center-list .tit {
    font-size: 14px;
    line-height: 40px;
  }
}
.page {
  text-align: right;
  height: 36px;
  line-height: 32px;
  font-size: 12px;
}
.page > * {
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  color: #fff;
}
.page a {
  text-align: center;
  position: relative;
  margin-left: -6px;
}
.page a:hover {
  color: #fff;
}
.page .prev,
.page .next {
  width: 66px;
  background: url('../images/page_bg2.png') no-repeat 0 0;
}
.page .prev:hover,
.page .next:hover {
  background-position: 0 bottom;
}
.page .num {
  width: 36px;
  background: url('../images/page_bg.png') no-repeat 0 0;
}
.page .num.active,
.page .num:hover {
  background-position: 0 bottom;
}
.page-left {
  text-align: left;
  padding-left: 6px;
}
.service-box {
  padding-top: 40px;
  background: url(../images/tab_bg3.jpg) no-repeat center;
}
.service-box .item {
  position: relative;
}
.service-box .item-left .img {
  right: 0;
  left: auto;
  position: absolute;
  width: 600px;
  height: 300px;
  top: 0;
}
.service-box .item-right .img {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
}
.service-box h3 {
  font-size: 24px;
  color: #494e58;
  margin-bottom: 15px;
}
.service-box p {
  color: #494e58;
  text-indent: 2em;
  line-height: 24px;
}
@media (min-width: 1200px) {
  .service-box .info {
    width: 50%;
    height: 144px;
    -webkit-line-clamp: 6;
  }
  .service-box img {
    width: 50%;
  }
  .service-box .item1 {
    height: 330px;
  }
  .service-box .item1::before {
    content: '';
    position: absolute;
    display: block;
    right: 50%;
    margin-right: -87px;
    top: 0;
    width: 1050px;
    height: 330px;
    background: url(../images/tab3.png) no-repeat center;
    z-index: -1;
    opacity: 0.6;
  }
  .service-box .item1 .img {
    top: 50px;
  }
  .service-box .item1 h3 {
    padding-top: 85px;
  }
  .service-box .item2 {
    height: 255px;
  }
  .service-box .item2 .img {
    left: 0;
    position: absolute;
    max-height: 300px;
    top: -44px;
  }
  .service-box .item2 .info {
    width: 580px;
  }
  .service-box .item2 h3 {
    padding-top: 35px;
  }
  .service-box .item3 {
    height: 255px;
  }
  .service-box .item3 h3 {
    padding-top: 45px;
  }
  .service-box .item3 .img {
    right: 24px;
    top: -11px;
    z-index: 1;
  }
  .service-box .item3 .info {
    width: 565px;
  }
}
@media (min-width: 992px) {
  .service-box .item-left .img {
    width: 50%;
    height: auto;
  }
  .service-box .item {
    height: 255px;
  }
  .service-box .info {
    width: 45%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    height: 255px;
  }
  .service-box .info h3 {
    width: 100%;
  }
  .service-box img {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .service-box .item-left .img,
  .service-box .item-right .img {
    position: inherit;
    width: 100%;
    height: auto;
  }
  .service-box .item {
    padding: 20px 0;
  }
  .service-box .info {
    margin-bottom: 20px;
  }
  .service-box .info h3 {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .service-box {
    padding-top: 20px;
  }
}
.artical-box {
  text-align: center;
}
.artical-box .tit {
  color: #c3b571;
  font-size: 26px;
  font-weight: normal;
}
.artical-box .time {
  color: #898a89;
  padding: 10px 0 20px;
}
.artical-box .info {
  color: #3f2e20;
  min-height: 360px;
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 15px;
}
.artical-box .info p {
  padding-top: 10px;
}
@media (max-width: 768px) {
  .artical-box .tit {
    font-size: 20px;
  }
  .artical-box .info {
    font-size: 14px;
  }
}
.page-pnext {
  padding-bottom: 36px;
  line-height: 32px;
  text-align: right;
}
.page-pnext a {
  color: #494e58;
  display: block;
}
.page-pnext .prev,
.page-pnext .next {
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page-pnext a:hover {
  color: #c3b571;
}
@media (max-width: 640px) {
  .page-pnext {
    text-align: left;
  }
}
.new-list {
  padding-bottom: 25px;
}
.new-list li {
  border-bottom: 1px solid #f1f1f8;
  padding: 30px 0 26px;
  cursor: pointer;
}
.new-list li h3 {
  font-size: 30px;
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 20px;
}
.new-list li .intro {
  font-size: 18px;
  line-height: 32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  height: 64px;
  color: #969696;
}
.new-list li .intro:Hover {
  color: #333;
}
.new-list li .time {
  margin-top: 20px;
  font-size: 16px;
  color: #545454;
}
@media (max-width: 992px) {
  .new-list li h3 {
    font-size: 24px;
  }
  .new-list li .intro {
    font-size: 16px;
    line-height: 28px;
    height: 56px;
  }
  .new-list li .time {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .new-list li h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .new-list li .intro {
    font-size: 14px;
    line-height: 20px;
    height: 40px;
  }
  .new-list li .time {
    font-size: 12px;
  }
}
.new-list li:hover h3 {
  color: #c3b571;
}
.new-list li:last-child {
  border-bottom: 0;
}
.new-body {
  padding-top: 70px;
}
.new-body .hd {
  position: relative;
}
.new-body .news-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.new-body .news-link a {
  width: 116px;
  height: 42px;
  line-height: 42px;
  cursor: pointer;
  margin-bottom: 2px;
  text-align: center;
  color: #fff;
  background: url(../images/ic1_bg.png) no-repeat 0 0;
  position: relative;
  margin-left: -4px;
}
.new-body .news-link a:hover,
.new-body .news-link a.active {
  background-image: url(../images/ic1_bg_on.png);
}
@media (min-width: 768px) {
  .new-body .news-link {
    right: 0;
    left: auto;
    position: absolute;
    top: 10px;
  }
}
@media (max-width: 768px) {
  .new-body .news-link {
    margin: 20px 0 0;
  }
}
@media (max-width: 768px) {
  .new-body {
    padding-top: 30px;
  }
}
.contact-box {
  padding-top: 54px;
}
.contact-box .base-hd {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 640px) {
  .contact-box .base-hd {
    margin-bottom: 20px;
  }
}
.contact-box .base-hd h2 {
  padding-left: 0;
  background: none;
  font-weight: 600;
  letter-spacing: 2px;
}
.contact-box .base-hd .en {
  padding-left: 0;
}
.contact-box .map {
  margin-bottom: 50px;
}
@media (max-width: 640px) {
  .contact-box .map {
    margin-bottom: 20px;
  }
}
.contact-box .form-div {
  padding-top: 17px;
}
.contact-box .form-div .input-div {
  border: 1px solid #d2d2d2;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 52px;
}
.contact-box .form-div .input-div .tit {
  font-size: 18px;
  min-width: 66px;
}
.contact-box .form-div .input-div input {
  border: none;
  height: 52px;
  line-height: 52px;
  font-size: 18px;
  flex: 1;
}
.contact-box .form-div .input-div textarea {
  height: 140px;
  margin-left: 10px;
  outline: none;
  resize: none;
  padding: 12px 6px 12px 0;
  border: 0;
  font-size: 18px;
  box-sizing: border-box;
  flex: 1;
  line-height: 30px;
}
@media (max-width: 1200px) {
  .contact-box .form-div .input-div {
    margin-bottom: 15px;
    line-height: 42px;
  }
  .contact-box .form-div .input-div input {
    height: 42px;
    line-height: 42px;
  }
  .contact-box .form-div .input-div textarea {
    padding: 8px 6px 8px 0;
  }
}
@media (max-width: 640px) {
  .contact-box .form-div .input-div .tit {
    font-size: 14px;
  }
}
.contact-box .submit {
  width: 300px;
  height: 58px;
  line-height: 58px;
  background: #c3b571;
  color: #fff;
  font-size: 24px;
  display: block;
  margin: 0 auto;
  border: 0;
  cursor: pointer;
}
.contact-box .submit:hover {
  background: #ad9d4f;
}
@media (max-width: 640px) {
  .contact-box .submit {
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}
.contact-form {
  padding-bottom: 22px;
}
@media (max-width: 1200px) {
  .contact-form .img-service {
    width: 543px;
  }
}
.good-details {
  background: #fff;
}
@media (min-width: 768px) {
  .good-details {
    padding-bottom: 20px;
  }
}
.good-details .hd {
  text-align: center;
  font-weight: bold;
  padding-top: 70px;
  margin-bottom: 20px;
}
.good-details .hd h2 {
  color: #929ca6;
  font-size: 30px;
  font-weight: bold;
}
.good-details .hd .en {
  color: #c3b571;
  font-size: 34px;
  font-style: italic;
}
.good-details .info {
  text-align: center;
  color: #595959;
  line-height: 1.9;
  padding-bottom: 40px;
  font-size: 18px;
}
@media (max-width: 640px) {
  .good-details .hd {
    padding-top: 40px;
    margin-bottom: 10px;
  }
  .good-details .hd h2 {
    font-size: 20px;
  }
  .good-details .hd .en {
    font-size: 16px;
  }
  .good-details .info {
    font-size: 14px;
  }
}
.good-details table {
  width: 100%;
}
.good-details table td,
.good-details table th {
  border: 1px solid #929ca6;
  height: 54px;
  text-align: center;
  font-size: 18px;
}
.good-details table th {
  font-weight: normal;
  background: #c3b571;
  height: 62px;
  color: #fff;
}
@media (max-width: 992px) {
  .good-details table td,
  .good-details table th {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .good-details table td,
  .good-details table th {
    font-size: 12px;
    height: 40px;
  }
}
.good-details .list {
  margin-left: -11px !important;
  margin-right: -11px !important;
  padding-top: 25px;
}
.good-details .list li {
  padding-left: 11px!important;
  padding-right: 11px!important;
  margin-bottom: 22px;
}
.good-details .list li a {
  display: block;
  border: 1px solid #c3b571;
}
.good-details .list li a img {
  width: 100%;
}
.good-details .list li a:hover {
  border-color: #767676;
}
@media (max-width: 640px) {
  .good-details .list {
    padding-top: 10px;
  }
}
