app/template/default/Block/Sp/Item/lm_item_show_pc_detail.twig line 1

Open in your IDE?
  1. <div id="item-detail">
  2. <style>
  3.     .from_sp {
  4.         display: block;
  5.         margin: 0 10px;
  6.         border: 1px solid #c9c9c9;
  7.         border-radius: 4px;
  8.         background: #f9f9f9;
  9.         background: -webkit-gradient(linear,left top, left bottom,from(#cfcfcf),color-stop(0.03, #eee),color-stop(0.45, #eee),color-stop(0.52, #d7d7d7),to(#eeeeee));
  10.         color: #333;
  11.         font-size: 16px;
  12.         font-weight: bold;
  13.         text-align: center;
  14.     }
  15.     .from_sp > img {
  16.         height: 16px;
  17.     }
  18.     .from_sp > span {
  19.         display: inline-block;
  20.         margin: 5px 0;
  21.     }
  22.     .tel {
  23.         display:block;
  24.         margin:0 10px;
  25.     }
  26.     .tel img {
  27.         width: 100%;
  28.         vertical-align: middle;
  29.     }
  30. </style>
  31. <div style="margin:10px 0;">
  32.     <a id="to-pc-detail-page" class="from_sp" href="/item/{{ goods.itemId }}.html">
  33.         <span>PC版ページで詳細を確認</span>
  34.         <img src="https://img0.land-mark.biz/ut_img/public_images/item_page_over/icon_window.png" alt="別タブ">
  35.     </a>
  36. </div>
  37. </div>