@charset "utf-8";
/* CSS Document */

.newpostcontainer
{
    max-width: 960px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.appcontainer {
    max-width: 100%;
    margin: 0 auto;
}

.appbreadcrumb {
    color: #999;
    margin-bottom: 15px;
    padding-top: 30px; 
}

.app-header {
    display: flex;
    margin-bottom: 20px;
    flex-direction: row;
}

.app-icon-container {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
    align-items: center;
}

.app-icon {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

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

.app-info {
    flex: 1;
}

.app-title {
    font-size: 36px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.app-version {
    color: #999;
    font-size: 24px;
    font-weight: normal;
}

.app-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.download-btn {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.download-btn a {
    color: white;
    text-decoration: none;
}

.download-icon {
    margin-right: 10px;
}

.app-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    text-align: left;
}

.detail-group {
    margin-bottom: 2px;
}

.detail-label {
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

.detail-value {
    color: #333;
}

.detail-value a {
    color: #d10063;
    text-decoration: none;
}

.developer-link {
    color: #d10063;
    text-decoration: none;
}

/* iPad */
@media (max-width: 768px) {
    .app-icon {
        width: 150px;
        height: 150px;
    }
    
    .app-title {
        font-size: 28px;
    }
    
    .app-version {
        font-size: 20px;
    }
    
    .app-details {
        grid-template-columns: 1fr 1fr;
        gap: 15px; /* 调整间距 */
    }
    
    .detail-group {
        margin-bottom: 12px; /* 调整间距 */
    }
}

/* Mobile */
@media (max-width: 576px) {
    .appbreadcrumb {
        padding-top: 20px; /* 移动端调整 */
        text-align: center;
    }
    
    .app-header {
        flex-direction: column;
    }
    
    .app-icon-container {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .app-icon {
        width: 120px;
        height: 120px;
    }
    
    .app-title {
        font-size: 24px;
        text-align: center;
    }
    
    .app-version {
        font-size: 18px;
    }
    
    .app-description {
        text-align: center;
        font-size: 14px; /* 调整字体大小 */
        padding: 0 10px; /* 增加内边距 */
    }
    
    .app-details {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
        padding: 0 10px; /* 增加内边距 */
    }
    
    .detail-group {
        margin-bottom: 10px;
        text-align: center; /* 居中对齐 */
    }
    
    .detail-label {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .detail-value {
        font-size: 14px;
        font-weight: 500; /* 稍微加粗 */
    }
    
    .detail-value a {
        font-size: 14px;
    }
    
    .download-btn {
        margin: 0 auto;
        font-size: 14px; /* 调整按钮字体 */
        padding: 12px 20px; /* 调整按钮内边距 */
    }
}
