久久精品国产亚洲高清|精品日韩中文乱码在线|亚洲va中文字幕无码久|伊人久久综合狼伊人久久|亚洲不卡av不卡一区二区|精品久久久久久久蜜臀AV|国产精品19久久久久久不卡|国产男女猛烈视频在线观看麻豆

    1. <style id="76ofp"></style>

      <style id="76ofp"></style>
      <rt id="76ofp"></rt>
      <form id="76ofp"><optgroup id="76ofp"></optgroup></form>
      1. 千鋒教育-做有情懷、有良心、有品質(zhì)的職業(yè)教育機(jī)構(gòu)

        手機(jī)站
        千鋒教育

        千鋒學(xué)習(xí)站 | 隨時隨地免費學(xué)

        千鋒教育

        掃一掃進(jìn)入千鋒手機(jī)站

        領(lǐng)取全套視頻
        千鋒教育

        關(guān)注千鋒學(xué)習(xí)站小程序
        隨時隨地免費學(xué)習(xí)課程

        當(dāng)前位置:首頁  >  技術(shù)干貨  > 行內(nèi)元素有哪些,塊級元素有哪些,空(void)元素有哪些?

        行內(nèi)元素有哪些,塊級元素有哪些,空(void)元素有哪些?

        來源:千鋒教育
        發(fā)布人:xqq
        時間: 2023-10-13 10:25:00 1697163900

        一、行內(nèi)元素有哪些,塊級元素有哪些,空(void)元素有哪些

        行內(nèi)元素: a、b、span、img、input、strong、select、label、em、button、textarea 。塊級元素: div、ul、li、dl、dt、dd、p、h1-h6、blockquote 。空元素: 即系沒有內(nèi)容的HTML元素,例如: br、meta、hr、link、input、img 。

        二、塊級元素、行內(nèi)元素、行內(nèi)塊元素的區(qū)別

        1、塊級元素 block

        塊級元素,顧名思義,該元素呈現(xiàn)“塊”狀,所以它有自己的寬度和高度,也就是可自定義 width 和 height。除此之外,塊級元素比較霸道,它獨自占據(jù)一行高度(float浮動除外),一般可以作為其他容器使用,可容納塊級元素和行內(nèi)元素。塊級元素有以下特點:

        每個塊級元素都是獨自占一行;高度,行高,外邊距(margin)以及內(nèi)邊距(padding)都可以控制;元素的寬度如果不設(shè)置的話,默認(rèn)為父元素的寬度(父元素寬度100%;多個塊狀元素標(biāo)簽寫在一起,默認(rèn)排列方式為從上至下。
         
        // 定義地址 // 定義表格標(biāo)題
        // 定義列表中定義條目
        // 定義文檔中的分區(qū)或節(jié)
        // 定義列表
        // 定義列表中的項目
        // 定義一個框架集
        // 創(chuàng)建 HTML 表單

        // 定義最大的標(biāo)題

        // 定義副標(biāo)題

        // 定義標(biāo)題

        // 定義標(biāo)題

        // 定義標(biāo)題
        // 定義最小的標(biāo)題
        // 創(chuàng)建一條水平線 // 元素為 fieldset 元素定義標(biāo)題
      2. // 標(biāo)簽定義列表項目 // 為那些不支持框架的瀏覽器顯示文本,于 frameset 元素內(nèi)部 <noscript> // 定義在腳本未被執(zhí)行時的替代內(nèi)容 <ol> // 定義有序列表 <ul> // 定義無序列表 <p style="text-indent: 2em;"> // 標(biāo)簽定義段落 <pre> // 定義預(yù)格式化的文本 <table> // 標(biāo)簽定義 HTML 表格 <tbody> // 標(biāo)簽表格主體(正文) <td> // 表格中的標(biāo)準(zhǔn)單元格 <tfoot> // 定義表格的頁腳(腳注或表注) <th> // 定義表頭單元格 <thead> // 標(biāo)簽定義表格的表頭 <tr> // 定義表格中的行</code></pre><p style="text-indent: 2em;"><strong>2、行內(nèi)元素 inline</strong></p><p style="text-indent: 2em;">行內(nèi)元素不可以設(shè)置寬(width)和高(height),但可以與其他行內(nèi)元素位于同一行,行內(nèi)元素內(nèi)一般不可以包含塊級元素。行內(nèi)元素的高度一般由元素內(nèi)部的字體大小決定,寬度由內(nèi)容的長度控制。 行內(nèi)元素有以下特點:</p>不會獨占一行,相鄰的行內(nèi)元素會排列在同一行里,直到一行排不下才會自動換行,其寬度隨元素的內(nèi)容而變化;高寬無效,對外邊距(margin)和內(nèi)邊距(padding)僅設(shè)置左右方向有效 上下無效;設(shè)置行高有效,等同于給父級元素設(shè)置行高;元素的寬度就是它包含的文字或圖片的寬度,不可改變;行內(nèi)元素中不能放塊級元素,a 鏈接里面不能再放鏈接。<pre class="wp-block-preformatted"><code> <a> // 標(biāo)簽可定義錨 <abbr> // 表示一個縮寫形式 <acronym> // 定義只取首字母縮寫 <b> // 字體加粗 <bdo> // 可覆蓋默認(rèn)的文本方向 <big> // 大號字體加粗 <br> // 換行 <cite> // 引用進(jìn)行定義 <code> // 定義計算機(jī)代碼文本 <dfn> // 定義一個定義項目 <em> // 定義為強(qiáng)調(diào)的內(nèi)容 <i> // 斜體文本效果 <kbd> // 定義鍵盤文本 <label> // 標(biāo)簽為 input 元素定義標(biāo)注(標(biāo)記) <q> // 定義短的引用 <samp> // 定義樣本文本 <select> // 創(chuàng)建單選或多選菜單 <small> // 呈現(xiàn)小號字體效果 <span> // 組合文檔中的行內(nèi)元素 <strong> // 加粗 <sub> // 定義下標(biāo)文本 <sup> // 定義上標(biāo)文本 <textarea> // 多行的文本輸入控件 <tt> // 打字機(jī)或者等寬的文本效果 <var> // 定義變量</code></pre><p style="text-indent: 2em;"><strong>3、行內(nèi)塊級元素 inline-block</strong></p><p style="text-indent: 2em;">行內(nèi)塊級元素,它既具有塊級元素的特點,也有行內(nèi)元素的特點,它可以自由設(shè)置元素寬度和高度,也可以在一行中放置多個行內(nèi)塊級元素。比如:input、img就是行內(nèi)塊級元素,它可設(shè)置高寬以及一行多個。具體特點如下:</p>高度、行高、外邊距以及內(nèi)邊距都可以控制;默認(rèn)寬度就是它本身內(nèi)容的寬度,不獨占一行,但是之間會有空白縫隙,設(shè)置它上一級的 font-size 為 0,才會消除間隙。<pre class="wp-block-preformatted"><code><button> <input> <textarea> <select> <img></code></pre><p style="text-indent: 2em;"><strong>4、元素類型轉(zhuǎn)換 display</strong></p><strong>display:block</strong> ,定義元素為塊級元素<strong>display : inline </strong>,定義元素為行內(nèi)元素<strong>display:inline-block</strong>,定義元素為行內(nèi)塊級元素<p style="text-indent: 2em;"><strong>5、總結(jié)</strong></p><p style="text-indent: 2em;">不管塊級元素還是行內(nèi)元素,區(qū)別:一是排列方式,二是寬高邊距設(shè)置,三是默認(rèn)寬度。</p>塊級元素會獨占一行,而內(nèi)聯(lián)元素和內(nèi)聯(lián)塊元素則會在一行內(nèi)顯示;塊級元素和內(nèi)聯(lián)塊元素可設(shè)置 width、height 屬性,而內(nèi)聯(lián)元素設(shè)置無效;塊級元素的 width 默認(rèn)為 100%,而內(nèi)聯(lián)元素則是根據(jù)其自身的內(nèi)容或子元素來決定其寬度;<p style="text-indent: 2em;">而行內(nèi)塊級元素又同時擁有塊級元素和行內(nèi)元素的特點。</p><p style="text-indent: 2em;"><strong><em>延伸閱讀1:CSS簡介</em></strong></p><p style="text-indent: 2em;">層疊樣式表(英文全稱:Cascading Style Sheets)是一種用來表現(xiàn)HTML(標(biāo)準(zhǔn)通用標(biāo)記語言的一個應(yīng)用)或XML(標(biāo)準(zhǔn)通用標(biāo)記語言的一個子集)等文件樣式的計算機(jī)語言。CSS不僅可以靜態(tài)地修飾網(wǎng)頁,還可以配合各種腳本語言動態(tài)地對網(wǎng)頁各元素進(jìn)行格式化。</p></div> <div id="tr37lz37v" class="tag-wrap" style="margin: 30px auto 0;width: 810px;display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: center;"> <span id="tr37lz37v" class="tag-label" style="font-size: 16px; line-height: 22px;margin-right: 6px;">tags:</span> <a id="tag_click" target="_blank" style="display: inline-block" href="http://www.2667701.com/tag-0-1.html">it技術(shù)干貨</a> </div> <div id="tr37lz37v" class="con-left-bottom"> 聲明:本站稿件版權(quán)均屬千鋒教育所有,未經(jīng)許可不得擅自轉(zhuǎn)載。 </div> <div id="tr37lz37v" class="left-form"> <div id="tr37lz37v" class="left-form-left"> <div id="tr37lz37v" class="h3">10年以上業(yè)內(nèi)強(qiáng)師集結(jié),手把手帶你蛻變精英</div> <div id="tr37lz37v" class="list-form-item"> <i class="ypfont yp-name"></i> <input type="text" placeholder="您的姓名" name="realname" id="realname" autocomplete="off" /> </div> <div id="tr37lz37v" class="list-form-item list-form-item2"> <i class="ypfont yp-shouji"></i> <input type="text" placeholder="您的電話" name="realphone" id="phone" autocomplete="off" /> </div> <div id="tr37lz37v" class="h4">請您保持通訊暢通,專屬學(xué)習(xí)老師24小時內(nèi)將與您1V1溝通</div> <div id="tr37lz37v" class="list-submit"> 免費領(lǐng)取<br /><i class="ypfont yp-dianjitianjia"></i> </div> </div> <div id="tr37lz37v" class="left-form-right"> <div id="tr37lz37v" class="h3">今日已有<span>369</span>人領(lǐng)取成功</div> <div id="tr37lz37v" class="swiper-container swiper-phone swiper-no-swiping"> <div id="tr37lz37v" class="swiper-wrapper"> <div id="tr37lz37v" class="swiper-slide"> 劉同學(xué) 138****2860 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 王同學(xué) 131****2015 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 張同學(xué) 133****4652 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 李同學(xué) 135****8607 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 楊同學(xué) 132****5667 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 岳同學(xué) 134****6652 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 梁同學(xué) 157****2950 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 劉同學(xué) 189****1015 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 張同學(xué) 155****4678 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 鄒同學(xué) 139****2907 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 董同學(xué) 138****2867 剛剛成功領(lǐng)取 </div> <div id="tr37lz37v" class="swiper-slide"> 周同學(xué) 136****3602 剛剛成功領(lǐng)取 </div> </div> </div> </div> </div> </div> <div id="tr37lz37v" class="c_page_bottom"> <div id="tr37lz37v" class="c_page_bottom_item"> <div id="tr37lz37v" class="c_page_bottom_item_up"></div> <p>上一篇</p> <a href="http://www.2667701.com/about/BBS/206146.html" title="206147" target="_blank">在app定制開發(fā)開發(fā)過程中有哪些需要注意的事項和問題?</a> </div> <div id="tr37lz37v" class="c_page_bottom_item"> <div id="tr37lz37v" class="c_page_bottom_item_next"></div> <p>下一篇</p> <a href="http://www.2667701.com/about/BBS/206148.html" target="_blank" title="206147">MySQL InnoDB聚簇索引B+樹的階(m)是怎樣決定的?</a> </div> </div> <div id="tr37lz37v" class="left-ad"> <a href="javascript:;" onclick="open53_pc()" rel="nofollow" class="left-ad-btn"> 免費打包獲取<i class="ypfont yp-dianjitianjia"></i> </a> </div> <!-- <div id="tr37lz37v" class="article"> <div id="tr37lz37v" class="article-left"> <h3 class="art-tit">猜你喜歡<span>LIKE</span></h3> <div id="tr37lz37v" class="art-con"> <a href="http://www.2667701.com/zcjy/linux/136992.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/2023/0428/1682660765277.png" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <h4>云計算技術(shù)就業(yè)前景以及發(fā)展方向怎樣?</h4> <span> <i class="ypfont yp-shijian"></i> 2023-08-07 </span> </div> </a> <a href="http://www.2667701.com/zcjy/html5/136991.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/2023/0428/1682660577662.png" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <h4>HTML5開發(fā)就業(yè)前景以及發(fā)展方向怎樣?</h4> <span> <i class="ypfont yp-shijian"></i> 2023-08-07 </span> </div> </a> <a href="http://www.2667701.com/zcjy/bigdata/136903.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/2023/0428/1682660971839.png" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <h4>大數(shù)據(jù)數(shù)據(jù)分析目前就業(yè)前景如何?</h4> <span> <i class="ypfont yp-shijian"></i> 2023-08-07 </span> </div> </a> </div> </div> <div id="tr37lz37v" class="article-right"> <h3 class="art-tit">最新文章<span>NEW</span></h3> <div id="tr37lz37v" class="art-con"> <a href="http://www.2667701.com/about/BBS/206208.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/tywzt/ty35.jpg" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <h4>兩個人同時操縱數(shù)據(jù)庫,怎么處理并發(fā)問題?</h4> <span> <i class="ypfont yp-shijian"></i> 2023-10-13 </span> </div> </a> <a href="http://www.2667701.com/about/BBS/206200.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/tywzt/tongyong8.jpg" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <h4>mysql varchar默認(rèn)值‘’、null和空區(qū)別在哪里?</h4> <span> <i class="ypfont yp-shijian"></i> 2023-10-13 </span> </div> </a> <a href="http://www.2667701.com/about/BBS/206197.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/tywzt/tongyong9.jpg" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <h4>大量讀寫的mysql表怎么優(yōu)化?</h4> <span> <i class="ypfont yp-shijian"></i> 2023-10-13 </span> </div> </a> </div> </div> </div> --> <div id="tr37lz37v" class="article article-hot" style="margin-top: 20px"> <div id="tr37lz37v" class="article-tit-box"> <div id="tr37lz37v" class="art-tit h3"> 相關(guān)推薦<span id="tr37lz37v" class="art-hot">HOT</span> </div> <!-- <a href="javascript:;" onclick="open53_pc()">更多>></a> --> </div> <div id="tr37lz37v" class="art-con"> <a href="http://www.2667701.com/about/BBS/206209.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/tywzt/ty66.jpg" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <div id="tr37lz37v" class="h4">Lucene/ ElasticSearch這類的搜索引擎和SQL數(shù)據(jù)庫里的查詢/全文檢索有什么區(qū)別?</div> <p> 一、Lucene/ ElasticSearch這類的搜索引擎和SQL數(shù)據(jù)庫里的查詢/全文檢索的區(qū)別es也可以理解成是一種數(shù)據(jù)庫,不僅能提供全文檢索功能,還可以支...<span>詳情>></span> </p> <span>2023-10-13 12:17:32</span> </div> </a> <a href="http://www.2667701.com/about/BBS/206204.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/tywzt/tongyong7.jpg" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <div id="tr37lz37v" class="h4">mysql的innodb通過nextkey lock解決了幻讀,為什么還說默認(rèn)隔離級別是可重復(fù)讀?</div> <p> 一、解決了幻讀,為什么還說默認(rèn)隔離級別是可重復(fù)讀MySQL的可重復(fù)讀隔離級別下是有“bug”的Snapshot Isolation,可以避免非write skew style的...<span>詳情>></span> </p> <span>2023-10-13 12:09:00</span> </div> </a> <a href="http://www.2667701.com/about/BBS/206202.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/tywzt/ty68.jpg" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <div id="tr37lz37v" class="h4">block為什么能夠捕獲外界變量?</div> <p> 一、block能夠捕獲外界變量的原因在定義Block的時候,外界變量被編譯器轉(zhuǎn)換成了結(jié)構(gòu)體成員變量,并且在調(diào)用Block的時候,這些變量的值會被拷貝...<span>詳情>></span> </p> <span>2023-10-13 12:03:20</span> </div> </a> <a href="http://www.2667701.com/about/BBS/206199.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/tywzt/ty61.jpg" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <div id="tr37lz37v" class="h4">CSS3有哪些特性?</div> <p> 一、CSS3的特性 1、圓角(border-radius)在CSS3中,可以用border-radius屬性來設(shè)置元素的圓角效果。這個屬性可以用來為元素的四個角分別設(shè)置圓...<span>詳情>></span> </p> <span>2023-10-13 11:56:19</span> </div> </a> <a href="http://www.2667701.com/about/BBS/206188.html" target="_blank" class="art-item"> <div id="tr37lz37v" class="art-item-img"> <img src="/tywzt/ty66.jpg" alt="" /> </div> <div id="tr37lz37v" class="art-item-info"> <div id="tr37lz37v" class="h4">Linux服務(wù)器為什么要創(chuàng)建用戶?</div> <p> 一、Linux服務(wù)器要創(chuàng)建用戶的原因1、安全性每個用戶都應(yīng)該有自己的用戶賬號,這樣可以限制對系統(tǒng)資源和文件的訪問權(quán)限。每個用戶都有自己的用戶...<span>詳情>></span> </p> <span>2023-10-13 11:37:23</span> </div> </a> </div> </div> </div> </div> <div id="tr37lz37v" class="con-right"> <div id="tr37lz37v" class="con-right-rywd"> <div id="tr37lz37v" class="rywd-tit h3"> <i class="ypfont yp-weinituijian"></i>熱門推薦 </div> <div id="tr37lz37v" class="swiper3"> <a href="http://www.2667701.com/about/BBS/206209.html" target="_blank"> <div id="tr37lz37v" class="ypfont yp-zhiding"></div> <p>Lucene/ ElasticSearch這類的搜索引擎和SQL數(shù)據(jù)庫里的查詢/全文檢索有什么區(qū)別?</p> <span id="tr37lz37v" class="a11">沸</span> </a> <a href="http://www.2667701.com/about/BBS/206208.html" target="_blank"> <div id="tr37lz37v" class="ypfont yp-1"></div> <p>兩個人同時操縱數(shù)據(jù)庫,怎么處理并發(fā)問題?</p> <span id="tr37lz37v" class="a21">熱</span> </a> <a href="http://www.2667701.com/about/BBS/206207.html" target="_blank"> <div id="tr37lz37v" class="ypfont yp-2"></div> <p>美國seer數(shù)據(jù)庫怎么用?</p> <span id="tr37lz37v" class="a31">熱</span> </a> <a href="http://www.2667701.com/about/BBS/206206.html" target="_blank"> <div id="tr37lz37v" class="ypfont yp-3"></div> <p>一個事務(wù)提交時,redo log和undo log以及bin log的生成流程是怎么樣的?</p> <span id="tr37lz37v" class="a41">新</span> </a> <a href="http://www.2667701.com/about/BBS/206205.html" target="_blank"> <div id="tr37lz37v" class="a5"> 4 </div> <p>MYSQL中on duplicatekey update有什么優(yōu)缺點?</p> </a> <a href="http://www.2667701.com/about/BBS/206204.html" target="_blank"> <div id="tr37lz37v" class="a6"> 5 </div> <p>mysql的innodb通過nextkey lock解決了幻讀,為什么還說默認(rèn)隔離級別是可重復(fù)讀?</p> </a> <a href="http://www.2667701.com/about/BBS/206203.html" target="_blank"> <div id="tr37lz37v" class="a7"> 6 </div> <p>Xshell是做什么用的?</p> </a> <a href="http://www.2667701.com/about/BBS/206202.html" target="_blank"> <div id="tr37lz37v" class="a8"> 7 </div> <p>block為什么能夠捕獲外界變量?</p> </a> <a href="http://www.2667701.com/about/BBS/206201.html" target="_blank"> <div id="tr37lz37v" class="a9"> 8 </div> <p>Gradle Transform到底是什么怎么用?</p> </a> <a href="http://www.2667701.com/about/BBS/206200.html" target="_blank"> <div id="tr37lz37v" class="a10"> 9 </div> <p>mysql varchar默認(rèn)值‘’、null和空區(qū)別在哪里?</p> </a> </div> <!-- <div id="tr37lz37v" class="swiper-button-prev swiper-button-prev3"> <i class="indexfont index-youjiantou-copy"></i> </div> <div id="tr37lz37v" class="swiper-button-next swiper-button-next3"> <i class="ypfont yp-huanyipi"></i>換一批 </div> --> </div> <!-- 面試題庫 --> <a href="javascript:;" rel="nofollow" onclick="open53_pc()" class="right-ad"> <img src="/images/right-ad.jpg" alt="" /></a> <!-- 技術(shù)干貨 --> <div id="tr37lz37v" class="con-right-rywd"> <div id="tr37lz37v" class="tk-tit h3"> <a class="left" href="http://www.2667701.com/about/BBS/" target="_blank"><i class="ypfont yp-fabujishu" ></i>技術(shù)干貨</a> <a href="http://www.2667701.com/about/BBS/" target="_blank">更多>></a> </div> <div id="tr37lz37v" class="swiper2 "> <a href="http://www.2667701.com/about/BBS/258998.html" class="swiper-slide" target="_blank"> <div id="tr37lz37v" class="img-box"> <img src="http://www.2667701.com//tywzt/ty33.jpg" alt="" /> </div> <div> <div id="tr37lz37v" class="h3">如何實現(xiàn)服務(wù)器負(fù)載均衡</div> <p>2023-12-06</p> </div> </a> <a href="http://www.2667701.com/about/BBS/258997.html" class="swiper-slide" target="_blank"> <div id="tr37lz37v" class="img-box"> <img src="http://www.2667701.com//tywzt/tongyong12.jpg" alt="" /> </div> <div> <div id="tr37lz37v" class="h3">linux有哪些優(yōu)勢和劣勢</div> <p>2023-12-06</p> </div> </a> <a href="http://www.2667701.com/about/BBS/258996.html" class="swiper-slide" target="_blank"> <div id="tr37lz37v" class="img-box"> <img src="http://www.2667701.com//tywzt/ty64.jpg" alt="" /> </div> <div> <div id="tr37lz37v" class="h3">linux需要驅(qū)動嗎</div> <p>2023-12-06</p> </div> </a> <a href="http://www.2667701.com/about/BBS/258995.html" class="swiper-slide" target="_blank"> <div id="tr37lz37v" class="img-box"> <img src="http://www.2667701.com//tywzt/tongyong7.jpg" alt="" /> </div> <div> <div id="tr37lz37v" class="h3">android與linux的區(qū)別</div> <p>2023-12-06</p> </div> </a> <a href="http://www.2667701.com/about/BBS/258994.html" class="swiper-slide" target="_blank"> <div id="tr37lz37v" class="img-box"> <img src="http://www.2667701.com//tywzt/ty64.jpg" alt="" /> </div> <div> <div id="tr37lz37v" class="h3">如何搭建基于容器的深度學(xué)習(xí)環(huán)境</div> <p>2023-12-06</p> </div> </a> </div> </div> <!-- 職場就業(yè) --> <div id="tr37lz37v" class="con-right-rywd"> <div id="tr37lz37v" class="tk-tit h3"> <a class="left" href="http://www.2667701.com/zcjy/" target="_blank"><i class="ypfont yp-minzhengtubiao1-46" ></i>職場就業(yè)</a> <a href="http://www.2667701.com/zcjy/" target="_blank">更多>></a> </div> <div id="tr37lz37v" class="swiper2 "> <a href="http://www.2667701.com/zcjy/wlaq/259025.html" class="swiper-slide zcjy" target="_blank"> <div id="tr37lz37v" class="img-box"> <img src="http://www.2667701.com//tywzt/ty41.jpg" alt="" /> </div> <div> <div id="tr37lz37v" class="h3">網(wǎng)絡(luò)安全軟件開發(fā)的就業(yè)前景</div> <p>2023-12-09</p> </div> </a> <a href="http://www.2667701.com/zcjy/python/259024.html" class="swiper-slide zcjy" target="_blank"> <div id="tr37lz37v" class="img-box"> <img src="http://www.2667701.com//tywzt/tongyong6.jpg" alt="" /> </div> <div> <div id="tr37lz37v" class="h3">學(xué)會python工程師后的就業(yè)前景</div> <p>2023-12-09</p> </div> </a> <a href="http://www.2667701.com/zcjy/java/259023.html" class="swiper-slide zcjy" target="_blank"> <div id="tr37lz37v" class="img-box"> <img src="http://www.2667701.com//tywzt/tongyong2.jpg" alt="" /> </div> <div> <div id="tr37lz37v" class="h3">學(xué)會java工程師后的就業(yè)前景</div> <p>2023-12-09</p> </div> </a> <a href="http://www.2667701.com/zcjy/linux/136992.html" class="swiper-slide zcjy" target="_blank"> <div id="tr37lz37v" class="img-box"> <img src="http://www.2667701.com//2023/0428/1682660765277.png" alt="" /> </div> <div> <div id="tr37lz37v" class="h3">云計算技術(shù)就業(yè)前景以及發(fā)展方向怎樣?</div> <p>2023-08-07</p> </div> </a> </div> </div> <!-- 快速通道 --> <div id="tr37lz37v" class="con-right-rywd"> <div id="tr37lz37v" class="rywd-tit h3"> <i class="ypfont yp-weinituijian"></i>快速通道</div> <ul class="kstd"> <li> <div id="tr37lz37v" class="h3">培訓(xùn)機(jī)構(gòu)</div> <a href="http://www.2667701.com/training/" target="_blank">了解培訓(xùn)相關(guān)</a> </li> <li> <div id="tr37lz37v" class="h3">就業(yè)前景</div> <a href="http://www.2667701.com/zcjy/" target="_blank">查看就業(yè)前景</a> </li> <li> <div id="tr37lz37v" class="h3">培訓(xùn)門檻</div> <a href="http://www.2667701.com/ljc/" target="_blank">了解學(xué)習(xí)門檻</a> </li> <li> <div id="tr37lz37v" class="h3">應(yīng)聘面試</div> <a href="http://www.2667701.com/interview/" target="_blank">常見面試考題</a> </li> <li> <div id="tr37lz37v" class="h3">就業(yè)服務(wù)</div> <a href="http://www.2667701.com/employ/" target="_blank" rel="nofollow">畢業(yè)推薦就業(yè)</a> </li> <li> <div id="tr37lz37v" class="h3">師資團(tuán)隊</div> <a href="http://www.2667701.com/teachers/" target="_blank" rel="nofollow">了解師資團(tuán)隊</a> </li> </ul> </div> </div> </div> </div> </div> </div> <link rel="stylesheet" href="/css/css3451.css"> <div id="tr37lz37v" class="edu-footer"> <div id="tr37lz37v" class="base"> <div id="tr37lz37v" class="con-left"> <img src="http://www.2667701.com/images_index/new-logo-white.png" class="edu-footer-logo" /> <p class="edu-footer-sologan">初心至善&nbsp;&nbsp;匠心育人</p> <p class="edu-footer-phoneNumber"> <i class="icon icon-dianhua1"></i>400-811-9990 <a href="javascript:;" onclick="open53_pc()" rel="nofollow">24小時在線咨詢</a> </p> </div> <div id="tr37lz37v" class="con-right"> <div id="tr37lz37v" class="edu-footer-about-links"> <div id="tr37lz37v" class="list1 list"> <div id="tr37lz37v" class="h4">關(guān)于千鋒</div> <ul> <li> <a href="http://www.2667701.com/about/" target="_blank" rel="nofollow">千鋒簡介</a> </li> <li> <a href="http://www.2667701.com/about/contact.html" target="_blank" rel="nofollow">聯(lián)系我們</a> </li> <li> <a href="http://www.2667701.com/qynx/" target="_blank" rel="nofollow">企業(yè)服務(wù)</a> </li> <li> <a href="http://www.2667701.com/topic/fygy.html" target="_blank" rel="nofollow">鋒益公益</a> </li> </ul> </div> <div id="tr37lz37v" class="list1 list"> <div id="tr37lz37v" class="h4">學(xué)習(xí)資源</div> <ul> <li> <a target="_blank" rel="nofollow">項目庫</a> </li> <li> <a href="http://www.2667701.com/open/" target="_blank" rel="nofollow">公開課</a> </li> <li> <a target="_blank" rel="nofollow">視頻教程</a> </li> <!-- <li> <a href="http://www.2667701.com/book/index.html?type=1" target="_blank" rel="nofollow">原創(chuàng)叢書</a> </li> --> </ul> </div> <div id="tr37lz37v" class="list1 list"> <div id="tr37lz37v" class="h4">服務(wù)指南</div> <ul> <li> <a href="javascript:;" onclick="open53_pc()" rel="nofollow">報名咨詢</a> </li> <li> <a href="javascript:;" onclick="open53_pc()" rel="nofollow">校區(qū)分布</a> </li> <li> <a href="http://www.2667701.com/sitemap.html" target="_blank" rel="nofollow">網(wǎng)站地圖</a> </li> <li> <a href="http://www.2667701.com/privacyPolicy.html" target="_blank" rel="nofollow">隱私聲明</a> </li> </ul> </div> </div> <div id="tr37lz37v" class="qrcode-box"> <div id="tr37lz37v" class="qrcode flex-center"> <img src="/wzt/qr-code-new.png" alt="千鋒教育" /> </div> <div id="tr37lz37v" class="h4">千鋒學(xué)習(xí)站 | <span>隨時隨地免費學(xué)</span></div> </div> <div id="tr37lz37v" class="qrcode-box"> <div id="tr37lz37v" class="qrcode flex-center"> <img src="http://www.2667701.com/images_index/qr-code-new2.png" alt="千鋒教育" /> </div> <div id="tr37lz37v" class="h4">掃一掃進(jìn)入千鋒手機(jī)站</div> </div> </div> </div> </div> <div id="tr37lz37v" class="footer-link"> <div id="tr37lz37v" class="base"> <div id="tr37lz37v" class="links-tab"> <span id="tr37lz37v" class="active">熱門課程</span> <!-- <span>熱點話題</span> --> <!-- <span>學(xué)習(xí)線路圖</span> --> <!-- <span>千鋒全國</span> --> </div> <div id="tr37lz37v" class="links-a active"> <!-- 編輯配置cms --> <a href="http://www.2667701.com/" target="_blank">IT培訓(xùn)</a> <a target="_blank">java培訓(xùn)</a> <a href="http://www.2667701.com/special/harmonyos.html" target="_blank">鴻蒙開發(fā)培訓(xùn)</a> <a href="http://www.2667701.com/special/emb.html" target="_blank">嵌入式培訓(xùn)</a> <a href="http://www.2667701.com/special/python.html" target="_blank">python培訓(xùn)</a> <a href="http://www.2667701.com/special/ui.html" target="_blank">UI培訓(xùn)</a> <a href="http://www.2667701.com/special/test.html" target="_blank">軟件測試培訓(xùn)</a> <a href="http://www.2667701.com/special/linux.html" target="_blank">云計算培訓(xùn)</a> <a href="http://www.2667701.com/special/bigdata.html" target="_blank">大數(shù)據(jù)培訓(xùn)</a> <a href="http://www.2667701.com/special/wlw.html" target="_blank">物聯(lián)網(wǎng)培訓(xùn)</a> <a href="http://www.2667701.com/special/wlw.html" target="_blank">游戲開發(fā)培訓(xùn)</a> <a href="http://www.2667701.com/special/qmt.html" target="_blank">全媒體運營培訓(xùn)</a> <a href="http://www.2667701.com/special/ysjj.html" target="_blank">影視剪輯培訓(xùn)</a> <a href="http://www.2667701.com/special/wlaq.html" target="_blank">網(wǎng)絡(luò)安全培訓(xùn)</a> </div> <!-- <div id="tr37lz37v" class="links-a"> --> <!-- 編輯配置cms3490 --> <!-- </div> --> <!-- <div id="tr37lz37v" class="links-a"> 編輯配置cms 3442 </div> --> <!-- <div id="tr37lz37v" class="links-a"> --> <!-- 編輯配置cms3443 --> <!-- </div> --> </div> <div id="tr37lz37v" class="copyright"> <p class="copyright-p"> Copyright 2011-2025 <a href="javascript:;" rel="nofollow" title="千鋒互聯(lián)">北京千鋒互聯(lián)科技有限公司</a> <a rel="nofollow"> 京ICP備12003911號-3 </a> <a target="_blank" rel="nofollow" style="display: inline-block;text-decoration: none;height: 20px;line-height: 20px;"> <img src="/wzt/beian.png" />京公網(wǎng)安備 11010802030320號 </a> </p> <p>千鋒教育 運營主體:北京千鋒互聯(lián)科技有限公司,屬具備計算機(jī)技術(shù)培訓(xùn)資質(zhì)的教育培訓(xùn)機(jī)構(gòu)。</p> </div> </div> <script src="http://www.2667701.com/js/jquery.min.js"></script> <script src="http://www.2667701.com/js/swiper4.5.0.min.js"></script> <script src="http://www.2667701.com/js/common1.js?111"></script> <script src="/js/highlight.min.js"></script> <script> hljs.highlightAll(); </script> <script> $(document).ready(function () { var href = $("#tag_click").attr("href"); if (href && href.indexOf("-0-") != -1) { var tag_code = $("#tag_click").html(); $.ajax({ url: "http://app.mobiletrain.org/tags.php", type: "get", dataType: "json", data: { tag_code: tag_code }, success: function (data) { $("#tag_click").attr( "href", "http://www.2667701.com/tag-" + data + "-1.html" ); }, }); } }); if ( location.href.indexOf("/about/info/") > -1 || location.href.indexOf("/about/news/") > -1 ) { document .getElementsByClassName("topicactive")[0] .classList.remove("topicactive"); document .getElementsByClassName("interviewactive")[0] .classList.remove("interviewactive"); } else if (location.href.indexOf("/interview/") > -1) { document .getElementsByClassName("topicactive")[0] .classList.remove("topicactive"); document .getElementsByClassName("xwzxactive")[0] .classList.remove("xwzxactive"); } else { document .getElementsByClassName("xwzxactive")[0] .classList.remove("xwzxactive"); document .getElementsByClassName("interviewactive")[0] .classList.remove("interviewactive"); } new Swiper(".swiper1", { loop: true, autoplay: true, pagination: { el: ".swiper-pagination1", }, }); // new Swiper(".swiper3", { // slidesPerView: 14, // slidesPerGroup: 14, // spaceBetween: 20, // loop: true, // direction: "vertical", // // navigation: { // // nextEl: ".swiper-button-next3", // // prevEl: ".swiper-button-prev3", // // }, // }); // new Swiper(".swiper4", { // slidesPerView: 6, // slidesPerGroup: 6, // spaceBetween: 21, // loop: true, // direction: "vertical", // navigation: { // nextEl: ".swiper-button-next4", // prevEl: ".swiper-button-prev4", // }, // }); // new Swiper(".swiper-phone", { // slidesPerView: 4, // autoplay: true, // spaceBetween: 0, // loop: true, // direction: "vertical", // }); // $(".select_txt,.selet_open").hover(function (event) { // $(".option").hide(); // $(this).siblings(".option").show(); // $(".select_box").removeClass("uiChooseActiveS"); // $(this).parent(".select_box").addClass("uiChooseActiveS"); // }); // $(document).click(function (event) { // var eo = $(event.target); // if ( // $(".select_box").is(":visible") && // eo.attr("class") != "option" && // !eo.parent(".option").length // ) // $(".option").hide(); // $(".select_box").removeClass("uiChooseActiveS"); // }); // $(".option a").click(function () { // var value = $(this).text(); // $(this).parent().siblings(".select_txt").text(value); // $(".select_value").val(value); // $(".option").hide(); // $(".select_box").removeClass("uiChooseActiveS"); // }); // $(".option").each(function (d) { // var optionSize = 6; // var optionLiHeight = $(".option a").height(); // var optionVarS = $(this).find("a").length - 2; // console.log(optionVarS, optionSize); // if (optionVarS > optionSize) { // var optionSheight = 175; // $(this).height(optionSheight); // } else { // var optionLiTal = optionVarS * optionLiHeight; // $(this).height(optionLiTal); // } // }); // $(".option,.uiChooseTable,.mod_select ").mouseleave(function () { // $(".select_box").removeClass("uiChooseActiveS"); // $(".option").hide(); // }); // $(".option a").each(function () { // $(this).html("第" + $(this).text() + "頁"); // }); new Swiper(".swiper-news", { autoplay: true, loop: true, direction: "vertical", }); $(".footer-link .links-tab span").click(function () { $(this).addClass("active").siblings().removeClass("active"); $(".footer-link .links-a").removeClass("active"); $(".footer-link .links-a").eq($(this).index()).addClass("active"); }); // 開班信息模塊 function kbxx () { // var courseId = // arguments.length > 0 && arguments[0] !== undefined // ? arguments[0] // : 13; var cityId = arguments[0] !== undefined ? arguments[0] : 10; $.ajax({ url: "https://owzsapi.qfedu.com/v1/api/openApiRestController/getAllClass?type=1", type: "GET", success: function success (res) { var r = ""; var curTime = new Date().getTime(); var filterArr = res.data.filter(function (v) { return v.cityId == cityId; }); console.log(filterArr); filterArr.reverse().forEach(function (v, idx) { // 最大條數(shù) if (idx > 14) return; // 判斷時間 var timeMode = "預(yù)約占座"; var kbTime = new Date(v.beginTime).getTime(); // 一個月 if (kbTime - curTime > 2592000000) { timeMode = "預(yù)約占座"; } if (kbTime - curTime > 0 && kbTime - curTime < 2642268030) { timeMode = "即將報滿"; } if (kbTime - curTime < 0) { timeMode = "爆滿開班"; } r += "<li id="tr37lz37v" class='swiper-slide'>\n <a href='javascript:;' rel='nofollow' onclick='open53_pc()'>\n <span>" + (v.name.replace(v.cityName, "").split("班")[0] + "班") + "</span>\n <span>" + v.beginTime + "</span>\n <span data-mode='" + (timeMode === "即將報滿" ? 0 : timeMode === "爆滿開班" ? 2 : 1) + "'>" + timeMode + " " + (timeMode === "即將報滿" ? "" : "") + "</span>\n </a>\n </li>"; }); $(".des-right-classes .swiper-wrapper").html(r); new Swiper(".swiper6", { slidesPerView: 5, slidesPerGroup: 5, spaceBetween: 10, loop: true, autoplay: true, direction: "vertical", }); }, }); } kbxx(10); $(".kbxx_showXq_btn").click(function () { $(".kbxx_showXq_box").css("display", "block"); }); $(".kbxx_showXq_box ul li").click(function () { kbxx($(this).data("cityid")); $(".choose-xq").html($(this).context.innerText); $(".kbxx_showXq_box").css("display", "none"); }); /******************表單提交start********************/ // (function () { // var timer = setInterval(function () { // if (window.$) { // clearInterval(timer); // $(".list-submit").click(function () { // var params = { // name: $("#realname").val(), // phone: $("#phone").val(), // }; // var phReg = /^[\u4e00-\u9fa5a-zA-Z0-9-]{2,20}$/; // var nameReg = /^(0|86|17951)?(13[0-9]|15[012356789]|166|17[3678]|18[0-9]|14[57])[0-9]8$/; // // if (!nameReg.test($("#realname").val())) { // // alert("請正確輸入姓名"); // // return; // // } // if (!phReg.test($("#phone").val())) { // alert("請正確輸入手機(jī)號"); // return; // } // $.ajax({ // type: "POST", // contentType: "application/json", // url: // "http://api-newzs.1000phone.net//v1/api/seoFormController/add", // data: JSON.stringify(params), // success: function success(res) { // alert(res.msg); // }, // }); // }); // } // }, 1000); // })(); /******************表單提交end********************/ console.log($(".content-left-box-child").height()); console.log($(".content-right-box-child").height()); if ( $(".content-left-box-child").height() > $(".content-right-box-child").height() ) { $(".content-right-box-child").addClass("sticky"); } else if ( $(".content-left-box-child").height() < $(".content-right-box-child").height() ) { $(".content-left-box-child").addClass("sticky"); } // var bot = // $(".con-right-rywd").offset().top + // $(".con-right-rywd").outerHeight() - // $(window).height() + // 30; // console.log(bot); // var left = $("#fixTop").offset().left; // $(document).scroll(function () { // var scroH = $(document).scrollTop(); // var footTop = $(".edu-footer").offset().top - $(window).height(); // if (scroH > bot) { // $("#fixTop").addClass("rig_fixed"); // $("#fixTop").css({ left: left }); // if (scroH > footTop) { // $("#fixTop").addClass("rig_bottom"); // $("#fixTop").css({ left: "909px" }); // } else { // $("#fixTop").removeClass("rig_bottom"); // // $("#fixTop").css({ left: "auto" }); // } // } else { // $("#fixTop").removeClass("rig_fixed"); // $("#fixTop").removeClass("rig_bottom"); // // $("#fixTop").css({ left: "auto" }); // } // }); </script> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.2667701.com/" title="&#20037;&#20037;&#31934;&#21697;&#22269;&#20135;&#20122;&#27954;&#39640;&#28165;&#124;&#31934;&#21697;&#26085;&#38889;&#20013;&#25991;&#20081;&#30721;&#22312;&#32447;&#124;&#20122;&#27954;&#118;&#97;&#20013;&#25991;&#23383;&#24149;&#26080;&#30721;&#20037;&#124;&#20234;&#20154;&#20037;&#20037;&#32508;&#21512;&#29436;&#20234;&#20154;&#20037;&#20037;&#124;&#20122;&#27954;&#19981;&#21345;&#97;&#118;&#19981;&#21345;&#19968;&#21306;&#20108;&#21306;&#124;&#31934;&#21697;&#20037;&#20037;&#20037;&#20037;&#20037;&#20037;&#34588;&#33216;&#65;&#86;&#124;&#22269;&#20135;&#31934;&#21697;&#49;&#57;&#20037;&#20037;&#20037;&#20037;&#20037;&#19981;&#21345;&#124;&#22269;&#20135;&#30007;&#22899;&#29467;&#28872;&#35270;&#39057;&#22312;&#32447;&#35266;&#30475;&#40635;&#35910;">&#20037;&#20037;&#31934;&#21697;&#22269;&#20135;&#20122;&#27954;&#39640;&#28165;&#124;&#31934;&#21697;&#26085;&#38889;&#20013;&#25991;&#20081;&#30721;&#22312;&#32447;&#124;&#20122;&#27954;&#118;&#97;&#20013;&#25991;&#23383;&#24149;&#26080;&#30721;&#20037;&#124;&#20234;&#20154;&#20037;&#20037;&#32508;&#21512;&#29436;&#20234;&#20154;&#20037;&#20037;&#124;&#20122;&#27954;&#19981;&#21345;&#97;&#118;&#19981;&#21345;&#19968;&#21306;&#20108;&#21306;&#124;&#31934;&#21697;&#20037;&#20037;&#20037;&#20037;&#20037;&#20037;&#34588;&#33216;&#65;&#86;&#124;&#22269;&#20135;&#31934;&#21697;&#49;&#57;&#20037;&#20037;&#20037;&#20037;&#20037;&#19981;&#21345;&#124;&#22269;&#20135;&#30007;&#22899;&#29467;&#28872;&#35270;&#39057;&#22312;&#32447;&#35266;&#30475;&#40635;&#35910;</a> <em id="76ofp"><small id="76ofp"><style id="76ofp"><object id="76ofp"></object></style></small></em><thead id="76ofp"><acronym id="76ofp"></acronym></thead><samp id="76ofp"><form id="76ofp"></form></samp><tbody id="76ofp"></tbody><fieldset id="76ofp"><video id="76ofp"><menuitem id="76ofp"><var id="76ofp"></var></menuitem></video></fieldset><th id="76ofp"></th><listing id="76ofp"></listing><acronym id="76ofp"></acronym><pre id="76ofp"></pre><output id="76ofp"><strike id="76ofp"><code id="76ofp"><output id="76ofp"></output></code></strike></output><tfoot id="76ofp"></tfoot><em id="76ofp"></em><video id="76ofp"></video><tt id="76ofp"><source id="76ofp"><optgroup id="76ofp"><blockquote id="76ofp"></blockquote></optgroup></source></tt><td id="76ofp"></td><thead id="76ofp"></thead><thead id="76ofp"><td id="76ofp"><small id="76ofp"></small></td></thead><font id="76ofp"></font><fieldset id="76ofp"><video id="76ofp"><ul id="76ofp"><thead id="76ofp"></thead></ul></video></fieldset><small id="76ofp"></small><th id="76ofp"><th id="76ofp"><ins id="76ofp"><label id="76ofp"></label></ins></th></th><sup id="76ofp"><output id="76ofp"><b id="76ofp"></b></output></sup><strong id="76ofp"></strong><wbr id="76ofp"><strong id="76ofp"><b id="76ofp"></b></strong></wbr><p id="76ofp"><ins id="76ofp"><div id="76ofp"></div></ins></p><form id="76ofp"></form><pre id="76ofp"></pre><th id="76ofp"></th><rp id="76ofp"><meter id="76ofp"></meter></rp><label id="76ofp"></label><s id="76ofp"><pre id="76ofp"></pre></s><optgroup id="76ofp"></optgroup><tbody id="76ofp"><ul id="76ofp"></ul></tbody><cite id="76ofp"></cite><dd id="76ofp"><s id="76ofp"></s></dd><pre id="76ofp"></pre><nav id="76ofp"></nav><small id="76ofp"><td id="76ofp"></td></small><u id="76ofp"></u><tt id="76ofp"><source id="76ofp"><optgroup id="76ofp"><blockquote id="76ofp"></blockquote></optgroup></source></tt><track id="76ofp"><mark id="76ofp"><cite id="76ofp"></cite></mark></track><strike id="76ofp"><nobr id="76ofp"><pre id="76ofp"></pre></nobr></strike><dl id="76ofp"></dl><style id="76ofp"></style><nobr id="76ofp"><pre id="76ofp"><sup id="76ofp"><option id="76ofp"></option></sup></pre></nobr><abbr id="76ofp"></abbr><li id="76ofp"><th id="76ofp"><th id="76ofp"></th></th></li><dfn id="76ofp"><strong id="76ofp"></strong></dfn><tbody id="76ofp"></tbody><delect id="76ofp"></delect> <optgroup id="76ofp"><button id="76ofp"></button></optgroup><small id="76ofp"><mark id="76ofp"><cite id="76ofp"></cite></mark></small><button id="76ofp"><tr id="76ofp"></tr></button><pre id="76ofp"></pre><div id="76ofp"></div><listing id="76ofp"><sup id="76ofp"></sup></listing><legend id="76ofp"></legend><abbr id="76ofp"><acronym id="76ofp"><acronym id="76ofp"><abbr id="76ofp"></abbr></acronym></acronym></abbr><strong id="76ofp"><pre id="76ofp"><input id="76ofp"><small id="76ofp"></small></input></pre></strong><video id="76ofp"></video><legend id="76ofp"></legend><ruby id="76ofp"></ruby><meter id="76ofp"></meter><xmp id="76ofp"></xmp><abbr id="76ofp"><strike id="76ofp"><nobr id="76ofp"></nobr></strike></abbr><pre id="76ofp"></pre><dfn id="76ofp"><strong id="76ofp"></strong></dfn><kbd id="76ofp"><cite id="76ofp"><rp id="76ofp"></rp></cite></kbd><u id="76ofp"></u><code id="76ofp"><output id="76ofp"></output></code><nav id="76ofp"></nav><div id="76ofp"></div><style id="76ofp"></style><ruby id="76ofp"></ruby><tbody id="76ofp"></tbody><th id="76ofp"></th><progress id="76ofp"><strong id="76ofp"></strong></progress><legend id="76ofp"><abbr id="76ofp"><big id="76ofp"><small id="76ofp"></small></big></abbr></legend><ol id="76ofp"></ol><big id="76ofp"><code id="76ofp"><output id="76ofp"><strong id="76ofp"></strong></output></code></big><acronym id="76ofp"><acronym id="76ofp"><abbr id="76ofp"><address id="76ofp"></address></abbr></acronym></acronym><dl id="76ofp"><track id="76ofp"></track></dl><table id="76ofp"></table><form id="76ofp"></form><table id="76ofp"><pre id="76ofp"></pre></table><mark id="76ofp"></mark><tbody id="76ofp"><dfn id="76ofp"><center id="76ofp"><tbody id="76ofp"></tbody></center></dfn></tbody><blockquote id="76ofp"></blockquote><optgroup id="76ofp"></optgroup><dfn id="76ofp"><center id="76ofp"><noscript id="76ofp"><meter id="76ofp"></meter></noscript></center></dfn><strong id="76ofp"><ruby id="76ofp"><progress id="76ofp"></progress></ruby></strong><button id="76ofp"><tr id="76ofp"></tr></button><tr id="76ofp"><fieldset id="76ofp"><video id="76ofp"><ol id="76ofp"></ol></video></fieldset></tr><ins id="76ofp"><label id="76ofp"><button id="76ofp"><acronym id="76ofp"></acronym></button></label></ins><form id="76ofp"></form><meter id="76ofp"></meter><input id="76ofp"><tt id="76ofp"></tt></input><legend id="76ofp"><strong id="76ofp"><samp id="76ofp"></samp></strong></legend><strong id="76ofp"><dl id="76ofp"><track id="76ofp"><dfn id="76ofp"></dfn></track></dl></strong><kbd id="76ofp"><dl id="76ofp"><pre id="76ofp"><dl id="76ofp"></dl></pre></dl></kbd> <input id="76ofp"><tt id="76ofp"><source id="76ofp"></source></tt></input><meter id="76ofp"></meter><del id="76ofp"><cite id="76ofp"></cite></del><track id="76ofp"><tbody id="76ofp"><noframes id="76ofp"><style id="76ofp"></style>

        <style id="76ofp"></style>
        <rt id="76ofp"></rt>
        <form id="76ofp"><optgroup id="76ofp"></optgroup></form>
            • 自贡市| 建宁县| 仁寿县| 丽水市| 芒康县| 福安市| 崇阳县| 柯坪县| 拜泉县| 湘乡市| 安达市| 柘荣县| 塔城市| 昆山市| 文化| 临漳县| 定日县| 阿图什市| 周宁县| 栾川县| 文登市| 乌海市| 宜兰县| 清远市| 含山县| 西吉县| 玛纳斯县| 合水县| 江油市| 柳林县| 旬邑县| 调兵山市| 咸丰县| 周宁县| 景泰县| 辽宁省| 兴仁县| 乐平市| 桐庐县| 罗山县| 永春县|
                <label id="xvi6c"></label>