/* CSS Document */
html{ font-size:100px;}
body {font-family:微软雅黑;font-size:0.01rem;}
body,p,h1,h2,h3,h4,h5,h6,dl,dd{ margin:0;}
ul,ol,li,input{list-style-type: none; margin:0; padding:0;}
h1,h2,h3,h4,h5,h6{font-weight:normal;}
a{text-decoration: none; -webkit-tap-highlight-color:rgba(0,0,0,0); }
img{border:none;vertical-align:middle; width:100%;}
.clearfix:after{content:""; display:block; visibility:hidden; height:0; clear:both;}
.clearfix{zoom:1;}
input{outline: none}

.wrap{max-width: 640px;min-width: 320px;color:#333; margin-left: auto;margin-right: auto; overflow: hidden;}
.re{ position: relative;}
.te{ text-align: center;}
.ov{ overflow: hidden;}
.fl{ float: left;}
.fr{ float: right;}
.plr{ padding:0 0.2rem;}
.hs{ color:#ffea00}
.mr10{ margin-right:0.1rem}
.ml10{ margin-left:0.1rem}

.pagination{ width:100%; text-align:center; padding:0.3rem 0}
.pagination span{display: inline-block;
    width: 0.2rem;
    height:0.2rem;
    border-radius:0.1rem;
    background:#d2d2d2;
    margin: 0 5px;
    cursor: pointer;
}


.pagination .swiper-active-switch {background: #ffc000;}




.titecon{ text-align:center; font-size:0; padding:0.3rem 0 0.3rem 0;color:#000;}
.titecon .tt1{font-size: 0.36rem;color: #fff;line-height: 1}
.titecon .tt1 .s1{width:0.85rem;margin:0 0.1rem}
.titecon .tt2{font-size: 0.43rem;color: #fff;line-height: 1;padding-top:0.1rem}


.btncon{ width:100%; text-align:center; font-size:0; padding:0.4rem 0; box-sizing:border-box;}
.btncon .jt{padding-bottom: 0.1rem;font-size: 0.2rem;line-height: 1;width:1.3rem;margin:0 auto;color: #989898}
.btncon .jt .pic{width:0.21rem;height: 0.14rem;animation:float1 2s infinite;margin-right: 0.05rem}

.btncon a{ animation: fingerHandle 2s infinite;-webkit-animation: fingerHandle 2s infinite;
    display:inline-block; width:2.55rem;line-height:0.53rem; height:0.53rem; border-radius: 0.55rem;
    background:#7e6b5a; font-size:0.25rem; color:#fff;text-align: center;}



.mr25{ margin-right:0.25rem}
.hs{color: #ffff99}

.banner{ position:relative;height: 5.84rem;background:url(../images/banner.jpg) no-repeat;background-size: cover}
.banner .btncon{position: absolute;right:0;bottom:0.5rem;width:3.59rem}
.banner .btncon a{width:3.01rem;background:url(../images/banbtn.jpg) no-repeat;background-size: cover;color: #333}
.banner .btncon img{border-radius: 0.53rem}
.banner .p1{position: absolute;right:0.2rem;top:0.75rem;width:3.38rem}

.part1 .p1box .list{width:3.07rem}

.part2{position:relative;height:9.48rem;background:url(../images/p2bg.jpg) no-repeat;background-size: cover}
.part2 .p1{position: absolute;width:5.5rem;left:0.5rem;top:1.95rem;font-size: 0.23rem;line-height: 1.8}
.part2 .p1 span{color: #a73401}

.part3 .p1box{font-size: 0.22rem;line-height: 1.7;
    position:relative;height:8.51rem;background:url(../images/p3bg.jpg) no-repeat;background-size: cover
}
.part3 .p1box .p1{position: absolute;left:3.32rem;top:0.85rem;width:2.12rem}
.part3 .p1box span{color: #a73401}

.part3 .p1box .p2{position: absolute;left:1.13rem;top:1.95rem;width:4.3rem}

.part4 .p1box .list{width:1.9rem;border:1px solid #b28850;position: relative;}
.part4 .p1box .list .txt{height: 1.68rem;background:#ebd7a8;
    font-size: 0.22rem;line-height: 1.5;
    box-sizing: border-box;padding:0.3rem 0 0 0.1rem}
.part4 .p1box .list a{width:1.45rem;height: 0.4rem;font-size: 0.22rem;color: #fff;text-align: center;
    background:#a73401;border-radius:0.4rem;line-height: 0.4rem;position: absolute;left:0.22rem;top:1.88rem}


.flexbox{display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */}
.box-align-center {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}
.self-align-center {
    align-self: center;
    -webkit-align-self: center;
    margin: 0 auto;
}
.box-pack-between {
        -webkit-box-pack: justify;
        -moz-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
}
.box-pack-around {
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.box-pack-center {
    -webkit-box-pack:center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.box-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.fixed{position: fixed;left:50%;transform: translateX(-50%);top:0;z-index: 3;width: 100%}
@-webkit-keyframes float {
    0%,100% {
        -webkit-transform: translate3d(0,0,0)
    }
    40% {
        -webkit-transform: translate3d(0,-20px,0)
    }
  }
  
  @keyframes float {
    0%,100% {
        transform: translate3d(0,0,0)
    }
    40% {
        transform: translate3d(0,-20px,0)
    }
  }

  @-webkit-keyframes float1 {
    0%,100% {
        -webkit-transform: translate3d(0,0,0)
    }
    40% {
        -webkit-transform: translate3d(-5px,0,0)
    }
  }
  
  @keyframes float1 {
    0%,100% {
        transform: translate3d(0,0,0)
    }
    40% {
        -webkit-transform: translate3d(-5px,0,0)
    }
  }  

  @keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
  }



@keyframes fingerHandle {
            0% {
                transform: none;
            }
            70% {
                transform: scale3d(.95, .95, .95);
            }
            100% {
                transform: none;
            }
        }





@keyframes bounce{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-3px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-6px,0)}90%{transform:translate3d(0,-2px,0)}}