香港郵政通函

香港郵政通函

A5 傳單 2000分起 1.35元一份

<!DOCTYPE html>
<html lang="zh-HK">
<head>
    <meta charset="UTF-8″>
    <meta name="viewport" content="width=device-width, initial-scale=1.0″>
    <title>香港郵政通函郵寄服務 | Hongkong Post Circular Service</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: “Microsoft JhengHei", “PingFang TC", “Noto Sans TC", Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        header {
            background: linear-gradient(135deg, #c8102e, #a00d26);
            color: white;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        header h1 {
            font-size: 2rem;
            margin-bottom: 5px;
        }
        header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        nav {
            background: #8b0a1e;
            padding: 12px 0;
            text-align: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 20px;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        nav a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        .container {
            max-width: 1100px;
            margin: 30px auto;
            padding: 0 20px;
        }
        .hero {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .hero-img {
            width: 100%;
            height: 320px;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(‘https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?w=1200&#8217;) center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        .hero-img h2 {
            font-size: 2.2rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        h2 {
            color: #c8102e;
            border-bottom: 3px solid #c8102e;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        h3 {
            color: #a00d26;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
        }
        ul {
            margin: 15px 0 15px 25px;
        }
        li {
            margin-bottom: 8px;
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .feature-card {
            background: #fff5f5;
            border: 1px solid #ffd6d6;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(200,16,46,0.15);
        }
        .feature-card img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 15px;
            border: 3px solid #c8102e;
        }
        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .photo-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .photo-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .photo-item p {
            padding: 12px;
            font-size: 0.95rem;
            text-align: center;
            background: #fafafa;
        }
        .cta {
            background: #c8102e;
            color: white;
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .cta a {
            display: inline-block;
            background: white;
            color: #c8102e;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            transition: background 0.3s;
        }
        .cta a:hover {
            background: #ffe0e0;
        }
        footer {
            background: #333;
            color: #ccc;
            text-align: center;
            padding: 25px 20px;
            font-size: 0.9rem;
        }
        footer a {
            color: #ff9999;
            text-decoration: none;
        }
        @media (max-width: 600px) {
            header h1 { font-size: 1.5rem; }
            .hero-img h2 { font-size: 1.5rem; }
            nav a { margin: 0 10px; font-size: 0.9rem; }
        }
    </style>
</head>
<body>
    <header>
        <div class="logo">🇭🇰 香港郵政 Hongkong Post</div>
        <h1>通函郵寄服務</h1>
        <p>Circular Service – 精準鎖定目標客戶的直銷方案</p>
    </header>

    <nav>
        <a href="#about">服務介紹</a>
        <a href="#features">服務特色</a>
        <a href="#photos">相片展示</a>
        <a href="#howto">申請步驟</a>
        <a href="#contact">聯絡我們</a>
    </nav>

    <div class="container">
        <!– 主視覺 –>
        <div class="hero">
            <div class="hero-img">
                <h2>無需地址標籤<br>即可精準接觸全港住宅及商業客戶</h2>
            </div>
        </div>

        <!– 服務介紹 –>
        <div class="content" id="about">
            <h2>什麼是「通函郵寄服務」?</h2>
            <p>香港郵政「通函郵寄服務」是一種針對目標區域而鎖定合適客戶群的宣傳途徑。透過<strong>不具姓名及地址</strong>的直銷函件服務,將推廣訊息傳達到目標商業及住宅單位,接觸潛在客戶,擴大商機。</p>
            <p>寄件人可以將宣傳資料寄給所選擇樓宇的所有住戶。資料可以放在信封投寄,亦可不連信封投寄,並且<strong>無須貼上郵票及註明收件人姓名地址</strong>。</p>
           
            <h3>可投遞物件</h3>
            <ul>
                <li>信封、名信片、單張、小冊子</li>
                <li>樣本及贈品</li>
                <li>百變形狀通函(特別設計)</li>
            </ul>
        </div>

        <!– 服務特色 –>
        <div class="content"