/*全局样式 star*/
html {
  font-family: "Microsoft Yahei", "微软雅黑", arial, georgia, verdana, helvetica,
    sans-serif, "宋体";
}
body {
  font-size: 14px;
}
html,
body,
.page {
  height: 100%;
}
.page-main {
  position: relative;
  min-height: 100%;
}
a {
  color: #555555;
}
a:hover { text-decoration:none; }
img {
  display: block;
  max-width: 100%;
}

/*盒子*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.container{
  width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
/*文字排版*/
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}

/*清除浮动*/
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  zoom: 1;
}
.dis-block {
  display: block !important;
}
.dis-none {
  display: none !important;
}

/*居中*/
.p-a-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.p-f-center {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*0.3s过度*/
.transition3 {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}


/*超过显示省略*/
.ellipsis-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ellipsis-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/*全局样式 end*/

/* 公共组件 statr */
/* 页面 */
.page-main{
  /*padding-top: 30px;*/
  padding-bottom: 445px;
}

/* 头部 */
header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  color: #ffffff;
}
header .header-info {
  height: 30px;
  background:rgba(197,138,96, .8);
}
header .header-info .container{
  display: flex;
  height: 100%;
  justify-content:space-between;
  align-items: center;
  font-size: 14px;
}

header .header-main{
  height: 90px;
  background:rgba(0,0,0,.3);
  /* opacity: .3; */
}
header .header-main .container{
  display: flex;
  height: 100%;
  padding: 0 55px;
  justify-content:space-between;
  align-items: center;
  font-size: 17px;
}
header .header-main .logo{
  width: 275px;
}
header .header-main .nav{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .header-main .nav>li>a{
  display: block;
  line-height: 90px;
  color: #ffffff;
}
header .header-main .nav>li:hover>a,
header .header-main .nav>li.active>a{
  background-color: #BF8448;
}
header .header-main .nav>li:hover>.nav2{
  display: block;
}
header .header-main .nav>li{
  position: relative;
  width: 100px;
  margin: 0 5px;
  text-align: center;
}
header .header-main .nav2{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;

}
header .header-main .nav2 li:hover,
header .header-main .nav2 li.active a{
  background-color: #BF8448;
}
header .header-main .nav2 li a{
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #ffffff;
  background-color: rgba(191, 132, 72, 0.7);
}
/* 页尾 */
footer{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
footer .footer-nav{
  display: flex;
  height: 90px;
  justify-content: center;
  align-items: center;
  background:rgba(197,138,96, .3);
}
footer .footer-nav>*{
  margin: 0 30px;
}
footer .footer-nav a{
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
footer .footer-nav a:hover{
  border-bottom: 1px solid #333333;
}
footer .footer-main{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background:rgba(191,132,72,.7);
}
footer .footer-main .left{
  margin-right: 40px;
}
footer .footer-main .left img{
  width: 200px;
}
footer .footer-main .right{
  position: relative;
  padding: 12px 0 12px 100px;
  border-left: 1px solid #FFFFFF;
}
footer .footer-main .right .nav{
  width: 730px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
footer .footer-main .right .nav a{
  position: relative;
  font-size: 16px;
  color: #ffffff;
  margin-right: 70px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
footer .footer-main .right .nav a:hover{
  border-bottom: 1px solid #ffffff;
}
footer .footer-main .right .nav a:before{
  content: "";
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: #ffffff;
}
footer .com-info{
  margin-top: 35px;
  color: #FFFFFF;
}
footer .com-info dt{
  font-size: 16px;
  margin-bottom: 38px;
}
footer .com-info dd{
  font-size: 14px;
  margin-bottom: 12px;
}
footer .icon{
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}
footer .icon .item{
  position: relative;
  margin: 0 -40px;
  width: 170px;
}
footer .icon .item .qrcode{
  display: none;
  position: absolute;
  top: -200px;
  left: 50%;
  width: 170px;
  transform: translateX(-50%);
  z-index: 2;
}
footer .icon .item .icon-icon:hover + .qrcode{
  display: block;
}
footer .icon .item .icon-icon{
  cursor: pointer;
  margin: auto;
}
footer .footer-info{
  display: flex;
  height: 55px;
  justify-content: center;
  align-items: center;
  background-color: #BF8448;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

/*大板块标题*/
.section--title{
  text-align: center;
}
.section--title .title{
  margin: 0 auto 20px auto;
}
.section--title span{
  position: relative;
  font-size: 27px;
}
.section--title span:before,
.section--title span:after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background-color: #333333;
}
.section--title span:before{
  left: -100px;
}
.section--title span:after{
  right: -100px;
}
.section--title .info{
  font-size: 16px;
  color: #666666;
  margin-top: 15px;
}
.section--title strong{
  display: block;
  text-align: center;
  margin: 25px auto;
}

/*右侧菜单*/
.right-nav{
  display: none;
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.right-nav ul li{
  position: relative;
  margin: 8px;
  width: 100px;
}
.right-nav ul li .icon{
  width: 40px;
  height: 40px;
  background-size: 100% 100%;
  transition: all .3s;
  cursor: pointer;
}
.right-nav ul .phone .icon{
  background: url("../images/common/right-nav-phone-0.png?v=201911111344");
}
.right-nav ul .wx .icon{
  background: url("../images/common/right-nav-wx-0.png?v=201911111344");
}
.right-nav ul .wb .icon{
  background: url("../images/common/right-nav-wb-0.png?v=201911111344");
}
.right-nav ul .wechat .icon{
  background: url("../images/common/right-nav-wechat-0.png?v=201911111344");
}
.right-nav ul .top .icon{
  background: url("../images/common/right-nav-top-0.png?v=201911111344");
}
.right-nav ul .phone:hover .icon{
  background: url("../images/common/right-nav-phone-1.png?v=201911111344");
}
.right-nav ul .wx:hover .icon{
  background: url("../images/common/right-nav-wx-1.png?v=201911111344");
}
.right-nav ul .wb:hover .icon{
  background: url("../images/common/right-nav-wb-1.png?v=201911111344");
}
.right-nav ul .wechat:hover .icon{
  background: url("../images/common/right-nav-wechat-1.png?v=201911111344");
}
.right-nav ul .top:hover .icon{
  background: url("../images/common/right-nav-top-1.png?v=201911111344");
}
.right-nav ul li .icon:hover + .info{
  display: block;
}
.right-nav ul li .info{
  display: none;
  position: absolute;
  width: 170px;
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
}
.right-nav ul li .text{
  text-align: right;
  left: -180px;
}
.right-nav ul li .text span{
  background-color: #FFFFFF;
  padding: 5px 8px;
  color: #D6A27D;
  font-size: 24px;
}
/* 公共组件 end */

/*自定义动画*/
  /*爱的魔力转圈圈*/
@keyframes myRotate {
  from{
    transform: rotate(0);
  }
  to{
    transform: rotate(360deg);
  }
}
#sTopVal{
  display: block;
  position: fixed;
  top: 20%;
  left: 40%;
  font-size: 30px;
  font-weight: bold;
  color: #9ccf82;
  z-index: 9999;
}
