@charset "utf-8";
/* CSS Document */

/* ========== 幻灯片模块（全新独立版） ========== */
/* 独立命名空间，防止干扰其他 CSS */
        #emp8-banner-unique {
            width: 100%;
            background: #ffffff;
            overflow: hidden;
            position: relative;
        }

        #emp8-banner-unique .eb-slider-container {
            max-width: 1400px; /* 宽度要求 */
            height: 600px;     /* 高度要求 */
            margin: 0 auto;
            position: relative;
            background: #000;
        }

        #emp8-banner-unique .eb-slider-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }

        #emp8-banner-unique .eb-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            z-index: 1;
        }

        #emp8-banner-unique .eb-slide.eb-active {
            opacity: 1;
            z-index: 2;
        }

        #emp8-banner-unique .eb-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保证图片不变形铺满 1400*600 */
            display: block;
        }

        /* 箭头样式 */
        #emp8-banner-unique .eb-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(0,0,0,0.3);
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 30px;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #emp8-banner-unique .eb-arrow:hover { background: rgba(0,0,0,0.7); }
        #emp8-banner-unique .eb-prev { left: 20px; }
        #emp8-banner-unique .eb-next { right: 20px; }

        /* 分页点 */
        #emp8-banner-unique .eb-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        #emp8-banner-unique .eb-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        #emp8-banner-unique .eb-dot.eb-active {
            background: #fff;
            width: 30px; /* 激活时变成长条，增加设计感 */
            border-radius: 6px;
        }

        /* 移动端处理：虽然你要求 1400*600，但移动端需自适应高度 */
        @media (max-width: 1400px) {
            #emp8-banner-unique .eb-slider-container { height: auto; aspect-ratio: 1400 / 600; }
        }
		
	/*居中3图*/

    .jiaodian-module {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 40px 20px;
        background: transparent;
        box-sizing: border-box;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    }

    .jiaodian-container {
        width: 100%;
        max-width: 1280px;
        margin: 0;
    }

    .jiaodian-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .jiaodian-card {
        background: #ffffff;

        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
        display: block;
        color: inherit;
    }

    .jiaodian-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    }

    .jiaodian-image-wrapper {
        width: 100%;
        aspect-ratio: 16 / 9;
        background-color: #f5f7fa;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .jiaodian-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    /* 文字内容区：完全居中，左右对称内边距，文本居中 */
    .jiaodian-content {
        padding: 20px 16px 24px;
        text-align: center;
    }

    .jiaodian-desc {
        font-size: 0.9rem;
        color: #5a6e7c;
        line-height: 1.5;
        margin: 0;
    }

    @media (max-width: 900px) {
        .jiaodian-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .jiaodian-module {
            padding: 30px 20px;
        }
        .jiaodian-content {
            padding: 18px 16px 20px;
        }
    }

    @media (max-width: 600px) {
        .jiaodian-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .jiaodian-content {
            padding: 16px 16px 20px;
        }
        .jiaodian-desc {
            font-size: 0.85rem;
        }
    }

    .jiaodian-module * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

/*5图*/

    .fd3-module {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 40px 20px;
        background: transparent;
        box-sizing: border-box;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    }

    .fd3-container {
        width: 100%;
        max-width: 1400px;
        margin: 0;
    }

    /* 头部区域：标题 + 简介 + 分割线 */
    .fd3-header {
        text-align: center;
        margin-bottom: 20px;  /* 分割线与下方图片保持20px距离 */
    }

    .fd3-title {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 16px 0;
        color: #1a2c3e;
        letter-spacing: -0.3px;
    }

    .fd3-intro {
        font-size: 1rem;
        color: #6a7c8f;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto 24px auto;
    }

    /* 点状分割线 */
    .fd3-divider {
        width: 100%;
        max-width: 200px;
        height: auto;
        border: none;
        background: transparent;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    /* 使用伪元素或点状样式：创建三个小圆点 */
    .fd3-divider::before,
    .fd3-divider::after,
    .fd3-divider span {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        background-color: #2c6b9e;
        border-radius: 50%;
    }

    .fd3-divider::before,
    .fd3-divider::after {
        content: "";
    }

    /* 如果浏览器不支持伪元素，后备方案：直接使用背景图，但为了可靠，使用flex加点状 */
    /* 更简洁可靠的点状实现 */
    .fd3-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 0;
    }
    .fd3-dot {
        width: 6px;
        height: 6px;
        background-color: #2c6b9e;
        border-radius: 50%;
    }

 /* 补全响应式样式，确保移动端正常 */
    @media (max-width: 900px) {
        .fd3-module .fd3-top {
            grid-template-columns: 1fr !important;
        }
        .fd3-module .fd3-top > div:first-child {
            grid-template-columns: 1fr !important;
        }
        .fd3-module [style*="grid-template-columns: 1fr 1fr"] {
            grid-template-columns: 1fr !important;
        }
        .fd3-module {
            padding: 30px 16px !important;
        }
        .fd3-title {
            font-size: 1.6rem !important;
        }
        .fd3-intro {
            font-size: 0.9rem !important;
            padding: 0 16px !important;
        }
    }
	
	
	/*联系我们*/

    /* 完全独立，不影响外部任何模块 */
    .lxwm-contact-module {
        width: 100%;
        height: 120px;
        background-color: #c0c4c8;
        background-image: radial-gradient(circle at 15px 20px, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px);
        background-size: 30px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        box-sizing: border-box;
        isolation: isolate;
        position: relative;
    }
    .lxwm-inner {
        text-align: center;
        max-width: 90%;
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    .lxwm-question {
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c3e4e;
        letter-spacing: 0.5px;
        text-shadow: 0 1px 1px rgba(255,255,255,0.3);
        margin: 0;
        line-height: 1.3;
    }
    .lxwm-intro {
        font-size: 0.85rem;
        color: #3a4e62;
        margin: 0;
        line-height: 1.4;
        max-width: 600px;
        font-weight: 500;
    }
    .lxwm-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #2c5a7a;
        border: none;
        border-radius: 40px;
        padding: 6px 28px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.25s ease;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        margin-top: 2px;
        letter-spacing: 0.5px;
    }
    .lxwm-btn:hover {
        transform: translateY(-2px);
        background: #1e4a6e;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        color: #ffffff;
    }
    .lxwm-contact-module * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    @media (max-width: 640px) {
        .lxwm-contact-module {
            height: 120px;
        }
        .lxwm-question {
            font-size: 1.1rem;
        }
        .lxwm-intro {
            font-size: 0.72rem;
            max-width: 280px;
        }
        .lxwm-btn {
            padding: 5px 20px;
            font-size: 0.75rem;
        }
        .lxwm-inner {
            gap: 4px;
        }
    }
    @media (max-width: 380px) {
        .lxwm-intro {
            font-size: 0.68rem;
        }
        .lxwm-question {
            font-size: 1rem;
        }
    }
/* ========== 独立模块：一行两个，左文右图卡片 ========== */
.mokuai-wrapper {
    width: 100%;
    margin: 40px 0 0 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f5f7ff 0%, #eef1fa 100%);
}

/* 内容容器：严格居中 */
.mokuai-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 48px 0;
    box-sizing: border-box;
}

