@charset "utf-8";

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}
.eyou_top {
    height: 34px;
    line-height: 34px;
    border-bottom: 1px solid #dbdbdb;
    color: #fff;
    font-size: 12px;
    background: #2196F3;
}
.w1200 {
    width: 1100px;
    margin: 0 auto;
}
/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    display: inline-block;
    margin-right: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
    left: 0;
    filter: blur(15px);
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 10px;
    z-index: -1;
}

.logo:hover:after {
    opacity: 1;
    transform: translateY(5px);
}

.logo img {
    width: 180px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}



.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover {
    color: #007aff;
}

.nav-menu a.active {
    color: #007aff;
}

.nav-menu a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #007aff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative; /* 添加相对定位 */
}

/* 头部搜索框样式 */
.header-right .search-box {
    position: relative;
    margin-right: 15px;
}

.search-input {
    width: 300px;
    height: 40px;
    padding: 8px 15px 8px 40px;
    border: none;
    border-radius: 8px;
    background: #f6f6f6;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-input:focus {
    background: #fff;
    border-color: #4099ff;
    box-shadow: 0 2px 10px rgba(64, 153, 255, 0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.search-icon img {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.search-input:focus + .search-icon img {
    opacity: 0.8;
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: #f6f6f6;;
    border: none;
    cursor: pointer;
}

.notification-icon:hover {
    background-color: #f5f5f5;
    transform: scale(1.1);
}

.notification-icon:active {
    transform: scale(0.95);
}

.notification-icon img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.notification-icon:hover img {
    opacity: 1;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.avatar:hover {
    transform: scale(1.1);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-btn,
.register-btn {
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    background: #007aff;
    color: #fff;
    transition: all 0.3s;
}

.login-btn {
    color: #666;
    background: #f6f6f6;
}

.login-btn:hover {
    color: #007aff;
    background: #f5f5f5;
}

.register-btn:hover {
    background: #0056b3;
}

.main-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.banner-section {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 左侧区域 */
.banner-left {
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* 轮播图样式 */
.banner-box {
    width: 100%;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.banner-box .swiper {
    width: 100%;
    height: 100%;
}

.banner-box .swiper-slide {
    width: 100%;
    height: 100%;
}

.banner-box .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-box .swiper-pagination {
    bottom: 20px;
}

.banner-box .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.banner-box .swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.banner-box .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.6);
}

.banner-box .swiper-pagination-fraction {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}

.banner-box .swiper-pagination-progressbar {
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 0;
    top: auto !important;
    height: 4px;
}

.banner-box .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* 右侧最近更新列表样式 */
.recent-updates {
    width: 280px;
    height: 410px; /* 350 + 15 + 45 = 410px，与左侧总高度一致 */
    background: #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    border: 2px solid #fff;
}

.recent-header {
    padding: 10px 10px 10px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-header .header-left {
    display: flex;
    align-items: center;
}

.recent-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recent-header .update-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.recent-header .more-link {
    color: #0e81fe;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.3s;
}

.recent-header .more-link:hover {
    opacity: 0.8;
}

.recent-list {
    flex: 1;
    padding: 0px 10px 0px 5px;
}

.update-stats {
    text-align: center;
    padding: 10px 0px 15px 0px;
    color: #999;
    border-top: 1px solid rgba(204, 204, 204, 0.27);
    font-size: 12px;
}
/* 分类页面的统计样式覆盖 */
.update-stats.category-stats {
    border-top: none;
    padding: 0;
}

.update-stats span {
    color: #ff5c77;
    font-weight: bold;
    margin: 0 2px;
}

.recent-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 7px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    background: #f6f6f6;
    text-decoration: none !important;
}

.recent-item:hover {
    transform: translateX(10px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.recent-item .app-icon img {
    transition: all 0.3s ease;
    border-radius: 12px;
}

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

.recent-item:hover .app-title {
    color: #007bff;
}

.recent-item .app-desc {
    transition: all 0.3s ease;
}

.recent-item:hover .app-desc {
    color: #666;
}

.rank-num {
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
    margin-right: 12px;
    font-weight: bold;
    font-size: 14px;
}

.recent-item:hover .rank-num {
    transform: scale(1.1);
}

.rank-1 { background: #ff4d4f; color: #fff; }
.rank-2 { background: #ffa940; color: #fff; }
.rank-3 { background: #ffc53d; color: #fff; }
.rank-4, .rank-5 { background: #f0f0f0; color: #999; }

.app-icon1 {
    width: 45px;
    height: 45px;
    min-width: 45px; /* 防止图标被压缩 */
    margin-right: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app-icon1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.app-info1 {
    flex: 1;
    min-width: 0; /* 防止文本溢出 */
}

.app-title1 {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-desc1 {
    font-size: 12px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 200px;
    display: inline-block;
}

/* 自定义滚动条样式 */
.recent-list::-webkit-scrollbar {
    width: 4px;
}

.recent-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.recent-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.recent-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* 公告栏样式 */
.notice-box {
    width: 100%;
    height: 45px;
    background: #f6f6f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid #fff;
}

.notice-icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
}

.notice-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.notice-swiper {
    flex: 1;
    height: 25px;
    overflow: hidden;
}

.notice-swiper .swiper-slide {
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    color: #666;
}

.notice-swiper .swiper-slide a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.notice-swiper .swiper-slide a:hover {
    color: #007aff;
}

/* IPA提取队列样式 */
.ipa-queue-section {
    max-width: 1100px;
    margin: 20px auto;
    background: #f6f6f6;
    border: 2px solid #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.ipa-queue-header {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    background: radial-gradient(circle at 12% 55%, rgba(33, 150, 243, 0.15), rgba(255, 255, 255, 0) 25%), 
                radial-gradient(circle at 85% 33%, rgba(108, 99, 255, 0.176), rgba(255, 255, 255, 0) 25%);
    display: flex;
    align-items: center;
}

.ipa-queue-header img {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

.ipa-queue-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ipa-queue-list {
    display: flex;
    padding: 15px;
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
    gap: 21px;
}

.ipa-queue-item {
    background: #f6f6f6;
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 15px;
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.ipa-queue-item.extracting-item:before {
    content: '';
    display: block;
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    z-index: 1;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.1)
    );
    transform: rotate(45deg);
    animation: extractingShine 1.5s infinite;
}

@keyframes extractingShine {
    0% {
        left: -60%;
    }
    100% {
        left: 160%;
    }
}

.ipa-queue-add {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: #ecf2f6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.ipa-queue-add:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.ipa-queue-add a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    color: #666;
}

.ipa-queue-add a:hover {
    text-decoration: none;
}

.ipa-queue-add img {
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.ipa-queue-add:hover img {
    transform: scale(1.1);
}

.ipa-queue-add div {
    margin-top: 10px;
    font-size: 15px;
}


.ipa-app-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.ipa-app-icon img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.ipa-app-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ipa-app-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    line-height: 1.3;
}

.ipa-app-version {
    font-size: 11px;
    color: #999;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.queue-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 4px;
    width: 100%;
}

.queue-number.extracting {
    color: #008000;
    background-color: #E8F5E9;
}

.queue-number.waiting {
    color: #ff9800;
    background-color: #FFF3E0;
}

.queue-number.completed {
    color: #4099ff;
}

.queue-number i {
    margin-right: 5px;
}

/* 调整图标和文字的对齐 */
.queue-number.extracting i,
.queue-number.waiting i,
.queue-number.completed i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 自定义滚动条 */
.ipa-queue-list::-webkit-scrollbar {
    height: 6px;
}

.ipa-queue-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.ipa-queue-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.ipa-queue-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.hot-categories-section {
    background: #f6f6f6;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #fff;
}

.hot-categories-header {
    padding: 0px 6px 10px;
    font-weight: bold;
    border-bottom: 1.8px solid rgb(237, 237, 237);
}

.hot-categories-header h4 {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 16px;
    gap: 8px;
}

.hot-categories-header .hot-icon {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

.hot-categories-header .more-link {
    color: #0e81fe;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hot-categories-header .more-link:hover {
    opacity: 0.8;
}

.hot-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px 0px 15px 0px;
}

.weui-media-box_appmsg {
    display: flex;
    padding: 10px 0;
    text-decoration: none;
    color: inherit;
}

.rj-soft_img {
    margin-right: 12px;
}

.weui-media-box__bd {
    flex: 1;
    min-width: 0;
    position: relative;
}

.rj-btn_down1 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #007aff;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
}

.rj-btn_down1:hover {
    background: #0056b3;
}

/* 热门应用卡片样式 */
.hot-categories-grid .weui-media-box_appmsg {
    background: #f6f6f6;
    border-radius: 12px;
    padding: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.hot-categories-grid .weui-media-box_appmsg:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #fff;
}

/* 调整图片容器大小 */
.hot-categories-grid .rj-soft_img {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    margin-right: 15px;
}

.hot-categories-grid .rj-soft_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* 调整内容区域 */
.hot-categories-grid .weui-media-box__bd {
    flex: 1;
    min-width: 0;
    padding-right: 20px; /* 为下载按钮留出空间 */
}

/* 调整文字溢出 */
.hot-categories-grid .weui-media-box__bd > div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

/* 调整下载按钮位置 */
.hot-categories-grid .rj-btn_down1 {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 15px;
    min-width: 50px;
    text-align: center;
}

/* 确保最后一行对齐 */
.hot-categories-grid .weui-media-box_appmsg:nth-last-child(-n+3) {
    margin-bottom: 0;
}

/* 底部样式 */
.footer {
    background: linear-gradient(to right, #eef2ff, #f8e4ff);
    padding: 15px 0;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    margin-bottom: 8px;
}

.footer-info a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.footer-info .divider {
    margin: 0 15px;
    color: #999;
}

.footer-beian {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-beian img {
    height: 12px;
    margin: 0 3px;
}

/* 申请砸壳按钮样式 */
.apply-extract-btn {
    text-align: center;
    margin-top: 20px;
}

.extract-btn {
    display: inline-block;
    padding: 10px 35px;
    background: linear-gradient(to right, #0e81fe, #1f93ff);
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(14, 129, 254, 0.2);
}

.extract-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 129, 254, 0.3);
}

/* 磨砂玻璃风格底部 */
.glass-footer {
    position: relative;
    background: radial-gradient(circle at 12% 55%, rgba(33, 150, 243, .15), hsla(0, 0%, 100%, 0) 25%), 
                radial-gradient(circle at 85% 33%, rgba(108, 99, 255, .175), hsla(0, 0%, 100%, 0) 25%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
    padding: 20px 0;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo img {
    height: 35px;
    opacity: 0.9;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright {
    color: #666;
    font-size: 13px;
}

.beian {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 12px;
}

.beian img {
    height: 12px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #2196F3;
    background: rgba(255, 255, 255, 0.2);
}

.footer-links .divider {
    width: 1px;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}

/* 修改底部版权和备案号样式 */
.footer-bottom-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 13px;
}

.footer-bottom-info .divider {
    color: #ddd;
    margin: 0;
}

.footer-bottom-info .copyright {
    color: #666;
    font-size: 13px;
}

.footer-bottom-info .beian {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 12px;
}

.footer-bottom-info .beian img {
    height: 15px;
    opacity: 0.8;
}

/* 分类页面样式 */
.category-nav {
    
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: inset 0px 0px 4px rgb(255 255 255/0%), inset 3px 3px 10px rgb(55 84 170/10%), inset -3px -3px 10px rgb(55 84 170/8%), 0px 0px 0px rgb(255 255 255/20%) !important;
    
}

.primary-category, .sub-category {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.nav-label {
    color: #999;
    margin-right: 15px;
    font-size: 14px;
}

.category-nav a {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    margin-right: 10px;
    border-radius: 5px;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-nav a:hover {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.category-nav a.active {
    background: #2196F3;
    color: #fff;
}

.category-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background-size: contain;
}

.sort-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.sort-options a {
    font-size: 13px;
}

.sort-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

/* 应用列表网格 */
.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.app-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.app-icon {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    flex-shrink: 0;
}

.app-icon img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.app-info {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-right: 30px;
}

.app-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-desc {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.app-meta .divider {
    margin: 0 5px;
}

.support-type {
    display: flex;
    align-items: center;
    gap: 3px;
}

.support-type.free {
    color: #37a737;
}

.support-type.troll {
    color: #ff9800;
}

.support-type img {
    width: 13px;
    height: 13px;
}

.download-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #007aff;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* 分类列表页样式 */
.category-list-container {
    background: #f5f6fa;
    min-height: 100vh;
    padding: 20px 0;
}

.category-card {
    background: #f6f6f6;
    width: 1100px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #fff;
}

.app-list-card {
    background: #f6f6f6;
    width: 1100px;
    margin: 20px auto 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #fff;
}

/* 分类页面的应用网格布局 */
.app-list-card .hot-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* 分类页面的应用卡片样式 */
.app-list-card .weui-media-box_appmsg {
    background: #f6f6f6;
    border-radius: 12px;
    padding: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.app-list-card .weui-media-box_appmsg:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);  /* 增加阴影效果 */
    background: #fff;
}

/* 修改阴影和过渡效果 */
.app-list-card .weui-media-box_appmsg {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 分类页面的应用信息区域 */
.app-list-card .weui-media-box__bd {
    flex: 1;
    min-width: 0;
    padding-right: 20px; /* 为下载按钮留出空间 */
}

/* 分类页面的应用图标 */
.app-list-card .rj-soft_img {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    margin-right: 15px;
}

.app-list-card .rj-soft_img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 .2rem 0.7rem rgb(94 150 255 / 35%);
}

/* 骨架屏动画样式 */
.skeleton-box {
    background: #f6f6f6;
    border-radius: 12px;
    padding: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: skeleton-loading 1s infinite alternate;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.skeleton {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.skeleton-img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    background: #eee;
    animation: skeleton-loading 1.5s infinite;
    margin-right: 15px;
    flex-shrink: 0;
}

.skeleton-line {
    background: #eee;
    border-radius: 4px;
    animation: skeleton-loading 1.5s infinite;
}

/* 标题行 */
.skeleton-line:nth-child(1) {
    height: 24px;
    margin-bottom: 8px;
}

/* 描述行 */
.skeleton-line:nth-child(2) {
    height: 24px;
    margin-bottom: 8px;
}

/* 版本信息行 */
.skeleton-line:nth-child(3) {
    height: 20px;
}

/* 下载按钮 */
.skeleton-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 24px;
    border-radius: 12px;
    background: #eee;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 确保骨架屏和实际内容有平滑过渡 */
.hot-categories-grid > * {
    opacity: 0;
    animation: fade-in 0.3s ease forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 下滑提示样式 */
.scroll-indicator {
    text-align: center;
    padding: 20px 0;
    color: #999;
    font-size: 14px;
    opacity: 0.8;
}

.scroll-icon {
    animation: bounce 2s infinite;
    margin-bottom: 8px;
}

.scroll-text {
    color: #999;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 分页器样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 8px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    font-size: 15px;
    border-radius: 8px;
    color: #666;
    background: #fff;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.pagination a.page-nav {
    min-width: auto;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
    font-weight: normal;
}

.pagination a:hover {
    color: #2196F3;
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.1);
}

.pagination a.active {
    background: #2196F3;
    color: #fff;
    border-color: #2196F3;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.pagination span {
    color: #999;
    margin: 0 4px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* 添加响应式样式 */
@media screen and (max-width: 768px) {
    .pagination a {
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
        font-size: 14px;
    }
    
    .pagination a.page-nav {
        padding: 0 15px;
    }
    
    .pagination {
        gap: 6px;
    }
}

/* 页码跳转样式 */
.page-jump {
    display: flex;
    align-items: center;
    margin-left: 15px;
    color: #666;
    font-size: 14px;
}

.page-jump input {
    width: 50px;
    height: 32px;
    margin: 0 8px;
    padding: 0 8px;
    border: 1px solid #eee;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.page-jump input:focus {
    border-color: #2196F3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

.page-jump input::-webkit-inner-spin-button,
.page-jump input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.page-jump input[type=number] {
    -moz-appearance: textfield;
}

/* 公告弹窗样式 */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);  /* 稍微调深一点背景色 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(0.5px);  /* 大幅减少模糊程度 */
    -webkit-backdrop-filter: blur(1px);
}

.announcement-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #4099ff, #3872ff);
    color: #fff;
}

.announcement-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* 统一的关闭按钮样式 */
.close-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
    background: #ff4757;
    transform: rotate(90deg);
    box-shadow: 0 2px 15px rgba(255, 71, 87, 0.3);
}

.close-btn i {
    font-size: 18px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.close-btn:hover i {
    color: #fff;
    transform: scale(1.1);
}

.close-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease-out;
}

.close-btn:hover::before {
    width: 100%;
    height: 100%;
}

.announcement-body {
    padding: 20px;
}

.announcement-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.announcement-item:not(:last-child) {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.announcement-item i {
    color: #4099ff;
    font-size: 18px;
    flex-shrink: 0;
}

.announcement-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 现代化滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Firefox滚动条样式 */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/* 当滚动条悬浮在可滚动区域时才显示 */
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
    visibility: hidden;
}

body:hover::-webkit-scrollbar-track,
body:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}

/* 在深色背景上的滚动条 */
.dark-bg::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

.dark-bg::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* PC端标签页样式 */
.pc-tab-nav {
    display: flex;
    gap: 50px;
    padding: 30px 80px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.pc-tab-item {
    flex: 1;
    background: #f6f6f6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pc-tab-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pc-tab-item.active {
    border-color: #4099ff;
    background: linear-gradient(to bottom right, rgba(64, 153, 255, 0.1), rgba(56, 114, 255, 0.05));
}

.pc-tab-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.pc-tab-icon {
    font-size: 24px;
    color: #4099ff;
    margin-bottom: 10px;
}

.pc-tab-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.pc-tab-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff4d4f, #ff7875);
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 14px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.25);
    transform: scale(1);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 4px 12px rgba(255, 77, 79, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 77, 79, 0.35);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 12px rgba(255, 77, 79, 0.25);
        transform: scale(1);
    }
}

/* PC端搜索框样式 */
.pc-search-container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 25px;
    background: #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #fff;
}

.pc-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #F5F5F5;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 5px 5px 5px 15px;
    box-shadow: inset 0px 0px 4px rgb(255 255 255/0%), inset 3px 3px 10px rgb(55 84 170/10%), inset -3px -3px 10px rgb(55 84 170/8%), 0px 0px 0px rgb(255 255 255/20%) !important;
}

.pc-search-box:focus-within {
    border-color: #4099ff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(64,153,255,0.1);
}

.pc-region-flag {
    width: 34px;
    height: 23px;
    border-radius: 2px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pc-region-flag:hover {
    transform: scale(1.1);
}

.pc-search-input {
    flex: 1;
    border: none;
    background: none;
    height: 45px;
    font-size: 15px;
    color: #333;
    padding: 0 15px;
    outline: none;
}

.pc-search-input::placeholder {
    color: #999;
}

.pc-clear-btn {
    padding: 0 10px;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pc-clear-btn:hover {
    color: #666;
    transform: scale(1.1);
}

.pc-search-btn {
    background: linear-gradient(to right, #4099ff, #3872ff);
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 45px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.pc-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(64,153,255,0.3);
}

.pc-search-btn:active {
    transform: translateY(0);
}

/* PC端近期提取成功应用样式 */
.pc-recent-apps {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background: #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #fff;
}

.pc-recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.pc-recent-header h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
    margin: 0;
}

.pc-recent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.pc-app-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f6f6f6;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #fff;
    cursor: pointer;
}

.pc-app-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.pc-app-icon {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(64,153,255,0.2);
}

.pc-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-app-info {
    flex: 1;
    min-width: 0;
}

.pc-app-name {
    width: 200px;
    height: 30px;
    line-height: 24px;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.pc-app-tag {
    padding: 2px 8px;
    background: rgba(0,132,255,0.1);
    color: #0084ff;
    border-radius: 4px;
    white-space: nowrap;
}

/* 历史搜索样式更新 */
.pc-history-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.pc-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 14px;
}

.pc-history-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 5px 0;
}

.pc-history-tag {
    background: #E0E0E0;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pc-history-tag:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
}

.pc-history-tag.hot-word {
    background: rgba(64,153,255,0.1);
    color: #4099ff;
}

.pc-history-tag.hot-word:hover {
    background: rgba(64,153,255,0.15);
}

/* PC端我的提取应用列表样式 */
.pc-extract-container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background: #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 2px solid #fff;
}

.pc-extract-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.pc-extract-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #6f6f6;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pc-extract-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.pc-extract-icon {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(64,153,255,0.2);
}

.pc-extract-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-extract-info {
    flex: 1;
    min-width: 0;
}

.pc-extract-name {
    width: 200px;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-extract-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 5px;
}

.pc-extract-tag {
    display: inline-block;
    padding: 1px 8px;
    font-size: 12px;
    color: #666;
    background: #EEEEEE;
    border-radius: 10px;
    margin: 3px;
    max-width: 150px;
}

.pc-extract-status {
    margin-top: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pc-extract-status.extracting {
    color: #008000;
}

.pc-extract-status.waiting {
    color: #ff9800;
}

.pc-extract-status.completed {
    color: #07c160;
}

/* PC端提取应用下载按钮样式 */
.pc-extract-download {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #07c160;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pc-extract-download:hover {
    background: #06ae56;
    transform: translateY(-50%) translateX(-2px);
}

.pc-extract-download i {
    font-size: 16px;
}

/* PC端提取应用状态提示图标样式 */
.pc-queue-tip {
    color: #ff9800;
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.pc-queue-tip:hover {
    transform: scale(1.1);
    color: #f57c00;
}

.pc-extract-status .pc-queue-tip {
    margin-left: 3px;
}

/* PC端全站提取应用列表样式 */
.pc-all-extract-container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background: #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 2px solid #fff;
}

.pc-all-extract-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.pc-all-extract-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f6f6f6;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pc-all-extract-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.pc-all-extract-icon {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(64,153,255,0.2);
}

.pc-all-extract-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-all-extract-info {
    flex: 1;
    min-width: 0;
}

.pc-all-extract-name {
    width: 200px;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-all-extract-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 5px;
}

.pc-all-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 15px 5px;
}

.pc-all-progress-bar {
    height: 5px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.pc-all-progress {
    height: 100%;
    background: linear-gradient(to right, #008000, #00a000);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* 添加提取中状态的提示图标样式 */
.pc-extracting-tip {
    color: #008000;
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.pc-extracting-tip:hover {
    transform: scale(1.1);
}
.pc-rj_avatar {
    width: 70px;
    height: 70px px;
    border-radius: 50%;
    box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.5);
}

/* 搜索结果样式 */
.search-result-item {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
}

.search-result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.weui-media-box_appmsg {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

.weui-media-box__hd {
    margin-right: 15px;
    flex-shrink: 0;
}

.weui-media-box__hd img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(64,153,255,0.2);
}

.weui-media-box__bd {
    flex: 1;
    min-width: 0;
}

.weui-media-box__title {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.developer-name {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    max-width: 200px;  /* 限制最大宽度 */
    white-space: nowrap;  /* 不换行 */
    overflow: hidden;  /* 超出隐藏 */
    text-overflow: ellipsis;  /* 超出显示省略号 */
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rj-tag {
    padding: 2px 8px;
    background: rgba(0,132,255,0.1);
    color: #0084ff;
    border-radius: 4px;
    font-size: 12px;
}

.extract-btn {
    background: linear-gradient(to right, #4099ff, #3872ff);
    color: #fff;
    padding: 5px 10px; 
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
    white-space: nowrap;
}

.extract-btn-iosdk {
    background: linear-gradient(to right, #4099ff, #3872ff);
    color: #fff;
    padding: 10px 25px; 
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
    white-space: nowrap;
}

.extract-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(64,153,255,0.3);
}

/* 骨架屏标签样式 */
.skeleton-tag {
    width: 80px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 15px;
    animation: skeleton-loading 1.5s infinite;
}

/* Logo光影效果 */
.logo-shine {
    position: relative;
    overflow: hidden;
}

.logo-shine:before {
    content: '';
    display: block;
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    z-index: 1;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.1)
    );
    transform: rotate(45deg);
    animation: logoShineEffect 2s infinite;
}

@keyframes logoShineEffect {
    0% {
        left: -60%;
    }
    100% {
        left: 160%;
    }
}

/* 搜索文字按钮样式 */
.search-text-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #4099ff;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.search-text-btn:hover {
    background: #2979ff;
}

/* 登录模态框样式 */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.auth-content {
    width: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: modalFadeIn 0.3s;
}

.auth-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-header h3 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-header h3 i {
    font-size: 20px;
}

.auth-body {
    padding: 30px;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group input {
    width: 100%;
    height: 45px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.input-group input:focus {
    border-color: #4099ff;
    box-shadow: 0 0 0 2px rgba(64, 153, 255, 0.1);
}

.input-group.verification {
    display: flex;
    gap: 10px;
}

.input-group.verification input {
    flex: 1;
}

.send-code-btn {
    width: 120px;
    height: 45px;
    border: none;
    border-radius: 8px;
    background: #4099ff;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.send-code-btn:hover {
    background: #2979ff;
}

.send-code-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.auth-links {
    text-align: right;
    margin-bottom: 20px;
}

.auth-links a {
    color: #666;
    font-size: 13px;
    text-decoration: none;
}

.auth-links a:hover {
    color: #4099ff;
}

.auth-submit {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 8px;
    background: #4099ff;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.auth-submit:hover {
    background: #2979ff;
}

.auth-switch {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.auth-switch a {
    color: #4099ff;
    text-decoration: none;
    margin-left: 5px;
}

.auth-switch a:hover {
    color: #2979ff;
}

/* 注册协议弹窗样式 */
.agreement-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.agreement-content {
    width: 550px;
    max-height: 80vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.agreement-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agreement-body {
    flex: 1;
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

/* 协议弹窗底部按钮样式 */
.agreement-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    background: radial-gradient(circle at 12% 55%, rgba(33, 150, 243, 0.15), rgba(255, 255, 255, 0) 25%), radial-gradient(circle at 85% 33%, rgba(108, 99, 255, 0.176), rgba(255, 255, 255, 0) 25%);
}

.reject-btn {
    flex: 1;
    height: 40px;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 14px 56px -11px #b3b3b3;
    border: 1px solid transparent;
}

.reject-btn:hover {
    background: #f8f8f8;
}

.agree-btn {
    flex: 1;
    height: 40px;
    border: none;
    border-radius: 5px;
    background: #1875ff;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    opacity: 0.6;
    border: 1px solid transparent;
}

.agree-btn:not(:disabled) {
    opacity: 1;
    box-shadow: 0 14px 56px -11px #1875ff;
}

.agree-btn:disabled {
    cursor: not-allowed;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 弹窗标题样式统一 */
.auth-header,
.agreement-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #4099ff, #3872ff);
    border-radius: 12px 12px 0 0;
}

.auth-header h3,
.agreement-header h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-header h3 i,
.agreement-header h3 i {
    font-size: 20px;
}

/* 用户信息弹窗样式 */
.avatar {
    position: relative;
}

.user-popup {
    position: absolute;
    top: 56px;  /* 固定距离顶部的位置 */
    right: -7px;
    width: 300px;
    background: radial-gradient(circle at 12% 55%, rgb(33 150 243 / 30%), rgb(255 255 255 / 60%) 25%), radial-gradient(circle at 85% 33%, rgb(108 99 255 / 49%), rgb(255 255 255 / 50%) 25%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}


/* 显示弹窗 */
.header-right .avatar:hover + .user-popup,
.user-popup:hover {
    visibility: visible;
    opacity: 1;
}

/* 弹窗内容样式 */
.user-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-id {
    font-size: 12px;
    color: #ffbd00;
    font-weight: normal;
}

.user-email {
    font-size: 13px;
    color: #666;
}

.user-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px 0;
    border-top: 1px solid rgba(238, 238, 238, 0.5);
    border-bottom: 1px solid rgba(238, 238, 238, 0.5);
    margin: 15px 0;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 12px;
    color: #ff4141;
    font-weight: 500;
}

.user-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    height: 36px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn:first-child {
    background: linear-gradient(to right, #4099ff, #3872ff);
    color: #fff;
}

.logout-btn {
    background: #f5f5f5;
    color: #666;
}

.action-btn:hover {
    transform: translateY(-2px);
}

/* 弹窗箭头 */
.user-popup::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.05);
}

/* 协议弹窗样式 */
.agreement-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.agreement-title {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.agreement-section {
    margin-bottom: 20px;
}

.agreement-section h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.agreement-rules {
    color: #ff4141;
    font-size: 13px;
    background: rgba(255, 65, 65, 0.1);
    border-radius: 8px;
    padding: 15px;
}

.agreement-rules p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.agreement-statement,
.agreement-disclaimer {
    color: #666;
    font-size: 13px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    line-height: 1.6;
}

.mail-link {
    color: #4099ff;
    text-decoration: none;
}

.mail-link:hover {
    text-decoration: underline;
}

/* 用户类型提示卡片 */
.user-type-card {
    background: #ffffff85;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 15px;
    color: #ff5c77;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
}

/* 验证当前邮箱弹窗样式 */
#verifyCurrentEmailPopup .layui-layer-content {
    overflow: visible !important; /* 覆盖默认的滚动样式 */
    height: auto !important;
}

/* 设置新邮箱弹窗样式 */
#setNewEmailPopup .layui-layer-content {
    overflow: visible !important;
    height: auto !important;
}

/* 输入框图标样式 */
.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 10px;  /* 增加左侧间距 */
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.input-group input {
    padding-left: 35px !important;  /* 相应增加输入框的左内边距 */
}

/* 验证码输入框特殊处理 */
.input-group.verification input {
    padding-left: 35px !important;  /* 保持一致的左内边距 */
}

/* 搜索框样式 */
.ipadk-search-box {
    position: relative;
}

.ipadk-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.ipadk-search-input {
    width: 240px;
    height: 38px;
    padding: 0 40px 0 15px;
    border: 1px solid #e0e0e0;
    border-radius: 19px;
    font-size: 14px;
    color: #333;
    background: #f5f5f5;
    transition: all 0.3s ease;
    box-shadow: inset 0px 0px 4px rgb(255 255 255/0%), inset 3px 3px 10px rgb(55 84 170/10%), inset -3px -3px 10px rgb(55 84 170/8%), 0px 0px 0px rgb(255 255 255/20%) !important;
}

.ipadk-search-input:focus {
    width: 340px;
    background: #fff;
    border-color: #4099ff;
    box-shadow: 0 0 0 3px rgba(64,153,255,0.1);
}

.ipadk-search-icon {
    position: absolute;
    right: 3px;
    top: 3px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ipadk-search-icon img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.ipadk-search-input:focus + .ipadk-search-icon {
    background: #4099ff;
}

.ipadk-search-input:focus + .ipadk-search-icon img {
    opacity: 1;
    filter: brightness(5);
}

.ipadk-search-text-btn {
    position: absolute;
    right: 10px;
    padding: 6px 15px;
    border: none;
    border-radius: 15px;
    background: #4099ff;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.ipadk-search-text-btn.show {
    opacity: 1;
    transform: translateX(0);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .ipadk-search-input,
    .ipadk-search-input:focus {
        width: 100%;
    }
}