@charset "utf-8";

/* CSS Document 公共部分 author lee  2018-2019*/
html {
    line-height: 2;
}

body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box
}

a {
    -webkit-transition: .15s;
    transition: .15s;
    text-decoration: none
}

img {
    max-width: 100%
}

li,
ol,
p,
ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

li,
ol,
p,
ul {
    list-style-type: none
}
.page-box{
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}
.page-img{
    width: 100%;
}
.page-img img{
    width: 100%;
    display: block;
}
.tab-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}
.tab-box li{
    width: 33%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.tab-box li img{
    width: 50%;
    display: block;
}
.tab-box li span{
    width: 100%;
    text-align: center;
    line-height: 20px;
    color: #000;
    margin-top: 5px;
    font-size: 16px;
}
.btn-text{
    width: 100%;
    position: relative;
}
.btn-text .text-img{
    width: 100%;
    display: block;
}
.btn-text .btn01{
    width: 20%;
    position: absolute;
    top: 31%;
    right: 7%;
    z-index: 99;
}
.list-img{
    width: 100%;
}
.list-img img{
    width: 100%;
    display: block;
}
.text{
    width: 90%;
    display: block;
    margin: 10px auto;
    text-align: center;
    line-height: 1.8;

}
.bottom-box{
    width: 100%;
    max-width: 550px;
    position: fixed;
    bottom: 0px;
    left: 50%;
    z-index: 99;
    transform: translate(-50%, 0%);
}
.bottom-box-img{
    width: 100%;
    display: block;
}
.btn02{
    width: 26%;
    position: absolute;
    top: 23%;
    right: 7%;
    z-index: 99;
}
.kefu{
    width: 90px;
    position: fixed;
    top: 50%;
    right: 2px;
    z-index: 9999;
}
.kefu img{
    width: 100%;
    display: block;
}
.bottom-text{
    width: 90%;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}
.bottom-text p{
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #666;
}
@keyframes xing {
    0% {
        transform: scale(0.9);
    }

    25% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

.my_xing {
    -webkit-animation-name: xing;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
}



