html {
  color: #333333;
  /*规定主色调,依据业务场景(非必须)*/
  /*规定主背景,依据业务场景(非必须)*/
  /*如果有溢出自动形成滚动条*/
  -webkit-text-size-adjust: 100%;
  /*不想让iPhone横坚屏切换的时候调节文字*/
  -ms-text-size-adjust: 100%;
  position: relative;
}

html *{
  /*所有元素*/
  outline: none;
  font-family: -apple-system, BlinkMacSystemFont, Arial, "PingFang SC","Helvetica Neue",STHeiti,"Microsoft Yahei",Tahoma,Simsun,sans-serif;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*去除移动端开发点击事件灰色背景如a标签*/
  scroll-behavior: smooth;
  /* 平滑滚动 */
  -webkit-overflow-scrolling: touch;
  user-select: none; /*用户是否能够选中文本*/
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #FFFFFF;
  box-sizing: border-box;
}

article,
aside,
blockquote,
body,
button,
code,
dd,
details,
div,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
input,
legend,
li,
menu,
nav,
ol,
p,
pre,
section,
td,
textarea,
th,
ul {
   margin: 0;
   padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: none;
}

ol,
ul {
  list-style: none;
}

q:after,
q:before {
  /*在<q></q>标签之间的文字两头加上引号*/
  content: '';
}

a {
  text-decoration: none;
}

a,span,em{
  display: inline-block;
}

/*input*/
button {
  border: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  /*渲染成button的风格*/
  text-transform: none;
  outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
  /*输入框提示语的字体样式*/
}

input::-webkit-inner-spin-button {
  /*解决input的type="number"在部分手机端会出现一个小按钮*/
  -webkit-appearance: none;
  /*去除系统默认appearance的样式,常用于IOS下移除原生样式*/
}

input::-webkit-outer-spin-button {
  /*解决input的type="number"在部分手机端会出现一个小按钮*/
  -webkit-appearance: none;
}

textarea {
  vertical-align: top;
}

button,
input {
  border: none;
  outline: none;
}

select {
  margin: 0;
  outline: 0;
}
input select{
  -webkit-user-select:auto; /*webkit浏览器*/
  user-select: auto; /*用户是否能够选中文本*/
}
input.fixAKeyboard:focus,
textarea.fixAndroidKeyboard:focus {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-modify: read-write-plaintext-only;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
}

button,
input[type=button],
input[type=checkbox],
input[type=reset],
input[type=submit],
label {
  cursor: pointer;
  user-select: none;
}

input[type=submit] {
  user-modify: read-plaintext-only;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type='search'] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

/*flex box*/
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.row-reverse {
  flex-direction: row-reverse;
}

.row {
  flex-direction: row;
}

.flex-vertical {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.column {
  flex-direction: column;
}

.x-scroll{
    overflow-x: scroll;
}
.y-scroll{
  overflow-y: scroll;
  scroll-behavior: auto;
}
.y-hidden{
    overflow-y: hidden;
}
.x-hidden{
    overflow-x: hidden;
}
.over-hidden{
    overflow: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  /*所有元素以border开始计算盒子大小*/
}

.clearfix:after,
.clearfix:before {
  /*清除浮动*/
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.ell-row-1 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.flex-1{
  flex: 1;
}

.ell-row-2 {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* //ios兼容 */
input, textarea{
  -webkit-user-select:text !important
}


/* 导航栏 */
#top_wrap{
  width: 100%;
  height: 68px;
  line-height: 68px;
  background-color: #FFFFFF;
  border-bottom: 2px solid #E7E7E7 ;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
#top_wrap .top{
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top_wrap .logo img{
  width: 120px;
}
#top_wrap .nav{
  display: flex;
}
#top_wrap .nav li a{
  padding: 0 32px;
  font-size: 16px;
  color: #333333;
}
#top_wrap .nav .nav_on a{
  background: #CBA058;
  color: #FFFFFF;
  -webkit-transition: all 0.2s linear;
}
#top_wrap .nav li a:hover{
  background: #CBA058;
  color: #FFFFFF;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#top_wrap .nav li:last-child a{
  padding: 0 16px;
  line-height: 40px;
  background: #CBA058;
  border-radius: 4px;
  color: #FFFFFF;
  margin-left: 30px;
}

