/* 桌面端样式 */
.home-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 10px;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    line-height: 1.6;
    margin-bottom: 12px;
}

.photo-contact {
    width: 240px;
    flex-shrink: 0;
}

.photo-contact img {
    width: 240px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.photo-description {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.contact-item {
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
}

.contact-label {
    font-weight: 600;
    color: #555;
    margin-right: 5px;
    white-space: nowrap;
}

.contact-link {
    color: #0366d6;
    text-decoration: none;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
    .home-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .intro-text {
        order: 2;
    }

    .photo-contact {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .photo-contact img {
        width: 180px;
        margin: 0 auto 15px auto;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info>div {
        justify-content: center;
    }
}

/* 隐藏页脚 */
.site-footer {
    display: none;
}