.appico{width: calc(8.15% - 2px); margin-top: 0.4rem;height: auto;box-sizing: border-box;display: inline-block;position: relative;}
.naicon{border-radius: 5px;overflow: hidden;font-size: 0;margin: 3px;}
.appico-img{width: 100%;}
.appico-title{width: 100%;height: 25px;line-height: 25px;text-align: center;font-size: 12px;margin: 0;color: hsla(0,0%,100%,.85);overflow: hidden;}
@media (max-width: 960px) {
    .appico{width: calc(20% - 0px);}
}


      /* styles.css */

/* 重置浏览器默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Tabs容器样式 */
.tabs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    display: none; /* 默认隐藏，将通过媒体查询在移动端显示 */
}

.tab-titles {
    display: flex;
    justify-content: space-around;
    /*border-bottom: 2px solid #ccc;*/
    /*margin-bottom: 20px;*/
}

.tab-title {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #edecff;
}

.tab-title.active {
    border-bottom: 2px solid #ff35b5;
    color: #ff35b5;
}

/* Swiper容器样式 */
.swiper-container {
    width: 100%;
}

.swiper-slide {
    text-align: center;
    /*padding: 20px;*/
}

/* app-item样式 */
.app-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.app-item {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*text-align: center;*/
    /*flex: 1 0 calc(25% - 20px);*/
    /*margin: 10px;*/
    /*box-sizing: border-box;*/
    /*border: 1px solid #ddd;*/
    /*border-radius: 10px;*/
    /*overflow: hidden;*/
    /*transition: transform 0.3s;*/
}

.app-item:hover {
    transform: scale(1.05);
}

.app-icon {
     padding: 2px 2px 0px 2px;
    border-radius: 10px;
}

.app-icon img {
    width: 100%;
    height: 100%;
}

.app-name {
      width: 100%;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 12px;
    margin: 0;
    color: hsla(0,0%,100%,.85);
    overflow: hidden;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.48rem;
    width: 4.08rem;
    margin: 0 auto;
    border-radius: 1.24rem;
    color: #ff35b5;
    font-size: 14px;
    background: #2b2f46;
    border: none;
    cursor: pointer;
    
}

.download-button:hover {
    background-color: #0056b3;
}

/* 轮播图容器样式 */
.carousel-container {
    display: none; /* 默认隐藏，将通过媒体查询在移动端显示 */
    width: 100%;
    margin-bottom: 20px; /* 与Tabs容器保持一定间距 */
}

/* 轮播图样式 */
.carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 关键属性 */
    transition: transform 0.8s ease;
}

/* 媒体查询，确保轮播图只在移动端显示 */
@media (max-width: 768px) {
    .carousel-container {
        display: block;
    }
    .tabs-container { 
        display: block;
    }
}

/* 响应式布局调整 */
/*@media (max-width: 1200px) {*/
/*    .app-item {*/
/*        flex: 1 0 calc(33.333% - 20px);*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .app-item {*/
/*        flex: 1 0 calc(20% - 20px);*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .app-item {*/
/*        flex: 1 0 calc(20% - 20px);*/
/*    }*/
/*}*/

/* 确保整个swiper-slide区域都可点击 */
.carousel-link {
    display: block;
    width: 100%;
    height: 100%;
}

.carousel-link img {
    display: block; /* 确保图片占满整个容器 */
}



/* 轮播图容器样式 */
.carousel-container {
    width: 100%;
    margin-bottom: 5px;
    overflow: hidden;
    border-radius: 1rem;
}

/* 轮播图slide样式 */
.carousel-slide {
    position: relative;
}

/* 轮播图图片样式 */
.carousel-slide img {
    width: 100%;
    height: auto; /* 保持图片的宽高比 */
    max-height: 300px; /* 设置图片的最大高度 */
    object-fit: cover; /* 图片保持其宽高比同时填充元素 */
}

/* 响应式布局调整 */
@media (max-width: 768px) {
    .carousel-slide img {
        max-height: 200px; /* 在移动端设置较小的最大高度 */
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        max-height: 150px; /* 在更小的屏幕上设置更小的最大高度 */
    }
}
