You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.5 KiB
59 lines
2.5 KiB
|
5 years ago
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
|
<head>
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
|
<title>{ms:global.name/}</title>
|
||
|
|
<meta name="description" content="{ms:global.descrip/}" />
|
||
|
|
<meta name="keywords" content="{ms:global.keyword/}" />
|
||
|
|
<link rel="stylesheet" href="{ms:global.host/}/{ms:global.style/}/css/news-detail.css">
|
||
|
|
<link rel="stylesheet" href="{ms:global.host/}/{ms:global.style/}/css/jointly.css">
|
||
|
|
<script src="{ms:global.host/}/{ms:global.style/}/js/jquery-1.9.0.js" type="text/javascript"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<#include "head.html">
|
||
|
|
<!--ffff主要内容-->
|
||
|
|
<div class="main">
|
||
|
|
<!--新闻详情-->
|
||
|
|
<div class="wrap">
|
||
|
|
<div class="container">
|
||
|
|
<div class="we">
|
||
|
|
</div>
|
||
|
|
<div class="character">
|
||
|
|
<img src="{ms:global.host/}{@ms:file field.litpic/}">
|
||
|
|
{ms:field.content/}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="qq">
|
||
|
|
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=2029444895&site=qq&menu=yes" ><img data-type="img1" src="{ms:global.host/}/{ms:global.style/}/images/qq.png" class="img_qq"/> </a>
|
||
|
|
<img data-type="img2" src="{ms:global.host/}/{ms:global.style/}/images/pic.png" class="img_tel"/>
|
||
|
|
</div>
|
||
|
|
<img style="position: fixed;right: 52px;top: 210px;display:none" class="img_one" style="width: 223px; height: 114px;" src="{ms:global.host/}/{ms:global.style/}/images/talk.png"/>
|
||
|
|
<img style="position: fixed;right: 52px;top: 270px;display:none" class="img_two" style="width: 223px; height: 114px;" src="{ms:global.host/}/{ms:global.style/}/images/tel.png"/>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<#include "foot.html">
|
||
|
|
<body>
|
||
|
|
</html>
|
||
|
|
<script>
|
||
|
|
$(".qq >a").hover(
|
||
|
|
function(){
|
||
|
|
$(".img_one").css("display","block");
|
||
|
|
},
|
||
|
|
function(){
|
||
|
|
$(".img_one").css("display","none");
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
$(".qq > .img_tel").hover(
|
||
|
|
function(){
|
||
|
|
$(".img_two").css("display","block");
|
||
|
|
},
|
||
|
|
function(){
|
||
|
|
$(".img_two").css("display","none");
|
||
|
|
}
|
||
|
|
);
|
||
|
|
</script>
|