@charset "utf-8";
/*
    Theme Name: pilipili
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    padding: 20px 0;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

/* 头部区域 */
.header {
    display: flex;
    align-items: center;
    padding: 15px 0 25px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 25px;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.app-icon img {
    width: 100%;
    height: 100%;
}
.app-icon span {
    color: white;
    font-size: 50px;
    font-weight: bold;
}

.app-title h1 {
    font-size: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.app-title p {
    color: #7f8c8d;
    font-size: 16px;
    margin-top: 5px;
}

/* 描述区域 */
.description {
    margin-bottom: 25px;
}

.description p {
    margin-bottom: 10px;
    color: #34495e;
    font-size: 15px;
    line-height: 1.7;
}

.download-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #ff516c, #ff718f);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

/* 截图区域 */
.section-title {
    font-size: 22px;
    margin: 30px 0 20px;
    color: #2c3e50;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

.screenshot {
    background: #f0f2f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

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

/* 下载区域 */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.download-item {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #d0d7de;
}

.download-icon {
    width: 46px;
    height: 46px;
    background: #e3f2fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #2196f3;
    font-size: 20px;
}

.download-icon img {
    width: 100%;
    height: 100%;
}
.download-info .h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #2c3e50;
}

.download-info p {
    font-size: 13px;
    color: #7f8c8d;
}

/* 评价区域 */
.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.testimonial {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 18px;
    border: 1px solid #eaeaea;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #bbdefb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #0d47a1;
    font-weight: bold;
}

.user-details h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 2px;
}

.user-details .stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial p {
    color: #34495e;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}
.foot {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

/* 响应式调整 */
@media (max-width: 900px) {
    .container {
        width: 95%;
        padding: 15px;
    }
    
    .screenshots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
    
    .app-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots {
        grid-template-columns: 1fr;
    }
}