.page-app {
    background-color: #f2f3f4;
}
.page-app .widget-title {
    margin: calc(var(--section-top) / 2) auto max(1.2vw, 20px);
}
.page-app .app-content {
    grid-template-columns: repeat(auto-fill, minmax(max(20vw, 400px), 1fr));
    grid-gap: max(1.2vw, 20px) max(1.6vw, 20px);
    padding-bottom: var(--section-bottom);
}

.page-app .app-content-item {
    background-color: #fff;
    border-radius: 8px;
    padding: max(2.4vw, 40px) max(2.4vw, 40px) 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--animation-duration) ease,
        box-shadow var(--animation-duration) ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.app-content .app-content-item .app-content-item-head {
    flex: 1;
}
.app-content .app-content-item .app-content-item-head img {
    width: max(5vw, 50px);
    height: max(5vw, 50px);
    object-fit: contain;
    transition: all var(--animation-duration) ease;
    margin-bottom: max(1.2vw, 20px);
    box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.08); 
    border-radius: 8px;
}

.page-app .app-content-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.app-content .app-content-item .app-content-item-head h2 {
    font-size: max(1.2vw, 18px);
    font-weight: 700;
    color: var(--theme-p-color);
    margin-bottom: max(0.8vw, 10px);
}

.app-content .app-content-item .app-content-item-head p {
    font-size: var(--widget-title-p-4-fs);
    font-weight: 400;
    color: var(--theme-p-color);
    line-height: 1.7;
    margin-bottom: max(1.5vw, 20px);
}

.app-content .app-content-item .app-content-item-body {
    padding: calc(max(1.2vw, 20px) - 8px) 0;
    flex-wrap: wrap;
}

.page-app .app-content-item .app-content-item-body span {
    font-size: var(--widget-title-p-1-fs);
    color: var(--theme-p-color);
    font-weight: 700;
}

.page-app .app-content-item .app-content-item-body .download-content {
    gap: max(1vw, 12px);
}

.page-app .app-content-item .app-content-item-body .download-content .download-content-item {
    display: inline-flex;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    transition: all var(--animation-duration) ease;
    border-radius: 8px;
}

.page-app .app-content-item .app-content-item-body .download-content .download-content-item:hover {
    background: var(--theme-color);
}

.page-app .app-content-item .app-content-item-body .download-content .download-content-item img {
    width: 24px;
    height: 24px;
    transition: transform var(--animation-duration) ease;
}

.page-app .app-content-item .app-content-item-body .download-content .download-content-item:hover img {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

.page-app .app-content-item .app-content-item-body .download-content .download-content-item span {
    font-size: var(--widget-title-p-4-fs);
    color: var(--theme-p-color);
    transition: color var(--animation-duration) ease;
}

.page-app .app-content-item .app-content-item-body .download-content .download-content-item:hover span {
    color: #fff;
}

.app-content .app-content-item .app-content-item-body .download-content .download-content-item {
    gap: max(0.6vw, 10px);
}

.app-content .app-content-item .app-content-item-body .download-content .download-content-item img {
    width: max(1.2vw, 20px);
    height: max(1.2vw, 20px);
    object-fit: contain;
}

.app-content .app-content-item .app-content-item-body .download-content .download-content-item span {
    font-size: var(--widget-title-p-3-fs);
    color: var(--theme-p-color);
    font-weight: 700;
    transition: all var(--animation-duration);
    text-decoration: underline;
}

.app-content-list {
    
}
/* 响应式调整 */
@media (max-width: 768px) {
    .page-app .app-content {
        grid-template-columns: 1fr;
    }

    .page-app .app-content .download-content {
        flex-wrap: wrap;
    }

    .page-app .app-content .download-content-item {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}
.app-download-list {
    padding-bottom: var(--section-bottom);
}
.app-download-list .app-download-item .app-download-item-head {
    margin-bottom: max(8vw, 80px);
}
.app-download-list .app-download-item .app-download-item-head img {
    width: 120px;
    height: 120px;
    margin-bottom: max(2vw, 20px);
}
.app-download-list .app-download-item .app-download-item-head h2 {
    line-height: 1;
    font-size: var(--widget-title-h2-fs);
    font-weight: 700;
    margin-bottom: max(.8vw, 10px);
}
.app-download-list .app-download-item .app-download-item-head p {
    line-height: 1.5;
    font-size: var(--widget-title-p-3-fs);
    max-width: 720px;
    text-align: center;
    color: var(--theme-p-color);
}

.app-download-list .app-download-item .app-download-item-body .download-download {
    gap: max(4vw, 40px);
}

.app-download-list .app-download-item .app-download-item-body .download-download .download-download-item {
    gap: 12px;
}

.app-download-list .app-download-item .app-download-item-body .download-download .download-download-item .download-download-item-img {
    width: max(5vw, 50px);
    height: max(5vw, 50px);
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-download-list .app-download-item .app-download-item-body .download-download .download-download-item .download-download-item-img img {
    object-fit: contain;
}

.app-download-list .app-download-item .app-download-item-body .download-download .download-download-item span {
    font-size: var(--widget-title-p-3-fs);
    color: var(--theme-p-color);
    font-weight: 700;
    transition: all var(--animation-duration) ease;
}

.app-download-list .app-download-item .app-download-item-body .download-download .download-download-item:hover span {
    color: var(--theme-color);
}


