html,body,#app {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden
}

#app {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "SF Pro Text", "SF Pro Icons", system, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", "Ubuntu", "Cantarell", "Fira Sans", sans-serif
}
.appwin{
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}
.landing-wrapper {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 92px;
    cursor: default;
}
.landing-wrapper-before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 222px;
    background-color: #00a884;
}
.landing-header {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: flex-start;
    width: 1000px;
    min-height: 39px;
    margin: 27px auto 28px auto;
}
.landing-headerTitle {
    display: inline-block;
    margin-left: 14px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    text-transform: uppercase;
    vertical-align: middle;
}
.landing-window {
    z-index: 2;
    display: flex;
    flex: none;
    flex-direction: column;
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 17px 50px 0 rgba(11, 20, 26, .19), 0 12px 15px 0 rgba(11, 20, 26, .24)
}

.landing-main {
    color:#3b4a54;
    position: relative;
    padding: 64px 60px 60px 60px;
    width: 100%;
    box-sizing: border-box
}
.landing-main>aside{
    justify-self: auto;
    flex-grow: 0;
    order: 0;
    align-self: auto;
    flex-direction: row;
    align-items: center;
    display: flex;
    flex-basis: auto;
    justify-content: center;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-height: 0;
    margin-bottom: 30px;
    min-width: 0;
    margin-top: -24px;
}
.tip-box{
    margin: 0;
    border:1px solid #d1d7db;
    padding:24px 40px;
    display:flex;
    align-items:center;
    border-radius:6px;
}
.sub-text{
    color:#54656f;
    font-size:14px;
}
.tip-box img{
    width:61px;
    height:55px;
    margin-right:25px;
    border:1px solid transparent;
}
.web-button{
    color: #fff;
    background-color:#008069;
    font-size: .875rem;
    border-radius:24px;
    padding:10px 24px;
    line-height: 1.1429;
    border:1px solid transparent;
}
.web-main{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:40px;
    margin-bottom:20px;
    border-bottom:1px solid #e9edef;
}
.web-intro{
    display:flex;
    flex-direction:column;
    align-self: stretch;
    gap:45px;
}
.web-title{
    font-size: 28px;
    font-weight: 300;
    line-height: normal;
    color: #41525d;
}
.web-steps{
    padding: 0 0 0 24px;
    margin: 0;
    list-style-type: decimal;
}
.web-steps li{
    vertical-align:center;
    line-height:2;
}
.web-steps li span{
    margin:0 .5em;
}
.tip-text{
    display:flex;
    flex-direction:column;
    margin-right:25px;
    font-size:16px;
    line-height:1.5;
}
.web-qr_code{
    width: 264px;
    height: 264px;
}
.web-footer{
    text-align: center;
    padding:40px 60px;
    background-color:rgba(11, 20, 26, 0.024);
}
.web-footer img{
    width:560px;
    height:auto;
}
@media screen and (min-height: 760px) and (min-width: 1095px) {
    .landing-main {
        padding: 58px 52px 52px 52px
    }
}

@media screen and (min-height: 760px) and (min-width: 780px) and (max-width: 1095px) {
    .landing-header {
        margin-bottom:68px
    }
}

@media screen and (max-width: 1095px) {
    .landing-header {
        width:100%
    }
}
.player-con{
    position: relative;
    display:flex;
    align-items: center;
    justify-content: center;
}
.player-con .middle-icon{
    position: absolute;
    background-color:rgba(11, 20, 26, .45);
    top:33%;
    left:44%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    overflow: hidden;
    color: white;
    border-radius: 50%;
    cursor:pointer;
}
.player-con .middle-icon>.middle-player{
    display:inline-block;
    width:28px;
    height:34px;
}
@keyframes loop {
    100% {
        transform: rotate(360deg)
    }
}
.player-con .middle-icon>.loading{
    display:inline-block;
    width: 32px;
    height: 32px;
    pointer-events: none;
    animation-duration: 2s;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.player-con video{
    max-width:100%;
}