/* 水平banner */
#banner_level, #business_wrap, #case_wrap, #customer_wrap, #partner_wrap, #contact_wrap, #bottom_wrap, #footer_wrap, #team_wrap{
  width: 100%;
}
#banner_level .swiper,#banner_level .swiper .swiper-slide img{
  width: 100%;
  height: 100%;
}
#banner_level .swiper-horizontal>.swiper-pagination-bullets, #banner_level .swiper-pagination-bullets.swiper-pagination-horizontal, #banner_level .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: 22px;
}
#banner_level .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  opacity: 1;
}
#banner_level .swiper-pagination-bullet-active{
  width: 32px;
  height: 8px;
  background: #CBA058;
  border-radius: 6px;
}
#banner_level .swiper-button-next, #banner_level .swiper-button-prev{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #FFFFFF;
  background-color: rgba(0,0,0,0.85);
  opacity: 0;
}
#banner_level .swiper-button-next:after, #banner_level .swiper-button-prev:after{
  font-size: 26px;
}
#banner_level .swiper-button-next{
  right: 120px;
}
#banner_level .swiper-button-prev{
  left: 120px;
}
#banner_level:hover .swiper-button-next, #banner_level:hover .swiper-button-prev{
  opacity: 0.2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#banner_level .swiper-button-next:hover, #banner_level .swiper-button-prev:hover{
  opacity: 1;
  background-color: rgba(0,0,0,0.4);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* 我们的业务 */
.main_title{
  text-align: center;
  padding: 140px 0 80px;
  font-family: PingFangSC-Semibold, PingFang SC;
}
.main_title h1{
  font-size: 80px;
  color: #CBA058;
  line-height: 80px;
  letter-spacing: 4px;
  opacity: 0.1;
}
.main_title h3{
  font-size: 28px;
  font-weight: 500;
  color: #BC8C44;
  line-height: 40px;
  letter-spacing: 3px;
  margin-top: -58px;
}
.main_title p{
  font-size: 20px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #584E4A;
  line-height: 28px;
  margin-top: 10px;
}
#business_wrap .business{
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#business_wrap .business li{
  width: 32%;
  height: 400px; 
  text-align: center;
  background: #CBA058;
  margin-right: 25px;
  -webkit-transition: all 1s linear;
}
#business_wrap .business li:last-child{
  margin-right: 0;
}
#business_wrap .business li:hover{
  /* transition: all 1s linear;
  -webkit-transition: all 1s linear; */
}
#business_wrap .business li:first-child:hover{
  background: url(../images/business/banner01.png) no-repeat center center/100% 100%;
}
#business_wrap .business li:nth-child(2):hover{
  background: url(../images/business/banner02.png) no-repeat center center/100% 100%;
}
#business_wrap .business li:last-child:hover{
  background: url(../images/business/banner03.png) no-repeat center center/100% 100%;
}
#business_wrap .business li>img{
  width: 100px;
  margin-top: 130px;
}
#business_wrap .business li p{
  font-size: 24px;
  color: #FFFFFF;
  line-height: 33px;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* 垂直banner */
#case_wrap .swiper,#case_wrap .swiper .swiper-slide img{
  width: 100%;
  /* height: 100%; */
}
#case_wrap .swiper-button-next, #case_wrap .swiper-button-prev{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #FFFFFF;
  background-color: #DEBC8C;
}
#case_wrap .swiper-button-next:after, #case_wrap .swiper-button-prev:after{
  font-size: 26px;
}
#case_wrap .swiper-button-next{
  right: 120px;
}
#case_wrap .swiper-button-prev{
  left: 120px;
}
/* #case_wrap .swiper-pagination-vertical.swiper-pagination-bullets, #case_wrap .swiper-vertical>.swiper-pagination-bullets{
  right: 60px;
}
#case_wrap .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
}
#case_wrap .swiper-pagination-bullet-active{
  width: 8px;
  height: 32px;
  background: #CBA058;
  border-radius: 6px;
} */

