@charset "utf-8";
/* CSS Document */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background-color: #000;
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
::-webkit-scrollbar-thumb:horizontal {
  background-color: #000;
}
::-webkit-scrollbar-track:horizontal {
  background-color: #000;
}
::-webkit-scrollbar-corner {
  background-color: #000;
}
* {
  box-sizing: border-box;
  outline: none;
}
html,
body {
  width: 100%;
  height: 100%;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /*修正手持设备字体变化*/
  -webkit-text-size-adjust: none;
  margin: 0px;
  padding: 0px;
}
body,
td,
th {
  color: #000;
  line-height: 1.8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: normal;
  font-size: 100%;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var,
span {
  font-style: normal;
  font-family: "Noto Sans SC", sans-serif;
}
img {
  border: none;
}
ol,
ul,
li {
  list-style: none;
}
input,
textarea,
select,
button {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 16px;
  font-weight: 300;
}
input,
textarea,
select {
  *font-size: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #a07440;
}
a:active {
  text-decoration: none;
}
dl,
dd,
dt {
  margin: 0px;
  padding: 0px;
}
/* css common */
.rel {
  position: relative;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  overflow: hidden;
}
.clearfix {
  *zoom: 1;
}
.lt,
.left {
  float: left;
}
.rt,
.right {
  float: right;
}
.clear,
.clr {
  clear: both;
}
.f-cb {
  zoom: 1;
}
.f-cb:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  content: ".";
}
.fl {
  float: left;
  display: inline;
}
.fr {
  float: right;
  display: inline;
}
.por {
  position: relative;
}
.poa {
  position: absolute;
}
.poa-f {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.ovh {
  overflow: hidden;
}
.noselect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.z1 {
  z-index: 1;
}
.z2 {
  z-index: 2;
}
.z3 {
  z-index: 3;
}
.dn {
  display: none;
}
.width-full {
  width: 100%;
}
.height-full {
  height: 100%;
}
.dib {
  display: inline-block;
}
.wrap {
  width: 84%;
  margin: 0 auto;
}
.indent {
  text-indent: 2em;
}
@media (max-width: 1600px) {
  body {
    font-size: 16px;
  }
  input,
  textarea,
  select,
  button {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  body {
    font-size: 14px;
  }
  body,
  td,
  th {
    line-height: 1.5;
  }
  input,
  textarea,
  select,
  button {
    font-size: 14px;
  }
  .wrap {
    width: 94%;
  }
}
@media (max-width: 992px) {
}
@media (max-width: 750px) {
}

/* Header */
header {
  width: 100%;
  height: 90px;
  position: relative;
  z-index: 1000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #ffffff;
}
header.on,
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}
header > .wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .menu-trigger {
  display: none;
}
header .menu-trigger span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 5px;
  transition: 0.3s;
  background: #000;
}
header .menu-trigger span:last-of-type {
  margin-bottom: 0;
}
header .menu-trigger.active span:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: left center;
}
header .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
header .menu-trigger.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: left center;
}
header .logo {
  width: 150px;
  display: block;
}
header .logo img{
  max-width: 100%;
  display: block;
}
header .header-nav {
  width: calc(84% - 300px);
}
header .header-nav a{
  display: block;
}
header .header-nav > ul{
  display: flex;
  justify-content: space-between;
}
header .header-nav > ul > li{
  position: relative;
}
header .header-nav > ul > li > a{
  position: relative;
  font-weight: 600;
  font-size: 20px;
  line-height:90px;
}
header .header-nav > ul > li:hover > a,
header .header-nav > ul > li.current > a {
  color: #a07440;
}
header .header-nav > ul > li > a:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background: #a07440;
  bottom: 0;
  left: 0;
  transform-origin: center;
  transform: scale(0, 1);
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
header .header-nav > ul > li:hover > a:after,
header .header-nav > ul > li.current > a:after {
  transform-origin: center;
  transform: scale(1);
}
header .header-nav > ul > li > ul{
  position: absolute;
  left:50%;
  transform: translateX(-50%);
  text-align: center;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  display: none;
  background: #fff;
}
header .header-nav > ul > li:hover > ul {
  display: block;
}
header .header-nav > ul > li > ul > li > a {
  white-space: nowrap;
  line-height: 36px;
  padding: 0 15px;
  font-size: 16px;
}
header .header-nav > ul > li > ul > li > a:hover {
  background: #a07440;
  color: #ffffff;
}
header .header-tools{
  width: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-tools a{
  display:block;
}
header .header-tools .header-lan{
  position:relative;
}
header .header-tools .header-lan .lan-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px #000 solid;
  padding:0 15px;
  border-radius:20px;
  cursor:pointer;
}
header .header-tools .header-lan .lan-title span{
  display:block;
  margin:0 5px;
  font-size:14px;
}
header .header-tools .header-lan .lan-title i{
  font-size:14px;
  display:block;
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1);
}
header .header-tools .header-lan .lan-title i.icon-xiangxiajiantou{
  font-size:10px;
}
header .header-tools .header-lan:hover .lan-title i.icon-xiangxiajiantou{
  transform:rotate(180deg);
}
header .header-tools .header-lan .lan-select{
  position:absolute;
  background:#fff;
  width:100%;
  text-align:center;
  font-size:14px;
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1);
  display:none;
  opacity:0;
  visibility:hidden;
}
header .header-tools .header-lan:hover .lan-select{
  display:block;
  opacity:1;
  visibility:visible;
}
header .header-tools .header-lan .lan-select li{
  border-bottom:1px #eee solid;
}
header .header-tools .header-lan .lan-select li:last-child{
  border-bottom:none;
}
header .header-tools .header-lan .lan-select a:hover{
  background:#9e723d;
  color:#fff;
}
header .subnav {
  width: 100%;
  height: calc(100% - 60px);
  padding: 0 3%;
  display: none;
  position: fixed;
  left: 0px;
  top: 60px;
  background: #f7f7f7;
  z-index: 2;
  overflow-y: auto;
}
header .subnav h2 {
  text-transform: uppercase;
  padding: 10px 10px 10px 0;
  display: flex;
  align-items: center;
  font-weight: 600;
}
header .subnav h2 .icon {
  margin-right: 6px;
  font-size: 14px;
  font-weight: normal;
  display: block;
}
header .subnav .menu-box {
  padding: 0 0 10px 0;
}
header .subnav .menu-box > ul > li {
  padding: 10px 0;
  border-bottom: 1px #ddd solid;
}
header .subnav .menu-box > ul > li:nth-child(1) {
  padding-top: 0;
}
header .subnav .menu-box > ul > li > a {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}
header .subnav .menu-box > ul > li > a > i {
  font-size: 12px;
}
header .subnav .menu-box > ul > li > ul {
  margin-top: 10px;
  display: none;
}
header .subnav .menu-box > ul > li > ul > li > a {
  display: block;
  padding: 0 5px;
  line-height: 30px;
}
header .subnav .zoom-box {
  padding: 0 0 10px 0;
  position: relative;
}
header .subnav .zoom-box form {
  display: flex;
}
header .subnav .zoom-box input[type="text"] {
  width: 100%;
  height: 36px;
  border: none;
  outline: none;
  padding: 0 46px 0 10px;
}
header .subnav .zoom-box button {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  outline: none;
  text-align: center;
  background: #a07440;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .subnav .lan-box h2 {
  padding-bottom: 10px;
  position: relative;
  cursor: pointer;
  display: flex;
}
header .subnav .lan-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header .subnav .lan-box li {
  width: 49%;
  margin: 0.5% 0;
}
header .subnav .lan-box a {
  border: 1px #ddd solid;
  margin: 3px 0;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .subnav .lan-box a:hover {
  background: #a07440;
  border-color: #a07440;
  color: #fff;
}
header .subnav .lan-box .left {
  display: flex;
  align-items: center;
}
header .subnav .lan-box img {
  display: block;
  width: 24px;
  margin-right: 6px;
}
@media (max-width: 1600px) {
  header .header-nav > ul > li > a{
    font-size: 16px;
  }
  header .header-nav > ul > li > ul > li > a{
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  header {
    height: 60px;
  }
  header > .wrap {
    align-items: center;
  }
  header .header-nav,
  header .header-tools {
    display: none;
  }
  header .logo {
    width: 120px;
  }
  header .menu-trigger {
    display: block;
  }
}
@media (max-width: 992px) {
}
@media (max-width: 750px) {
  header {
    height: 50px;
  }
  header .logo {
    width: 100px;
  }
  header .subnav {
    height: calc(100% - 50px);
    top: 50px;
  }
}

/*Search*/
.search-box{
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top:0;
  left: 0;
  z-index: 1001;
  display: none;
}
.search-box .box-main{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.search-box .box-main .out-box{
  width: 820px;
    height: 100px;
    border-radius: 50px;
    box-sizing: border-box;
    padding: 10px;
    background: rgba(0, 62, 149, 0.1);
}
.search-box .box-main .out-box form {
    width: 100%;
    height: 100%;
    line-height: 87px;
    padding-left: 35px;
    border-radius: 40px;
    background: #9e723d;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-box .box-main .out-box form input {
    background-color: transparent;
    height: 60px;
    width: calc(100% - 80px);
    border: 0;
    border-radius: 0;
    font-size: 20px;
    color: #fff;
}
.search-box .box-main .out-box form input::-webkit-input-placeholder {  
  color: #fff;
}
.search-box .box-main .out-box form input::-moz-placeholder { /* Firefox 19+ */  
  color: #fff;
}
.search-box .box-main .out-box form input:-ms-input-placeholder { /* IE 10+ */ 
    color: #fff;
}
.search-box .box-main .out-box form input:-moz-placeholder { /* Firefox 18- */ 
    color: #fff;
}
.search-box .box-main .out-box form button{
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 0;
    cursor: pointer;
    background: none;
}
.search-box .box-main .out-box form button i{
  font-size: 24px;
  color: #fff;
}
.search-box .box-main .close-search{
    margin-top: 180px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #000;
    border-radius: 50%;
}
.search-box .box-main .close-search i{
  font-size: 24px;
  display: block;
}
.search-box .box-main .close-search:hover{
  background: #9e723d;
}
.search-box .box-main .close-search:hover i{
  transform: rotate(360deg);
  -webkit-transition:all 400ms linear;
    -moz-transition:all 400ms linear;
    -o-transition:all 400ms linear;
    transition:all 400ms linear;
}
@media (max-width: 1280px) {  
}
@media (max-width: 992px) { 
}
@media (max-width: 750px) { 
}

/* Footer */
footer {
  width: 100%;
  color: #fff;
  overflow: hidden;
}
footer a{
  color: #fff;
  display: block;
}
footer .footer-box2{
  width: 100%;
  background: #2b2b2b;
  overflow: hidden;
}
footer .footer-box2 .box1{
  width: 100%;
  padding:50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
footer .footer-box2 .box1 .logo img{
  display: block;
}
footer .footer-box2 .box1 .form ul{
  display: flex;
  align-items: center;
}
footer .footer-box2 .box1 .form li{
  width: 352px;
  margin-right: 20px;
}
footer .footer-box2 .box1 .form li:nth-child(n+3){
  display: none;
}
footer .footer-box2 .box1 .form li.button{
  margin-right: 0;
  width: 180px;
  display: block;
}
footer .footer-box2 .box1 .form input,
footer .footer-box2 .box1 .form button{
  width: 100%;
  background: none;
  border:1px #fff solid;
  outline: none;
  color: #fff;
  height: 56px;
  border-radius: 28px;
  padding:0 30px;
}
footer .footer-box2 .box1 .form input::placeholder{
  color: #fff;
}
footer .footer-box2 .box1 .form button{
  background: #a07440;
  color: #fff;
  border:none;
  cursor: pointer;
}
footer .footer-box2 .box2{
  width: 100%;
  padding:100px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  overflow: hidden;
}
footer .footer-box2 .box2 .left{
  width: calc(90% - 360px);
}
footer .footer-box2 .box2 .left .footer-nav{
  display: flex;
  justify-content: space-between;
}
footer .footer-box2 .box2 .left .footer-nav > li > a{
  font-weight:500;
}
footer .footer-box2 .box2 .left .footer-nav > li > a > i{
  display: none;
}
footer .footer-box2 .box2 .left .footer-nav > li > ul{
  margin-top: 10px;
}
footer .footer-box2 .box2 .left .footer-nav > li > ul > li{
  line-height: 36px;
  font-size:16px;
}
footer .footer-box2 .box2 .right{
  width: 360px;
}
footer .footer-box2 .box2 .right .tel{
  display: flex;
  align-items: center;
}
footer .footer-box2 .box2 .right .tel em{
  font-size: 40px;
  line-height: 40px;
  margin-right: 10px;
}
footer .footer-box2 .box2 .right .tel .text .text-01{
  font-size: 14px;
}
footer .footer-box2 .box2 .right .tel .text .text-02{
  font-size: 36px;
  line-height: 36px;
  font-weight: 550;
}
footer .footer-box2 .box2 .right .content{
  margin:10px 0 30px 0;
}
footer .footer-box2 .box2 .right .code{
  font-size: 14px;
  text-align: center;
}
footer .footer-box2 .box2 .right .code ul{
  display: flex;
}
footer .footer-box2 .box2 .right .code li{
  margin-right: 40px;
}
footer .footer-box2 .box2 .right .code li:last-child{
  margin-right: 0;
}
footer .footer-box2 .box2 .right .code img{
  display: block;
  margin-bottom: 10px;
}
footer .footer-box2 .box3{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:30px 0;
  overflow: hidden;
  text-transform: uppercase;
}
footer .footer-box2 .box3 .right a{
  display: flex;
  align-items: center;
}
footer .footer-box2 .box3 .right img{
  width: 75px;
  display: block;
}
@media (max-width: 1600px) {
  footer .footer-box1 i{
    font-size: 60px;
    line-height: 60px;
  }
  footer .footer-box2 .box2 .right .tel .text .text-02{
    font-size: 32px;
    line-height: 32px;
  }
  footer .footer-box2 .box2 .left .footer-nav > li > ul > li{
    font-size:14px;
  }
}
@media (max-width: 1280px) {
  footer .footer-box1{
    display: none;
  }
  footer .footer-box2 .box1{
    padding:5% 0;
  }
  footer .footer-box2 .box1 .logo{
    display: none;
  }
  footer .footer-box2 .box1 .form{
    width: 100%;
  }
  footer .footer-box2 .box1 .form ul{
    width: 100%;
    justify-content: space-between;
  }
  footer .footer-box2 .box1 .form li{
    width: 38%;
    margin-right: 0;
  }
  footer .footer-box2 .box1 .form li.button{
    width: 20%;
  }
  footer .footer-box2 .box1 .form input,
  footer .footer-box2 .box1 .form button{
    height: 50px;
    padding:0 6%;
  }
  footer .footer-box2 .box2{
    padding:10% 0;
    flex-direction: column;
  }
  footer .footer-box2 .box2 .left,
  footer .footer-box2 .box2 .right{
    width: 100%;
  }
  footer .footer-box2 .box2 .left  .footer-nav{
    width: 100%;
    flex-direction: column;
  }
  footer .footer-box2 .box2 .left  .footer-nav > li{
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding:10px 0;
  }
  footer .footer-box2 .box2 .left  .footer-nav > li > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
  }
  footer .footer-box2 .box2 .left  .footer-nav > li > a > i{
    display: block;
    font-size: 14px;
  }
  footer .footer-box2 .box2 .left  .footer-nav > li > ul{
    display: none;
    /*margin-top: 0;*/
  }
  footer .footer-box2 .box2 .left  .footer-nav > li > ul > li > a{
    line-height: 32px;
  }
  footer .footer-box2 .box2 .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 6%;
  }
  footer .footer-box2 .box2 .right .tel em{
    font-size: 32px;
    line-height: 32px;
  }
  footer .footer-box2 .box2 .right .tel .text .text-01{
    display: none;
  }
  footer .footer-box2 .box2 .right .content{
    margin:2% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    line-height: 1.8;
  }
  footer .footer-box2 .box2 .right .tel .text .text-02{
    font-size: 28px;
    line-height: 28px;
  }
  footer .footer-box2 .box3{
    flex-direction: column;
    text-align: center;
    padding:4% 0;
  }
  footer .footer-box2 .box3 .right{
    margin-top: 5px;
  }
}
@media (max-width: 992px) {
  footer .footer-box2 .box2 .right .tel .text .text-02{
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 750px) {
  footer .footer-box2 .box1 .form ul{
    flex-direction: column;
  }
  footer .footer-box2 .box1 .form li{
    width: 100%;
    margin-bottom: 3%;
  }
  footer .footer-box2 .box1 .form li.button{
    width: 100%;
    margin-bottom: 0;
  }
  footer .footer-box2 .box1 .form input,
  footer .footer-box2 .box1 .form button{
    height: 40px;
  }
  footer .footer-box2 .box2 .right .tel em{
    font-size: 28px;
    line-height: 28px;
  }
  footer .footer-box2 .box2 .right .tel .text .text-02{
    font-size: 20px;
  }
  footer .footer-box2 .box3 .right{
    margin-top: 0;
  }
}
