*{
    margin: 0;
    font-size: 0;
    font-size: 14px;
}

.logo{
    width: 75px;
    margin: 30px auto;
}
.logo img{
    width: 100%;
}
.logo .name{
    /* font-size: 28px; */
    text-align: center;
}

.info{
    width: 800px;
    margin: 30px auto;
}
.info .title{
    font-size: 20px;
    font-weight: bold;
}
.introduction{
    margin: 30px 0;
}
.screenshot{
    margin: 30px 0;
}

.swiper-container {
    height: 632px; /* 根据实际图片高度调整 */
    width: 300px;
    margin: 15px 0;
    overflow: hidden;
    height: auto; /* 移除固定高度 */
    padding-bottom: 30px; /* 为分页器预留空间 */
    position: relative; /* 关键：创建定位上下文 */
}
/* 精确控制分页器位置 */
.swiper-pagination {
    bottom: 10px !important; /* 强制分页器距底部10px */
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.swiper-slide {
    width: 80%;
    display: flex;
    justify-content: center;
}
.swiper-slide img {
    width: 100%;
    height: 632px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.download{
    width: 300px;
    margin: 30px auto;
}
.download a{
    text-decoration: none;
}
.download .download-btn{
    width: 300px;
    height: 40px;
    background-color: #0081ff;
    color: #fff;
    margin-top: 30px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    font-size: 20px;
}

.foot{
    text-align: center;
}
.foot a{
    text-decoration: none;
    color: #aaa;
}


@media (max-width: 768px) {
    .info {
        width: 95%;
    }

    .swiper-container{
        width: 100%;
    }

    .download {
        width: 187px;
    }

    .download .download-btn {
        width: 100%;
    }
}