| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | <!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <meta name="viewport" content="width=device-width, initial-scale=1.0">  <meta http-equiv="X-UA-Compatible" content="ie=edge, Chrome=1">  <meta http-equiv="Cache-Control" content="no-cache">  <title>ChoozMo AI-PR Service</title>  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"    integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">  <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.11.2/css/all.css">  <link rel="stylesheet" href="/css/style.css"></head><body>  {{ partial "navbar.html" . }}  <main>    <section class="header">      <img src="/imgs/01.webp" alt="" class="header-lefttop">      <div class="row align-items-center g-0">        <div class="col-12 col-md-5 text-center ">          <h2 class="header-title">{{ .Params.packageTitle }}</h2>          <p class="text-center px-3">{{ .Params.packageSub }}          <p>        </div>        <div class="col-12 col-md-7">          <div class="header-right header-dm" style="background-image: url('{{ .Params.packageBg }}');">            <img src="/imgs/02.webp" alt="" class="header-right-cir">            <!-- <img src="imgs/影片.webp" alt="" class="header-right-video"> -->            <img class="header-right-magnifier" src="/imgs/放大鏡.webp" alt="">            <img class="header-right-bubble" src="/imgs/對話.webp" alt="">            <img class="header-right-linecir" src="/imgs/裝飾圓.webp" alt="">          </div>        </div>      </div>    </section>    <section class="category container text-center py-5 dm-description">      <h2 class="category-sub-h2"></h2>      <h5 style="font-weight: 300;">{{ .Params.description }}</h5>    </section>    <section class="category container text-center img-block">      <div class="row row-cols-1 row-cols-md-2">        <div class="col position-relative">          <img class="img-block-img " src="{{ .Params.block1_img }}" alt="">          <img class="img-block-linecir left" src="/imgs/裝飾圓.webp" alt="">        </div>        <div class="col my-auto">          <h4>{{ .Params.block1_title }}</h4>          <strong>{{ .Params.block1_strong }}</strong>          <p>{{ .Params.block1_text | markdownify }}</p>        </div>      </div>    </section>    <section class="category container text-center img-block">      <div class="row row-cols-1 row-cols-md-2">        <div class="col my-auto">          <h4>{{ .Params.block2_title }}</h4>          <strong>{{ .Params.block2_strong }}</strong>          <p>{{ .Params.block2_text | markdownify }}</p>        </div>        <div class="col position-relative">          <img class="img-block-img" src="{{ .Params.block2_img }}" alt="">          <img class="img-block-linecir right" src="/imgs/裝飾圓.webp" alt="">        </div>      </div>    </section>    <section class="category container text-center img-block">      <div class="row row-cols-1 row-cols-md-2">        <div class="col position-relative">          <img class="img-block-img" src="{{ .Params.block3_img }}" alt="">          <img class="img-block-linecir left" src="/imgs/裝飾圓.webp" alt="">        </div>        <div class="col my-auto">          <h4>{{ .Params.block3_title }}</h4>          <strong>{{ .Params.block3_strong }}</strong>          <p>{{ .Params.block3_text | markdownify }}</p>        </div>      </div>    </section>    <section class="category container text-center img-block">      <div class="row row-cols-1 row-cols-md-2">        <div class="col my-auto">          <h4>{{ .Params.block4_title }}</h4>          <strong>{{ .Params.block4_strong }}</strong>          <ul class="text-start img-block-list">            <li>{{ .Params.block4_list1 }}</li>            <li>{{ .Params.block4_list2 }}</li>            <li>{{ .Params.block4_list3 }}</li>          </ul>        </div>        <div class="col position-relative">          <img class="img-block-img" src="{{ .Params.block4_img }}" alt="">          <img class="img-block-linecir right" src="/imgs/裝飾圓.webp" alt="">        </div>      </div>    </section>  </main>  {{ partial "footer.html" . }}  <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"    integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"    crossorigin="anonymous"></script>  <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"    integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"    crossorigin="anonymous"></script></body></html>
 |