12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!DOCTYPE html>
- <html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="https://www.thymeleaf.org ">
- <head>
- <title>采美365网-医美采购平台-生美采购平台-美业一站式正品采购平台</title>
- <template th:replace="components/head-link"></template>
- <style>
- body {
- background: #f6f6f6;
- position: relative;
- }
- /** PC端 */
- @media screen and (min-width:768px){
- body {
- min-width: 1184px;
- }
- #errorContent{
- width:1200px!important;
- min-height:500px!important;
- height:auto!important;
- overflow: hidden;
- border:none;
- margin: auto;
- padding: 160px;
- }
- #errorContent p{
- color: #666666;
- font-size: 20px;
- padding: 60px;
- }
- #errorContent a{
- width: 190px;
- height: 44px;
- text-align: center;
- background: #e15616;
- color: #fff;
- display: inline-block;
- line-height: 44px;
- border-radius: 2px;
- }
- }
- /** 移动端 */
- @media screen and (max-width:768px){
- #errorContent{
- width: 100%!important;
- min-height:100vw!important;
- height:auto!important;
- overflow: hidden;
- border: none;
- padding-top: 23.7vw;
- }
- #errorContent img{
- width: 53.7vw;
- height: 23.2vw;
- }
- #errorContent p{
- font-size: 3.4vw;
- color: #666666 ;
- padding: 7.8vw 7.8vw 5vw;
- }
- #errorContent a{
- width: 36vw;
- height: 11.2vw;
- line-height: 11.2vw;
- color: #fff;
- background: #e15616;
- border-radius: .53vw;
- display: inline-block;
- }
- }
- </style>
- </head>
- <body>
- <!-- 引用头部 -->
- <template th:replace="components/header"></template>
- <!-- 404页面 -->
- <div style="text-align:center;background: #fff">
- <!-- <iframe id="errorContent" src="/search_children.html"></iframe>-->
- <div id="errorContent">
- <img src="https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/404.png">
- <p>您访问的页面不存在,建议您......</p>
- <a href="/index.html">返回首页</a>
- </div>
- </div>
- <!-- 引入底部 -->
- <template th:replace="components/footer"></template>
- <template th:replace="components/foot-link"></template>
- <script type="text/javascript">
- if(!($('#spiServer').val() && $('#spiServer').val().length>0)){
- window.location.href = '/404.html';
- }
- </script>
- </body>
- </html>
|