Commit 37cffefb authored by wujj's avatar wujj

模板

parent 3ffe552f
......@@ -23,7 +23,7 @@ ms:
upload:
enable-web: true #启用web层的上传
template: templets #模板文件夹支持重命名,不支持路径
template: template #模板文件夹支持重命名,不支持路径
path: upload #文件上传路径,可以根据实际写绝对路径
mapping: /upload/** #修改需要谨慎,系统第一次部署可以随意修改,如果已经有了上传数据,再次修改会导致之前上传的文件404
denied: .exe,.jsp
......
......@@ -49,16 +49,12 @@
class="ms-channel-path-index">
首页
</a>
<i class="iconfont icon-youjiantou" ></i>
<a href="#"
class="ms-channel-path-link">
互动交流
</a>
<i class="iconfont icon-youjiantou" ></i>
<a href="#"
class="ms-channel-path-link">
常见问题
</a>
{ms:channel type="path"}
<i class="iconfont icon-youjiantou"></i>
<a href="{ms:global.url/}${field.typelink}" class="ms-channel-path-link">
${field.typetitle}
</a>
{/ms:channel}
</div>
<div class="detail">
<div class="top">
......@@ -128,16 +124,16 @@
</span>
<a href="${global.url}${pre.link}"
>
${global.url}${pre.title}
${pre.title}
</a>
</div>
<div class="next">
<span >
下一篇:
</span>
<a href="${global.url}${next.link}"
<a href="${global.url}${next.link}"
>
${global.url}${next.title}
${next.title}
</a>
</div>
</div>
......
......@@ -64,7 +64,7 @@
</a>
</div>
<!--新闻列表(一行) - start -->
{ms:arclist ispaging=true}
{ms:arclist ispaging=true size=1}
<div class="ms-news-one-line">
<i class="iconfont icon-fangkuai ms-news-one-line-dot" ></i>
<a href="${global.url}${field.link}"
......
<!DOCTYPE html>
<html>
<head>
<#include "head-file.htm"/>
</head>
<body>
<#include "head.htm"/>
<br/>son
{ms:channel type="son"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>top
{ms:channel type="top"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>level
{ms:channel type="level"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>self
{ms:channel type="self"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>sonOrLevel
{ms:channel type="sonOrLevel"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>path
{ms:channel type="path"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>parent
{ms:channel type="parent"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<br/>nav
{ms:channel type="nav"}
<a href="{ms:global.url/}${field.typelink}">${field.typetitle}</a>
{/ms:channel}
<div class="ms-banner" style="background:url({ms:global.host/}/{ms:global.style/}/images/about_us.jpg) no-repeat center;">
<p class="banner_tit_about animated fadeInLeft">关于我们</p>
<p class="banner_tit_about_des animated fadeInRight">About us</p>
</div>
<div class="ms-content-about">
<div class="ms-content-main">
<#include "menu-left.htm"/>
<div class="ms-content-right">
<div class="ms-content-right-position">
<a href="{ms:global.host/}">首页</a>
<span>></span>
<a href="{ms:field.typelink/}">{ms:field.typetitle/}</a>
</div>
<div class="ms-content-right-main">
<div class="ms-content-right-main-title">{ms:field.title/}</div>
<div class="ms-content-right-main-content">{ms:field.content/}</div>
</div>
</div>
</div>
</div>
<#include "footer.htm"/>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<#include "head-file.htm"/>
</head>
<body>
<#include "head.htm"/>
<div class="ms-banner" style="background:url({ms:global.host/}/{ms:global.style/}/images/talk_online.jpeg) no-repeat center;">
<p class="banner_tit_other animated fadeInLeft">在线留言</p>
<p class="banner_tit_other_des animated fadeInRight">Talk online</p>
</div>
<div class="ms-content-advice">
<div class="ms-content-form-background">
<form class="ms-content-form" method="post" id="postForm">
<input class="ms-content-form-name" type="text" name="name" placeholder="姓名">
<input class="ms-content-form-phone" type="text" name="phone" placeholder="手机">
<textarea class="ms-content-form-message" name="words" placeholder="留言"></textarea>
<div class="ms-login-button">提交</div>
</form>
</div>
</div>
<#include "footer.htm"/>
</body>
</html>
<script>
/* 表单提交 */
var flag = false;
$(".ms-login-button").click(function() {
if(!flag) {
$.ajax({
type: "POST",
url: "{ms:global.host/}/mdiy/post/7df6529f9eaa26da7ae4e01c7f73aa06.do",
data: $("#postForm").serialize(),
success: function(msg) {
flag = true;
alert("提交成功");
location.reload();
}
});
} else {
alert("您已经提交过了!");
}
})
/* 表单验证 */
function verification() {
if($('input[name="name"]').val().length > 0 && $('input[name="phone"]').val().length > 0 && $('.ms-content-form-message').val().length > 0) {
$('.ms-login-button').css("background-color", "#009aff");
$('.ms-login-button').css("pointer-events", 'visible');
$('.ms-login-button').css("color", "#fff");
} else {
$('.ms-login-button').css("background-color", "#fafafa");
$('.ms-login-button').css('pointer-events', "none");
$('.ms-login-button').css("color", "#ddd");
}
}
$('input[name="name"]').keyup(function() {
verification();
})
$('input[name="phone"]').keyup(function() {
verification();
})
$('.ms-content-form-message').keyup(function() {
verification();
})
</script>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<#include "head-file.htm"/>
</head>
<body>
<#include "head.htm"/>
<div class="ms-banner" style="background:url({ms:global.host/}/{ms:global.style/}/images/00.png) no-repeat center;">
<p class="banner_tit_other animated fadeInLeft">&nbsp;&nbsp;&nbsp;</p>
<p class="banner_tit_other_des animated fadeInRight">Case list</p>
</div>
<div class="ms-content-case">
<div class="ms-content-main">
{ms:arclist size=6 ispaging=true}
<div class="ms-content-main-case">
<div class="ms-content-main-case-img">
<img src="{ms:global.host/}[field.litpic/]">
</div>
<div class="ms-content-main-case-explain">
<div class="ms-content-main-case-title">[field.title/]</div>
<div class="ms-content-main-case-content">
<p class="ms-content-main-case-written">
[field.content/]
</p>
<!-- <p class="ms-content-main-case-QRcode">
<img src="./images/1471918025445.png">
</p> -->
</div>
<div class="ms-content-main-case-click">
<a target="_blank" href="[field.source/]">点击查看</a>
</div>
</div>
</div>
{/ms:arclist}
</div>
</div>
<#include "footer.htm"/>
</body>
</html>
<script type="text/javascript">
$(function() {
$('.ms-content-main-case').hover(function() {
$(this).find('.ms-content-main-case-explain').toggle();
});
});
</script>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<#include "head-file.htm"/>
</head>
<body>
<#include "head.htm"/>
<div class="ms-banner" style="background:url({ms:global.host/}/{ms:global.style/}/images/contact_us.jpeg) no-repeat center;">
<p class="banner_tit_other animated fadeInLeft" >联系我们</p>
<p class="banner_tit_other_des animated fadeInRight">Contact us</p>
</div>
<div class="ms-content-about">
<div class="ms-content-main">
<#include "menu-left.htm"/>
<div class="ms-content-right">
<div class="ms-content-right-position">
<a href="{ms:global.host/}">首页</a>
<span>></span>
<a href="{ms:field.typelink/}">{ms:field.typetitle/}</a>
</div>
<div class="ms-content-right-main">
<div class="ms-content-right-main-title">联系我们</div>
<div class="ms-content-right-main-content"><!-- {ms:field.content/} -->
<style type="text/css">
.BMap_Marker img{
width: 100%;
height: 100%;
}
html,body{margin:0;padding:0;}
.iw_poi_title {color:#CC5522;font-size:14px;font-weight:bold;overflow:hidden;padding-right:13px;white-space:nowrap}
.iw_poi_content {font:12px arial,sans-serif;overflow:visible;padding-top:4px;white-space:-moz-pre-wrap;word-wrap:break-word}
</style>
<script type="text/javascript" src="http://api.map.baidu.com/api?key=&v=1.1&services=true"></script>
<body>
<!--百度地图容器-->
<div style="width:100%;height:550px;border:#ccc solid 1px;" id="dituContent"></div>
</body>
<script type="text/javascript">
//创建和初始化地图函数:
function initMap(){
createMap();//创建地图
setMapEvent();//设置地图事件
addMapControl();//向地图添加控件
addMarker();//向地图中添加marker
}
//创建地图函数:
function createMap(){
var map = new BMap.Map("dituContent");//在百度地图容器中创建一个地图
var point = new BMap.Point(116.737158,29.153633);//定义一个中心点坐标
map.centerAndZoom(point,9);//设定地图的中心点和坐标并将地图显示在地图容器中
window.map = map;//将map变量存储在全局
}
//地图事件设置函数:
function setMapEvent(){
map.enableDragging();//启用地图拖拽事件,默认启用(可不写)
map.enableScrollWheelZoom();//启用地图滚轮放大缩小
map.enableDoubleClickZoom();//启用鼠标双击放大,默认启用(可不写)
map.enableKeyboard();//启用键盘上下左右键移动地图
}
//地图控件添加函数:
function addMapControl(){
//向地图中添加缩放控件
var ctrl_nav = new BMap.NavigationControl({anchor:BMAP_ANCHOR_TOP_LEFT,type:BMAP_NAVIGATION_CONTROL_LARGE});
map.addControl(ctrl_nav);
//向地图中添加缩略图控件
var ctrl_ove = new BMap.OverviewMapControl({anchor:BMAP_ANCHOR_BOTTOM_RIGHT,isOpen:1});
map.addControl(ctrl_ove);
//向地图中添加比例尺控件
var ctrl_sca = new BMap.ScaleControl({anchor:BMAP_ANCHOR_BOTTOM_LEFT});
map.addControl(ctrl_sca);
}
//标注点数组
var markerArr = [{title:"铭飞科技(景德镇)有限公司",content:"江西省景德镇市昌江区&nbsp;枫林佳苑&nbsp;15栋A区&nbsp;三单元&nbsp;302室",point:"117.187869|29.282949",isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}}
,{title:"铭飞科技(南昌)办事处",content:"江西省南昌市青山湖区创新一路&nbsp;绿地新都会(西门)&nbsp;12栋2单元901室",point:"116.003117|28.683521",isOpen:0,icon:{w:21,h:21,l:0,t:0,x:6,lb:5}}
];
//创建marker
function addMarker(){
for(var i=0;i<markerArr.length;i++){
var json = markerArr[i];
var p0 = json.point.split("|")[0];
var p1 = json.point.split("|")[1];
var point = new BMap.Point(p0,p1);
var iconImg = createIcon(json.icon);
var marker = new BMap.Marker(point,{icon:iconImg});
var iw = createInfoWindow(i);
var label = new BMap.Label(json.title,{"offset":new BMap.Size(json.icon.lb-json.icon.x+10,-20)});
marker.setLabel(label);
map.addOverlay(marker);
label.setStyle({
borderColor:"#808080",
color:"#333",
cursor:"pointer"
});
(function(){
var index = i;
var _iw = createInfoWindow(i);
var _marker = marker;
_marker.addEventListener("click",function(){
this.openInfoWindow(_iw);
});
_iw.addEventListener("open",function(){
_marker.getLabel().hide();
})
_iw.addEventListener("close",function(){
_marker.getLabel().show();
})
label.addEventListener("click",function(){
_marker.openInfoWindow(_iw);
})
if(!!json.isOpen){
label.hide();
_marker.openInfoWindow(_iw);
}
})()
}
}
//创建InfoWindow
function createInfoWindow(i){
var json = markerArr[i];
var iw = new BMap.InfoWindow("<b class='iw_poi_title' title='" + json.title + "'>" + json.title + "</b><div class='iw_poi_content'>"+json.content+"</div>");
return iw;
}
//创建一个Icon
function createIcon(json){
var icon = new BMap.Icon("{ms:global.host/}/{ms:global.style/}/images/img-2.png", new BMap.Size(json.w,json.h),{imageOffset: new BMap.Size(-json.l,-json.t),infoWindowOffset:new BMap.Size(json.lb+5,1),offset:new BMap.Size(json.x,json.h)})
return icon;
}
initMap();//创建和初始化地图
</script>
</div>
</div>
</div>
</div>
</div>
<#include "footer.htm"/>
</body>
</html>
\ No newline at end of file
.ms-content-about{margin-top:20px;margin-bottom:40px}.ms-content-about a:link{color:#000;text-decoration:none}.ms-content-about a:visited{color:#000;text-decoration:none}.ms-content-about a:active{color:#000;text-decoration:none}.ms-content-about a:hover{color:#000;text-decoration:none}.ms-content-about .ms-content-main{width:1200px;overflow:hidden;margin:auto}.ms-content-about .ms-content-main .ms-content-left{width:230px;float:left;margin-right:20px}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-title{font-weight:bold;background-color:#009aff;color:#fff;height:40px;line-height:40px;width:190px;padding:0 20px}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul{background-color:#fff;margin-top:1px;width:230px}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul a:hover{color:#fff}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul a:hover li{background-color:#54bcfe}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul a{color:#999999}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul li{height:40px;line-height:40px;font-size:14px;cursor:pointer;padding:0 20px}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul li .ms-content-left-li-more{float:right}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul .ms-content-left-li-first{color:#fff}.ms-content-about .ms-content-main .ms-content-left .ms-content-left-ul .ms-content-left-li-first li{background-color:#54bcfe}.ms-content-about .ms-content-main .ms-content-right{overflow:hidden}.ms-content-about .ms-content-main .ms-content-right a:visited{color:#000000}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-position{font-size:14px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-position a:hover{color:#0099ff}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-position span{padding:0 5px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main{width:952px;background-color:#ffffff;min-height:450px;padding-bottom:20px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main .ms-content-right-main-content{margin:0 20px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main .ms-content-right-main-title{text-align:center;font-size:20px;padding-top:40px;padding-bottom:20px;border-bottom:1px solid #d0cfcf99 99;margin:20px}/*# sourceMappingURL=./about.css.map */
\ No newline at end of file
.ms-content-advice{margin-top:20px;margin-bottom:40px}.ms-content-advice .ms-content-form-background{width:1200px;height:480px;background-color:#ffffff;margin:auto;display:flex}.ms-content-advice .ms-content-form-background .ms-content-form{width:330px;margin:auto}.ms-content-advice .ms-content-form-background .ms-content-form ::-webkit-input-placeholder{color:#999}.ms-content-advice .ms-content-form-background .ms-content-form input::-webkit-input-placeholder,.ms-content-advice .ms-content-form-background .ms-content-form textarea::-webkit-input-placeholder{font-family:Arial,Verdana,Sans-serif}.ms-content-advice .ms-content-form-background .ms-content-form .ms-content-form-name,.ms-content-advice .ms-content-form-background .ms-content-form .ms-content-form-phone,.ms-content-advice .ms-content-form-background .ms-content-form .ms-content-form-message{width:308px;height:12px;padding:10px;display:block;border:1px solid #eeeeee;border-radius:3px;color:#555555;margin-bottom:20px}.ms-content-advice .ms-content-form-background .ms-content-form .ms-content-form-message{height:142px}.ms-content-advice .ms-content-form-background .ms-content-form .ms-login-button{pointer-events:none;width:330px;height:34px;line-height:34px;font-size:14px;color:#ddd;text-align:center;background-color:#fafafa;cursor:pointer;border-radius:4px}/*# sourceMappingURL=./advice.css.map */
\ No newline at end of file
This diff is collapsed.
body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div,a{margin:0;padding:0;border:0;text-decoration:none !important}*{margin:0;padding:0}body{min-width:1200px;background-color:#fafafa}html,body,ul,li{margin:0;padding:0}a{text-decoration:none;color:#555}ul,li,ol{list-style:none}input:focus,textarea:focus{outline:none}.ms-banner{height:337px}.ms-banner img{width:100%;height:100%}.flexslider{margin:0 auto 20px;position:relative;width:100%;height:440px;overflow:hidden;zoom:1}.flexslider .slides li{width:100%;height:100%}.flexslider .slides a img{width:100%;height:337px;display:block}.flexslider .flex-direction-nav{width:100%;bottom:10px;text-align:center}.flexslider .flex-direction-nav a{width:70px;height:70px;line-height:99em;overflow:hidden;margin:-35px 0 0;display:block;background:url(../images/ad_ctr.png) no-repeat;position:absolute;top:50%;z-index:10;cursor:pointer;opacity:0;filter:alpha(opacity=0);-webkit-transition:all .3s ease;border-radius:35px}.flexslider .flex-direction-nav .flex-next{background-position:0 -70px;right:10px}.flexslider .flex-direction-nav .flex-prev{left:10px}.flexslider .flex-direction-nav li{margin:0 2px;display:inline-block;zoom:1;*display:inline}.flexslider:hover .flex-next{opacity:.8;filter:alpha(opacity=25)}.flexslider:hover .flex-prev{opacity:.8;filter:alpha(opacity=25)}.flexslider:hover .flex-next:hover,.flexslider:hover .flex-prev:hover{opacity:1;filter:alpha(opacity=50)}.ms-head{background-color:#2b3442}.ms-head a{color:#fff}.ms-head .head-menu-flex-center{display:flex;align-items:center}.ms-head .head-menu{width:1200px;height:60px;margin:auto;color:#ffffff;display:flex;justify-content:space-between}.ms-head .head-menu .head-menu-flex-center .head-menu-list{padding-left:30px;height:60px;line-height:60px;margin:0 !important}.ms-head .head-menu .head-menu-flex-center .head-menu-list .head-active{color:#ffb800;background-color:#2b3442}.ms-head .head-menu .head-menu-flex-center .head-menu-list .head-menu-list-li:hover{background-color:#202833;color:#ffb800}.ms-head .head-menu .head-menu-flex-center .head-menu-list .head-menu-list-li a:hover{background-color:#202833;color:#ffb800}.ms-head .head-menu .head-menu-flex-center .head-menu-list .head-menu-list-li{cursor:pointer;position:relative}.ms-head .head-menu .head-menu-flex-center .head-menu-list .head-menu-list-li .head-menu-son-list{background-color:#2b3442;position:absolute;width:100%;left:0;color:#fff;display:none;top:60px;z-index:9999999}.ms-head .head-menu .head-menu-flex-center .head-menu-list .head-menu-list-li .head-menu-son-list li{height:40px;line-height:40px;text-align:center}.ms-head .head-menu .head-menu-flex-center .head-menu-list .head-menu-list-li .head-menu-son-list li a:hover{color:#ffb800;background-color:#2b3442}.ms-head .head-menu img,.ms-head .head-menu .head-menu-list,.ms-head .head-menu div,.ms-head .head-menu .head-menu-list-li{float:left}.ms-head .head-menu img{width:60px;height:30px;padding-right:10px}.ms-head .head-menu li{padding:0 15px}.ms-head .head-menu .head-men-right .head-menu-right-content{min-width:100px}.ms-head .head-menu .head-men-right .head-menu-right-content span span{padding:0 5px;cursor:pointer}.ms-head .head-menu .head-men-right .head-menu-right-content span span a:hover{color:#ffb800}.ms-head .head-menu .head-men-right .head-menu-right-search{padding-right:12px;position:relative}.ms-head .head-menu .head-men-right .head-menu-right-search input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #2b3442 inset !important;-webkit-text-fill-color:#fff !important}.ms-head .head-menu .head-men-right .head-menu-right-search .ms-search-click{background-image:url(../images/search.png);width:14px;height:14px;border:0;background-color:#2b3442;position:absolute;right:30px;top:8px;cursor:pointer}.ms-head .head-menu .head-men-right .head-menu-right-search .ms-search-input{height:28px;background-color:#2b3442;border:1px solid #fff;border-radius:15px;padding-left:30px;color:#fff;width:318px;font-size:14px}.ms-head .head-menu .head-men-right .head-menu-right-search input::-webkit-input-placeholder{color:#fff}.ms-head .head-menu .head-men-right .head-menu-right-search .iconfont{font-size:18px;cursor:pointer;position:absolute;right:28px}.ms-footer{height:140px;background-color:#2a3542}.ms-footer .ms-footer-content{padding:46px 0;width:1200px;margin:auto}.ms-footer .ms-footer-content .ms-footer-left{color:#999999;font-size:14px;float:left}.ms-footer .ms-footer-content .ms-footer-left .ms-footer-left-copyright{display:block;padding-top:20px;height:14px}.ms-footer .ms-footer-content .ms-footer-left .ms-footer-left-column{height:14px;cursor:pointer}.ms-footer .ms-footer-content .ms-footer-left .ms-footer-left-column a:link{color:#999;text-decoration:none}.ms-footer .ms-footer-content .ms-footer-left .ms-footer-left-column a:visited{color:#999;text-decoration:none}.ms-footer .ms-footer-content .ms-footer-left .ms-footer-left-column a:hover{color:#fff}.ms-footer .ms-footer-content .ms-footer-left .ms-footer-left-column .ms-footer-left-column-course,.ms-footer .ms-footer-content .ms-footer-left .ms-footer-left-column .ms-footer-left-column-contact{padding:0 10px}.ms-footer .ms-footer-content .ms-footer-left .ms-footer-left-column .ms-footer-left-column-about{padding-right:10px}.ms-footer .ms-footer-content .ms-footer-right{float:right}.ms-footer .ms-footer-content .ms-footer-right img{cursor:pointer}.ms-footer .ms-footer-content .ms-footer-right .ms-footer-right-baidu{padding:0 12px}.ms-footer .ms-footer-content .ms-footer-right .ms-footer-right-weixin{position:relative;display:none}.ms-footer .ms-footer-content .ms-footer-right .ms-footer-right-weixin img{top:-161px;left:-38px;width:103px;border:2px solid #ccc;position:absolute}.ms-footer .ms-footer-content .ms-footer-right .ms-footer-right-weixin p{font-size:0;line-height:0;display:block;width:0;height:0;left:8px;border-left:10px solid transparent;border-right:8px solid transparent;border-top:10px solid #fff;position:absolute;top:-58px;z-index:85}.ms-but-disabled2,.ms-but-disabled{opacity:.6 !important;cursor:no-drop !important}.ms-but-disabled:hover{background-color:#009aff !important}.ms-loading{text-align:center;height:700px;line-height:700px}.ms-loading img{width:60px}.topbar-info{display:flex;align-items:center;float:right;color:white;text-align:right}.topbar-info a{height:30px;line-height:30px}.topbar-info a .loginImg{width:30px !important;height:30px !important;vertical-align:super;border-radius:50%;padding:0;margin-right:12px;opacity:.9;cursor:pointer}.topbar-info a .loginImg:hover{opacity:1}.topbar-info a .userName{line-height:30px !important;margin-right:12px;color:#fff;cursor:pointer;font-weight:500}.topbar-info a .userName:hover{color:#ffb800}.topbar-info .quitLogin{color:#fff;height:30px;line-height:30px}.topbar-info .quitLogin:hover{color:#ffb800}.topbar-info .ms-userName{max-width:110px;white-space:nowrap;display:inline-block;overflow:hidden;text-overflow:ellipsis}/*# sourceMappingURL=./base.css.map */
\ No newline at end of file
.ms-content-case{background-color:#fff;overflow:hidden;padding-top:20px}.ms-content-case a:visited{color:#000000}.ms-content-case .ms-content-main{width:1200px;min-height:400px;margin:auto;overflow:hidden}.ms-content-case .ms-content-main .ms-content-main-case:nth-child(3n){margin-right:0}.ms-content-case .ms-content-main .ms-content-main-case{border:1px solid #f0f0f0;width:384px;height:332px;margin-right:20px;float:left;position:relative;overflow:hidden;color:#ffffff;margin-top:20px}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-img{width:387px;height:334px}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-img img{width:100%;height:100%}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain{display:none;width:100%;height:100%;background-color:#0099ff;opacity:.9;position:absolute;top:0;left:0}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-title{font-size:22px;text-align:center;margin:20px 0;padding:0 20px;height:22px;line-height:22px;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-content{min-height:215px}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-content p{font-size:14px;padding:0 30px;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:4;-webkit-box-orient:vertical;display:-webkit-box}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-content p img{width:100px;text-align:center;margin:20px 0;height:100px}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-click{text-align:center}.ms-content-case .ms-content-main .ms-content-main-case .ms-content-main-case-explain .ms-content-main-case-click a{border:1px solid #ffffff;border-radius:17px;padding:5px 39px;color:#ffffff}.ms-content-case .ms-content-main .ms-content-main-case-left{margin-right:0}.ms-content-case #ms-case-page{margin-top:50px}.ms-content-case #ms-case-page a:hover{background-color:#eee}.ms-content-case .ms-content-main-page{text-align:center;margin-top:30px;margin-bottom:50px}.ms-content-case .ms-content-main-page a{color:#999;font-size:14px}.ms-content-case .ms-content-main-page .ms-content-main-page-first,.ms-content-case .ms-content-main-page .ms-content-main-page-last{border:1px solid #ddd;padding:10px 15px;margin-right:-5px}.ms-content-case .ms-content-main-page .ms-content-main-page-upper,.ms-content-case .ms-content-main-page .ms-content-main-page-next{border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:10px 15px;margin-right:-5px}.ms-content-case .ms-content-main-page .ms-content-main-page-upper{border-right:1px solid #ddd}.ms-content-case .ms-content-main-page .ms-content-main-page-first{border-top-left-radius:4px;border-bottom-left-radius:4px}.ms-content-case .ms-content-main-page .ms-content-main-page-last{border-top-right-radius:4px;border-bottom-right-radius:4px}/*# sourceMappingURL=./case-list.css.map */
\ No newline at end of file
.ms-content{font-family:arial,"Microsoft Yahei","Hiragino Sans GB",sans-serif;width:1200px;margin:auto}.ms-content .ms-content-main{margin:20px 0}.ms-content .ms-content-main .ms-content-left{width:230px;height:270px;background-color:#fff;text-align:center;margin-right:20px;float:left}.ms-content .ms-content-main .ms-content-left .ms-content-left-info img{width:100px;height:100px;border-radius:50%;margin:20px 0 10px 0}.ms-content .ms-content-main .ms-content-left .ms-content-left-info div{border-bottom:1px solid #f1f1f1;padding-bottom:10px;font-weight:bold;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#555555}.ms-content .ms-content-main .ms-content-left .ms-content-left-list .active{color:#0099ff}.ms-content .ms-content-main .ms-content-left .ms-content-left-list a:link{color:#999;text-decoration:none}.ms-content .ms-content-main .ms-content-left .ms-content-left-list a:hover{color:#0099ff}.ms-content .ms-content-main .ms-content-left .ms-content-left-list .ms-content-left-list-info{margin-top:20px;cursor:pointer;color:#999999}.ms-content .ms-content-main .ms-content-left .ms-content-left-list .ms-content-left-list-pass{margin:20px 0;color:#999999;cursor:pointer}.ms-content .ms-content-main .ms-content-right{background-color:#fff;width:950px;min-height:653px;overflow:hidden}.ms-content .ms-content-main .ms-content-right .ms-content-right-title{color:#555555;border-bottom:1px solid #eeeeee;padding:20px 0;margin:0 20px}.ms-content .ms-content-main .ms-content-right .ms-content-right-form input::-webkit-input-placeholder{color:#999}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-old-password,.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data{font-size:14px;color:#999999}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-old-password .span,.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .span{display:inline-block}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-old-password .ms-error-hide,.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .ms-error-hide{opacity:0;color:#FF0000;transition:all .2s}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-old-password .ms-error-show,.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .ms-error-show{opacity:1}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-old-password span,.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data span{min-width:70px;max-width:300px}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-old-password img,.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data img{vertical-align:middle}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-old-password input,.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data input{width:220px;height:20px;padding:5px 10px;border:1px solid #eeeeee;border-radius:4px;margin-top:20px;background-color:#fafafa}.ms-content .ms-content-main .ms-content-right .ms-content-right-form form{margin-left:67px}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-click{pointer-events:none;background-color:#fafafa;color:#ddd;width:120px;padding:6px 0;border-radius:4px;text-align:center;margin-left:141px;margin-top:20px;cursor:pointer;opacity:.9}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-click:hover{opacity:1}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-click-password{margin-left:141px}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .ms-error-hide{opacity:0;color:#FF0000;transition:all .2s}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .ms-error-show{opacity:1}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data input{background-color:#ffffff;height:20px;padding:5px 10px;margin-right:18px;transition:all .6s;color:#999}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data input:focus{color:#000;border-color:#0099ff}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .ms-content-head-img{width:64px;height:64px;position:relative}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .ms-content-head-img:hover #browse{display:block}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .ms-content-head-img img{width:100%;height:100%;border-radius:50%;background:white}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .ms-content-head-img .ms-content-head-upload{width:100%;height:100%;line-height:64px;position:absolute;top:0;left:0;font-size:12px;color:#fff;border-radius:50%;text-align:center}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data .ms-content-head-img .ms-content-head-upload span{margin:auto}.ms-content .ms-content-main .ms-content-right .ms-content-right-form .ms-content-data-head{text-align:left;display:flex;align-items:center;margin-top:20px;cursor:pointer}.ms-content-head-upload .display-img{width:64px;height:64px;display:block !important}.ms-content-head-upload span{display:none}.ms-content-head-upload:hover #browse{opacity:1}.ms-content-head-upload #browse{background:rgba(89,89,89,0.5);min-width:64px;width:64px;height:64px;transition:.3s;position:absolute;z-index:1;top:0;left:0;border-radius:50%;opacity:0}/*# sourceMappingURL=./center.css.map */
\ No newline at end of file
This diff is collapsed.
#emotions{
left:0;
width: 395px;
font-size:12px;
background:#fff;
position:absolute;
border: 1px solid #E8E8E8;
}
#emotions a{
color: #9ABBC8;
padding:2px 7px;
text-decoration:none;
}
#emotions img{
border:0;
}
#emotions div{
margin:5px 10px;
padding:1px;
overflow: hidden;
}
#emotions #prev,
#emotions #next
{
margin-left:3px;
background:#eee;
}
#emotions .categorys{
color:#ccc;
height:23px;
color: #9ABBC8;
overflow:hidden;
}
#emotions .categorys a{
display: inline-block;
}
#emotions .categorys a:hover{
text-decoration:underline;
}
#emotions .categorys a.current{
cursor: default;
background: #F0F0F0;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
#emotions .container{
padding:1px;
overflow: hidden;
}
#emotions .container a{
float:left;
width:26px;
height:22px;
text-align:center;
box-sizing: content-box;
padding: 4px 2px;
margin: -1px 0 0 -1px;
border: 1px solid #e8e8e8;
}
#emotions .container a:hover{
z-index:2;
position:relative;
border:1px solid #0095cd;
}
#emotions .page{
text-align:right;
}
#emotions .page a.current{
color: #666;
background-color:#fff;
}
#emotions .page a{
margin-left:3px;
color: #0078B6;
background-color:#f3f3f3;
}
#emotions .page a:hover{
background-color:#e7e7e7;
}
\ No newline at end of file
html,body,#login{height:100%}body{background-color:#ffffff}body,p{margin:0}input:focus,textarea:focus{outline:none}#login{display:flex;flex-direction:column;height:893px;min-width:1200px;background:url("../images/pic.png") no-repeat;background-position:50%}#login .ms-none{display:none !important}#login .ms-login-float{float:left}#login .ms-head,#login .ms-footer,#login .ms-content-form,#login .ms-content-code{background-color:#ffffff}#login .ms-head-line,#login .ms-head-welcome-login,#login .ms-footer{color:#999999}#login .ms-head-welcome-login,#login .ms-login-english-title,#login .ms-login-remmember-password,#login .ms-footer{font-size:12px}#login .ms-head{vertical-align:middle;height:22px;padding:34px 46px;display:flex;align-content:center}#login .ms-head a{width:147px}#login .ms-head img{height:100%}#login .ms-head .ms-head-welcome-login{margin-top:4px;font-size:1rem !important}#login .ms-head .ms-head-line{margin:0 12px;border-left:1px solid #999}#login .ms-content{flex:1;position:relative}#login .ms-content .ms-content-form,#login .ms-content .ms-content-code{width:280px;height:215px;padding:24px 20px;position:absolute;right:160px;top:25%;box-shadow:2px 2px 8px 6px #3bb1ff}#login .ms-content #ms-content-form-register{height:260px}#login .ms-content .ms-login-chinese-title{color:#0099ff;font-size:16px;line-height:15px}#login .ms-content .ms-login-code{position:absolute;top:4px;right:4px}#login .ms-content .ms-login-code-title{color:#0099ff;font-size:12px}#login .ms-content .ms-content-form .ms-login-title{line-height:13px}#login .ms-content .ms-content-form .ms-login-english-title,#login .ms-content .ms-content-form .ms-login-remmember-password,#login .ms-content .ms-content-form .ms-login-code-text{color:#999999}#login .ms-content .ms-content-form .ms-login-people-name,#login .ms-content .ms-content-form .ms-login-remmember-password{margin-bottom:12px}#login .ms-content .ms-content-form .ms-login-error-text{height:15px;font-size:12px;color:#e4393c;display:flex;align-items:center;padding:5px 0}#login .ms-content .ms-content-form .ms-login-error-text img{padding-right:5px}#login .ms-content .ms-content-form input{border:1px solid #eeeeee;border-radius:3px;color:#555555;outline-color:#0099ff}#login .ms-content .ms-content-form input::-webkit-input-placeholder{color:#999999}#login .ms-content .ms-content-form input::-moz-placeholder{color:#999999}#login .ms-content .ms-content-form .ms-login-people-name{width:260px;height:20px;padding:5px 10px}#login .ms-content .ms-content-form .ms-error{border:1px solid #e4393c}#login .ms-content .ms-content-form .ms-login-remmember-password{display:flex;line-height:13px;align-items:center;height:13px}#login .ms-content .ms-content-form .ms-login-remmember-password input[type="checkbox"]{margin:0 6px 0 0}#login .ms-content .ms-content-form .ms-login-button{pointer-events:none;background-color:#fafafa;color:#ddd;width:100%;height:34px;line-height:34px;font-size:14px;text-align:center;cursor:pointer;border-radius:4px}#login .ms-content .ms-content-form .login-code{overflow:hidden;margin-bottom:12px}#login .ms-content .ms-content-form .login-code .login-code-input{width:114px;height:12px;padding:10px}#login .ms-content .ms-content-form .login-code .login-code-input,#login .ms-content .ms-content-form .login-code .login-code-img{margin-right:11px}#login .ms-content .ms-content-form .login-code .login-code-img{height:34px}#login .ms-content .ms-content-form .login-code .login-code-text{font-size:10px}#login .ms-content .ms-content-form .login-code .login-code-change{cursor:pointer;color:#0099ff}#login .ms-content .ms-content-form .login-code .login-code-rompt{color:#999}#login .ms-content .ms-content-form .ms-login-rand-code{width:110px;height:12px;padding:10px}#login .ms-content .ms-content-form .ms-login-rand-code-img{height:34px}#login .ms-content .ms-content-code .ms-computer-title{background:url(../images/frame.png) no-repeat;position:absolute;top:10px;background-size:100% 100%;color:#ffffff;font-size:10px;width:90px;right:45px}#login .ms-content .ms-content-code .ms-login-weixin{text-align:center}#login .ms-content .ms-content-code .ms-login-weixin img{margin:auto;display:block;margin-top:18px;margin-bottom:16px}#login .ms-content .ms-login-button:hover,#login .ms-content .ms-login-button:active{background-color:#0086ff}#login .ms-footer{height:40px;padding:40px 0;text-align:center}#login .ms-footer a:link{color:#999999;text-decoration:none}#login .ms-footer a:visited{color:#999999;text-decoration:none}#login .ms-footer a:active{color:#999999;text-decoration:none}#login .ms-footer a:hover{color:#0099ff;text-decoration:none}#login .ms-footer p{margin:0 0 18px 0;line-height:11px}#login .ms-footer p:last-child{margin:0}/*# sourceMappingURL=./login.css.map */
\ No newline at end of file
.ms-content{margin:20px 0}.ms-content .ms-content-left{width:230px;float:left;margin-right:20px}.ms-content .ms-content-left .ms-content-left-title{font-weight:bold;background-color:#009aff;color:#fff;height:40px;line-height:40px;width:190px;padding:0 20px}.ms-content .ms-content-left .ms-content-left-ul{background-color:#fff;margin-top:1px;width:230px}.ms-content .ms-content-left .ms-content-left-ul a:hover{color:#fff}.ms-content .ms-content-left .ms-content-left-ul a:hover li{background-color:#54bcfe}.ms-content .ms-content-left .ms-content-left-ul a{color:#999999}.ms-content .ms-content-left .ms-content-left-ul li{height:40px;line-height:40px;font-size:14px;cursor:pointer;padding:0 20px}.ms-content .ms-content-left .ms-content-left-ul li .ms-content-left-li-more{float:right}.ms-content .ms-content-left .ms-content-left-ul .ms-content-left-li-first{color:#fff}.ms-content .ms-content-left .ms-content-left-ul .ms-content-left-li-first li{background-color:#54bcfe}.ms-content a:visited{color:#000000}.ms-content .ms-content-new-list{overflow:hidden;margin-top:20px}.ms-content .ms-content-right-position{font-size:14px;overflow:hidden;margin-bottom:20px}.ms-content .ms-content-right-position a:hover{color:#0099ff}.ms-content .ms-content-right-position span{padding:0 5px}.ms-content #ms-content-search{float:none;width:100%;margin-top:20px}.ms-content .ms-content-main-list{float:right;width:950px;min-height:400px}.ms-content .ms-content-main-list .ms-content-main-div{background-color:#fff;padding-bottom:30px}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul{margin:0 20px}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul a:link{color:#333;text-decoration:none}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul a:visited{color:#333;text-decoration:none}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul a:active{color:#333;text-decoration:none}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul a:hover{color:#0099ff;text-decoration:none}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul li{border-bottom:1px dotted #eee;padding:12px 0;overflow:hidden}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul .ms-content-main-li-span{padding-right:10px;float:left}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul .ms-content-main-li-title{float:left;color:#333;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;font-size:14px;width:500px}.ms-content .ms-content-main-list .ms-content-main-div .ms-content-main-ul .ms-content-main-li-time{float:right;color:#999999;font-size:14px}.ms-content .ms-content-main-page{text-align:center;margin-top:30px;margin-bottom:50px}.ms-content .ms-content-main-page a{color:#999;font-size:14px}.ms-content .ms-content-main-page a:hover{background-color:#eee}.ms-content .ms-content-main-page .ms-content-main-page-first,.ms-content .ms-content-main-page .ms-content-main-page-last{border:1px solid #ddd;padding:10px 15px;margin-right:-5px}.ms-content .ms-content-main-page .ms-content-main-page-upper,.ms-content .ms-content-main-page .ms-content-main-page-next{border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:10px 15px;margin-right:-5px}.ms-content .ms-content-main-page .ms-content-main-page-upper{border-right:1px solid #ddd}.ms-content .ms-content-main-page .ms-content-main-page-first{border-top-left-radius:4px;border-bottom-left-radius:4px}.ms-content .ms-content-main-page .ms-content-main-page-last{border-top-right-radius:4px;border-bottom-right-radius:4px}.ms-content .ms-content-main-div .ms-content-main-div-prompt{border-bottom:1px solid #d0cfcf99 99;padding-top:20px;padding-left:20px;padding-bottom:10px;font-size:14px;color:#999999}.ms-content .ms-content-main-div .ms-content-main-div-prompt span{color:#0198ff}.ms-content .ms-content-main-div .ms-content-main-ul li{height:22px;line-height:22px}.ms-content .ms-content-main-div .ms-content-main-ul a{font-size:14px}.ms-content .ms-content-main-div .ms-content-main-ul .ms-content-main-li-title:hover{color:#0099ff}.ms-content .ms-content-main-div .ms-content-main-ul .ms-content-main-ul-result{color:#0198ff}.ms-content .ms-content-main-div .ms-content-main-div-nothing{font-size:14px;color:#999999;padding-top:20px;padding-left:20px;text-align:center}/*# sourceMappingURL=./news-list.css.map */
\ No newline at end of file
.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-title{overflow:hidden}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-title .ms-content-right-main-title-div{color:#333}.ms-content-about .ms-content-main .ms-content-right #ms-content-right-main-title{padding-bottom:0;text-align:left;border-bottom:1px solid #fafafa}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon{font-size:12px;color:#999999;overflow:hidden;padding:20px 0}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-right-vertical{color:#ccc}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-icon-left div,.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-icon-right div{float:left;overflow:hidden}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-icon-left div span,.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-icon-right div span{margin:0 12px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-icon-right{float:right}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-right-main-icon-clicks,.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-right-main-icon-comment,.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-right-main-icon-Fabulous{background-image:url(../images/pics.png);width:16px;height:15px;margin-top:2px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-right-main-icon-clicks{background-position:-11px 84px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-right-main-icon-comment{background-position:-67px 84px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-right-main-icon-Fabulous{background-position:-120px 85px}.ms-content-about .ms-content-main .ms-content-right .ms-content-right-main-icon .ms-content-right-main-icon-num{margin-left:5px}.ms-content-about .ms-content-main .ms-content-right-main-content-Fabulous{width:952px;height:96px;border-top:1px solid #fafafa;background-color:#fff;display:flex;align-items:center}.ms-content-about .ms-content-main .ms-content-right-main-content-Fabulous .ms-content-right-main-content-icon{transition:all .6s;background-image:url(../images/pics.png);width:56px;height:56px;background-position:-45px 53px;background-color:#bababa;border-radius:50%;margin:0 auto;cursor:pointer}.ms-content-about .ms-content-main .ms-content-right-main-content-Fabulous .ms-is-attention{background-color:#009bff}.ms-content-about .ms-content-main .ms-content-right-comment{width:952px;background-color:#fff;margin-top:10px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-input{border-bottom:1px solid #fafafa;padding-bottom:40px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-input textarea::-webkit-input-placeholder{color:#ddd}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-input textarea{width:888px;height:15px;padding:10px;background-color:#fafafa;border:1px solid #eee;border-radius:3px;margin:0 20px;margin-top:20px;margin-bottom:10px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-input .ms-content-right-comment-button{width:910px;overflow:hidden;margin:0 20px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-input .ms-content-right-comment-button .ms-content-right-comment-expression{background-image:url(../images/pics.png);background-position:-2px 37px;width:30px;height:30px;float:left;cursor:pointer}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-input .ms-content-right-comment-button .ms-content-right-comment-submit{width:50px;background-color:#fafafa;font-size:14px;height:25px;border-radius:4px;color:#ddd;line-height:25px;text-align:center;float:right;cursor:no-drop}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-input .ms-content-right-comment-button .ms-submit-comments-css{opacity:.9 !important;cursor:pointer;background-color:#009aff !important;color:#ffffff}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-input .ms-content-right-comment-button .ms-submit-comments-css:hover{opacity:1 !important}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div{overflow:hidden;padding:20px 0;margin:0 20px;border-bottom:1px solid #fafafa}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-left{font-size:14px;margin-left:40px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-left .ms-content-right-comment-list-portrait{float:left;margin-right:20px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-left .ms-content-right-comment-list-portrait img{width:64px;height:64px;border-radius:50%}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-left .ms-content-right-comment-list-content{overflow:hidden}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-left .ms-content-right-comment-list-content .ms-content-right-comment-list-name{margin-bottom:20px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-left .ms-content-right-comment-list-content .ms-content-right-comment-list-comment{color:#999}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-right{float:right;margin-right:20px;overflow:hidden;height:15px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-right .ms-content-right-main-icon-comment,.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-right .ms-content-right-main-icon-Fabulous{background-image:url(../images/pics.png);width:16px;height:15px;float:left}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-right .ms-content-right-main-icon-comment{background-position:-67px 85px;margin-right:20px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-right .ms-content-right-main-icon-Fabulous{background-position:-120px 85px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-right .ms-content-right-main-icon-num{margin-left:5px;float:left;font-size:12px;color:#999}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-div-more{cursor:pointer}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-div-more,.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-div-no{text-align:center;font-size:14px;color:#999}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-div-load{text-align:center}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-div .ms-content-right-comment-list-div-load img{width:30px}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-active{border:none}.ms-content-about .ms-content-main .ms-content-right-comment .ms-content-right-comment-list .ms-content-right-comment-list-no-comment{text-align:center;height:200px;line-height:200px}/*# sourceMappingURL=./news-show.css.map */
\ No newline at end of file
<div class="ms-footer">
<div class="ms-footer-content">
<div class="ms-footer-left">
<div class="ms-footer-left-column">
<span class="ms-footer-left-column-about">
<a href='{ms:global.url/}/guanyuwomen53/index.html'>关于我们</a>
</span>|
<span class="ms-footer-left-column-course">
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#faz'>发展历程</a>
</span>|
<span class="ms-footer-left-column-contact">
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#lianx'>联系我们</a>
</span>
</div>
<span class="ms-footer-left-copyright">版权所有&copy;铭飞科技有限公司2012-2018保留一切权利</span>
</div>
<div class="ms-footer-right">
<img class='ms-footer-right-img-weixin' src="{ms:global.host/}/{ms:global.style/}/images/we-chat.png">
<a target="_blank" href='http://tieba.baidu.com/f?kw=%E9%93%AD%E9%A3%9E%E7%A7%91%E6%8A%80&fr=index&fp=0&ie=utf-8'><img class="ms-footer-right-baidu" src="{ms:global.host/}/{ms:global.style/}/images/baidu.png"></a>
<a target="_blank" href='http://weibo.com/killfen'><img src="{ms:global.host/}/{ms:global.style/}/images/micro-blog.png"></a>
<div class="ms-footer-right-weixin">
<p></p>
<img alt="" src="{ms:global.host/}/{ms:global.style/}/images/weixin.jpg">
</div>
</div>
</div>
</div>
<script>
/*导航下拉*/
$(function(){
$(".head-menu-list-li").hover(function(){
$(this).find(".head-menu-son-list").fadeToggle();
});
$('.ms-footer-right-img-weixin').hover(function(){
$('.ms-footer-right-weixin').toggle();
});
});
</script>
\ No newline at end of file
<title>{ms:global.name/}</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/plugins/iconfont/1.0.0/iconfont.css" />
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/base.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/index.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/advice.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/case-list.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/about.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/news-list.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/news-show.css">
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/center.css">
<script src="{ms:global.host/}/plugins/jquery/1.9.1/jquery-1.9.1.js"></script>
<script src="{ms:global.host/}/{ms:global.style/}/js/slider.js"></script>
<script src="{ms:global.host/}/static/plugins/less/3.9.0/less.min.js"></script>
<!--vue-懒加载-表单验证-->
<script src="{ms:global.host/}/plugins/vue/2.6.9/vue.min.js"></script>
<script src="{ms:global.host/}/plugins/validator/10.8.0/validator.min.js"></script>
<!-- Element -->
<link rel="stylesheet" href="{ms:global.host/}/plugins/element-ui/2.8.2/index.css">
<script src="{ms:global.host/}/plugins/element-ui/2.8.2/index.js"></script>
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/animate.css">
<script src="{ms:global.host/}/static/plugins/axios/0.18.0/axios.min.js"></script>
<script src="{ms:global.host/}/static/plugins/ms/1.0.0/ms.js"></script>
<script src="{ms:global.host/}/static/plugins/ms/1.0.0/ms.http.js"></script>
<script src="{ms:global.host/}/static/plugins/ms/1.0.0/ms.util.js"></script>
<script src="{ms:global.host/}/api/ms.people.min.js"></script>
<script src="{ms:global.host/}/static/plugins/plupload/plupload.full.min.js"></script>
<script src="{ms:global.host/}/static/plugins/qs/6.6.0/qs.min.js"></script>
<script src="{ms:global.host/}/static/plugins/ms/1.0.0/ms.upload.js"></script>
<script>
window.http = ms.http;
ms.base = "{ms:global.host/}";
ms.login = '{ms:global.host/}';
</script>
\ No newline at end of file
<div class="ms-head">
<div class="head-menu">
<div class="head-men-left head-menu-flex-center">
<a href="{ms:global.host/}/html/1/index.html">
<img src="http://cdn.mingsoft.net/images/logo.png" />
</a>
<ul class="head-menu-list">
<li class="head-menu-list-li">走进铭飞
<ul class="head-menu-son-list">
<li>
<a target="_blank" href='{ms:global.url/}/guanyuwomen53/index.html'>关于我们</a>
</li>
<li>
<a target="_blank" href='{ms:global.url/}/xinwenzhongxin/index.html'>公司动态</a>
</li>
<li>
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#faz'>发展历程</a>
</li>
<li>
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#lianx'>加入我们</a>
</li>
<li>
<a target="_blank" href='{ms:global.url/}/lianxiwomen19/index.html'>联系我们</a>
</li>
</ul>
</li>
<li class="head-menu-list-li">
<a href='{ms:global.url/}/wangzhananli/index.html'>案例</a>
</li>
<li class="head-menu-list-li">
<a target="_blank" href='http://store.mingsoft.net/mstore/index.do'>插件&模板</a>
<!-- <ul class="head-menu-son-list">
<li><a href='http://mstore.mingsoft.net/mstoreShow.do'>模板</a></li>
<li><a href='http://mstore.mingsoft.net/mstoreShow.do'>插件</a></li>
</ul> -->
</li>
<li class="head-menu-list-li">
<a target="_blank" href='{ms:global.url/}/lianxiwomen19/zaixianliuyan/index.html'>在线留言</a>
</li>
<li class="head-menu-list-li">技术支持
<ul class="head-menu-son-list">
<li>
<a target="_blank" href='http://bbs.mingsoft.net/mbbs/main.do'>开源社区</a>
</li>
<li>
<a target="_blank" href='https://gitee.com/mingSoft/MCMS'>源码下载</a>
</li>
<li>
<a target="_blank" href='http://doc.ms.mingsoft.net/plugs-cms/'>使用手册</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="head-men-right head-menu-flex-center">
<div class="head-menu-flex-center head-menu-right-search">
<form id="searchDataForm" action="{ms:global.host/}/mcms/search.do" method="post">
<input type="text" class='ms-search-input' name="content_title" placeholder="请输入关键字">
<!-- <i class="iconfont ms-search-click">&#xe85e;</i> -->
<input type="submit" value="" class="ms-search-click">
</form>
</div>
<div class="head-menu-right-content" id="ms-login-vue">
<span v-show="!isLogin" style="display: none;">
<span>
<a href='{ms:global.host/}/mdiyPage/login.do'>登录</a>
</span>|<span><a href='{ms:global.host/}/mdiyPage/register.do'>注册</a></span>
</span>
<div class="topbar-info J_userInfo loginSuccess hide-default" v-show="isLogin" style="display: none;">
<a class="user-name" href="{ms:global.host/}/people/center.do">
<img :src="'{ms:global.host/}/'+peopleInfo.puIcon" class="loginImg user_icon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'">
<b class="userName ms-userName" v-text="peopleInfo.puNickname"></b>
</a>
<a href="javascript:;" class="quitLogin" @click="quitLogin">退出</a>
</div>
</div>
</div>
</div>
</div>
<script>
var headVue = new Vue({
el: "#ms-login-vue",
data: {
isLogin: "", //登录状态
peopleInfo: "", //个人信息
imgUrl:"",
},
mounted: function() {
//获取个人信息
var target = this;
$.ajax({
type: "POST",
url: "{ms:global.host/}/checkLoginStatus.do",
success: function(msg) {
target.isLogin = msg.result; //判断用户是否登录,如登录,则target.isLogin===true
if(msg.result) {
$.ajax({
type: "GET",
url: "{ms:global.host/}/people/user/info.do",
success: function(msg) {
target.peopleInfo = msg; //target.peopleInfo为当前登录用户的基本信息
}
})
}
}
})
},
methods: {
//退出登录
quitLogin: function() {
var target = this;
$.ajax({
type: "GET",
url: "{ms:global.host/}/people/quit.do",
success: function(msg) {
if(msg.result) {
$("body").append("<form id='msHeadForm' action=''></form>");
$("#msHeadForm").attr("action", "{ms:global.host/}").submit();
}
}
})
},
},
})
/* $(function(){
var r=location.href;
if(r.match("53")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
}else if(r.match("141")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
}else if(r.match("59")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
}else if(r.match("155")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(1).addClass("head-active");
}else if(r.match("142")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(3).addClass("head-active");
}
}) */
</script>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment