* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    line-height: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

ul,
li {
    list-style-type: none;
}

html,
body {
    width: 100%;
    height: 100%;
}

#app {
    width: 3.6rem;
    height: 7.8rem;
    position: relative;
    background: #0078AC url("./bg.webp") no-repeat;
    background-size: 100%;
    position: relative;
    margin: auto;
}
.btn_wrap {
    width: 2.96rem;
    height: 0.44rem;
    position: absolute;
    left: 50%;
    margin-left: -1.48rem;
    top: 5.8rem;
    display: flex;
    justify-items: center;
    animation: active 0.75s infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    -webkit-animation: active 0.75s infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
}
.btn_wrap .btn {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,#fece06, #ff892c 51%, #f66623 100%);
    border-radius: 0.12rem;
    box-shadow: 0 0.04rem 0 0 #2c3071;
    display: flex;
    justify-items: center;
    justify-content: center;
    padding: 0 0.44rem;
    position: relative;
}
.btn_wrap .tag {
  /* width: 0.16rem;
  height: 0.16rem;
  line-height: 0.44rem;
  margin-right: 0.08rem;
  margin-top: 0.14rem; */
  width: 0.6rem;
  height: 0.5rem;
  position: absolute;
  margin-left: -0.14rem;
  margin-top: -0.1rem;
  object-fit: contain;
}

@keyframes active {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes active {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.btn .img {
    width: 0.16rem;
    height: 0.16rem;
    line-height: 0.44rem;
    margin-right: 0.08rem;
    margin-top: 0.14rem;
}


.btn span {
    font-size: 0.18rem;
    font-family: Roboto, Roboto-Medium, sans-serif;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    line-height: 0.44rem;
    white-space: nowrap;
    align-self: center;
}

.finger {
    width: 0.6rem;
    height: 0.6rem;
    background: url("./icon_finger.png") no-repeat;
    background-size: 100%;
    position: absolute;
    right: 0.12rem;
    top: 6rem;
    animation: finger 0.75s infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    -webkit-animation: finger 0.75s infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
}
@keyframes finger {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes finger {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.search {
    width: 1.86rem;
    height: 0.32rem;
    border-radius: 0.19rem;
    background: rgba(255,255,255,0.2);
    position: absolute;
    bottom: 0.86rem;
    left: 50%;
    margin-left: -0.93rem;
    overflow: hidden;
}

.search span {
    font-size: 0.14rem;
    font-family: Roboto, Roboto-Regular, sans-serif;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.32rem;
    padding-left: 0.16rem;
    display: block;
}

.search .icon {
    height: 0.32rem;
    width: 0.4rem;
    background: rgba(255,255,255,0.3);
    position: absolute;
    right: 0;
    top: 0;
}

.search .icon img {
    display: block;
    width: 0.16rem;
    height: 0.16rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -0.08rem;
    margin-left: -0.08rem;
}

.title {
    width: 100%;
    position: absolute;
    bottom: 0.62rem;
    opacity: 0.6;
    font-size: 0.12rem;
    font-family: Roboto, Roboto-Regular, sans-serif;
    font-weight: 400;
    text-align: center;
    color: #ffffff;
}


