﻿/* 功德证页面样式 - gongdezheng.css */

/* 整体容器 */
.gdz-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* 标题区域 - 优化 */
.gdz-header {
    background: linear-gradient(135deg, #FFF8DC, #FFD700);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid #FFD700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* 随机祝福语 - 加大字体 */
.gdz-header .blessing {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 165, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* 功德证卡片 - 带花纹边框 */
.gdz-card {
    background: #fff;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    position: relative;
}

/* 花纹边框背景 */
.gdz-cert-border {
    background: url(/fo/image/cert.png) no-repeat center center;
    background-size: 100% 100%;
    padding: 60px 80px;
    position: relative;
    min-height: 800px;
}

.gdz-inner {
    background: #fff;
    padding: 20px;
    border: none;
    position: relative;
}

/* 功德证标题 */
.gdz-title {
    color: #c41e3a;
    font-size: 42px;
    text-align: center;
    margin: 0 0 30px 0;
    letter-spacing: 25px;
    font-weight: bold;
}

/* 致辞段落 */
.gdz-note {
    color: #333;
    line-height: 2.2;
    font-size: 15px;
    text-align: justify;
    padding: 15px 0;
    margin-bottom: 25px;
    border: none;
    background: transparent;
}
.gdz-note strong {
    color: #c41e3a;
    font-size: 17px;
}

/* 信息表格 */
.gdz-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    border: 1px solid #ddd;
}
.gdz-table tr {
    border-bottom: 1px solid #ddd;
}
.gdz-table tr:last-child {
    border-bottom: none;
}
.gdz-table td {
    padding: 12px 20px;
    font-size: 15px;
    border: 1px solid #ddd;
}
.gdz-table td:first-child {
    background: #f8f8f8;
    font-weight: normal;
    color: #666;
    width: 35%;
    text-align: center;
}
.gdz-table td:last-child {
    color: #333;
    text-align: left;
    width: 65%;
    padding-left: 25px;
}

/* 功德说明 */
.gdz-merit {
    background: #fff;
    padding: 20px 0;
    margin: 25px 0;
    border: none;
}
.gdz-merit h3 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 15px;
    font-weight: bold;
}
.gdz-merit p {
    color: #555;
    line-height: 2.2;
    margin: 5px 0;
    padding-left: 0;
    font-size: 14px;
}

/* 底部区域 */
.gdz-bottom {
    margin-top: 30px;
    padding-top: 20px;
    position: relative;
    min-height: 150px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* 颁发机构 */
.gdz-footer {
    color: #333;
    text-align: right;
    margin-right: 20px;
    margin-bottom: 20px;
}
.gdz-footer p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.8;
}
.gdz-footer .org {
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

/* 圆章 */
.gdz-seal {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}
.gdz-seal img {
    width: 100%;
    height: auto;
}

/* 打印按钮 */
.gdz-print-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}
.gdz-print-btn:hover {
    background: #e8e8e8;
}

/* 响应式 */
@media (max-width: 768px) {
    .gdz-wrapper { padding: 10px; }
    .gdz-header { padding: 15px; margin-bottom: 15px; }
    .gdz-header .blessing { font-size: 16px; padding: 10px 20px; }
    .gdz-title { font-size: 32px; letter-spacing: 15px; }
    .gdz-cert-border { padding: 40px 50px; }
    .gdz-table td { padding: 10px; font-size: 13px; }
    .gdz-seal { width: 80px; height: 80px; }
    .gdz-footer { margin-right: 15px; }
}

/* ===== 打印优化 - 只打印一张A4 ===== */
@media print {
    /* 隐藏不需要的元素 */
    .gdz-print-btn, 
    .gdz-header, 
    header, 
    .head1, 
    footer, 
    .am-header,
    .main > br { 
        display: none !important; 
    }

    /* 页面设置 - A4纵向 */
    @page {
        size: A4 portrait;
        margin: 5mm;
    }

    body {
        background: #fff !important;
        margin: 0;
        padding: 0;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* 容器 */
    .gdz-wrapper {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    /* 证书边框 */
    .gdz-card {
        box-shadow: none !important;
        border: none !important;
        padding: 0;
        margin: 0;
        page-break-inside: avoid;
    }
    .gdz-cert-border {
        background: url(/fo/image/cert.png) no-repeat center center !important;
        background-size: 100% 100% !important;
        padding: 30px 40px;
        min-height: auto;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    .gdz-inner {
        padding: 10px;
    }

    /* 标题 */
    .gdz-title {
        font-size: 32px;
        letter-spacing: 15px;
        margin-bottom: 15px;
    }

    /* 致辞 */
    .gdz-note {
        font-size: 13px;
        line-height: 1.8;
        padding: 10px 0;
        margin-bottom: 15px;
    }

    /* 表格 */
    .gdz-table {
        margin: 15px 0;
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
    .gdz-table td {
        padding: 6px 12px;
        font-size: 13px;
        border: 1px solid #ddd;
    }
    .gdz-table td:first-child {
        background: #f8f8f8 !important;
    }

    /* 功德说明 */
    .gdz-merit {
        padding: 10px 0;
        margin: 15px 0;
    }
    .gdz-merit h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .gdz-merit p {
        font-size: 12px;
        line-height: 1.6;
        margin: 3px 0;
    }

    /* 底部区域 */
    .gdz-bottom {
        margin-top: 15px;
        padding-top: 10px;
        min-height: 100px;
    }
    .gdz-footer {
        margin-right: 15px;
        margin-bottom: 15px;
    }
    .gdz-footer p {
        font-size: 12px;
        margin: 3px 0;
    }
    .gdz-footer .org {
        font-size: 13px;
    }

    /* 圆章 - 打印时强制显示 */
    .gdz-seal {
        width: 80px !important;
        height: 80px !important;
        opacity: 1 !important;
        display: block !important;
        visibility: visible !important;
    }
    .gdz-seal img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}