body {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}
*::-webkit-scrollbar {
    width: 4px;
}
*::-webkit-scrollbar-thumb {
    background: #989898;
    border-radius: 3px;
    opacity: 0.5;
}
*::-webkit-scrollbar-track {
    background-color: transparent;
}
*::-webkit-scrollbar-corner {
    background-color: transparent;
}
a {
    cursor: pointer;
}
/* 下载按钮样式 */
.section-download {
    color: #fff;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    background: linear-gradient(94.59deg, #09f0e7 -1.73%, #2a15c6 111.92%);
    width: 230px;
    height: 61px;
    font-size: 20px;
    line-height: 61px;
    border-radius: 14px;
    text-align: center;
    overflow: hidden;
}
.section-download::after {
    position: absolute;
    top: calc((61px - 230px) / 2);
    left: 0px;
    content: "";
    width: 230px;
    height: 230px;
    background-color: hsla(0, 0%, 88%, 0.2);
    animation: animation_circle 1s linear infinite;
    border-radius: 50%;
}
@keyframes animation_circle {
    0% {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.aside-banner {
    height: fit-content;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
}
