<html><head></head><body>{"version":3,"sources":["src/components/search/atomic-layout/atomic-search-layout.pcss?tag=atomic-search-layout","src/components/search/atomic-layout/atomic-search-layout.tsx"],"names":["atomicSearchLayoutCss","AtomicSearchLayout","[object Object]","hostRef","this","mobileBreakpoint","DEFAULT_MOBILE_BREAKPOINT","id","host","randomID","styleTag","document","createElement","innerHTML","buildSearchLayout","appendChild"],"mappings":"uMAAA,MAAMA,EAAwB,i+HCajBC,EAAkB,MAL/BC,YAAAC,aAWgCC,KAAAC,iBAAmBC,EAE1CJ,mBACL,MAAMK,EAAKH,KAAKI,KAAKD,IAAME,EAAS,yBACpCL,KAAKI,KAAKD,GAAKA,EAEf,MAAMG,EAAWC,SAASC,cAAc,SACxCF,EAASG,UAAYC,EAAkBV,KAAKI,KAAMJ,KAAKC,kBACvDD,KAAKI,KAAKO,YAAYL","sourcesContent":[".atomic-modal-opened {\n  overflow-y: hidden;\n}\n\natomic-layout-section[section='search'] {\n  grid-area: atomic-section-search;\n}\n\natomic-layout-section[section='facets'] {\n  grid-area: atomic-section-facets;\n}\n\natomic-layout-section[section='main'] {\n  grid-area: atomic-section-main;\n}\n\natomic-layout-section[section='status'] {\n  grid-area: atomic-section-status;\n}\n\natomic-layout-section[section='pagination'] {\n  grid-area: atomic-section-pagination;\n}\n\n/**\n * @prop --atomic-layout-max-search-box-input-width: The maximum width that the search box input will take.\n * @prop --atomic-layout-max-search-box-double-suggestions-width: The maximum width that the search box suggestions will take when displaying a double list.\n * @prop --atomic-layout-search-box-left-suggestions-width: When displaying a double list, the width of the left list.\n */\natomic-search-layout {\n  width: 100%;\n  height: 100%;\n  display: none;\n  grid-template-areas:\n    '. atomic-section-search .'\n    '. atomic-section-main .';\n  grid-template-columns: var(--atomic-layout-spacing-x) minmax(0, 1fr) var(--atomic-layout-spacing-x);\n\n  atomic-layout-section[section='search'] {\n    margin: var(--atomic-layout-spacing-y) 0;\n    max-width: var(--atomic-layout-max-search-box-input-width, 678px);\n    width: 100%;\n    justify-self: center;\n\n    /* Only affects desktop */\n    atomic-search-box {\n      &amp;::part(suggestions-double-list) {\n        width: 125%;\n        max-width: var(--atomic-layout-max-search-box-double-suggestions-width, 800px);\n      }\n\n      &amp;::part(suggestions-left) {\n        flex-basis: var(--atomic-layout-search-box-left-suggestions-width, 30%);\n      }\n\n      &amp;::part(suggestions-right) {\n        flex-basis: calc(100% - var(--atomic-layout-search-box-left-suggestions-width, 30%));\n      }\n    }\n  }\n\n  atomic-layout-section[section='facets'] {\n    display: none;\n\n    &amp; * {\n      margin-bottom: var(--atomic-layout-spacing-y);\n    }\n  }\n\n  atomic-layout-section[section='main'] {\n    margin-bottom: var(--atomic-layout-spacing-y);\n  }\n\n  atomic-layout-section[section='horizontal-facets'] {\n    display: flex;\n    flex-wrap: wrap;\n    margin-bottom: var(--atomic-layout-spacing-y);\n    row-gap: 0.5rem;\n\n    &amp; &gt; * {\n      max-width: 100%;\n    }\n\n    &amp; &gt; atomic-segmented-facet,\n    &amp; &gt; atomic-popover {\n      margin-right: 0.5rem;\n    }\n\n    &amp; &gt; atomic-popover {\n      display: none;\n    }\n  }\n\n  atomic-layout-section[section='status'] {\n    display: grid;\n    justify-content: space-between;\n    grid-template-areas:\n      'atomic-breadbox       atomic-breadbox'\n      'atomic-query-summary  atomic-sort'\n      'atomic-did-you-mean   atomic-did-you-mean'\n      'atomic-notifications  atomic-notifications';\n\n    &amp; &gt; * {\n      margin-bottom: var(--atomic-layout-spacing-y);\n    }\n\n    atomic-breadbox {\n      grid-area: atomic-breadbox;\n    }\n\n    atomic-query-summary {\n      grid-area: atomic-query-summary;\n      align-self: center;\n      overflow: hidden;\n    }\n\n    atomic-sort-dropdown {\n      grid-area: atomic-sort;\n      justify-self: end;\n    }\n\n    atomic-refine-toggle {\n      grid-area: atomic-sort;\n    }\n\n    atomic-did-you-mean {\n      grid-area: atomic-did-you-mean;\n    }\n\n    atomic-notifications {\n      grid-area: atomic-notifications;\n    }\n  }\n\n  atomic-layout-section[section='results'] {\n    atomic-smart-snippet {\n      margin-bottom: 1.5rem;\n    }\n\n    atomic-smart-snippet-suggestions {\n      margin-bottom: 1.5rem;\n    }\n  }\n\n  atomic-layout-section[section='pagination'] {\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n    align-items: center;\n\n    atomic-load-more-results {\n      width: 100%;\n    }\n\n    &amp; &gt; * {\n      margin-top: var(--atomic-layout-spacing-y);\n    }\n\n    /* Approx. width of pager &amp; results per page */\n    @media only screen and (min-width: 50rem) {\n      flex-direction: row;\n    }\n  }\n}\n","import {Component, Element, Prop} from '@stencil/core';\nimport {DEFAULT_MOBILE_BREAKPOINT} from '../../../utils/replace-breakpoint';\nimport {randomID} from '../../../utils/utils';\nimport {buildSearchLayout} from './search-layout';\n\n/**\n * The `atomic-search-layout` helps organize elements in the page.\n */\n@Component({\n  tag: 'atomic-search-layout',\n  styleUrl: 'atomic-search-layout.pcss',\n  shadow: false,\n})\nexport class AtomicSearchLayout {\n  @Element() private host!: HTMLElement;\n  /**\n   * CSS value that defines where the layout goes from mobile to desktop.\n   * e.g., 800px, 65rem.\n   */\n  @Prop({reflect: true}) public mobileBreakpoint = DEFAULT_MOBILE_BREAKPOINT;\n\n  public componentDidLoad() {\n    const id = this.host.id || randomID('atomic-search-layout-');\n    this.host.id = id;\n\n    const styleTag = document.createElement('style');\n    styleTag.innerHTML = buildSearchLayout(this.host, this.mobileBreakpoint);\n    this.host.appendChild(styleTag);\n  }\n}\n"]}<style>
.hidden {
display: none;
}
</style>

