* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
    padding: 20px;
}

/* 编号样式 */
.number {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    padding-top: 20px;
}

/* 主文案样式 */
.main-text {
    padding: 0 15px;
    margin-bottom: 30px;
}

.main-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.emoji {
    display: inline-block;
    font-size: 18px;
}

/* 律师卡片 */
.lawyer-card {
    background-color: #ffffff;
    margin: 30px 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 照片区域 */
.photo {
    position: relative;
    width: 100%;
    background-color: #f0f0f0;
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
}

.name-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

/* 信息区域 */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: #ffffff;
}

.service-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.qrcode {
    width: 120px;
    height: 120px;
    background-color: #f0f0f0;
}

.qrcode img {
    width: 100%;
    height: 100%;
    display: block;
}

/* 扫描提示 */
.scan-tip {
    text-align: center;
    padding: 15px 20px;
    color: #999;
    font-size: 14px;
    background-color: #fafafa;
}

/* 企业微信按钮 */
.wechat-button {
    text-align: center;
    padding: 18px;
    background-color: #ffffff;
    color: #666;
    font-size: 16px;
    border-top: 1px solid #f0f0f0;
}

.wechat-button .icon {
    margin-right: 5px;
}

/* 底部文案 */
.bottom-text {
    padding: 30px 15px;
    text-align: center;
}

.bottom-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .number {
        font-size: 28px;
    }
    
    .main-text p {
        font-size: 15px;
    }
    
    .lawyer-card {
        margin: 20px 10px;
    }
    
    .name-title {
        font-size: 16px;
        padding: 15px;
    }
    
    .info-section {
        padding: 20px;
    }
    
    .service-name {
        font-size: 18px;
    }
    
    .qrcode {
        width: 100px;
        height: 100px;
    }
}
