* {
    padding: 0;
    border: none;
    margin: 0;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
}

/* 去除a标签点击时的白色蒙版效果 */
a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

/* 确保所有链接元素都没有点击高亮 */
a:focus {
    outline: none;
}

a:active {
    outline: none;
}

html,
body {
    width: 100%;
    height: 100%;
    background: #111111;
}


.page {
    width: 100%;
    min-height: 100%;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.page-content{
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.top {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #c4b4ff, #ddd6ff1a);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

.top .top_img {
    width: 180px;
}

.main {
    padding: 0 16px;
}

.title {
    font-size: 36px;
    color: #4d179a;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
}

.app_1 {
    background-color: #7f22fe;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #8e51ff;
    background-image: linear-gradient(#ffffff0f 1px, transparent 0), linear-gradient(90deg, #ffffff0f 1px, transparent 0);
    background-size: 20px 20px;
    transition: all .3s ease;
}

.app_1 .app_logo {
    width: 260px;
    margin: -42px auto 40px auto;
    padding: 12px;
    background: #fff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 20px 25px 1px rgb(106 99 99 / 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(0);
    transition: transform .3s ease;
    position: relative;
}

.app_1 .app_logo img {
    width: 180px;
}

.app_1 .app_logo::before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 1px;
    left: calc(50% - 147px);
    border-top: 17px solid #b44eff;
    border-right: 17px solid transparent;
    transform: rotate(180deg);
}

.app_1 .app_logo::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 1px;
    right: calc(50% - 146px);
    transform: rotate(180deg);
    border-top: 17px solid #b44eff;
    border-left: 17px solid transparent;
}

.app_1 .btn_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-bottom: 16px;
}

.app_1 .btn_box .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    background-color: #5d0ec0;
    padding: 12px 0;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
    transition: background-color .3s ease;
}

.app_1 .btn_box .btn:hover {
    background-color: #4d179a;
}

.app_1 .btn_box .btn .btn_icon {
    font-size: 24px;
}

.app_1 .app_foot {
    padding: 16px 0;
    overflow: hidden;
}

.app_1 .app_foot .warp {
    color: #ede9fe;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    transform: translateX(0%);
    animation: rowup 10s linear infinite;
}

.app_1 .app_foot p {
    flex-shrink: 0;
}

.app_1 .app_foot .app_foot_icon {
    color: #c4b4ff;
    opacity: .7;
}

.grid {
    padding: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid .grid_item {
    background-color: #8e51ff;
    padding: 16px;
    border: 1px solid transparent;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(77, 23, 154, .3);
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

.grid .item_top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.grid .logo_box {
    width: 144px;
    height: 144px;
    margin-bottom: 16px;
    background-color: #ffffff;
    padding: 8px;
    border: 1px solid #4d179a;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(77, 23, 154, .6);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.grid .item_logo {
    max-width: 100%;
    max-height: 100%;
}

.grid .item_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.grid .item_name {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: left;
}

.grid .item_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background-color: #7f22fe;
    padding: 8px 16px;
    border-radius: 12px;
    transition: background-color .3s ease;
}

.grid .item_btn:hover {
    background-color: #7008e7;
}

.grid .item_btn_icon {
    font-size: 24px;
    margin-left: 8px;
}

.grid .item_foot {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.grid .item_foot_warp {
    white-space: nowrap;
    padding: 16px 0;
    transform: translateX(0%);
    animation: rowup 10s linear infinite;
}

.foot_1 {
    color: #4d179a;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
}

.foot_2 {
    color: #333;
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
}

.foot_3 {
    color: #35495e;
    font-size: 16px;
    text-align: center;
    background-color: #8e51ff1a;
    padding: 16px;
}

/* 轮播图 ====================================================== start */
.carousel {
    width: 100%;
    aspect-ratio: 1920 / 790;
    border-radius: 16px;
    border: 1px solid #4d179a;
    box-shadow: 0 10px 25px -5px rgba(77, 23, 154, .2);
    margin: 0 auto;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.carousel-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    object-fit: cover;
}

/* 左右切换按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 1vw;
}

.carousel-btn.next {
    right: 1vw;
}

.carousel-btn::before {
    content: '';
    width: 4vw;
    aspect-ratio: 1/1;
    border: 4px solid white;
    border-top: none;
    border-right: none;
}

.carousel-btn.prev::before {
    transform: rotate(45deg);
    margin-left: 4px;
}

.carousel-btn.next::before {
    transform: rotate(-135deg);
    margin-right: 4px;
}

/* 指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

/* 轮播图 ====================================================== end */


@keyframes rowup {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes bounce-0d1e5fd2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media screen and (max-width:800px) {
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width:400px) {
    .grid .item_btn {
        font-size: 13px;
    }

    .grid .item_btn_icon {
        font-size: 18px;
    }

    .foot_1 {
        font-size: 24px;
    }
}