body{
    background-color: #262941;
    font-size: 0.24rem;
    max-width:580px;
    margin: 0 auto !important;
    position: relative;
}

.mobile{
    color: #fff;
}
.mobile .fixed-bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.jpg');
    background-size: 100% 100%;
}
.mobile .fixed-header{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    height: 1.91rem;
    padding:0 0.37rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
}
.mobile .fixed-header .left{
    display: flex;
    font-size: 0.4rem;
    align-items: center;
}

.mobile .fixed-header .left .title{
}
.mobile .fixed-header .left .logo{
    width: 1.08rem;
    height: 1.08rem;
    margin-right: 0.19rem;
}


.mobile .fixed-header .right{
    display: block;
    color: #fff;
    padding: 0.19rem 0.57rem;
    border-radius: 0.35rem;
    font-size: 0.32rem;
    line-height: 0.24rem;
    background-color: rgba(254,254,254,0.3);
}
.mobile  .fixed-footer{
    z-index: 9;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding-bottom: 0.79rem;
}
.mobile  .fixed-footer .download-btn{
    pointer-events: auto;
    width: 4.6rem;
    height: 0.9rem;
}
.mobile .fixed-footer .arrow-down{
    pointer-events: auto;
    transition: opacity 0.2s;
    position: absolute;
    bottom: -0.2rem;
    width: 0.34rem;
    height: 0.28rem;
    left: 50%;
    transform: translateX(-50%);
}
.mobile  .fixed-footer .download-btn img{
    width: 4.6rem;
    height: 0.9rem;
}
.mobile .section .section-inner{
    width: 100%;
    height: 100%;
    padding-top: 1.91rem;
}
.mobile .section .subject-warp{
    position: relative;
    margin-left: 2.25rem;
}

.mobile .section .subject{
    position: relative;
    transition: 0.5s transform ease-in-out 0.2s;
    width: 4.9rem;
    height: 1.28rem;
    font-size: 0.34rem;
    box-sizing: border-box;
    padding-top: 0.25rem;
    text-align: center;
    transform: translateX(-300px);
    letter-spacing: 1px;
    background: url("../image/dialog.png");
    background-size: 100% auto;
}
.mobile .section3 .subject-warp{
    margin-left: 1.26rem;
}
.mobile .section .subject-shadow{
    position: absolute;
    z-index: -1;
    width: 4.4rem;
    height: 0.73rem;
    left: 0.19rem;
    top: 0;
    background: url("../image/dialog-shadow.png");
    background-size: 100% 100%;
}

.mobile .section .main{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    
    
    margin-top: -0.15rem;
    margin-bottom: 0;
    text-align: left;
    z-index: -1;
}
.mobile .section .main .phone1{
    margin-left: 3rem;
    height: 6.32rem;
}
.mobile .section .main .phone2{
    position: absolute;
    left: 1.27rem;
    top: 0.41rem;
    height: 5.25rem;
    z-index: -1;
}
.mobile .section .main .element{
    position: absolute;
    right: 0;
    top: 0;
    width: 3.22rem;
    height: 6.89rem;
    z-index: 0;
}

.mobile .section.section2 .main .phone1{
    margin-left: 1.28rem;
    height: 7.1rem;
}
.mobile .section.section2 .main .phone2{
    left: auto;
    right: 0.27rem;
    height: 7.1rem;
}
.mobile .section.section2 .main .element{
    left: 0;
    top: auto;
    bottom: 1.32rem;
    width: 1.85rem;
    height: 2.3rem;
}
.mobile .section.section3 .main .phone1{
    margin-left: 1.32rem;
    height: 7.4rem;
}
.mobile .section.section3 .main .element{
    left: 0;
    top: auto;
    bottom: 1.32rem;
    width: 1.85rem;
    height: 2.3rem;
}
.mobile .section.section3 .main .element.element2{
    left: auto;
    right: 0.9rem;
    top: auto;
    bottom: 0.9rem;
    width: 1.6rem;
    height: 3.08rem;
}

.mobile .section .tips{
    text-align: left;
    text-indent: 0.4rem;
    padding: 0 0.7rem;
    font-size: 0.2rem;
    line-height: 1.5;
    margin-bottom: 0.1rem;
    z-index: 2;
}



.mobile .section.active .subject,.mobile .section.active .title,.mobile .section.active .app,.mobile .section.active .download{
    transform: translate(0,0);
}


.section.active .ts-left{
    animation: 0.75s left 0.3s both;
}
@keyframes left {
    from {transform: translateX(1.6rem)}
    to {transform: translateX(0)}
}
.section.active .ts-fade {
    animation: 0.75s fade 0.8s both;
}
@keyframes fade {
    from {opacity: 0}
    to {opacity: 1}
}
.section.active .ts-rotation1 {
    animation: 0.6s rotation1 0.6s both;
    transform-origin: bottom;
}
@keyframes rotation1 {
    from {transform: rotate(-11deg)}
    to {transform: rotate(0deg)}
}


@keyframes scale
{
    from {transform: scale(1)}
    to {transform: scale(1.05)}
}