500 Internal Server Error<title><head> <body bgcolor="white"> <center><h1>500 Internal Server Error<h1><center> <hr><center>nginx<center> <body> <html> </a></h1> </div> <div class="entry-info" style="padding: 4px 0 0 0;"> <time class="entry-date published"> 发布于05月27日 </time> </div> <div class="intro mb20"> <p>我有一个网站已经运行很长时间了,今天我的一位同事告诉我,在更新到最新版本的chrome之后,该网站在几个地方出现了问题.</p> <p>我已经使用所使用的html和css创建了一个问题的快速小示例.问题似乎与使用列有关(据我所知)</p> <p></p> <div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false"> <div class="snippet-code"> <pre class="snippet-code-css lang-css prettyprint-override"><code>* { box-sizing: border-box; } .small-container[data-v-08ab2d5a] { max-width: 800px; margin: 0 auto; } .article[data-v-08ab2d5a] { -moz-column-count: 2; column-count: 2; grid-column-gap: 40px; -moz-column-gap: 40px; column-gap: 40px; } .article .text-row__column[data-v-08ab2d5a] { padding: 10px 0; flex: 0 0 50%; order: 0!important; font-family: Inter; font-size: 16px; font-weight: 400; font-stretch: normal; font-style: normal; letter-spacing: -.16px; text-align: left; color: #1d1f27; line-height: 24px; } [data-v-08ab2d5a] .style-success-story-quote { font-family: Inter; font-size: 22px; font-weight: 700; font-stretch: normal; font-style: normal; line-height: 1.14; letter-spacing: -.63px; color: #f4a331; padding-top: 30px; } .summary-image-outer[data-v-08ab2d5a] { padding: 0 50px; margin-top: 0; width: 100%; } .summary-image-wrapper[data-v-08ab2d5a] { padding-top: 100%; position: relative; width: 100%; background: red; } .summary-image-wrapper .summary-image[data-v-08ab2d5a] { position: absolute; top: 0; height: 100%; width: 100%; background-size: cover; background-position: 50%; border-radius: 50%; background-color: green; }</code></pre> <pre class="snippet-code-html lang-html prettyprint-override"><code><div class="small-container" data-v-08ab2d5a=""> <article class="article" data-v-08ab2d5a=""> <div class="text-row__column" data-v-08ab2d5a=""> <div data-v-08ab2d5a=""><strong class="text-row__title" data-v-08ab2d5a=""> A fertile environment for talent to grow </strong> <p class="style-default" data-v-08ab2d5a="">When asked, team members nearly always say the best thing about working at Xxxx Xxxxx is the people. Not only do they form strong relationships, but they appreciate each other’s talents and the opportunity to learn from one another. As Xxxxxxx (Training Specialist) says; <br></p> </div> </div> <div class="text-row__column" data-v-08ab2d5a=""> <div data-v-08ab2d5a=""> <!----> <p class="style-success-story-quote" data-v-08ab2d5a="">“It’s really inspiring to work with talented people.”</p> </div> </div> <div class="text-row__column" data-v-08ab2d5a=""> <div class="summary-image-outer" data-v-08ab2d5a=""> <div class="summary-image-wrapper" data-v-08ab2d5a=""> <div class="summary-image" style="" data-v-08ab2d5a=""></div> </div> </div> </div> <div class="text-row__column" data-v-08ab2d5a=""> <div data-v-08ab2d5a=""> <!----> <p class="style-default" data-v-08ab2d5a="">A close second is the opportunity to learn and grow within the organisation. Xxxxx (Data and Insights Manager) commented that, “at Xxxx Xxxxx you keep growing...working here broadens your mind and you start to think differently.” This also seems to be one of the reasons that people choose to work for Xxxx Xxxxx with Xxxxx (Product Designer), one of our newest team members, saying he was attracted to the “very fertile environment in terms of learning and developing.”<br><br>One of the other reasons people choose to work at Xxxx Xxxxx is their experience through the recruitment process. Through my own process of joining the company, I got the sense that the people I came into contact with were very genuine and very real. Overall it seemed like people really care about the company, the people and the products they co-create.<br><br>My first impression seems to be an accurate reflection of how other team members feel, as they frequently mention how emotionally invested they are in their work, their team and the success of the business. There is a culture of care and a sense that everybody feels they are part of something bigger than themselves. Now that I have been in the team for a few months, I have a feeling people take their work seriously but they don’t take themselves too seriously. There isn’t anyone with a big ego and the culture is team-oriented.</p> </div> </div> <div class="text-row__column" data-v-08ab2d5a=""> <div data-v-08ab2d5a=""> <!----> <p class="style-success-story-quote" data-v-08ab2d5a="">“I have a feeling people take their work seriously but they don’t take themselves too seriously.”<br></p> </div> </div> </article> </div></code></pre> </div> </div> <p><a href="https://jsfiddle.net/xeb3rLcg/1/" rel="nofollow noreferrer">https://jsfiddle.net/xeb3rLcg/1/</a></p> <p>在所有浏览器中,绿色球完全位于红色框内,而在最新的 chromium 合金中,球会随高度偏移.</p> </div> </div> </div> <div class="q-single mt20"> <div class="intro mb20"> <div class="layui-card"> <div class="layui-card-header"><h2>推荐答案</h2></div> <div class="layui-card-body"> <p>Can confirm that the latest Chrome version broke this.<br /> <sub>(102.0.5005.61)</sub></p> <hr /> <p>这是因为<code>summary-image-wrapper</code>是<code>display: block</code>.</p> <p>应用以下CSS规则将其更改为<code>display: inline-block</code>以修复问题:</p> <pre class="lang-css prettyprint-override"><code>.summary-image-wrapper[data-v-08ab2d5a] { padding-top: 100%; position: relative; width: 100%; background: red; display: inline-block; } </code></pre> <p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false"> <div class="snippet-code"> <pre class="snippet-code-css lang-css prettyprint-override"><code>* {box-sizing: border-box; } .small-container[data-v-08ab2d5a] {max-width: 800px; margin: 0 auto; } .article[data-v-08ab2d5a] {-moz-column-count: 2; column-count: 2; grid-column-gap: 40px; -moz-column-gap: 40px; column-gap: 40px; } .article .text-row__column[data-v-08ab2d5a] {padding: 10px 0; flex: 0 0 50%; order: 0!important; font-family: Inter; font-size: 16px; font-weight: 400; font-stretch: normal; font-style: normal; letter-spacing: -.16px; text-align: left; color: #1d1f27; line-height: 24px; } [data-v-08ab2d5a] .style-success-story-quote {font-family: Inter; font-size: 22px; font-weight: 700; font-stretch: normal; font-style: normal; line-height: 1.14; letter-spacing: -.63px; color: #f4a331; padding-top: 30px; } .summary-image-outer[data-v-08ab2d5a] {padding: 0 50px; margin-top: 0; width: 100%; } .summary-image-wrapper[data-v-08ab2d5a] { padding-top: 100%; position: relative; width: 100%; background: red; display: inline-block; } .summary-image-wrapper .summary-image[data-v-08ab2d5a] {position: absolute; top: 0; height: 100%; width: 100%; background-size: cover; background-position: 50%; border-radius: 50%; background-color: green; }</code></pre> <pre class="snippet-code-html lang-html prettyprint-override"><code><div class="small-container" data-v-08ab2d5a=""><article class="article" data-v-08ab2d5a=""><div class="text-row__column" data-v-08ab2d5a=""><div data-v-08ab2d5a=""><strong class="text-row__title" data-v-08ab2d5a=""> A fertile environment for talent to grow </strong> <p class="style-default" data-v-08ab2d5a="">When asked, team members nearly always say the best thing about working at Xxxx Xxxxx is the people. Not only do they form strong relationships, but they appreciate each other’s talents and the opportunity to learn from one another. As Xxxxxxx (Training Specialist) says; <br></p></div></div><div class="text-row__column" data-v-08ab2d5a=""><div data-v-08ab2d5a=""><!----> <p class="style-success-story-quote" data-v-08ab2d5a="">“It’s really inspiring to work with talented people.”</p></div></div><div class="text-row__column" data-v-08ab2d5a=""><div class="summary-image-outer" data-v-08ab2d5a=""><div class="summary-image-wrapper" data-v-08ab2d5a=""><div class="summary-image" style="" data-v-08ab2d5a=""></div></div></div></div><div class="text-row__column" data-v-08ab2d5a=""><div data-v-08ab2d5a=""><!----> <p class="style-default" data-v-08ab2d5a="">A close second is the opportunity to learn and grow within the organisation. Xxxxx (Data and Insights Manager) commented that, “at Xxxx Xxxxx you keep growing...working here broadens your mind and you start to think differently.” This also seems to be one of the reasons that people choose to work for Xxxx Xxxxx with Xxxxx (Product Designer), one of our newest team members, saying he was attracted to the “very fertile environment in terms of learning and developing.”<br><br>One of the other reasons people choose to work at Xxxx Xxxxx is their experience through the recruitment process. Through my own process of joining the company, I got the sense that the people I came into contact with were very genuine and very real. Overall it seemed like people really care about the company, the people and the products they co-create.<br><br>My first impression seems to be an accurate reflection of how other team members feel, as they frequently mention how emotionally invested they are in their work, their team and the success of the business. There is a culture of care and a sense that everybody feels they are part of something bigger than themselves. Now that I have been in the team for a few months, I have a feeling people take their work seriously but they don’t take themselves too seriously. There isn’t anyone with a big ego and the culture is team-oriented.</p></div></div><div class="text-row__column" data-v-08ab2d5a=""><div data-v-08ab2d5a=""><!----> <p class="style-success-story-quote" data-v-08ab2d5a="">“I have a feeling people take their work seriously but they don’t take themselves too seriously.”<br></p></div></div></article></div></code></pre> </div> </div> </p> </div> <div class="layui-card-footer"> <span id="share"></span> </div> </div> </div> </div> <div class="entry-content mt20"> <h2 class="tip_title">Html相关问答推荐</h2> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/78310481.html" title="CSS动画积分计数器">CSS动画积分计数器</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/78265299.html" title="将多个内联元素置于中心,而无需访问父级上的CSS">将多个内联元素置于中心,而无需访问父级上的CSS</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/78244236.html" title="如何防止SVG图标出现断行?">如何防止SVG图标出现断行?</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/78242102.html" title="单表单和多个提交(具有多个值)">单表单和多个提交(具有多个值)</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77768528.html" title="我无法使用背景图像css,因为我在VS代码中将照片放在不同的文件夹中">我无法使用背景图像css,因为我在VS代码中将照片放在不同的文件夹中</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77733118.html" title="如何设置弹性盒子容器的具体大小?">如何设置弹性盒子容器的具体大小?</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77713538.html" title="使用响应迅速的网格系统,将两列保持在同一行,同时允许更多列用于更大的屏幕">使用响应迅速的网格系统,将两列保持在同一行,同时允许更多列用于更大的屏幕</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77615554.html" title="使用Cypress循环遍历不一致的父对象">使用Cypress循环遍历不一致的父对象</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77509100.html" title="我无法动态嵌入Instagram帖子,因为无法分配Instagram固定链接">我无法动态嵌入Instagram帖子,因为无法分配Instagram固定链接</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77377733.html" title="带下划线的文本应该有延长的下划线,以使其图像悬停">带下划线的文本应该有延长的下划线,以使其图像悬停</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77226159.html" title="柔性盒内的物品;t覆盖整个宽度,即使设置为100%">柔性盒内的物品;t覆盖整个宽度,即使设置为100%</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77143773.html" title="HTML 邮箱在 Gmail 中无法正确显示">HTML 邮箱在 Gmail 中无法正确显示</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77067406.html" title="网格布局中的组件">网格布局中的组件</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/77044841.html" title="为什么带有截断的 contentedible div 在受约束时会在 Chrome 中添加空格">为什么带有截断的 contentedible div 在受约束时会在 Chrome 中添加空格</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/76818776.html" title="即使必填字段为空,HTML 表单也已成功提交">即使必填字段为空,HTML 表单也已成功提交</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/76677151.html" title="悬停时宽度从 0 过渡到自动">悬停时宽度从 0 过渡到自动</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/76377430.html" title="对齐页面左侧的单选按钮">对齐页面左侧的单选按钮</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/76205011.html" title="ul li 右侧的 Bootstrap 加载微调器">ul li 右侧的 Bootstrap 加载微调器</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/75073835.html" title="如何将我的输入值固定到 2022 年 12 月?">如何将我的输入值固定到 2022 年 12 月?</a></h3> <h3 class="geekgay layui-elip h11"><a href="https://www.learnfk.com/question/html/74850462.html" title="标题之间和之后的 Hr 线">标题之间和之后的 Hr 线</a></h3> <div class="clear"></div> </div> </div> <div class="layui-col-xs12 layui-col-md3 pl20 mt20"> <div class="layui-card"> <div class="layui-card-header">实用课程推荐</div> <div class="layui-card-body"> <ul class="geek-ul"> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100002101?code=m2hrYPUUTb3mZ4pii%2F5GbATkJG5MzmKOMu5cfeaaZNM%3D" rel="nofollow" title="">AI技术内参 -〔洪亮劼〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100009701?code=3NHgV7ijbuQq8HNPQ65NERihNeyO3rlUodrd%2F6JF%2FPM%3D" rel="nofollow" title="">持续交付36讲 -〔王潇俊〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="http://gk.link/a/106W0" rel="nofollow" title="">如何设计一个秒杀系统 -〔许令波〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100019601?code=4EAKafQVHxx61ni45obdeZOwHqCoEm5OZoZYKhs4nLM%3D" rel="nofollow" title="">代码精进之路 -〔范学雷〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100023901?code=GYlKg8fg7cWg-RppmPoxuE51%2F2Fq3e0j0vABLk%2FR66Y%3D" rel="nofollow" title="">Java并发编程实战 -〔王宝令〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100024701?code=d-nHnT2E4zuuVkTyMc%2FDAl590t%2F1R2eQxOcXllMCtpo%3D" rel="nofollow" title="">趣谈Linux操作系统 -〔刘超〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100063601?code=dI5pyoGvEmJ5v3Jw6bzw2Y1Ur8BNpQjXuOWxRysgNoM%3D" rel="nofollow" title="">物联网开发实战 -〔郭朝斌〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100066601?code=TWhLjQMnkp6QEIixQriQSOUcG4OkvVOWQoybH92BuZ8%3D" rel="nofollow" title="">成为AI产品经理 -〔刘海丰〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="http://gk.link/a/117o6" rel="nofollow" title="">PyTorch深度学习实战 -〔方远〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100104701?code=VhzPcbu1VEKRSNct7I5lY-9V9YYjsQO%2FTJaXWVBijzs%3D" rel="nofollow" title="">深入浅出分布式技术原理 -〔陈现麟〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100112401?code=T8aqeQiZt4hZRB9bSrrmE8Lq16OSd7m9xdzbvFQbaXA%3D" rel="nofollow" title="">说透元宇宙 -〔方军〕</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a target="_blank" href="https://time.geekbang.org/column/intro/100524201?code=LLLdxcb6DWWCtVwMRz2fTtetfQWQltGuhVsD6LEOHnk%3D" rel="nofollow" title="">快速上手C++数据结构与算法 -〔王健伟〕</a></p> </li> </ul> </div> </div> <div class="layui-card"> <div class="layui-card-header">相关教程推荐</div> <div class="layui-card-body"> <ul class="geek-ul"> <li class="geek-li layui-elip"> <p class="geekgay"><a href="https://www.learnfk.com/awk/awk-tutorial.html" title="Awk">无涯教程 - Awk教程</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a href="https://www.learnfk.com/clojure/clojure-tutorial.html" title="Clojure">无涯教程 - Clojure教程</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a href="https://www.learnfk.com/batch-script/batch-script-tutorial.html" title="批处理">无涯教程 - 批处理教程</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a href="https://www.learnfk.com/rspec/rspec-tutorial.html" title="RSpec">无涯教程 - RSpec教程</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a href="https://www.learnfk.com/tcl-tk/tcl-tk-tutorial.html" title="Tcl/Tk">无涯教程 - Tcl/Tk教程</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a href="https://www.learnfk.com/mfc/mfc-tutorial.html" title="MFC">无涯教程 - MFC教程</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a href="https://www.learnfk.com/python3/python3-tutorial.html" title="Python3">无涯教程 - Python3教程</a></p> </li> <li class="geek-li layui-elip"> <p class="geekgay"><a href="https://www.learnfk.com/python-guide/python-guide-tutorial-intro.html" title="Python中文指南">无涯教程 - Python中文指南教程</a></p> </li> </ul> </div> </div> </div> </div> </div> </div> <div class="layui-footer footer footer-doc"> <div class="layui-main"> <div style="margin: 10px 0;text-align: center;" class="frient-link"> <a href="https://www.xiuxiandou.com" target="_blank" title="休闲君评测"><span>休闲君评测</span></a> |  <a href="https://www.toolfk.com" title="Programmer's toolbox" target="_blank">TOOLFK工具网</a> |  <a href="https://www.poemfk.com" title="古文传承网" target="_blank">古诗文网</a> |  <a href="https://www.lxlinux.net" title="良许Linux教程网" target="_blank">良许Linux教程网</a> |  <a href="https://foofish.net" title="Python之禅" target="_blank">Python之禅</a> |  <a href="https://redstonewill.com" title="红色石头" target="_blank">红色石头</a> |  <a href="https://www.rudangla.com" title="入党申请书" target="_blank">入党申请书</a> |  </div> <p> © 2020 <a href="https://www.learnfk.com/" title="无涯教程">Hi LearnFk</a> <a href="https://support.qq.com/products/163835" target="_blank" rel="nofollow">意见反馈</a> <a href="/disclaimer.html" title="免责声明" rel="nofollow">免责声明</a> <a href="/aboutus.html" title="关于我们" rel="nofollow">关于我们</a> <a href="https://beian.miit.gov.cn" target="_blank" rel="nofollow">桂ICP备11002319号-3</a> <span class="pl20"> 友链&广告位+QQ: 1963612630 </span> </p> </div> </div> <script src="/guide/js/layer/layer.js" charset="utf-8" ></script> <script> IS_ARTICLE = false; SHOW_JUMP = false; IS_SIGN = ""; </script> <script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?autoload=true&lang=css" async></script> <script src="/guide/js/article.min.js?v4=1" async charset="utf-8"></script> <script src="/guide/js/clipboard.min.js" async charset="utf-8"></script> <ul class="layui-fixbar"> <li class="layui-icon layui-icon-transfer change-theme" lay-type="bar1" title="切换模式"></li> <li class="layui-icon layui-icon-print" lay-type="bar1" title="打印"></li> <li class="layui-icon layui-icon-login-wechat login-wechat" lay-type="bar1" title="关注我们"></li> <li class="layui-icon layui-fixbar-top layui-icon-top" lay-type="top" title="Top"></li> </ul> <script type="text/javascript"> $(function(){ $("body").delegate(".login-wechat","click",function(e){ e.stopPropagation(); var offset = "100px"; layer.open({ content: '<img src="/common/learnfk.jpg?v=2" width="220px;">', scrollbar: false, title:"关注我们", offset:offset }); }); $("a").click(function(){ if($(this).hasClass("demo-copy")){ return; } if($(this).hasClass("noload")){ return; } layer.load(); setTimeout(function(){ layer.closeAll(); },3000); }); $("pre").map(function(item){ if(!$(this).hasClass("prettyprint")){ $(this).addClass("prettyprint"); $(this).before('<div class="demo-view"><a href="javascript:;" class="demo-copy" title="Copy Code">复制代码</a></div>'); } }); $("body").delegate(".demo-view a.demo-copy", "click", function () { var that = $(this); var tran_text = that.parent(".demo-view").next(".prettyprint").text(); new ClipboardJS("a.demo-copy", { text: function (trigger) { layer.msg("复制成功"); return tran_text; } }); }); }); </script> <script type='text/javascript' src='https://platform-api.sharethis.com/js/sharethis.js#property=5fab445f7efc200012ec7197&product=sop' async='async' defer></script> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1234706520155299" crossorigin="anonymous"></script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-31321715-15"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-31321715-15'); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?fbe07850803babb5bcec215bbd0dc6a4"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script> (function(){ var el = document.createElement("script"); el.src = "https://lf1-cdn-tos.bytegoofy.com/goofy/ttzz/push.js?44422bbce4f642f723e6931a2fce9d632bd6aa77580fe4aad81efd527b26ed8a30632485602430134f60bc55ca391050b680e2741bf7233a8f1da9902314a3fa"; el.id = "ttzz"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(el, s); })(window) </script> </body> </html>