@charset "utf-8";

.inner {
	padding: 3.5rem 4rem;
}

@media (max-width: 800px) {
	.inner { padding: 2rem 1.8rem; }
}

        /* 标题区 */
        .hero {
            text-align: center;
            margin-bottom: 2rem;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #a6582c;      /* 温暖陶土色 */
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero h1 i {
            color: #ce8d6b;
            font-size: 2.8rem;
        }

        .hero .sub-title {
            font-size: 1.4rem;
            color: #6f4e3a;
            background: #fcf6f0;
            display: inline-block;
            padding: 0.5rem 2.2rem;
            border-radius: 60px;
            margin-top: 12px;
            font-weight: 400;
            border: 1px solid #eedacb;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }

        /* 高亮引言块 */
        .spotlight {
            background: #fef6ec;
            border-radius: 40px;
            padding: 1.8rem 2.5rem;
            margin: 2.5rem 0 3rem 0;
            border-left: 12px solid #c58f6b;
            font-size: 1.2rem;
            color: #3d322b;
            box-shadow: 0 6px 14px #f0e0d4;
        }

        .spotlight i {
            color: #b0704a;
            margin-right: 8px;
        }

        /* 三卡片 (三重好礼) */
        .gift-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 26px;
            margin: 2.8rem 0 2.2rem;
        }

        .gift-grid li {
            background: #fdf9f5;
            border-radius: 32px;
            padding: 2.2rem 1.5rem 1.8rem 1.5rem;
            border: 1px solid #f2dfd1;
            transition: all 0.25s;
            box-shadow: 0 10px 18px -10px rgba(130, 70, 40, 0.1);
        }


        .gift-grid li:hover {
            transform: translateY(-6px);
            border-color: #dbbca4;
            box-shadow: 0 30px 30px -15px #d9b9a2;
        }



        .gift-grid li h3 {
            font-size: 1.7rem;
            font-weight: 600;
            color: #8f572e;
            margin-bottom: 1rem;
            border-left: 5px solid #dbaa7b;
            padding-left: 1rem;
        }
        .gift-grid h3:before {
            content:  "🎁";
			margin-right:1rem;
        }
        .gift-grid li p {
            font-size: 1.05rem;
            color: #3f332b;
            margin-bottom: 0.5rem;
        }

        .gift-grid li strong {
            color: #b45f2b;
            font-weight: 600;
        }

        /* 温馨提示小条 */
        .legal-note {
            background: #efe3d7;
            border-radius: 50px;
            padding: 0.9rem 2rem;
            margin: 2rem 0 2.5rem;
            display: inline-block;
            font-style: italic;
            color: #5e4636;
            font-size: 1.05rem;
            box-shadow: inset 0 1px 4px #dccbbb;
        }

        .legal-note i {
            color: #a76f4b;
            margin-right: 6px;
        }

        hr.divider {
            border: none;
            border-top: 3px dotted #decbbd;
            margin: 2.5rem 0;
        }

        /* 展会信息双列区域 */
        .info-panel {
            background: #f7efe8;
            border-radius: 40px;
            padding: 2.5rem 2.8rem;
            margin: 2.8rem 0;
            align-items: center;
        }
        .info-flex {
            display: flex;
            align-items: center;
        }

        .info-text {
            list-style: none;
            margin: 1.5rem 0;
			flex:2.2;
        }

        .info-text li {
            margin-bottom: 1rem;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .info-text i {
            width: 30px;
            color: #a56e48;
            font-size: 1.4rem;
        }

        .quote-badge {
            background: #e2cfbd;
            border-radius: 60px;
            padding: 1rem 2rem;
            font-weight: 500;
            color: #3d2c1f;
            margin: 1.5rem 0 0;
            display: inline-block;
            box-shadow: 0 4px 8px #d8bcab;
        }

        .quote-badge i {
            color: #7f5539;
            margin-right: 8px;
        }

        .info-visual {
            flex: 1;
            min-width: 180px;
            background: linear-gradient(145deg, #dccbbd, #c7af9a);
            border-radius: 32px;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #44352a;
            box-shadow: inset 0 -4px 10px rgba(0,0,0,0.05), 0 8px 14px #c7ad98;
            font-size: 1.2rem;
            gap: 15px;
        }

        .info-visual i {
            font-size: 4rem;
            opacity: 0.8;
            color: #5e4030;
        }

        /* 现场直击画廊风格 */
        .gallery-section {
            margin: 3.8rem 0 2.5rem;
        }

        .gallery-section h2 {
            font-size: 2.2rem;
            font-weight: 650;
            color: #7b543b;
            margin-bottom: 0.5rem;
        }

        .gallery-desc {
            font-size: 1.15rem;
            color: #5e4b3c;
            margin-bottom: 2rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .gallery-item {
            background: #e4d4c6;
            border-radius: 28px;
            height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #4f3c2c;
            transition: 0.2s;
            box-shadow: 0 12px 18px -14px #ac8b74;
            border: 1px solid #f3e3d6;
            font-weight: 500;
        }

        .gallery-item i {
            font-size: 3rem;
            margin-bottom: 10px;
            opacity: 0.9;
            color: #7f5d45;
        }

        .gallery-item span {
            background: rgba(255,245,235,0.8);
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 1rem;
            backdrop-filter: blur(2px);
        }

        /* 结尾大行动号召 */
        .cta-banner {
            background: #b8825b;  /* 主暖色 */
            color: white;
            border-radius: 80px;
            padding: 2rem;
            text-align: center;
            margin: 3rem 0 1.7rem;
            box-shadow: 0 18px 30px -8px #b8825b;
        }

        .cta-banner p {
            font-size: 1.7rem;
            font-weight: 600;
            line-height: 1.3;
        }

        .cta-banner small {
            display: block;
            margin-top: 1rem;
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.95;
        }

        .cta-banner i {
            margin: 0 10px;
            color: #ffefd3;
        }

        .footer-legal {
            text-align: center;
            font-size: 0.95rem;
            color: #948072;
            border-top: 2px dashed #dac1b0;
            padding-top: 2rem;
            margin-top: 1rem;
        }

        /* 移动端调整 */
        @media (max-width: 700px) {
            .gift-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.4rem; gap: 8px; }
            .hero h1 i { font-size: 2rem; }
            .info-panel { padding: 1.8rem; }
            .cta-banner p { font-size: 1.4rem; }
            .inner { padding: 1.5rem; }
        }

        /* 点缀小元素 */
        .fa-heart, .fa-ring { color: #d27c4a; }


