/*全局样式 star*/
html {
  font-family: "Microsoft Yahei", "微软雅黑", arial, georgia, verdana, helvetica,
    sans-serif, "宋体";
  font-size: 50px;
}
html,
body,
.page {
  height: 100%;
}
.page-main {
  position: relative;
  min-height: 100%;
  
}
a:hover { text-decoration:none; }
img {
  display: block;
  max-width: 100%;
}
p,a,.page-main{
  color: #666666;
  font-size: .24rem;
}
/*盒子*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.container{
  padding-left: .32rem;
  padding-right: .32rem;
}
/*文字排版*/
.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 */
/*头部*/
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  height: 1.2rem;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(197, 146, 103, 0.7);
  padding: 0 .6rem;
  overflow: initial;
  z-index: 10;
}
header .menu-wrap{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
header .menu-wrap a{
  font-size: .3rem;
  text-align: center;
  display: block;
  height: 1rem;
  line-height: 1rem;
  color: #ffffff;
}
header .menu-wrap .item{
  border-bottom: .01rem solid rgba(255, 255, 255, 0.3);
}
header .menu-wrap .item:last-of-type{
  border-bottom: none;
}
header .menu-wrap .item.active{
  background-color: #D5AE87;
}
header .logo{
  width: 2.15rem;
}
header .menu{
  width: 1.47rem;
}

/*页尾*/
footer{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 .45rem;
  background-color: #D1A77D;
}
footer dl{
  padding: .4rem 0 .1rem 0;
  font-size: .2rem;
  color: #FFFFFF;
}
footer dt{
  margin-bottom: .25rem;
}
footer dd{
  margin-bottom: .12rem;
}
footer dd a{
  color: #FFFFFF;
}
footer .qrcode{
  margin: .2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
footer .qrcode img{
  width: 1.8rem;
}

.footer-info{
  height: .54rem;
  line-height: .54rem;
  text-align: center;
  margin: 0 -.45rem;
  background-color: #BF8448;
  color: rgba(255, 255, 255, 0.63);
  font-size: .14rem;
}
/* 公共组件 end */
