﻿.container{
    width: 7.5rem;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: #15385f;
}
.index{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.top{
    width: 7.5rem;
    height: 9.34rem;
    margin-top: 0.5rem;
    overflow: hidden;
    position: relative;
}
.topBg{
    width: 7.5rem;
    height: 9.34rem;
}
.round{
    width: 6.2rem;
    height: 6.2rem;
    position: absolute;
    top: 3.4rem;
    left: 0.65rem;
    animation: rotate 4s linear infinite;
}
.icon1{
    width: 0.71rem;
    height: 2.6rem;
    position: absolute;
    top: 4.5rem;
    left: 5.6rem;
    animation: play1 7s linear infinite;
}
.icon2{
    width: 0.71rem;
    height: 2.66rem;
    position: absolute;
    top: 5.1rem;
    left: 0.6rem;
    animation: play2 7s linear infinite;
}
.icon3{
    width: 0.71rem;
    height: 2.58rem;
    position: absolute;
    top: 3.3rem;
    left: 2.6rem;
    animation: play1 7s linear infinite;
}
.birth{
    width: 7.5rem;
    height: 9.15rem;
    margin-top: -1rem;
    position: relative;
    color: #26639d;
    font-size: 0.28rem;
}
.bg{
    width: 7.5rem;
    height: 9.15rem;
    position: absolute;
    top: 0;
    left: 0;
}
.where{
    width: 4.64rem;
    height: 0.66rem;
    border-radius: 0.1rem;
    position: absolute;
    top: 4.52rem;
    left: 1.9rem;
}
.where input{
    width: 100%;
    height: 100%;
    padding-left: 0.4rem;
    background:none;
    outline:none;
    border:none;
    font-size: 0.28rem;
}
.where input::placeholder{
    color: #26639d;
    font-size: 0.28rem;
}
.sex{
    width: 4.64rem;
    height: 0.66rem;
    border-radius: 0.1rem;
    position: absolute;
    top: 5.84rem;
    left: 2.3rem;
}
.sex span{
    height: 0.66rem;
    width: 0.66rem;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    line-height: 0.66rem;
    border-radius: 50%;
    color: #8fa7c5;
    border: 0.02rem #8fa7c5 solid;
}
.sex span:nth-of-type(2){
    margin-left: 10%;
}
.active1{
    background-color: #ff9d33 !important;
    color: #ffffff !important;
    border: 0.02rem #ff9d33 solid !important;
}
.data{
    width: 4.64rem;
    height: 0.66rem;
    border-radius: 0.1rem;
    position: absolute;
    top: 7.1rem;
    left: 1.9rem;
}
.data input{
    width: 100%;
    height: 100%;
    padding-left: 0.4rem;
    background:none;
    outline:none;
    border:none;
    font-size: 0.28rem;
}
.data input::placeholder{
    color: #26639d;
    font-size: 0.28rem;
}
.btn{
    width: 7.5rem;
    margin-top: 0.2rem;
    margin-bottom: 0.3rem;
}
.indexBtn{
    width: 6.73rem;
    height: 1.14rem;
    margin-left: 0.39rem;
    animation: big 2s linear infinite;
}
.tip{
    width: 4.53rem;
    height: 0.41rem;
    margin-top: 0.2rem;
    margin-left: 1.48rem;
    position: relative;
}
.tip img{
    width: 4.53rem;
    height: 0.41rem;
}
.tip .tipLeft{
    width: 1.4rem;
    height: 0.41rem;
    position: absolute;
    top: 0;
    left: 1.2rem;
}
.tip .tipRight{
    width: 1.4rem;
    height: 0.41rem;
    position: absolute;
    top: 0;
    left: 3rem;
}
.desc{
    width: 7.5rem;
    margin-bottom: 1.3rem;
}
.desc img{
    width: 100%;
}
.order{
    width: 0.59rem;
    height: 2.05rem;
    position: fixed;
    top: 4.2rem;
    right: -0.08rem;
    z-index: 11;
}
.order img{
    width: 0.59rem;
    height: 2.05rem;
}
.scrollBtn{
    background-color: rgba(172,188,210,0.6);
    width: 7.5rem;
    height: 1.4rem;
    position: fixed;
    bottom: 0;

}
.scrollBtn img{
    width: 6.73rem;
    height: 1.14rem;
    margin-left: 0.39rem;
    margin-top: 0.12rem;
    animation: big 2s linear infinite;
}
.my-toast{
    border-radius: 0.2rem;
}
@keyframes big {
    0%{
        transform: scale(0.9);
    }
    50%{
        transform: scale(1);
    }
    100%{
        transform: scale(0.9);
    }
}
@keyframes play1{
    0%{
        opacity: 0;
    }
    20%{
        opacity: 0;
    }
    40%{
        opacity: 1;
    }
    70%{
        opacity: 1;
    }
    90%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}
@keyframes play2{
    0%{
        opacity: 1;
    }
    20%{
        opacity: 1;
    }
    40%{
        opacity: 0;
    }
    70%{
        opacity: 0;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 1;
    }
}
@keyframes rotate {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}