/* 我们的团队 */
#team_wrap .team{
  width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
}
#team_wrap .team dl{
  width: 16%;
  position: relative;
}
#team_wrap .team dl dt{
  width: 192px;
  position: relative;
}
#team_wrap .team dl dt img{
  display: block;
  width: 100%;
}
#team_wrap .team dl dt p{
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#team_wrap .team dl dt p span{
  width: 75px;
  height: 24px;
  border-radius: 2px;
  border: 1px solid #FFFFFF;
  padding: 5px 14px;
  color: #FFFFFF;
  line-height: 14px;
  font-size: 14px;
  cursor: pointer;
}
#team_wrap .team dl dt:hover p{
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.29);
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
#team_wrap .team dl dd{
  width: 168px;
  height: 88px;
  background: #CBA058;
  padding: 12px;
  color: #FFFFFF;
  font-size: 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  margin: auto;
}
#team_wrap .team dl dd span{
  display: block;
  text-align: right;
  margin-top: 10px;
}

/* 我们的客户 */
#customer_wrap .customer{
  width: 1200px;
  margin: 0 auto 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#customer_wrap .customer li{
  width: 224px;
  margin-right: 20px;
  margin-bottom: 20px;
  border: 2px solid #f3f3f3;
  border-radius: 20px;
  overflow: hidden;
  transition: all  .2s  ease-in;
}
#customer_wrap .customer li img{
  display: block;
  width: 100%;
}
#customer_wrap .customer li:nth-child(5n+5){
  margin-right: 0;
}
#customer_wrap .customer li:hover{
  transform:translateY(-10px);
  box-shadow: 0 10px 20px #EEEEEE;
}

/* 我们的合作伙伴 */
#partner_wrap{
  background-color: #FAF7F1;
  padding-bottom: 120px;
}
#partner_wrap .swiperPartner{
  width: 100%;
  height: 320px;
  padding-top: 10px;
}
#partner_wrap .swiper .swiper-slide{
  width: 100%;
  max-height: 305px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#partner_wrap .swiper .swiper-slide img{
  flex: 1;
  border: 2px solid #f3f3f3;
  border-radius: 20px;
  overflow: hidden;
  transition: all  .2s  ease-in;
}
#partner_wrap .swiper .swiper-slide img:first-child {
  margin-bottom: 25px;
}
#partner_wrap .swiper .swiper-slide img:hover{
  transform:translateY(-10px);
  box-shadow: 0 10px 20px #EEEEEE;
}
#partner_wrap .swiper-button-next, #partner_wrap .swiper-button-prev{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #FFFFFF;
  background-color: #DEBC8C;
}
#partner_wrap .swiper-button-next:after, #partner_wrap .swiper-button-prev:after{
  font-size: 26px;
}
#partner_wrap .swiper-button-next{
  right: 130px;
}
#partner_wrap .swiper-button-prev{
  left: 130px;
}

/* 联系我们 */
#contact_wrap img{
  display: block;
  width: 100%;
}
#contact_wrap p{
  position: relative;
  width: 230px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  background: #FFFFFF;
  border-radius: 36px;
  font-size: 28px;
  color: #C3781C;
  margin: -150px auto 82px;
  cursor: pointer;
}

/* 底部 */
#bottom_wrap{
  height: 258px;
  background: #CBA058;
  border-bottom: 1px solid #E5E1DC;
}
#bottom_wrap .bottom{
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #FFFFFF;
  padding-top: 60px;
}
#bottom_wrap .bottom_left{
  width: 880px;
}
#bottom_wrap .bottom_left img{
  width: 120px;
  margin-bottom: 55px;
}
#bottom_wrap .bottom_left h2{
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}
#bottom_wrap .bottom_left h2{
  font-size: 16px;
  line-height: 18px;
}
#bottom_wrap .bottom_center{
  width: 180px;
}
#bottom_wrap .bottom_center li{
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 20px;
}
#bottom_wrap .bottom_right{
  width: 130px;
  text-align: center;
}
#bottom_wrap .bottom_right img{
  width: 130px;
}
#bottom_wrap .bottom_right dd{
  font-size: 14px;
  line-height: 20px;
  margin-top: 12px;
}
#footer_wrap{
  background: #CBA058;
  text-align: center;
  line-height: 80px;
}
#footer_wrap a{
  color: #FFFFFF;
  font-size: 12px;
}