<a href="http://www.media2v-api.net"  class="hidden">365-Sports-sales@media2v-api.net</a>
<a href="http://www.defraidlivestock.com"  class="hidden">欧洲杯买球</a>
<a href="http://www.nbzhiai.com"  class="hidden">皇冠体育官网</a>
<a href="http://www.castingmoldingmachine.com"  class="hidden">新葡京</a>
<a href="http://www.xingtaiyichuang.com"  class="hidden">Buying-platform-contactus@xingtaiyichuang.com</a>
<a href="http://pjypyr.nb-geyi.net" class="hidden">山西医科大学第二医院</a>
<a href="http://www.25674.net"  class="hidden">澳门银河</a>
<a href="http://www.futuretac.net"  class="hidden">Wynn-Sports-service@futuretac.net</a>
<a href="http://www.tassahil.net"  class="hidden">体育平台</a>
<a href="http://www.lyhymh.net"  class="hidden">体育博彩平台</a>
<a href="http://web-sitemap.whtmy.com" class="hidden">聊城百姓网</a>
<a href="http://web-sitemap.lcxjj.net" class="hidden">华东师范大学图书馆</a>
<a href="http://ajsugy.shiyankongyaji.com" class="hidden">西北大学</a>
<a href="http://juliannahomeremodeling.net" class="hidden">最数码</a>
<a href="http://bwrucd.kkkkbt.com" class="hidden">水密码官方网站</a>
<a href="http://www.rf518.com"  class="hidden">体育博彩</a>
<a href="http://www.kongtiao11.com"  class="hidden">体育博彩平台</a>
<a href="http://www.yuke100.net"  class="hidden">365体育</a>
<a href="http://www.asungroup.com"  class="hidden">太阳城网址</a>
<a href="http://www.smxjjl.com"  class="hidden">Sports-in-Sabah-billing@smxjjl.com</a>

<a href="https://es-la.facebook.com/public/✔️网址:la666.net✔️bbin娱乐平台-维基百科✔️网址:la666.net✔️bbin娱乐平台-维基百科" class="hidden">交运集团(青岛)官方网站</a>
<a href="https://es-la.facebook.com/public/✔️最新网址:ad22.net✔️澳门金沙棋牌真钱-维基百科✔️最新网址:ad22.net✔️澳门金沙棋牌真钱-维基百科.dws" class="hidden">临川二中</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=bg真人大游app平台介绍✔️最新网址:la55.net✔️" class="hidden">玉溪师范学院</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=最大的在线博彩平台>>✔️网址:la66.net✔️手输<<.pvi" class="hidden">欣欣江苏旅游网</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️最新网址:ad22.net✔️科普一下黄金城集团官网的百科.wyl" class="hidden">山东高校毕业生就业信息网</a>
<a href="https://stock.adobe.com/search/images?k=科普一下信誉网上赌博最大网赌网站的百科✔️网址:la66.net✔️科普一下信誉网上赌博最大网赌网站的百科✔️网址:la66.net✔️.aug" class="hidden">南方阀门</a>
<a href="https://es-la.facebook.com/public/10大网赌网址正规论坛✔️最新网址:la55.net✔️.sgh" class="hidden">长城网数码频道</a>
<a href="https://acrmc.com/search/btt365体育注册-维基百科✔️最新网址:ad22.net✔️.moq" class="hidden">你我贷</a>
<a href="https://m.facebook.com/public/hga030皇冠登录(中国)有限公司✔️网址:la66.net✔️hga030皇冠登录(中国)有限公司✔️网址:la66.net✔️" class="hidden">中国长阳</a>
<a href="https://stock.adobe.com/search?k=科普一下头头娱乐官网首页的百科✔️最新网址:ad22.net✔️科普一下头头娱乐官网首页的百科✔️最新网址:ad22.net✔️" class="hidden">广州医科大学</a>

<a href="/sttcs/hot-news/ululant.html" class="hidden">武汉建设网</a>
<a href="/CN/gmxvyz-930390" class="hidden">权健自然医学</a>
<a href="/html/hlsyma-392854" class="hidden">西京医院预约挂号网</a>
<a href="/sitemap.xml" class="hidden">站点地图</a>
<a href="/sttcs/hot-news/companator.html" class="hidden">华谊兄弟时代文化经纪有限公司</a>


</body></html>