/* 卡片容器 - 宽高比4:2 */
.wxcard-container {
    margin: auto;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 4 / 2;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
}

/* 左侧内容区域 - 完全居中布局 */
.wxcard-left-section {
    width: 60%;
    background: linear-gradient(180deg, #27ae60 0%, #219653 100%);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直居中 */
    align-items: center;     /* 水平居中 */
    padding: 30px;
    text-align: center;
}

/* 装饰元素 */
.wxcard-decor-element {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.wxcard-decor1 {
    width: 120px;
    height: 120px;
    bottom: -40px;
    left: -40px;
}

.wxcard-decor2 {
    width: 60px;
    height: 60px;
    top: 30px;
    right: 30px;
}

/* 头像区域 - 居中显示 */
.wxcard-avatar-container {
    /* width: 130px; */
    height: 130px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wxcard-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wxcard-account-name {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.2;
    margin: 0.6em;
    background: unset;
}

.wxcard-verified {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.wxcard-verified-icon {
    margin-right: 8px;
}

.wxcard-description {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 90%;
    color: aliceblue;
}

/* 右侧内容区域 */
.wxcard-right-section {
    width: 40%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.wxcard-qrcode-container {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.wxcard-qrcode {
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.wxcard-qrcode-text {
    text-align: center;
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

.wxcard-follow-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 13px 40px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wxcard-follow-btn:hover {
    background-color: #219653;
    transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .wxcard-container {
        flex-direction: column;
        aspect-ratio: auto;
        height: auto;
    }
    
    .wxcard-left-section, .wxcard-right-section {
        width: 100%;
    }
    
    .wxcard-left-section {
        padding: 40px 20px;
    }
    
    .wxcard-right-section {
        padding: 30px 20px;
    }
    
    .wxcard-qrcode {
        width: 140px;
        height: 140px;
    }
}