/* 一行两个布局 */
.mokuai-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* 单个卡片：高度300px */
.mokuai-card {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mokuai-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* 左侧内容区 */
.mokuai-left {
    flex: 1;
    padding: 28px 24px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    text-align: center;
}

/* 文字内容组 */
.mokuai-text-group {
    width: 100%;
}

/* 标题：居中，下移20px */
.mokuai-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2c3e;
    margin: 20px 0 0 0;
    line-height: 1.35;
    text-align: center;
}

/* 简介：居中，标题下方25px（原15px+10px） */
.mokuai-intro {
    font-size: 0.85rem;
    color: #5a6e7c;
    line-height: 1.55;
    margin: 25px 0 0 0;
    text-align: center;
}

/* 按钮容器：底部居中，保持原来不变 */
.mokuai-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-bottom: 28px;
}

.mokuai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2c5a7a;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    width: auto;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mokuai-btn:hover {
    background: #1e4a6e;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.mokuai-arrow {
    transition: transform 0.2s ease;
    font-size: 1rem;
}

.mokuai-btn:hover .mokuai-arrow {
    transform: translateX(4px);
}

/* 右侧图片区 */
.mokuai-right {
    flex: 1;
    height: 100%;
    overflow: hidden;
    background-color: #eef2f6;
}

