body{
background-color: #353398;
}
.tops img{
    width: 100%;
}
.introduce{
    background-size: 100% 100%;
    background-repeat: repeat;
    background-image: url(/public/v6.0/img/module/qixi/qixi_star.png);
    padding-top: 0.8rem;
    text-align: center;
}
.introduce img{
    height: 1.75rem;
}
.single{
    background-size: 100% 100%;
    background-repeat: repeat;
    background-image: url(/public/v6.0/img/module/qixi/qixi_star.png);
    margin-top:0.5rem;
    width: 100%;
}
.single img{
    width: 100%;
}
.swiper-slide{
    text-align: center;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}
.swiper-slide img{
    border-radius: 0.12rem;
    width:100%;
}
.physical{
    background-size: 100% 100%;
    background-repeat-y: repeat;
    background-image: url(/public/v6.0/img/module/qixi/qixi_star.png);
    width: 100%;
    text-align: center;
}
.physical img{
    margin-top: 0.5rem;
    width:100% ;
    height: 2.4rem;
}
.activity img{
    margin: 0.5rem 0;
    width: 100%;
}
.activity{
    margin: 0 0.1rem;
    background-size: 100% 100%;
    background-repeat: repeat;
    background-image: url(/public/v6.0/img/module/qixi/qixi_star.png);
}
.btns li{
    display: inline-block;
}
.btns li img{
    height: 1.08rem;
}
.btns{
    margin: 0.8rem 0;
    text-align: center;
}
.qixiList{
    z-index: 999999;
    height: 100%;
    background-image: url(/public/v6.0/img/module/qixi/qixi_border.png);
    background-size: 100%;
    margin-top: -0.5rem;
}
.myshop{
    background-size: 100% 100%;
    background-repeat: repeat;
    background-image: url(/public/v6.0/img/module/qixi/qixi_star.png);
    position: relative;
    text-align: center;
}
.myshop img{
    margin: 0.5rem 0 0 0;
}
.love{
    background-size: 100% 100%;
    background-repeat: repeat;
    background-image: url(/public/v6.0/img/module/qixi/qixi_star.png);
    background-color: rgba(255,255,255,0.1);
    height: 6rem;
}
.btns a{
    display: inline;
}
.Go{
    -webkit-animation-name:'ripple';/*动画属性名，也就是我们前面keyframes定义的动画名*/
    -webkit-animation-duration:0.4s;/*动画持续时间*/
    -webkit-animation-timing-function: ease-in-out; /*动画频率，和transition-timing-function是一样的*/
    -webkit-animation-delay: 0s;/*动画延迟时间*/
    -webkit-animation-iteration-count: infinite;/*定义循环资料，infinite为无限次*/
    -webkit-animation-direction: alternate;/*定义动画方式*/
    /*-webkit-transform: scale(1.1,1.1);*/
    /*-moz-transform: scale(1.1,1.1);*/
    /*transform: scale(1.1,1.1);*/
    transition: all 0.4s;
    -moz-transition: all 0.4s;
    -webkit-transition: all 0.4s;
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(1,1);
        -moz-transform: scale(1,1);
        -ms-transform: scale(1,1);
        -o-transform: scale(1.1,1.1);
        transform: scale(1.1,1.1);
    }
    100% {
        -webkit-transform: scale(1.5,1.5);
        -moz-transform: scale(1.5,1.5);
        -ms-transform: scale(1.5,1.5);
        -o-transform: scale(1.5,1.5);
        transform: scale(1.5,1.5);
    }
}