username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="FrontHead.ascx.cs" Inherits="CY.WebForm.Pages.common.FrontHead" %>
<div class="header">
    <div class="w1000">
        <div class="topwel">
            <div class="topL">
                <ul id="FrontLoginChange">
                    <%if (!IsLogin)
                      { %>
                    <li><a href="/login.html" target="_blank">登录网站</a>|</li>
                    <li><a href="/register.html">注册会员</a></li>
                    <%}
                      else
                      {
                    %>
                    <li><a href="/cms" target="_blank">
                        <%=Name %></a>|</li>
                    <li><a href="/quit.html">安全退出</a></li>
                    <%
                        } %>
                    <%--<li class="soon"><a class="gray" href="#">快捷登录</a></li>--%>
                </ul>
            </div>
            <div class="topR">
                <ul>
                    <li><a onclick="AddFavorite(window.location,document.title)" style="cursor: pointer;">加入收藏</a></li>
                    <li><a onclick="SetHome(this,window.location)" style="cursor: pointer;">设为首页</a>|</li>
                    <li><a href="/tool.html" target="_blank">工具助手</a>|</li>
                    <%--<li><a href="/Pages/common/CMSIndex.aspx">后台管理</a>|</li>--%>
                    <li><a href="/alliance" target="_blank">推介网站</a>|</li>
                </ul>
            </div>
            <div id="ranklistxx" style="overflow: hidden; height: 31px; line-height: 31px; position: relative; width: 454px; float: right;white-space: nowrap;">
                <table cellpadding="0" cellspacing="0" border="0">
                    <tr>
                        <td id="WebInfoShow1" valign="top" align="center" style="white-space: nowrap; word-wrap: normal;">
                            <%=CY.Config.WebInfo.Instance.AnnouncementDetail%>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                        </td>
                        <td id="WebInfoShow2" valign="top" align="center" style="white-space: nowrap; word-wrap: normal;">
                        </td>
                    </tr>
                </table>
            </div>
            <p class="clear">
            </p>
        </div>
        <div class="logo">
            <a href="/">
                <img src="../../images/Common/logo.jpg" width="362" height="90" /></a></div>
        <div class="search">
            <div class="searchLine1">
                <input class="searchInput" name="" type="text" /><input class="submitInput" name="" value="搜 索" type="button" />
                <style type="text/css">
                    .searchLine1 .searchInput:hover{ border:none;}
                </style>
            </div>
            <p>
                热门搜索:<a href="#">个人网店会员</a><a href="#">买家会员</a><a href="#">整站后台</a></p>
        </div>
        <p class="clear">
        </p>
        <ul class="nav">
            <li><a href="/" class="CP HomeNavigation" id="1">网站首页</a></li>
            <li><a href="/seckill/list.html" class="CP HomeNavigation" id="2">特价秒杀</a></li>
            <li><a href="/demand/release.html" class="CP HomeNavigation" id="3">发布需求</a></li>
            <li><a href="/Inquiry/index.html" class="CP HomeNavigation" id="4">在线询价</a></li>
            <li><a href="/sellers/list.html" class="CP HomeNavigation" id="5">商家展示</a></li>
            <li><a href="/adviser/list.html" class="CP HomeNavigation" id="6">印刷顾问</a></li>
            <li><a href="/findorder/list.html" class="CP HomeNavigation" id="7">寻找订单</a></li>
            <li><a href="/openshop/list.html" class="CP HomeNavigation" id="8">我要开店</a></li>
            <li><a href="/recruitments/list.html" class="CP HomeNavigation" id="9">招聘求职</a></li>
            <li><a href="/prizes/list.html" class="CP HomeNavigation" id="10">积分兑换</a></li>
        </ul>
    </div>
</div>
<script type="text/javascript">
    var speed = 30; //速度数值越大速度越慢
    var colee_left2 = document.getElementById("WebInfoShow2");
    var colee_left1 = document.getElementById("WebInfoShow1");
    var colee_left = document.getElementById("ranklistxx");
    colee_left2.innerHTML = colee_left1.innerHTML;
    function Marquee3() {
        if (colee_left2.offsetWidth - colee_left.scrollLeft <= 0)//offsetWidth 是对象的可见宽度
            colee_left.scrollLeft -= colee_left1.offsetWidth//scrollWidth 是对象的实际内容的宽,不包边线宽度
        else {
            colee_left.scrollLeft++
        }
    }
    var MyMar3 = setInterval(Marquee3, speed)
    colee_left.onmouseover = function () { clearInterval(MyMar3) }
    colee_left.onmouseout = function () { MyMar3 = setInterval(Marquee3, speed) }
</script>