.mokuai-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mokuai-card:hover .mokuai-img {
    transform: scale(1.03);
}

/* 响应式：平板（≤900px）改为一行一个 */
@media (max-width: 900px) {
    .mokuai-container {
        width: 92%;
        padding: 36px 0;
    }
    .mokuai-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mokuai-card {
        height: auto;
        min-height: 280px;
    }
    .mokuai-left {
        padding: 24px;
    }
}

/* 响应式：手机（≤600px） */
@media (max-width: 600px) {
    .mokuai-container {
        width: 94%;
        padding: 28px 0;
    }
    .mokuai-card {
        flex-direction: column;
        height: auto;
    }
    .mokuai-left {
        padding: 24px 20px;
    }
    .mokuai-right {
        width: 100%;
        height: 160px;
    }
    .mokuai-title {
        font-size: 1.2rem;
        margin: 15px 0 0 0;
    }
    .mokuai-intro {
        margin: 20px 0 0 0;
    }
    .mokuai-btn-wrapper {
        padding-bottom: 20px;
    }
}

.mokuai-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




/* ========== 佛教共修模块：左图右表 ========== */
.fjgx-wrapper {
    width: 100%;
    margin: 40px 0 0 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f5efe6 0%, #e8e0d4 100%);
    display: block;
}

.fjgx-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 48px 20px;
    box-sizing: border-box;
}

.fjgx-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
}

/* 左侧图片区 */
.fjgx-left {
    position: relative;
    overflow: hidden;
}

.fjgx-image-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.fjgx-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 560px;
}

.fjgx-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(139, 69, 19, 0.85), rgba(160, 100, 40, 0.8));
    padding: 20px 24px;
    text-align: center;
}

.fjgx-overlay-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.fjgx-quote-text {
    font-size: 1rem;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
}

/* 右侧表单区 - 关键修改：使用 flex 让按钮自动到底部 */
.fjgx-right {
    padding: 36px 32px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

/* 表单头部 */
.fjgx-form-header {
    text-align: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.fjgx-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
}

.fjgx-subtitle {
    font-size: 0.9rem;
    color: #b87c4f;
    margin: 0;
}

/* 表单主体 - 占据剩余空间，将按钮推到底部 */
.fjgx-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 表单字段容器 - 自动撑开 */
.fjgx-fields {
    flex: 1;
}

/* 表单字段 */
.fjgx-field {
    margin-bottom: 16px;
}

.fjgx-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5a3e2b;
    margin-bottom: 6px;
}

.fjgx-required {
    color: #c0392b;
    font-size: 1rem;
}

.fjgx-input,
.fjgx-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0d5c8;
    border-radius: 12px;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.25s ease;
    background: #fefcf8;
    box-sizing: border-box;
}

.fjgx-input:focus,
.fjgx-textarea:focus {
    outline: none;
    border-color: #c49a6c;
    box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.2);
}

.fjgx-textarea {
    resize: vertical;
    min-height: 70px;
}

/* 单选框组 */
.fjgx-radio-group {
    display: flex;
    gap: 24px;
    align-items: center;
}

.fjgx-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #5a3e2b;
    cursor: pointer;
}

.fjgx-radio input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #c49a6c;
}

/* 提交按钮容器 - 底部对齐，水平居中 */
.fjgx-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-shrink: 0;
}