.cover_wrap{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 11;
  display: none;
}
.cover_wrap .cover_title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 16px 28px 28px;
}
.cover_wrap .cover_title p{
  font-size: 20px;
  color: #333333;
  line-height: 20px;
}
.cover_wrap .cover_title p::before{
  content: '';
  display: inline-block;
  width: 8px;
  height: 20px;
  background: #CBA058;
  margin-right: 16px;
  vertical-align: middle;
}
.cover_wrap .cover_title img{
  width: 24px;
  display: block;
  cursor: pointer;
}
#team_cover_wrap .team_cover{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 480px;
  height: 592px;
  background: #FFFFFF;
  border-radius: 4px;
}

#contactUs_cover_wrap .contactUs_cover{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 940px;
  height: 532px;
  background: #FFFFFF;
  border-radius: 4px;
}

#team_cover_form{
  padding: 0 40px;
}
.cover_wrap form{
  text-align: center;
}
.cover_wrap .cover_form_item{
  display: flex;
  margin-bottom: 32px;
  font-size: 16px;
}
.cover_wrap .cover_form_item span{
  display: block;
  text-align: right;
  width: 90px;
  line-height: 40px;
}
.cover_wrap .cover_form_item input,.cover_wrap .cover_form_item textarea,.cover_wrap .cover_form_item select{
  width: 272px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  padding: 0 16px;
  font-size: 16px;
}
.cover_wrap .cover_form_item textarea{
  height: 112px;
  padding: 10px 16px;
}
.cover_wrap .cover_submit{
  width: 380px;
  height: 56px;
  background: #CBA058;
  border-radius: 4px;
  color: #FFFFFF;
  letter-spacing: 4px;
  font-size: 22px;
}

#contactUs_cover_form{
  overflow: hidden;
  padding: 0 48px;
}
#contactUs_cover_form .left{
  float: left;
  width: 50%;
}
#contactUs_cover_form .right{
  float: right;
  width: 43%;
}
#contactUs_cover_form .contactUs_form_item{
  clear: both;
}
#contactUs_cover_form .contactUs_form_item textarea{
  width: 100%;
}



.alert {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 300px;
    max-width: 600px;
    transform: translate(-50%,-50%);
    z-index: 99999;
    text-align: center;
    padding: 15px;
    border-radius: 3px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}


@media (max-width: 1682px) {
  #business_wrap .business li{
    height: 360px;
  }
  #business_wrap .business li>img{
    margin-top: 100px;
  }
  #partner_wrap .swiperPartner{
    height: 300px;
  }
  #partner_wrap .swiper .swiper-slide{
    max-height: 295px;
  }
  #contact_wrap p{
    width: 220px;
    height: 60px;
    line-height: 60px;
    margin-top: -130px;
    font-size: 26px;
    margin-bottom: 70px;
  }
}
@media (max-width: 1442px) {
  #business_wrap .business li{
    height: 320px;
  }
  #business_wrap .business li>img{
    margin-top: 82px;
  }
  #partner_wrap .swiperPartner{
    height: 280px;
  }
  #partner_wrap .swiper .swiper-slide{
    max-height: 265px;
  }
  #contact_wrap p{
    width: 200px;
    height: 50px;
    line-height: 50px;
    margin-top: -110px;
    font-size: 24px;
    margin-bottom: 60px;
  }
}
@media (max-width: 1338px) {
  #business_wrap .business li{
    height: 300px;
  }
  #business_wrap .business li>img{
    margin-top: 72px;
  }
  #partner_wrap .swiperPartner{
    height: 260px;
  }
  #partner_wrap .swiper .swiper-slide{
    max-height: 245px;
  }
  #contact_wrap p{
    width: 180px;
    height: 46px;
    line-height: 46px;
    margin-top: -105px;
    font-size: 22px;
    margin-bottom: 58px;
  }
}
@media (max-width: 1282px) {
  #business_wrap .business li{
    height: 280px;
  }
  #business_wrap .business li>img{
    margin-top: 62px;
  }
  #partner_wrap .swiperPartner{
    height: 240px;
  }
  #partner_wrap .swiper .swiper-slide{
    max-height: 225px;
  }
}