/* 组件样式 - 各个UI组件的具体样式 */

/* Banner组件样式 */
.banner-section {
    margin: 20px 0;
}

.banner-content {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-img:hover {
    transform: scale(1.02);
}

/* Banner中的Logo样式 */
.banner-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.banner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.banner-logo .logo-img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
}

/* 应用卡片组件样式 */
.app-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 214, 214, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(214, 214, 214, 0.4);
}

.app-screenshot {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

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

.app-content {
    padding: 25px;
}

.app-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d6778;
}

.app-description {
    color: #ac9a97;
    line-height: 1.7;
    font-size: 1rem;
}

/* 联系方式组件样式 */
.contact-text {
    color: #ac9a97;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-text strong {
    color: #2d6778;
    font-weight: 600;
}

.qr-code {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.qr-code-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.qr-code-placeholder {
    font-size: 14px;
    color: #ac9a97;
    text-align: center;
}

/* Footer组件样式 */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d6778;
}

.copyright {
    color: #ac9a97;
    font-size: 14px;
}