.fjgx-btn {
    background: linear-gradient(135deg, #c49a6c, #b87c4f);
    border: none;
    border-radius: 40px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(184, 124, 79, 0.3);
    min-width: 140px;
}

.fjgx-btn:hover {
    background: linear-gradient(135deg, #b87c4f, #a0683e);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 124, 79, 0.4);
}

.fjgx-btn-icon {
    transition: transform 0.2s ease;
    font-size: 1.1rem;
}

.fjgx-btn:hover .fjgx-btn-icon {
    transform: translateX(4px);
}

/* 响应式：平板（≤900px）改为上下布局 */
@media (max-width: 900px) {
    .fjgx-container {
        padding: 36px 20px;
    }
    .fjgx-card {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .fjgx-image {
        min-height: 280px;
    }
    .fjgx-right {
        padding: 32px 28px;
    }
    .fjgx-title {
        font-size: 1.5rem;
    }
    .fjgx-btn {
        padding: 12px 28px;
    }
}

/* 响应式：手机（≤600px） */
@media (max-width: 600px) {
    .fjgx-container {
        padding: 24px 16px;
    }
    .fjgx-right {
        padding: 24px 20px;
    }
    .fjgx-title {
        font-size: 1.3rem;
    }
    .fjgx-subtitle {
        font-size: 0.8rem;
    }
    .fjgx-field {
        margin-bottom: 14px;
    }
    .fjgx-input,
    .fjgx-textarea {
        padding: 10px 12px;
    }
    .fjgx-radio-group {
        gap: 16px;
    }
    .fjgx-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

.fjgx-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*首页搜索*/
.ecms8-search-wrapper {
    --e-primary: #1a1a1a;
    --e-accent: #0066ff;
    --e-bg: #ffffff;
    --e-border: rgba(0, 0, 0, 0.1);
    --e-text-main: #2d3436;
    --e-text-sub: #636e72;
    width: 100%;
    padding: 80px 0;
    background-color: #fafafa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

.ecms8-search-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ecms8-search-lead {
    flex: 0 0 auto;
    border-left: 4px solid var(--e-primary);
    padding-left: 20px;
}

.ecms8-search-lead h2 { font-size: 28px; margin: 0; color: var(--e-primary); font-weight: 800; text-transform: uppercase; }
.ecms8-search-lead p { font-size: 14px; color: var(--e-text-sub); margin-top: 5px; }

.ecms8-search-main { flex: 1; }

/* PC端输入框组合 */
.ecms8-input-group {
    display: flex;
    background: var(--e-bg);
    border: 1px solid var(--e-border);
    padding: 8px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.ecms8-input-group:focus-within {
    border-color: var(--e-accent);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
}

.ecms8-field { 
    flex: 1; 
    border: none; 
    outline: none; 
    padding: 0 30px; 
    font-size: 16px; 
    background: transparent;
}

.ecms8-btn {
    background: var(--e-primary);
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 50px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.ecms8-btn:hover { background: var(--e-accent); }

.ecms8-trending { margin-top: 15px; padding-left: 25px; font-size: 13px; color: var(--e-text-sub); }
.ecms8-trending a { color: var(--e-text-main); text-decoration: none; margin-right: 15px; border-bottom: 1px solid transparent; transition: 0.3s; }
.ecms8-trending a:hover { color: var(--e-accent); border-bottom-color: var(--e-accent); }

/* --- 响应式优化 --- */

@media (max-width: 992px) {
    .ecms8-search-lead { display: none !important; } /* 隐藏文字 */
    .ecms8-search-container { padding: 0 30px; }
}

@media (max-width: 640px) {
    .ecms8-search-wrapper { padding: 50px 0; } /* 增加模块上下留白 */
    
    .ecms8-input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        gap: 16px; /* 关键：增加输入框和按钮之间的垂直间距 */
    }
    
    .ecms8-field {
        background: #fff;
        border: 1px solid var(--e-border);
        border-radius: 12px;
        height: 55px; /* 增加高度更易点击 */
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .ecms8-btn {
        width: 100%;
        height: 55px;
        border-radius: 12px;
        justify-content: center;
    }

    .ecms8-trending {
        margin-top: 25px; /* 增加热门标签与上方按钮的间距 */
        text-align: center;
        padding-left: 0;
        line-height: 2.2;
    }
}
