/* 证件照模块主容器 */
.idphoto-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* 顶部视觉区：小程序码 */
.idphoto-header-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.idphoto-qr-wrapper {
    background: white;
    display: inline-block;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.idphoto-qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

.idphoto-scan-tip {
    color: #555;
    font-size: 16px;
    font-weight: 500;
}

.idphoto-scan-tip b {
    color: #07c160; /* 微信绿 */
}

/* 广告内容区 */
.idphoto-content-body {
    padding: 40px;
    line-height: 1.8;
    color: #444;
}

.idphoto-main-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    border-left: 5px solid #ff4d4f;
    padding-left: 15px;
}

.idphoto-sub-title {
    font-size: 20px;
    color: #34495e;
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
}

.idphoto-sub-title::before {
    content: "✨";
    margin-right: 10px;
}

.idphoto-text-p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #666;
}

/* 特点列表样式 */
.idphoto-feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.idphoto-feature-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #ff4d4f;
    font-size: 14px;
}

.idphoto-highlight {
    color: #ff4d4f;
    font-weight: bold;
}

/* 底部寄语 */
.idphoto-footer-quote {
    margin-top: 40px;
    padding: 20px;
    background: #fff1f0;
    border-radius: 8px;
    font-style: italic;
    color: #cf1322;
    text-align: center;
}