html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  width: 100%;
  height: 100%;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

#app {
  position: relative;
  min-height: 100vh;
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }

  50% {
    -moz-transform: scale(0.9);
  }

  100% {
    -moz-transform: scale(1);
  }
}

.animation {
  animation: pulse 1.2s infinite;
  -webkit-animation: pulse 1.2s infinite;
  -moz-animation: pulse 1.2s infinite;
}

.loading {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid #fa6894;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  animation: circle infinite 0.75s linear;
  margin: auto;
}

@keyframes circle {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.top {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(98deg, #A627FE 0%, #A627FE 25%, #A627FE 100%);
  padding: 10px 0;
  z-index: 9;
}

.top .left {
  margin-left: 4vw;
  display: flex;
  align-items: center;
}

.top .right {
  margin-right: 4vw;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.name {
  color: #ffffff;
  margin-left: 6px;
}

.download_button {
  position: relative;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-image: linear-gradient(270deg, #ffffff 3.8%, #ffffff 95.32%);
  border-radius: 100px;
  padding: 8px;
}

.download_button .download_button_text {
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 600;
  color: #B348FE;
  border-radius: 100px;
  background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 94%);
  padding: 0;
}

.download_button .download_button_text span {
  padding: 0 15px;
}

.header {
  position: relative;
  margin-top: 80px;
}

.header-content {
  position: relative;
}

.book-cover {
  position: relative;
  height: 150px;
}

.book-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: 50%;
  background-size: cover;
  filter: drop-shadow(0 12px 20px rgba(100, 32, 150, 0.2));
  z-index: -1;
}

.book-filter:after {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  background: inherit;
  filter: blur(20px);
  content: "";
}

.cover {
  width: 100%;
  height: 100%;
  margin: auto;
}

#cover {
  width: 100%;
  height: 100%;
}

.content-title {
  position: relative;
  height: 100%;
  padding-top: 4vw;
  padding-left: 4vw;
  padding-right: 4vw;
  padding-bottom: 4vw;
  display: flex;
  align-items: center;
}

.title {
  display: inline-block;
  color: transparent;
  font-weight: 800;
  font-size: 28px;
  font-family: Roboto;
  font-style: italic;
  text-transform: uppercase;
  background-image: linear-gradient(240deg, #fa6894 3.8%, #B348FE 95.32%);
  -webkit-background-clip: text;
  z-index: 1;
}

.rank-nav-bg {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 8px 4vw;
}

.content {
  position: relative;
  font-weight: 400;
  font-size: 4.3vw;
  line-height: 1.8;
  color: #222;
  background-color: #ffffff;
  padding-top: 4.3vw;
  padding-left: 4.3vw;
  padding-right: 4.3vw;
  padding-bottom: 5.3vw;
  background-image: linear-gradient(0deg, #fff3da 0%, #ffe7a2 94%);
  box-shadow: 0px -8px 0 #fff3da;
  /*white-space: pre-wrap;*/
  word-break: break-word;
}

.content:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(1turn, #fff, hsla(0, 0%, 100%, 0));
  height: 80vw;
}

.content p {
  padding: 10px 0 10px 0;
}

.read-exciting {
  margin: 0 4.3vw;
  padding-bottom: 28.3vw;
  text-align: center;
}

.read-exciting-a {
  font-weight: 400;
  font-size: 4.3vw;
  line-height: 180%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #6b4cff;
  text-align: center;
}

.footer {
  width: 100%;
  position: fixed;
  bottom: 20px;
  height: 18vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.download-btn {
  width: 80vw;
  line-height: 11.7vw;
  box-shadow: 0 0.5vw 0.5vw rgba(34, 34, 34, 0.4);
  border-radius: 10.7vw;
  font-size: 5.3vw;
  color: #fff;
  text-shadow: 0 0.5vw 0.5vw rgba(34, 34, 34, 0.4);
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: linear-gradient(90deg, #B348FE, #B348FE);
}

@keyframes wave-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  }

  80% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.wave-button {
  animation: wave-animation 1s linear infinite;
}

.circle {
  position: absolute;
  top: 40%;
  right: 15vw;
  width: 50px;
  height: 50px;
  font-size: 16px;
  animation: fingerHandle 0.8s ease infinite both;
}

@keyframes fingerHandle {
  0% {
    transform: none;
  }

  70% {
    transform: scale3d(0.7, 0.7, 0.7);
  }

  100% {
    transform: none;
  }
}

.app-img {
  object-fit: contain;
}
