* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    perspective: 1000px;
}

.card {
    width: 320px;
    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.top-label {
    background: #00ff88;
    color: #000;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    margin: 15px 15px 0 15px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 255, 136, 0.3);
}

.main-title {
    text-align: center;
    padding: 20px;
    color: white;
}

.main-title h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-title h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.8;
    text-transform: uppercase;
}

.qr-section {
    padding: 0 20px 20px 20px;
}

.qr-container {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.qr-title {
    color: #333;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.qr-code {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bottom-section {
    display: flex;
    align-items: center;
    padding: 20px;
    color: white;
}

.icons {
    display: flex;
    gap: 10px;
    margin-right: 15px;
}

.icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
}

.icon.wechat {
    background: #07c160;
}

.icon.wechat::after {
    content: '微';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.icon.alipay {
    background: #1677ff;
}

.icon.alipay::after {
    content: '支';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.bottom-text {
    flex: 1;
}

.main-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.website {
    font-size: 15px;
    opacity: 0.8;
    margin-top: 5px;
    color:red
}

.bottom-label {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    margin: 0 15px 15px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 480px) {
    .card {
        width: 90%;
        max-width: 320px;
        transform: none;
    }
    
    .card:hover {
        transform: none;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.8s ease-out;
}

.qr-code {
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
}