Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
MCMS
Commits
1058ef21
Commit
1058ef21
authored
Oct 30, 2019
by
ms group dev
Browse files
Merge remote-tracking branch 'origin/4.7.2'
Conflicts: pom.xml src/main/java/net/mingsoft/config/WebConfig.java
parents
f56bed37
25f194bb
Changes
76
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/static/skin/manager/4.6.0/js/scripts.js
deleted
100644 → 0
View file @
f56bed37
jQuery
(
document
).
ready
(
function
()
{
$
(
'
.page-container form
'
).
submit
(
function
(){
var
username
=
$
(
this
).
find
(
'
.username
'
).
val
();
var
password
=
$
(
this
).
find
(
'
.password
'
).
val
();
if
(
username
==
''
)
{
$
(
this
).
find
(
'
.error
'
).
fadeOut
(
'
fast
'
,
function
(){
$
(
this
).
css
(
'
top
'
,
'
27px
'
);
});
$
(
this
).
find
(
'
.error
'
).
fadeIn
(
'
fast
'
,
function
(){
$
(
this
).
parent
().
find
(
'
.username
'
).
focus
();
});
return
false
;
}
if
(
password
==
''
)
{
$
(
this
).
find
(
'
.error
'
).
fadeOut
(
'
fast
'
,
function
(){
$
(
this
).
css
(
'
top
'
,
'
96px
'
);
});
$
(
this
).
find
(
'
.error
'
).
fadeIn
(
'
fast
'
,
function
(){
$
(
this
).
parent
().
find
(
'
.password
'
).
focus
();
});
return
false
;
}
});
$
(
'
.page-container form .username, .page-container form .password
'
).
keyup
(
function
(){
$
(
this
).
parent
().
find
(
'
.error
'
).
fadeOut
(
'
fast
'
);
});
});
src/main/webapp/static/skin/manager/4.6.0/js/supersized-init.js
deleted
100644 → 0
View file @
f56bed37
jQuery
(
function
(
$
){
$
.
supersized
({
// Functionality
slide_interval
:
4000
,
// Length between transitions
transition
:
1
,
// 0-None, 1-Fade, 2-Slide Top, 3-Slide Right, 4-Slide Bottom, 5-Slide Left, 6-Carousel Right, 7-Carousel Left
transition_speed
:
1000
,
// Speed of transition
performance
:
1
,
// 0-Normal, 1-Hybrid speed/quality, 2-Optimizes image quality, 3-Optimizes transition speed // (Only works for Firefox/IE, not Webkit)
// Size & Position
min_width
:
0
,
// Min width allowed (in pixels)
min_height
:
0
,
// Min height allowed (in pixels)
vertical_center
:
1
,
// Vertically center background
horizontal_center
:
1
,
// Horizontally center background
fit_always
:
0
,
// Image will never exceed browser width or height (Ignores min. dimensions)
fit_portrait
:
1
,
// Portrait images will not exceed browser height
fit_landscape
:
0
,
// Landscape images will not exceed browser width
// Components
slide_links
:
'
blank
'
,
// Individual links for each slide (Options: false, 'num', 'name', 'blank')
slides
:
[
// Slideshow Images
{
image
:
'
http://cdn.mingsoft.net/skin/manager/4.5.5/images/1.jpg
'
},
{
image
:
'
http://cdn.mingsoft.net/skin/manager/4.5.5/images/2.jpg
'
},
{
image
:
'
http://cdn.mingsoft.net/skin/manager/4.5.5/images/3.jpg
'
}
]
});
});
src/main/webapp/static/skin/manager/4.6.0/js/supersized.3.2.7.min.js
deleted
100644 → 0
View file @
f56bed37
/*
Supersized - Fullscreen Slideshow jQuery Plugin
Version : 3.2.7
Site : www.buildinternet.com/project/supersized
Author : Sam Dunn
Company : One Mighty Roar (www.onemightyroar.com)
License : MIT License / GPL License
*/
(
function
(
a
){
a
(
document
).
ready
(
function
(){
a
(
"
body
"
).
append
(
'
<div id="supersized-loader"></div><ul id="supersized"></ul>
'
)});
a
.
supersized
=
function
(
b
){
var
c
=
"
#supersized
"
,
d
=
this
;
d
.
$el
=
a
(
c
);
d
.
el
=
c
;
vars
=
a
.
supersized
.
vars
;
d
.
$el
.
data
(
"
supersized
"
,
d
);
api
=
d
.
$el
.
data
(
"
supersized
"
);
d
.
init
=
function
(){
a
.
supersized
.
vars
=
a
.
extend
(
a
.
supersized
.
vars
,
a
.
supersized
.
themeVars
);
a
.
supersized
.
vars
.
options
=
a
.
extend
({},
a
.
supersized
.
defaultOptions
,
a
.
supersized
.
themeOptions
,
b
);
d
.
options
=
a
.
supersized
.
vars
.
options
;
d
.
_build
()};
d
.
_build
=
function
(){
var
g
=
0
,
e
=
""
,
j
=
""
,
h
,
f
=
""
,
i
;
while
(
g
<=
d
.
options
.
slides
.
length
-
1
){
switch
(
d
.
options
.
slide_links
){
case
"
num
"
:
h
=
g
;
break
;
case
"
name
"
:
h
=
d
.
options
.
slides
[
g
].
title
;
break
;
case
"
blank
"
:
h
=
""
;
break
}
e
=
e
+
'
<li class="slide-
'
+
g
+
'
"></li>
'
;
if
(
g
==
d
.
options
.
start_slide
-
1
){
if
(
d
.
options
.
slide_links
){
j
=
j
+
'
<li class="slide-link-
'
+
g
+
'
current-slide"><a>
'
+
h
+
"
</a></li>
"
}
if
(
d
.
options
.
thumb_links
){
d
.
options
.
slides
[
g
].
thumb
?
i
=
d
.
options
.
slides
[
g
].
thumb
:
i
=
d
.
options
.
slides
[
g
].
image
;
f
=
f
+
'
<li class="thumb
'
+
g
+
'
current-thumb"><img src="
'
+
i
+
'
"/></li>
'
}}
else
{
if
(
d
.
options
.
slide_links
){
j
=
j
+
'
<li class="slide-link-
'
+
g
+
'
" ><a>
'
+
h
+
"
</a></li>
"
}
if
(
d
.
options
.
thumb_links
){
d
.
options
.
slides
[
g
].
thumb
?
i
=
d
.
options
.
slides
[
g
].
thumb
:
i
=
d
.
options
.
slides
[
g
].
image
;
f
=
f
+
'
<li class="thumb
'
+
g
+
'
"><img src="
'
+
i
+
'
"/></li>
'
}}
g
++
}
if
(
d
.
options
.
slide_links
){
a
(
vars
.
slide_list
).
html
(
j
)}
if
(
d
.
options
.
thumb_links
&&
vars
.
thumb_tray
.
length
){
a
(
vars
.
thumb_tray
).
append
(
'
<ul id="
'
+
vars
.
thumb_list
.
replace
(
"
#
"
,
""
)
+
'
">
'
+
f
+
"
</ul>
"
)}
a
(
d
.
el
).
append
(
e
);
if
(
d
.
options
.
thumbnail_navigation
){
vars
.
current_slide
-
1
<
0
?
prevThumb
=
d
.
options
.
slides
.
length
-
1
:
prevThumb
=
vars
.
current_slide
-
1
;
a
(
vars
.
prev_thumb
).
show
().
html
(
a
(
"
<img/>
"
).
attr
(
"
src
"
,
d
.
options
.
slides
[
prevThumb
].
image
));
vars
.
current_slide
==
d
.
options
.
slides
.
length
-
1
?
nextThumb
=
0
:
nextThumb
=
vars
.
current_slide
+
1
;
a
(
vars
.
next_thumb
).
show
().
html
(
a
(
"
<img/>
"
).
attr
(
"
src
"
,
d
.
options
.
slides
[
nextThumb
].
image
))}
d
.
_start
()};
d
.
_start
=
function
(){
if
(
d
.
options
.
start_slide
){
vars
.
current_slide
=
d
.
options
.
start_slide
-
1
}
else
{
vars
.
current_slide
=
Math
.
floor
(
Math
.
random
()
*
d
.
options
.
slides
.
length
)}
var
o
=
d
.
options
.
new_window
?
'
target="_blank"
'
:
""
;
if
(
d
.
options
.
performance
==
3
){
d
.
$el
.
addClass
(
"
speed
"
)}
else
{
if
((
d
.
options
.
performance
==
1
)
||
(
d
.
options
.
performance
==
2
)){
d
.
$el
.
addClass
(
"
quality
"
)}}
if
(
d
.
options
.
random
){
arr
=
d
.
options
.
slides
;
for
(
var
h
,
m
,
k
=
arr
.
length
;
k
;
h
=
parseInt
(
Math
.
random
()
*
k
),
m
=
arr
[
--
k
],
arr
[
k
]
=
arr
[
h
],
arr
[
h
]
=
m
){}
d
.
options
.
slides
=
arr
}
if
(
d
.
options
.
slides
.
length
>
1
){
if
(
d
.
options
.
slides
.
length
>
2
){
vars
.
current_slide
-
1
<
0
?
loadPrev
=
d
.
options
.
slides
.
length
-
1
:
loadPrev
=
vars
.
current_slide
-
1
;
var
g
=
(
d
.
options
.
slides
[
loadPrev
].
url
)?
"
href='
"
+
d
.
options
.
slides
[
loadPrev
].
url
+
"
'
"
:
""
;
var
q
=
a
(
'
<img src="
'
+
d
.
options
.
slides
[
loadPrev
].
image
+
'
"/>
'
);
var
n
=
d
.
el
+
"
li:eq(
"
+
loadPrev
+
"
)
"
;
q
.
appendTo
(
n
).
wrap
(
"
<a
"
+
g
+
o
+
"
></a>
"
).
parent
().
parent
().
addClass
(
"
image-loading prevslide
"
);
q
.
load
(
function
(){
a
(
this
).
data
(
"
origWidth
"
,
a
(
this
).
width
()).
data
(
"
origHeight
"
,
a
(
this
).
height
());
d
.
resizeNow
()})}}
else
{
d
.
options
.
slideshow
=
0
}
g
=
(
api
.
getField
(
"
url
"
))?
"
href='
"
+
api
.
getField
(
"
url
"
)
+
"
'
"
:
""
;
var
l
=
a
(
'
<img src="
'
+
api
.
getField
(
"
image
"
)
+
'
"/>
'
);
var
f
=
d
.
el
+
"
li:eq(
"
+
vars
.
current_slide
+
"
)
"
;
l
.
appendTo
(
f
).
wrap
(
"
<a
"
+
g
+
o
+
"
></a>
"
).
parent
().
parent
().
addClass
(
"
image-loading activeslide
"
);
l
.
load
(
function
(){
d
.
_origDim
(
a
(
this
));
d
.
resizeNow
();
d
.
launch
();
if
(
typeof
theme
!=
"
undefined
"
&&
typeof
theme
.
_init
==
"
function
"
){
theme
.
_init
()}});
if
(
d
.
options
.
slides
.
length
>
1
){
vars
.
current_slide
==
d
.
options
.
slides
.
length
-
1
?
loadNext
=
0
:
loadNext
=
vars
.
current_slide
+
1
;
g
=
(
d
.
options
.
slides
[
loadNext
].
url
)?
"
href='
"
+
d
.
options
.
slides
[
loadNext
].
url
+
"
'
"
:
""
;
var
e
=
a
(
'
<img src="
'
+
d
.
options
.
slides
[
loadNext
].
image
+
'
"/>
'
);
var
p
=
d
.
el
+
"
li:eq(
"
+
loadNext
+
"
)
"
;
e
.
appendTo
(
p
).
wrap
(
"
<a
"
+
g
+
o
+
"
></a>
"
).
parent
().
parent
().
addClass
(
"
image-loading
"
);
e
.
load
(
function
(){
a
(
this
).
data
(
"
origWidth
"
,
a
(
this
).
width
()).
data
(
"
origHeight
"
,
a
(
this
).
height
());
d
.
resizeNow
()})}
d
.
$el
.
css
(
"
visibility
"
,
"
hidden
"
);
a
(
"
.load-item
"
).
hide
()};
d
.
launch
=
function
(){
d
.
$el
.
css
(
"
visibility
"
,
"
visible
"
);
a
(
"
#supersized-loader
"
).
remove
();
if
(
typeof
theme
!=
"
undefined
"
&&
typeof
theme
.
beforeAnimation
==
"
function
"
){
theme
.
beforeAnimation
(
"
next
"
)}
a
(
"
.load-item
"
).
show
();
if
(
d
.
options
.
keyboard_nav
){
a
(
document
.
documentElement
).
keyup
(
function
(
e
){
if
(
vars
.
in_animation
){
return
false
}
if
((
e
.
keyCode
==
37
)
||
(
e
.
keyCode
==
40
)){
clearInterval
(
vars
.
slideshow_interval
);
d
.
prevSlide
()}
else
{
if
((
e
.
keyCode
==
39
)
||
(
e
.
keyCode
==
38
)){
clearInterval
(
vars
.
slideshow_interval
);
d
.
nextSlide
()}
else
{
if
(
e
.
keyCode
==
32
&&!
vars
.
hover_pause
){
clearInterval
(
vars
.
slideshow_interval
);
d
.
playToggle
()}}}})}
if
(
d
.
options
.
slideshow
&&
d
.
options
.
pause_hover
){
a
(
d
.
el
).
hover
(
function
(){
if
(
vars
.
in_animation
){
return
false
}
vars
.
hover_pause
=
true
;
if
(
!
vars
.
is_paused
){
vars
.
hover_pause
=
"
resume
"
;
d
.
playToggle
()}},
function
(){
if
(
vars
.
hover_pause
==
"
resume
"
){
d
.
playToggle
();
vars
.
hover_pause
=
false
}})}
if
(
d
.
options
.
slide_links
){
a
(
vars
.
slide_list
+
"
> li
"
).
click
(
function
(){
index
=
a
(
vars
.
slide_list
+
"
> li
"
).
index
(
this
);
targetSlide
=
index
+
1
;
d
.
goTo
(
targetSlide
);
return
false
})}
if
(
d
.
options
.
thumb_links
){
a
(
vars
.
thumb_list
+
"
> li
"
).
click
(
function
(){
index
=
a
(
vars
.
thumb_list
+
"
> li
"
).
index
(
this
);
targetSlide
=
index
+
1
;
api
.
goTo
(
targetSlide
);
return
false
})}
if
(
d
.
options
.
slideshow
&&
d
.
options
.
slides
.
length
>
1
){
if
(
d
.
options
.
autoplay
&&
d
.
options
.
slides
.
length
>
1
){
vars
.
slideshow_interval
=
setInterval
(
d
.
nextSlide
,
d
.
options
.
slide_interval
)}
else
{
vars
.
is_paused
=
true
}
a
(
"
.load-item img
"
).
bind
(
"
contextmenu mousedown
"
,
function
(){
return
false
})}
a
(
window
).
resize
(
function
(){
d
.
resizeNow
()})};
d
.
resizeNow
=
function
(){
return
d
.
$el
.
each
(
function
(){
a
(
"
img
"
,
d
.
el
).
each
(
function
(){
thisSlide
=
a
(
this
);
var
f
=
(
thisSlide
.
data
(
"
origHeight
"
)
/
thisSlide
.
data
(
"
origWidth
"
)).
toFixed
(
2
);
var
e
=
d
.
$el
.
width
(),
h
=
d
.
$el
.
height
(),
i
;
if
(
d
.
options
.
fit_always
){
if
((
h
/
e
)
>
f
){
g
()}
else
{
j
()}}
else
{
if
((
h
<=
d
.
options
.
min_height
)
&&
(
e
<=
d
.
options
.
min_width
)){
if
((
h
/
e
)
>
f
){
d
.
options
.
fit_landscape
&&
f
<
1
?
g
(
true
):
j
(
true
)}
else
{
d
.
options
.
fit_portrait
&&
f
>=
1
?
j
(
true
):
g
(
true
)}}
else
{
if
(
e
<=
d
.
options
.
min_width
){
if
((
h
/
e
)
>
f
){
d
.
options
.
fit_landscape
&&
f
<
1
?
g
(
true
):
j
()}
else
{
d
.
options
.
fit_portrait
&&
f
>=
1
?
j
():
g
(
true
)}}
else
{
if
(
h
<=
d
.
options
.
min_height
){
if
((
h
/
e
)
>
f
){
d
.
options
.
fit_landscape
&&
f
<
1
?
g
():
j
(
true
)}
else
{
d
.
options
.
fit_portrait
&&
f
>=
1
?
j
(
true
):
g
()}}
else
{
if
((
h
/
e
)
>
f
){
d
.
options
.
fit_landscape
&&
f
<
1
?
g
():
j
()}
else
{
d
.
options
.
fit_portrait
&&
f
>=
1
?
j
():
g
()}}}}}
function
g
(
k
){
if
(
k
){
if
(
thisSlide
.
width
()
<
e
||
thisSlide
.
width
()
<
d
.
options
.
min_width
){
if
(
thisSlide
.
width
()
*
f
>=
d
.
options
.
min_height
){
thisSlide
.
width
(
d
.
options
.
min_width
);
thisSlide
.
height
(
thisSlide
.
width
()
*
f
)}
else
{
j
()}}}
else
{
if
(
d
.
options
.
min_height
>=
h
&&!
d
.
options
.
fit_landscape
){
if
(
e
*
f
>=
d
.
options
.
min_height
||
(
e
*
f
>=
d
.
options
.
min_height
&&
f
<=
1
)){
thisSlide
.
width
(
e
);
thisSlide
.
height
(
e
*
f
)}
else
{
if
(
f
>
1
){
thisSlide
.
height
(
d
.
options
.
min_height
);
thisSlide
.
width
(
thisSlide
.
height
()
/
f
)}
else
{
if
(
thisSlide
.
width
()
<
e
){
thisSlide
.
width
(
e
);
thisSlide
.
height
(
thisSlide
.
width
()
*
f
)}}}}
else
{
thisSlide
.
width
(
e
);
thisSlide
.
height
(
e
*
f
)}}}
function
j
(
k
){
if
(
k
){
if
(
thisSlide
.
height
()
<
h
){
if
(
thisSlide
.
height
()
/
f
>=
d
.
options
.
min_width
){
thisSlide
.
height
(
d
.
options
.
min_height
);
thisSlide
.
width
(
thisSlide
.
height
()
/
f
)}
else
{
g
(
true
)}}}
else
{
if
(
d
.
options
.
min_width
>=
e
){
if
(
h
/
f
>=
d
.
options
.
min_width
||
f
>
1
){
thisSlide
.
height
(
h
);
thisSlide
.
width
(
h
/
f
)}
else
{
if
(
f
<=
1
){
thisSlide
.
width
(
d
.
options
.
min_width
);
thisSlide
.
height
(
thisSlide
.
width
()
*
f
)}}}
else
{
thisSlide
.
height
(
h
);
thisSlide
.
width
(
h
/
f
)}}}
if
(
thisSlide
.
parents
(
"
li
"
).
hasClass
(
"
image-loading
"
)){
a
(
"
.image-loading
"
).
removeClass
(
"
image-loading
"
)}
if
(
d
.
options
.
horizontal_center
){
a
(
this
).
css
(
"
left
"
,(
e
-
a
(
this
).
width
())
/
2
)}
if
(
d
.
options
.
vertical_center
){
a
(
this
).
css
(
"
top
"
,(
h
-
a
(
this
).
height
())
/
2
)}});
if
(
d
.
options
.
image_protect
){
a
(
"
img
"
,
d
.
el
).
bind
(
"
contextmenu mousedown
"
,
function
(){
return
false
})}
return
false
})};
d
.
nextSlide
=
function
(){
if
(
vars
.
in_animation
||!
api
.
options
.
slideshow
){
return
false
}
else
{
vars
.
in_animation
=
true
}
clearInterval
(
vars
.
slideshow_interval
);
var
h
=
d
.
options
.
slides
,
e
=
d
.
$el
.
find
(
"
.activeslide
"
);
a
(
"
.prevslide
"
).
removeClass
(
"
prevslide
"
);
e
.
removeClass
(
"
activeslide
"
).
addClass
(
"
prevslide
"
);
vars
.
current_slide
+
1
==
d
.
options
.
slides
.
length
?
vars
.
current_slide
=
0
:
vars
.
current_slide
++
;
var
g
=
a
(
d
.
el
+
"
li:eq(
"
+
vars
.
current_slide
+
"
)
"
),
i
=
d
.
$el
.
find
(
"
.prevslide
"
);
if
(
d
.
options
.
performance
==
1
){
d
.
$el
.
removeClass
(
"
quality
"
).
addClass
(
"
speed
"
)}
loadSlide
=
false
;
vars
.
current_slide
==
d
.
options
.
slides
.
length
-
1
?
loadSlide
=
0
:
loadSlide
=
vars
.
current_slide
+
1
;
var
k
=
d
.
el
+
"
li:eq(
"
+
loadSlide
+
"
)
"
;
if
(
!
a
(
k
).
html
()){
var
j
=
d
.
options
.
new_window
?
'
target="_blank"
'
:
""
;
imageLink
=
(
d
.
options
.
slides
[
loadSlide
].
url
)?
"
href='
"
+
d
.
options
.
slides
[
loadSlide
].
url
+
"
'
"
:
""
;
var
f
=
a
(
'
<img src="
'
+
d
.
options
.
slides
[
loadSlide
].
image
+
'
"/>
'
);
f
.
appendTo
(
k
).
wrap
(
"
<a
"
+
imageLink
+
j
+
"
></a>
"
).
parent
().
parent
().
addClass
(
"
image-loading
"
).
css
(
"
visibility
"
,
"
hidden
"
);
f
.
load
(
function
(){
d
.
_origDim
(
a
(
this
));
d
.
resizeNow
()})}
if
(
d
.
options
.
thumbnail_navigation
==
1
){
vars
.
current_slide
-
1
<
0
?
prevThumb
=
d
.
options
.
slides
.
length
-
1
:
prevThumb
=
vars
.
current_slide
-
1
;
a
(
vars
.
prev_thumb
).
html
(
a
(
"
<img/>
"
).
attr
(
"
src
"
,
d
.
options
.
slides
[
prevThumb
].
image
));
nextThumb
=
loadSlide
;
a
(
vars
.
next_thumb
).
html
(
a
(
"
<img/>
"
).
attr
(
"
src
"
,
d
.
options
.
slides
[
nextThumb
].
image
))}
if
(
typeof
theme
!=
"
undefined
"
&&
typeof
theme
.
beforeAnimation
==
"
function
"
){
theme
.
beforeAnimation
(
"
next
"
)}
if
(
d
.
options
.
slide_links
){
a
(
"
.current-slide
"
).
removeClass
(
"
current-slide
"
);
a
(
vars
.
slide_list
+
"
> li
"
).
eq
(
vars
.
current_slide
).
addClass
(
"
current-slide
"
)}
g
.
css
(
"
visibility
"
,
"
hidden
"
).
addClass
(
"
activeslide
"
);
switch
(
d
.
options
.
transition
){
case
0
:
case
"
none
"
:
g
.
css
(
"
visibility
"
,
"
visible
"
);
vars
.
in_animation
=
false
;
d
.
afterAnimation
();
break
;
case
1
:
case
"
fade
"
:
g
.
animate
({
opacity
:
0
},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
opacity
:
1
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
2
:
case
"
slideTop
"
:
g
.
animate
({
top
:
-
d
.
$el
.
height
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
top
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
3
:
case
"
slideRight
"
:
g
.
animate
({
left
:
d
.
$el
.
width
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
left
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
4
:
case
"
slideBottom
"
:
g
.
animate
({
top
:
d
.
$el
.
height
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
top
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
5
:
case
"
slideLeft
"
:
g
.
animate
({
left
:
-
d
.
$el
.
width
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
left
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
6
:
case
"
carouselRight
"
:
g
.
animate
({
left
:
d
.
$el
.
width
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
left
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
e
.
animate
({
left
:
-
d
.
$el
.
width
(),
avoidTransforms
:
false
},
d
.
options
.
transition_speed
);
break
;
case
7
:
case
"
carouselLeft
"
:
g
.
animate
({
left
:
-
d
.
$el
.
width
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
left
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
e
.
animate
({
left
:
d
.
$el
.
width
(),
avoidTransforms
:
false
},
d
.
options
.
transition_speed
);
break
}
return
false
};
d
.
prevSlide
=
function
(){
if
(
vars
.
in_animation
||!
api
.
options
.
slideshow
){
return
false
}
else
{
vars
.
in_animation
=
true
}
clearInterval
(
vars
.
slideshow_interval
);
var
h
=
d
.
options
.
slides
,
e
=
d
.
$el
.
find
(
"
.activeslide
"
);
a
(
"
.prevslide
"
).
removeClass
(
"
prevslide
"
);
e
.
removeClass
(
"
activeslide
"
).
addClass
(
"
prevslide
"
);
vars
.
current_slide
==
0
?
vars
.
current_slide
=
d
.
options
.
slides
.
length
-
1
:
vars
.
current_slide
--
;
var
g
=
a
(
d
.
el
+
"
li:eq(
"
+
vars
.
current_slide
+
"
)
"
),
i
=
d
.
$el
.
find
(
"
.prevslide
"
);
if
(
d
.
options
.
performance
==
1
){
d
.
$el
.
removeClass
(
"
quality
"
).
addClass
(
"
speed
"
)}
loadSlide
=
vars
.
current_slide
;
var
k
=
d
.
el
+
"
li:eq(
"
+
loadSlide
+
"
)
"
;
if
(
!
a
(
k
).
html
()){
var
j
=
d
.
options
.
new_window
?
'
target="_blank"
'
:
""
;
imageLink
=
(
d
.
options
.
slides
[
loadSlide
].
url
)?
"
href='
"
+
d
.
options
.
slides
[
loadSlide
].
url
+
"
'
"
:
""
;
var
f
=
a
(
'
<img src="
'
+
d
.
options
.
slides
[
loadSlide
].
image
+
'
"/>
'
);
f
.
appendTo
(
k
).
wrap
(
"
<a
"
+
imageLink
+
j
+
"
></a>
"
).
parent
().
parent
().
addClass
(
"
image-loading
"
).
css
(
"
visibility
"
,
"
hidden
"
);
f
.
load
(
function
(){
d
.
_origDim
(
a
(
this
));
d
.
resizeNow
()})}
if
(
d
.
options
.
thumbnail_navigation
==
1
){
loadSlide
==
0
?
prevThumb
=
d
.
options
.
slides
.
length
-
1
:
prevThumb
=
loadSlide
-
1
;
a
(
vars
.
prev_thumb
).
html
(
a
(
"
<img/>
"
).
attr
(
"
src
"
,
d
.
options
.
slides
[
prevThumb
].
image
));
vars
.
current_slide
==
d
.
options
.
slides
.
length
-
1
?
nextThumb
=
0
:
nextThumb
=
vars
.
current_slide
+
1
;
a
(
vars
.
next_thumb
).
html
(
a
(
"
<img/>
"
).
attr
(
"
src
"
,
d
.
options
.
slides
[
nextThumb
].
image
))}
if
(
typeof
theme
!=
"
undefined
"
&&
typeof
theme
.
beforeAnimation
==
"
function
"
){
theme
.
beforeAnimation
(
"
prev
"
)}
if
(
d
.
options
.
slide_links
){
a
(
"
.current-slide
"
).
removeClass
(
"
current-slide
"
);
a
(
vars
.
slide_list
+
"
> li
"
).
eq
(
vars
.
current_slide
).
addClass
(
"
current-slide
"
)}
g
.
css
(
"
visibility
"
,
"
hidden
"
).
addClass
(
"
activeslide
"
);
switch
(
d
.
options
.
transition
){
case
0
:
case
"
none
"
:
g
.
css
(
"
visibility
"
,
"
visible
"
);
vars
.
in_animation
=
false
;
d
.
afterAnimation
();
break
;
case
1
:
case
"
fade
"
:
g
.
animate
({
opacity
:
0
},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
opacity
:
1
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
2
:
case
"
slideTop
"
:
g
.
animate
({
top
:
d
.
$el
.
height
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
top
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
3
:
case
"
slideRight
"
:
g
.
animate
({
left
:
-
d
.
$el
.
width
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
left
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
4
:
case
"
slideBottom
"
:
g
.
animate
({
top
:
-
d
.
$el
.
height
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
top
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
5
:
case
"
slideLeft
"
:
g
.
animate
({
left
:
d
.
$el
.
width
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
left
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
break
;
case
6
:
case
"
carouselRight
"
:
g
.
animate
({
left
:
-
d
.
$el
.
width
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
left
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
e
.
animate
({
left
:
0
},
0
).
animate
({
left
:
d
.
$el
.
width
(),
avoidTransforms
:
false
},
d
.
options
.
transition_speed
);
break
;
case
7
:
case
"
carouselLeft
"
:
g
.
animate
({
left
:
d
.
$el
.
width
()},
0
).
css
(
"
visibility
"
,
"
visible
"
).
animate
({
left
:
0
,
avoidTransforms
:
false
},
d
.
options
.
transition_speed
,
function
(){
d
.
afterAnimation
()});
e
.
animate
({
left
:
0
},
0
).
animate
({
left
:
-
d
.
$el
.
width
(),
avoidTransforms
:
false
},
d
.
options
.
transition_speed
);
break
}
return
false
};
d
.
playToggle
=
function
(){
if
(
vars
.
in_animation
||!
api
.
options
.
slideshow
){
return
false
}
if
(
vars
.
is_paused
){
vars
.
is_paused
=
false
;
if
(
typeof
theme
!=
"
undefined
"
&&
typeof
theme
.
playToggle
==
"
function
"
){
theme
.
playToggle
(
"
play
"
)}
vars
.
slideshow_interval
=
setInterval
(
d
.
nextSlide
,
d
.
options
.
slide_interval
)}
else
{
vars
.
is_paused
=
true
;
if
(
typeof
theme
!=
"
undefined
"
&&
typeof
theme
.
playToggle
==
"
function
"
){
theme
.
playToggle
(
"
pause
"
)}
clearInterval
(
vars
.
slideshow_interval
)}
return
false
};
d
.
goTo
=
function
(
f
){
if
(
vars
.
in_animation
||!
api
.
options
.
slideshow
){
return
false
}
var
e
=
d
.
options
.
slides
.
length
;
if
(
f
<
0
){
f
=
e
}
else
{
if
(
f
>
e
){
f
=
1
}}
f
=
e
-
f
+
1
;
clearInterval
(
vars
.
slideshow_interval
);
if
(
typeof
theme
!=
"
undefined
"
&&
typeof
theme
.
goTo
==
"
function
"
){
theme
.
goTo
()}
if
(
vars
.
current_slide
==
e
-
f
){
if
(
!
(
vars
.
is_paused
)){
vars
.
slideshow_interval
=
setInterval
(
d
.
nextSlide
,
d
.
options
.
slide_interval
)}
return
false
}
if
(
e
-
f
>
vars
.
current_slide
){
vars
.
current_slide
=
e
-
f
-
1
;
vars
.
update_images
=
"
next
"
;
d
.
_placeSlide
(
vars
.
update_images
)}
else
{
if
(
e
-
f
<
vars
.
current_slide
){
vars
.
current_slide
=
e
-
f
+
1
;
vars
.
update_images
=
"
prev
"
;
d
.
_placeSlide
(
vars
.
update_images
)}}
if
(
d
.
options
.
slide_links
){
a
(
vars
.
slide_list
+
"
> .current-slide
"
).
removeClass
(
"
current-slide
"
);
a
(
vars
.
slide_list
+
"
> li
"
).
eq
((
e
-
f
)).
addClass
(
"
current-slide
"
)}
if
(
d
.
options
.
thumb_links
){
a
(
vars
.
thumb_list
+
"
> .current-thumb
"
).
removeClass
(
"
current-thumb
"
);
a
(
vars
.
thumb_list
+
"
> li
"
).
eq
((
e
-
f
)).
addClass
(
"
current-thumb
"
)}};
d
.
_placeSlide
=
function
(
e
){
var
h
=
d
.
options
.
new_window
?
'
target="_blank"
'
:
""
;
loadSlide
=
false
;
if
(
e
==
"
next
"
){
vars
.
current_slide
==
d
.
options
.
slides
.
length
-
1
?
loadSlide
=
0
:
loadSlide
=
vars
.
current_slide
+
1
;
var
g
=
d
.
el
+
"
li:eq(
"
+
loadSlide
+
"
)
"
;
if
(
!
a
(
g
).
html
()){
var
h
=
d
.
options
.
new_window
?
'
target="_blank"
'
:
""
;
imageLink
=
(
d
.
options
.
slides
[
loadSlide
].
url
)?
"
href='
"
+
d
.
options
.
slides
[
loadSlide
].
url
+
"
'
"
:
""
;
var
f
=
a
(
'
<img src="
'
+
d
.
options
.
slides
[
loadSlide
].
image
+
'
"/>
'
);
f
.
appendTo
(
g
).
wrap
(
"
<a
"
+
imageLink
+
h
+
"
></a>
"
).
parent
().
parent
().
addClass
(
"
image-loading
"
).
css
(
"
visibility
"
,
"
hidden
"
);
f
.
load
(
function
(){
d
.
_origDim
(
a
(
this
));
d
.
resizeNow
()})}
d
.
nextSlide
()}
else
{
if
(
e
==
"
prev
"
){
vars
.
current_slide
-
1
<
0
?
loadSlide
=
d
.
options
.
slides
.
length
-
1
:
loadSlide
=
vars
.
current_slide
-
1
;
var
g
=
d
.
el
+
"
li:eq(
"
+
loadSlide
+
"
)
"
;
if
(
!
a
(
g
).
html
()){
var
h
=
d
.
options
.
new_window
?
'
target="_blank"
'
:
""
;
imageLink
=
(
d
.
options
.
slides
[
loadSlide
].
url
)?
"
href='
"
+
d
.
options
.
slides
[
loadSlide
].
url
+
"
'
"
:
""
;
var
f
=
a
(
'
<img src="
'
+
d
.
options
.
slides
[
loadSlide
].
image
+
'
"/>
'
);
f
.
appendTo
(
g
).
wrap
(
"
<a
"
+
imageLink
+
h
+
"
></a>
"
).
parent
().
parent
().
addClass
(
"
image-loading
"
).
css
(
"
visibility
"
,
"
hidden
"
);
f
.
load
(
function
(){
d
.
_origDim
(
a
(
this
));
d
.
resizeNow
()})}
d
.
prevSlide
()}}};
d
.
_origDim
=
function
(
e
){
e
.
data
(
"
origWidth
"
,
e
.
width
()).
data
(
"
origHeight
"
,
e
.
height
())};
d
.
afterAnimation
=
function
(){
if
(
d
.
options
.
performance
==
1
){
d
.
$el
.
removeClass
(
"
speed
"
).
addClass
(
"
quality
"
)}
if
(
vars
.
update_images
){
vars
.
current_slide
-
1
<
0
?
setPrev
=
d
.
options
.
slides
.
length
-
1
:
setPrev
=
vars
.
current_slide
-
1
;
vars
.
update_images
=
false
;
a
(
"
.prevslide
"
).
removeClass
(
"
prevslide
"
);
a
(
d
.
el
+
"
li:eq(
"
+
setPrev
+
"
)
"
).
addClass
(
"
prevslide
"
)}
vars
.
in_animation
=
false
;
if
(
!
vars
.
is_paused
&&
d
.
options
.
slideshow
){
vars
.
slideshow_interval
=
setInterval
(
d
.
nextSlide
,
d
.
options
.
slide_interval
);
if
(
d
.
options
.
stop_loop
&&
vars
.
current_slide
==
d
.
options
.
slides
.
length
-
1
){
d
.
playToggle
()}}
if
(
typeof
theme
!=
"
undefined
"
&&
typeof
theme
.
afterAnimation
==
"
function
"
){
theme
.
afterAnimation
()}
return
false
};
d
.
getField
=
function
(
e
){
return
d
.
options
.
slides
[
vars
.
current_slide
][
e
]};
d
.
init
()};
a
.
supersized
.
vars
=
{
thumb_tray
:
"
#thumb-tray
"
,
thumb_list
:
"
#thumb-list
"
,
slide_list
:
"
#slide-list
"
,
current_slide
:
0
,
in_animation
:
false
,
is_paused
:
false
,
hover_pause
:
false
,
slideshow_interval
:
false
,
update_images
:
false
,
options
:{}};
a
.
supersized
.
defaultOptions
=
{
slideshow
:
1
,
autoplay
:
1
,
start_slide
:
1
,
stop_loop
:
0
,
random
:
0
,
slide_interval
:
5000
,
transition
:
1
,
transition_speed
:
750
,
new_window
:
1
,
pause_hover
:
0
,
keyboard_nav
:
1
,
performance
:
1
,
image_protect
:
1
,
fit_always
:
0
,
fit_landscape
:
0
,
fit_portrait
:
1
,
min_width
:
0
,
min_height
:
0
,
horizontal_center
:
1
,
vertical_center
:
1
,
slide_links
:
1
,
thumb_links
:
1
,
thumbnail_navigation
:
0
};
a
.
fn
.
supersized
=
function
(
b
){
return
this
.
each
(
function
(){(
new
a
.
supersized
(
b
))})}})(
jQuery
);
\ No newline at end of file
src/main/webapp/static/skin/manager/4.6.4/less/login.less
deleted
100644 → 0
View file @
f56bed37
html,body{
width:100%;
height:100%;
margin: 0;
min-width: 1200px;
}
p{
margin: 0;
}
#errorDisplay{
background-color: #fff;
border-radius: 4px;
width: 680px;
height: 88px;
margin: auto;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
.errorData{
overflow: hidden;
margin-top: 18px;
width: 88%;
p{
line-height: 24px;
font-size: 16px;
color: #999;
}
}
img{
float: left;
padding-top: 20px;
padding-right: 15px;
padding-left: 25px;
}
}
body{
font-family: "微软雅黑";
background:url("../images/background.png") no-repeat;
background-size: 100% 100%;
}
#mcms-login{
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
.login-float{
float: left;
}
.login-form-container{
width: 340px;
height: 320px;
background-color: #ffffff;
// padding: 39px 54px;
.login-title{
padding: 39px 54px 0 54px;
line-height: 13px;
.login-chinese-title{
font-size: 16px;
}
}
.ms-login-error-text{
height: 20px;
font-size: 12px;
color: #e4393c;
display: flex;
align-items: center;
margin: 5px 54px;
img{
padding-right: 5px;
}
}
form{
padding: 0 52px;
.login-people-name,.login-code input{
height: 34px;
padding:5px 10px;
}
.login-people-name,.login-code,.login-remmember-password{
margin-bottom: 12px;
}
.login-people-name{
width: 100%;
}
input{
border: 1px solid #cccccc;
border-radius: 3px;
outline: none;
&::-webkit-input-placeholder {
color: #999999;
font-size: 12px;
}
&::-moz-placeholder {
color: #999999;
font-size: 12px;
}
}
.ms-error{
border:1px solid #e4393c;
}
.login-code{
overflow: hidden;
.login-code-input{
width: 108px;
}
.login-code-input,.login-code-img{
margin-right: 6px;
}
.login-code-img{
height: 34px;
}
.login-code-text{
font-size: 10px;
line-height: 15px;
}
.login-code-change{
cursor: pointer;
}
}
.login-remember{
margin: 0;
font-weight: 500;
}
.login-remmember-password{
display: flex;
line-height: 13px;
align-items: center;
height: 13px;
}
.login-remmember-password input[type="checkbox"]{
margin-right: 6px;
}
.login-button{
width: 100%;
cursor: pointer;
height: 34px;
line-height: 34px;
font-size: 14px;
color: #ffffff;
text-align: center;
background-color:#eeeeee;
border-radius:4px;
background-size: 100% 100%;
}
}
.login-chinese-title,.login-code-change{
color: #0099ff;
}
.login-english-title,.login-remmember-password,.login-code-text{
color: #999999;
}
.login-english-title,.login-remmember-password{
font-size: 12px;
}
}
}
src/main/webapp/templets/1/default/css/about.css
0 → 100644
View file @
1058ef21
.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
src/main/webapp/templets/1/default/css/advice.css
0 → 100644
View file @
1058ef21
.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
src/main/webapp/templets/1/default/css/base.css
0 → 100644
View file @
1058ef21
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
src/main/webapp/templets/1/default/css/case-list.css
0 → 100644
View file @
1058ef21
.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
(
3
n
)
{
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
src/main/webapp/templets/1/default/css/center.css
0 → 100644
View file @
1058ef21
.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
src/main/webapp/templets/1/default/css/index.css
0 → 100644
View file @
1058ef21
body
{
font-size
:
16px
!important
;
font-family
:
inherit
!important
}
.ms-head
{
box-sizing
:
initial
!important
}
.ms-head
*
{
box-sizing
:
initial
!important
}
.ms-content-index
{
min-height
:
550px
}
.ms-content-index
#ms-content-main-case-left
{
margin-right
:
0
}
.ms-content-index
.ms-content-template
.ms-index-tabs
{
text-align
:
center
;
border
:
none
;
margin-bottom
:
3px
}
.ms-content-index
.ms-content-template
.ms-index-tabs
li
{
margin-right
:
15px
;
float
:
none
;
display
:
inline-block
;
font-size
:
2.4rem
}
.ms-content-index
.ms-content-template
.ms-index-tabs
li
a
:hover
{
color
:
#333
}
.ms-content-index
.ms-content-template
.ms-index-tabs
li
a
{
border
:
none
!important
;
color
:
#777
;
background-color
:
white
;
padding
:
10px
0
;
font-size
:
20px
}
.ms-content-index
.ms-content-template
.ms-index-tabs
.active
a
{
border-bottom
:
2px
solid
#00b0ff
!important
;
color
:
#333
}
.ms-content-index
.ms-content-template
.ms-content-all
{
min-height
:
700px
;
padding
:
20px
0
;
width
:
100%
;
background
:
#fafafa
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
{
background
:
#fafafa
;
width
:
1200px
;
margin
:
auto
;
overflow
:
hidden
;
padding-bottom
:
20px
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
{
display
:
flex
;
flex-wrap
:
wrap
;
justify-content
:
space-between
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
{
display
:
inline-block
;
position
:
relative
;
margin
:
20px
0
0
0
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-more
{
width
:
385px
;
height
:
347px
;
background-color
:
white
;
line-height
:
364px
;
text-align
:
center
;
background-size
:
100%
100%
;
background-image
:
url(../images/more.png)
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-more
div
{
border
:
1px
solid
#aaa
;
color
:
#666
;
padding
:
6px
18px
;
display
:
inline-block
;
line-height
:
1
;
border-radius
:
30px
;
font-size
:
1.4rem
;
cursor
:
pointer
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-more
div
:hover
{
background
:
#aaa
;
color
:
white
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-info
{
padding
:
18px
;
background
:
white
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-info
span
{
display
:
block
;
margin-bottom
:
18px
;
color
:
#666
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-info
.ms-model-info-img
{
width
:
35px
;
height
:
35px
;
border-radius
:
50%
;
margin-right
:
6px
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-info
.ms-model-type
{
color
:
#fb803c
;
display
:
inline-block
;
float
:
right
;
font-size
:
2.4rem
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-img
{
overflow
:
hidden
;
position
:
relative
;
height
:
235px
;
z-index
:
2
;
display
:
block
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-img
img
{
width
:
385px
;
position
:
relative
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-mobile-img
{
position
:
absolute
;
overflow
:
hidden
;
z-index
:
3
;
right
:
0
;
top
:
0
;
height
:
285px
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-mobile-img
div
{
width
:
150px
;
height
:
192px
;
padding
:
0
15px
0
26px
;
margin-top
:
47px
;
overflow
:
hidden
;
position
:
relative
}
.ms-content-index
.ms-content-template
.ms-content-all
.tab-content
.ms-model-content
.ms-model-list
.ms-model-mobile-img
div
img
{
width
:
100%
;
position
:
relative
;
min-height
:
100%
}
.ms-content-index
.ms-content-case
{
width
:
100%
;
overflow
:
hidden
;
background-color
:
#fff
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
{
width
:
1200px
;
margin
:
auto
;
overflow
:
hidden
;
padding-bottom
:
40px
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-title
{
overflow
:
hidden
;
border-bottom
:
1px
solid
#eee
;
padding-bottom
:
20px
;
padding-top
:
20px
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-title
.ms-content-case-title-words
{
float
:
left
;
font-size
:
20px
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-title
.ms-content-case-more
{
float
:
right
;
font-size
:
14px
;
color
:
#999
;
cursor
:
pointer
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-title
.ms-content-case-more
a
:link
{
color
:
#999
;
text-decoration
:
none
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-title
.ms-content-case-more
a
:visited
{
color
:
#999
;
text-decoration
:
none
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.ms-content-main-case
:nth-child
(
3
n
)
{
margin-right
:
0
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.ms-content-main-case
{
border
:
1px
solid
#f0f0f0
;
width
:
384px
;
height
:
332px
;
margin-right
:
22px
;
float
:
left
;
position
:
relative
;
overflow
:
hidden
;
color
:
#ffffff
;
margin-top
:
20px
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.ms-content-main-case
:hover
.ms-content-main-case-explain
{
display
:
block
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.ms-content-main-case
.ms-content-main-case-img
{
width
:
384px
;
height
:
334px
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.ms-content-main-case
.ms-content-main-case-img
img
{
width
:
100%
;
height
:
100%
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.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-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.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-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.ms-content-main-case
.ms-content-main-case-explain
.ms-content-main-case-content
{
min-height
:
215px
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.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-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.ms-content-main-case
.ms-content-main-case-explain
.ms-content-main-case-content
p
img
{
width
:
90px
;
text-align
:
center
;
margin
:
10px
0
0
0
;
height
:
90px
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.ms-content-main-case
.ms-content-main-case-explain
.ms-content-main-case-click
{
text-align
:
center
}
.ms-content-index
.ms-content-case
.ms-content-case-mian
.ms-content-case-list
.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-index
.ms-content-product
{
background
:
#fafafa
}
.ms-content-index
.ms-content-product
.ms-content-product-main
{
width
:
1200px
;
padding
:
20px
0
;
margin
:
auto
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-title
{
padding
:
15px
0
;
font-size
:
18px
;
text-align
:
center
;
border-bottom
:
1px
solid
#eee
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-title
.ms-content-product-title-words
{
font-size
:
20px
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
{
margin
:
20px
0
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
{
overflow
:
hidden
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
li
:last-child
{
margin-right
:
0
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
li
{
width
:
384px
;
margin-right
:
22px
;
background-color
:
#fff
;
float
:
left
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
li
img
{
width
:
100%
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
li
.ms-content-product-list-content
{
margin
:
0
20px
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
li
.ms-content-product-list-content
a
:hover
{
color
:
#0099ff
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
li
.ms-content-product-list-content
.ms-content-product-list-content-title
{
margin
:
18px
0
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
li
.ms-content-product-list-content
.ms-content-product-list-content-title
a
{
color
:
#555
;
font-size
:
16px
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
li
.ms-content-product-list-content
.ms-content-product-list-content-title
a
:hover
{
color
:
#0099ff
}
.ms-content-index
.ms-content-product
.ms-content-product-main
.ms-content-product-list
.ms-content-product-list-ul
li
.ms-content-product-list-content
.ms-content-product-list-content-describe
{
font-size
:
12px
;
color
:
#999
;
padding-bottom
:
20px
}
.ms-content-index
.ms-content-news-main-title-more
,
.ms-content-index
.ms-content-case-more
{
padding-top
:
9px
;
font-size
:
14px
}
.ms-content-index
.ms-content-news-main-title-more
a
:hover
,
.ms-content-index
.ms-content-case-more
a
:hover
{
color
:
#0099ff
!important
}
.ms-content-index
.ms-content-news
{
margin-bottom
:
40px
;
background-color
:
#fff
}
.ms-content-index
.ms-content-news
.ms-content-news-main
{
width
:
1200px
;
margin
:
auto
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-title
{
overflow
:
hidden
;
border-bottom
:
1px
solid
#eee
;
padding-bottom
:
20px
;
padding-top
:
40px
;
line-height
:
1
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-title
.ms-content-news-main-title-words
{
float
:
left
;
font-size
:
20px
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-title
.ms-content-news-main-title-more
{
float
:
right
;
font-size
:
14px
;
color
:
#999
;
cursor
:
pointer
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-title
.ms-content-news-main-title-more
a
:link
{
color
:
#999
;
text-decoration
:
none
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-title
.ms-content-news-main-title-more
a
:visited
{
color
:
#999
;
text-decoration
:
none
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-img-text
{
margin-top
:
21px
;
height
:
250px
;
padding-bottom
:
40px
;
overflow
:
hidden
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-img-text
img
{
float
:
left
;
margin-right
:
20px
;
width
:
420px
;
height
:
251px
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-img-text
.ms-content-news-main-ul
{
overflow
:
hidden
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-img-text
.ms-content-news-main-ul
span
:hover
{
color
:
#0099ff
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-img-text
.ms-content-news-main-ul
li
{
overflow
:
hidden
;
margin-bottom
:
14px
;
border-bottom
:
1px
dotted
#eee
;
padding-bottom
:
10px
;
line-height
:
1
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-img-text
.ms-content-news-main-ul
li
.ms-content-news-main-li-title
{
float
:
left
;
font-size
:
14px
;
color
:
#555
;
height
:
19px
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-img-text
.ms-content-news-main-ul
li
.ms-content-news-main-li-title
.ms-content-news-main-li-span
{
margin-right
:
12px
}
.ms-content-index
.ms-content-news
.ms-content-news-main
.ms-content-news-main-img-text
.ms-content-news-main-ul
li
.ms-content-news-main-li-time
{
float
:
right
;
font-size
:
14px
;
color
:
#999
}
/*# sourceMappingURL=./index.css.map */
\ No newline at end of file
src/main/webapp/templets/1/default/css/login.css
0 → 100644
View file @
1058ef21
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
:
120px
;
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
src/main/webapp/templets/1/default/css/news-list.css
0 → 100644
View file @
1058ef21
.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
src/main/webapp/templets/1/default/css/news-show.css
0 → 100644
View file @
1058ef21
.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
src/main/webapp/templets/1/default/head-file.htm
View file @
1058ef21
<title>
{ms:global.name/}
</title>
<title>
{ms:global.name/}
</title>
<meta
charset=
"utf-8"
>
<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/}/plugins/iconfont/1.0.0/iconfont.css"
/>
<link
rel=
"stylesheet/less"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/less/base.less"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/css/base.css"
>
<link
rel=
"stylesheet/less"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/less/index.less"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/css/index.css"
>
<link
rel=
"stylesheet/less"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/less/advice.less"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/css/advice.css"
>
<link
rel=
"stylesheet/less"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/less/case-list.less"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/css/case-list.css"
>
<link
rel=
"stylesheet/less"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/less/about.less"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/css/about.css"
>
<link
rel=
"stylesheet/less"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/less/news-list.less"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/css/news-list.css"
>
<link
rel=
"stylesheet/less"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/less/news-show.less"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/css/news-show.css"
>
<link
rel=
"stylesheet/less"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/less/center.less"
>
<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/}/plugins/jquery/1.9.1/jquery-1.9.1.js"
></script>
<script
src=
"{ms:global.host/}/static/plugins/less/3.9.0/less.min.js"
></script>
<script
src=
"{ms:global.host/}/{ms:global.style/}/js/slider.js"
></script>
<!--vue-懒加载-表单验证-->
<script
src=
"{ms:global.host/}/static/plugins/less/3.9.0/less.min.js"
></script>
<script
src=
"{ms:global.host/}/plugins/vue/2.6.9/vue.min.js"
></script>
<!--vue-懒加载-表单验证-->
<script
src=
"{ms:global.host/}/plugins/validator/10.8.0/validator.min.js"
></script>
<script
src=
"{ms:global.host/}/plugins/vue/2.6.9/vue.min.js"
></script>
<!-- Element -->
<script
src=
"{ms:global.host/}/plugins/validator/10.8.0/validator.min.js"
></script>
<link
rel=
"stylesheet"
href=
"{ms:global.host/}/plugins/element-ui/2.8.2/index.css"
>
<!-- Element -->
<script
src=
"{ms:global.host/}/plugins/element-ui/2.8.2/index.js"
></script>
<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>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/{ms:global.style/}/css/animate.css"
>
<script
src=
"{ms:global.host/}/static/plugins/ms/1.0.0/ms.js"
></script>
<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.http.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.util.js"
></script>
<script
src=
"{ms:global.host/}/static/plugins/ms/1.0.0/ms.http.js"
></script>
<script
src=
"{ms:global.host/}/api/ms.people.min.js"
></script>
<script
src=
"{ms:global.host/}/static/plugins/ms/1.0.0/ms.util.js"
></script>
<script
src=
"{ms:global.host/}/static/plugins/plupload/plupload.full.min.js"
></script>
<script
src=
"{ms:global.host/}/api/ms.people.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/plupload/plupload.full.min.js"
></script>
<script
src=
"{ms:global.host/}/static/plugins/ms/1.0.0/ms.upload.js"
></script>
<script
src=
"{ms:global.host/}/static/plugins/qs/6.6.0/qs.min.js"
></script>
<script>
<script
src=
"{ms:global.host/}/static/plugins/ms/1.0.0/ms.upload.js"
></script>
window
.
http
=
ms
.
http
;
<script>
ms
.
base
=
"
{ms:global.host/}
"
;
window
.
http
=
ms
.
http
;
ms
.
login
=
'
{ms:global.host/}
'
;
ms
.
base
=
"
{ms:global.host/}
"
;
ms
.
login
=
'
{ms:global.host/}
'
;
</script>
</script>
\ No newline at end of file
src/main/webapp/templets/1/default/head.htm
View file @
1058ef21
<div
class=
"ms-head"
>
<div
class=
"ms-head"
>
<div
class=
"head-menu"
>
<div
class=
"head-menu"
>
<div
class=
"head-men-left head-menu-flex-center"
>
<div
class=
"head-men-left head-menu-flex-center"
>
<a
href=
"{ms:global.host/}/html/1/index.html"
>
<a
href=
"{ms:global.host/}/html/1/index.html"
>
<img
src=
"http://cdn.mingsoft.net/images/logo.png"
/>
<img
src=
"http://cdn.mingsoft.net/images/logo.png"
/>
</a>
</a>
<ul
class=
"head-menu-list"
>
<ul
class=
"head-menu-list"
>
<li
class=
"head-menu-list-li"
>
走进铭飞
<li
class=
"head-menu-list-li"
>
走进铭飞
<ul
class=
"head-menu-son-list"
>
<ul
class=
"head-menu-son-list"
>
<li>
<li>
<a
target=
"_blank"
href=
'{ms:global.url/}/53/index.html'
>
关于我们
</a>
<a
target=
"_blank"
href=
'{ms:global.url/}/53/index.html'
>
关于我们
</a>
</li>
</li>
<li>
<li>
<a
target=
"_blank"
href=
'{ms:global.url/}/59/index.html'
>
公司动态
</a>
<a
target=
"_blank"
href=
'{ms:global.url/}/59/index.html'
>
公司动态
</a>
</li>
</li>
<li>
<li>
<a
target=
"_blank"
href=
'http://mingsoft.net/html/1//5527/index.html#faz'
>
发展历程
</a>
<a
target=
"_blank"
href=
'http://mingsoft.net/html/1//5527/index.html#faz'
>
发展历程
</a>
</li>
</li>
<li>
<li>
<a
target=
"_blank"
href=
'http://mingsoft.net/html/1//5527/index.html#lianx'
>
加入我们
</a>
<a
target=
"_blank"
href=
'http://mingsoft.net/html/1//5527/index.html#lianx'
>
加入我们
</a>
</li>
</li>
<li>
<li>
<a
target=
"_blank"
href=
'{ms:global.url/}/19/141/index.html'
>
联系我们
</a>
<a
target=
"_blank"
href=
'{ms:global.url/}/19/141/index.html'
>
联系我们
</a>
</li>
</li>
</ul>
</ul>
</li>
</li>
<li
class=
"head-menu-list-li"
>
<li
class=
"head-menu-list-li"
>
<a
href=
'{ms:global.url/}/149/index.html'
>
案例
</a>
<a
href=
'{ms:global.url/}/149/index.html'
>
案例
</a>
</li>
</li>
<li
class=
"head-menu-list-li"
>
<li
class=
"head-menu-list-li"
>
<a
target=
"_blank"
href=
'http://
m
store.mingsoft.net/mstore
Show
.do'
>
插件
&
模板
</a>
<a
target=
"_blank"
href=
'http://store.mingsoft.net/mstore
/index
.do'
>
插件
&
模板
</a>
<!-- <ul class="head-menu-son-list">
<!-- <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>
<li><a href='http://mstore.mingsoft.net/mstoreShow.do'>插件</a></li>
<li><a href='http://mstore.mingsoft.net/mstoreShow.do'>插件</a></li>
</ul> -->
</ul> -->
</li>
</li>
<li
class=
"head-menu-list-li"
>
<li
class=
"head-menu-list-li"
>
<a
target=
"_blank"
href=
'{ms:global.url/}/19/142/index.html'
>
在线留言
</a>
<a
target=
"_blank"
href=
'{ms:global.url/}/19/142/index.html'
>
在线留言
</a>
</li>
</li>
<li
class=
"head-menu-list-li"
>
技术支持
<li
class=
"head-menu-list-li"
>
技术支持
<ul
class=
"head-menu-son-list"
>
<ul
class=
"head-menu-son-list"
>
<li>
<li>
<a
target=
"_blank"
href=
'http://bbs.mingsoft.net/mbbs/main.do'
>
开源社区
</a>
<a
target=
"_blank"
href=
'http://bbs.mingsoft.net/mbbs/main.do'
>
开源社区
</a>
</li>
</li>
<li>
<li>
<a
target=
"_blank"
href=
'https://gitee.com/mingSoft/MCMS'
>
源码下载
</a>
<a
target=
"_blank"
href=
'https://gitee.com/mingSoft/MCMS'
>
源码下载
</a>
</li>
</li>
<li>
<li>
<a
target=
"_blank"
href=
'http://doc.ms.mingsoft.net/plugs-cms/'
>
使用手册
</a>
<a
target=
"_blank"
href=
'http://doc.ms.mingsoft.net/plugs-cms/'
>
使用手册
</a>
</li>
</li>
</ul>
</ul>
</li>
</li>
</ul>
</ul>
</div>
</div>
<div
class=
"head-men-right head-menu-flex-center"
>
<div
class=
"head-men-right head-menu-flex-center"
>
<div
class=
"head-menu-flex-center head-menu-right-search"
>
<div
class=
"head-menu-flex-center head-menu-right-search"
>
<form
id=
"searchDataForm"
action=
"{ms:global.host/}/cms/1/search.do"
method=
"post"
>
<form
id=
"searchDataForm"
action=
"{ms:global.host/}/cms/1/search.do"
method=
"post"
>
<input
type=
"text"
class=
'ms-search-input'
name=
"basic_title"
placeholder=
"请输入关键字"
>
<input
type=
"text"
class=
'ms-search-input'
name=
"basic_title"
placeholder=
"请输入关键字"
>
<!-- <i class="iconfont ms-search-click"></i> -->
<!-- <i class="iconfont ms-search-click"></i> -->
<input
type=
"submit"
value=
""
class=
"ms-search-click"
>
<input
type=
"submit"
value=
""
class=
"ms-search-click"
>
</form>
</form>
</div>
</div>
<div
class=
"head-menu-right-content"
id=
"ms-login-vue"
>
<div
class=
"head-menu-right-content"
id=
"ms-login-vue"
>
<span
v-show=
"!isLogin"
style=
"display: none;"
>
<span
v-show=
"!isLogin"
style=
"display: none;"
>
<span>
<span>
<a
href=
'{ms:global.host/}/mcms/login.do'
>
登录
</a>
<a
href=
'{ms:global.host/}/mcms/login.do'
>
登录
</a>
</span>
|
<span><a
href=
'{ms:global.host/}/mcms/register.do'
>
注册
</a></span>
</span>
|
<span><a
href=
'{ms:global.host/}/mcms/register.do'
>
注册
</a></span>
</span>
</span>
<div
class=
"topbar-info J_userInfo loginSuccess hide-default"
v-show=
"isLogin"
style=
"display: none;"
>
<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"
>
<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'"
>
<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>
<b
class=
"userName ms-userName"
v-text=
"peopleInfo.puNickname"
></b>
</a>
</a>
<a
href=
"javascript:;"
class=
"quitLogin"
@
click=
"quitLogin"
>
退出
</a>
<a
href=
"javascript:;"
class=
"quitLogin"
@
click=
"quitLogin"
>
退出
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
<script>
var
headVue
=
new
Vue
({
var
headVue
=
new
Vue
({
el
:
"
#ms-login-vue
"
,
el
:
"
#ms-login-vue
"
,
data
:
{
data
:
{
isLogin
:
""
,
//登录状态
isLogin
:
""
,
//登录状态
peopleInfo
:
""
,
//个人信息
peopleInfo
:
""
,
//个人信息
imgUrl
:
""
,
imgUrl
:
""
,
},
},
mounted
:
function
()
{
mounted
:
function
()
{
//获取个人信息
//获取个人信息
var
target
=
this
;
var
target
=
this
;
$
.
ajax
({
$
.
ajax
({
type
:
"
POST
"
,
type
:
"
POST
"
,
url
:
"
{ms:global.host/}/checkLoginStatus.do
"
,
url
:
"
{ms:global.host/}/checkLoginStatus.do
"
,
success
:
function
(
msg
)
{
success
:
function
(
msg
)
{
target
.
isLogin
=
msg
.
result
;
//判断用户是否登录,如登录,则target.isLogin===true
target
.
isLogin
=
msg
.
result
;
//判断用户是否登录,如登录,则target.isLogin===true
if
(
msg
.
result
)
{
if
(
msg
.
result
)
{
$
.
ajax
({
$
.
ajax
({
type
:
"
GET
"
,
type
:
"
GET
"
,
url
:
"
{ms:global.host/}/people/user/info.do
"
,
url
:
"
{ms:global.host/}/people/user/info.do
"
,
success
:
function
(
msg
)
{
success
:
function
(
msg
)
{
target
.
peopleInfo
=
msg
;
//target.peopleInfo为当前登录用户的基本信息
target
.
peopleInfo
=
msg
;
//target.peopleInfo为当前登录用户的基本信息
}
}
})
})
}
}
}
}
})
})
},
},
methods
:
{
methods
:
{
//退出登录
//退出登录
quitLogin
:
function
()
{
quitLogin
:
function
()
{
var
target
=
this
;
var
target
=
this
;
$
.
ajax
({
$
.
ajax
({
type
:
"
GET
"
,
type
:
"
GET
"
,
url
:
"
{ms:global.host/}/people/quit.do
"
,
url
:
"
{ms:global.host/}/people/quit.do
"
,
success
:
function
(
msg
)
{
success
:
function
(
msg
)
{
if
(
msg
.
result
)
{
if
(
msg
.
result
)
{
$
(
"
body
"
).
append
(
"
<form id='msHeadForm' action=''></form>
"
);
$
(
"
body
"
).
append
(
"
<form id='msHeadForm' action=''></form>
"
);
$
(
"
#msHeadForm
"
).
attr
(
"
action
"
,
"
{ms:global.host/}
"
).
submit
();
$
(
"
#msHeadForm
"
).
attr
(
"
action
"
,
"
{ms:global.host/}
"
).
submit
();
}
}
}
}
})
})
},
},
},
},
})
})
/* $(function(){
/* $(function(){
var r=location.href;
var r=location.href;
if(r.match("53")){
if(r.match("53")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
}else if(r.match("141")){
}else if(r.match("141")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
}else if(r.match("59")){
}else if(r.match("59")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
$(".head-menu-list-li").eq(0).addClass("head-active");
}else if(r.match("155")){
}else if(r.match("155")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(1).addClass("head-active");
$(".head-menu-list-li").eq(1).addClass("head-active");
}else if(r.match("142")){
}else if(r.match("142")){
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").removeClass("head-active");
$(".head-menu-list-li").eq(3).addClass("head-active");
$(".head-menu-list-li").eq(3).addClass("head-active");
}
}
}) */
}) */
</script>
</script>
\ No newline at end of file
src/main/webapp/templets/1/default/index.htm
View file @
1058ef21
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<html>
<head>
<head>
<
#include
"
head-file.htm
"
>
<
#include
"
head-file.htm
"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/plugins/bootstrap/3.3.5/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{ms:global.host/}/plugins/bootstrap/3.3.5/css/bootstrap.min.css"
>
<script
type=
"text/javascript"
src=
"{ms:global.host/}/plugins/bootstrap/3.3.5/js/bootstrap.min.js"
></script>
<script
type=
"text/javascript"
src=
"{ms:global.host/}/plugins/bootstrap/3.3.5/js/bootstrap.min.js"
></script>
<script>
<script>
var
ms
=
{
var
ms
=
{
base
:
"
http://
m
store.mingsoft.net
"
base
:
"
http://store.mingsoft.net
"
}
}
</script>
</script>
<script
src=
"http://
m
store.mingsoft.net/api/ms.web.mstore.js"
></script>
<script
src=
"http://store.mingsoft.net/api/ms.web.mstore.js"
></script>
</head>
</head>
<body>
<body>
<
#include
"
head.htm
"
>
<
#include
"
head.htm
"
>
<!-- <div class="ms-banner">
<!-- <div class="ms-banner">
<img src="./images/banner.jpg">
<img src="./images/banner.jpg">
</div> -->
</div> -->
<div
id=
"indexVue"
>
<div
id=
"indexVue"
>
<div
id=
"banner_tabs"
class=
"flexslider"
>
<div
id=
"banner_tabs"
class=
"flexslider"
>
<ul
class=
"slides"
>
<ul
class=
"slides"
>
<template
v-for=
"banner in bannerList"
>
<template
v-for=
"banner in bannerList"
>
<li
style=
"background:url({ms:global.host/}/{ms:global.style/}/images/03.jpg) no-repeat center;"
>
<li
style=
"background:url({ms:global.host/}/{ms:global.style/}/images/03.jpg) no-repeat center;"
>
<p
class=
"banner_tit animated fadeInLeft"
>
铭飞MS平台
</p>
<p
class=
"banner_tit animated fadeInLeft"
>
铭飞MS平台
</p>
<p
class=
"banner_des animated fadeInRight"
>
MCms系统永久完整开源
</p>
<p
class=
"banner_des animated fadeInRight"
>
MCms系统永久完整开源
</p>
</li>
</li>
<li
style=
"background:url({ms:global.host/}/{ms:global.style/}/images/03.jpg) no-repeat center;"
>
<li
style=
"background:url({ms:global.host/}/{ms:global.style/}/images/03.jpg) no-repeat center;"
>
<p
class=
"banner_tit animated fadeInLeft"
>
MStore
</p>
<p
class=
"banner_tit animated fadeInLeft"
>
MStore
</p>
<p
class=
"banner_des animated fadeInRight"
>
丰富强大的功能插件、海量精美的行业模板
</p>
<p
class=
"banner_des animated fadeInRight"
>
丰富强大的功能插件、海量精美的行业模板
</p>
</li>
</li>
<li
style=
"background:url({ms:global.host/}/{ms:global.style/}/images/03.jpg) no-repeat center;"
>
<li
style=
"background:url({ms:global.host/}/{ms:global.style/}/images/03.jpg) no-repeat center;"
>
<p
class=
"banner_tit animated fadeInLeft"
>
优质的服务体验
</p>
<p
class=
"banner_tit animated fadeInLeft"
>
优质的服务体验
</p>
<p
class=
"banner_des animated fadeInRight"
>
人工远程协助服务、永久享受更新升级
</p>
<p
class=
"banner_des animated fadeInRight"
>
人工远程协助服务、永久享受更新升级
</p>
</li>
</li>
</template>
</template>
</ul>
</ul>
<ul
class=
"flex-direction-nav"
>
<ul
class=
"flex-direction-nav"
>
<li>
<li>
<a
class=
"flex-prev"
href=
"javascript:;"
>
Previous
</a>
<a
class=
"flex-prev"
href=
"javascript:;"
>
Previous
</a>
</li>
</li>
<li>
<li>
<a
class=
"flex-next"
href=
"javascript:;"
>
Next
</a>
<a
class=
"flex-next"
href=
"javascript:;"
>
Next
</a>
</li>
</li>
</ul>
</ul>
</div>
</div>
<div
class=
"ms-content-index"
>
<div
class=
"ms-content-index"
>
<div
class=
"ms-content-template"
>
<div
class=
"ms-content-template"
>
<div>
<div>
<ul
class=
"nav nav-tabs ms-index-tabs"
role=
"tablist"
>
<ul
class=
"nav nav-tabs ms-index-tabs"
role=
"tablist"
>
<li
role=
"presentation"
class=
"active"
>
<li
role=
"presentation"
class=
"active"
>
<a
href=
"#model"
aria-controls=
"model"
role=
"tab"
data-toggle=
"tab"
>
模板
</a>
<a
href=
"#model"
aria-controls=
"model"
role=
"tab"
data-toggle=
"tab"
>
模板
</a>
</li>
</li>
<li
role=
"presentation"
>
<li
role=
"presentation"
>
<a
href=
"#plug"
aria-controls=
"plug"
role=
"tab"
data-toggle=
"tab"
>
插件
</a>
<a
href=
"#plug"
aria-controls=
"plug"
role=
"tab"
data-toggle=
"tab"
>
插件
</a>
</li>
</li>
</ul>
</ul>
<div
class=
"ms-content-all"
>
<div
class=
"ms-content-all"
>
<div
class=
"tab-content"
>
<div
class=
"tab-content"
>
<div
role=
"tabpanel"
class=
"tab-pane active"
id=
"model"
>
<div
role=
"tabpanel"
class=
"tab-pane active"
id=
"model"
>
<div
style=
"display: none;"
class=
"ms-loading"
v-show=
"!loading"
>
<div
style=
"display: none;"
class=
"ms-loading"
v-show=
"!loading"
>
<img
src=
"{ms:global.host/}/{ms:global.style/}/images/loading.gif"
/>
<img
src=
"{ms:global.host/}/{ms:global.style/}/images/loading.gif"
/>
</div>
</div>
<div
class=
"ms-model-content"
style=
"display: none;"
v-show=
"loading"
>
<div
class=
"ms-model-content"
style=
"display: none;"
v-show=
"loading"
>
<template
v-for=
"model in modelList"
>
<template
v-for=
"model in modelList"
>
<div
class=
"ms-model-list"
>
<div
class=
"ms-model-list"
>
<a
class=
"ms-model-img"
:href=
"model.upgraderVersionUrl"
target=
"_blank"
>
<a
class=
"ms-model-img"
:href=
"model.upgraderVersionUrl"
target=
"_blank"
>
<img
@
mouseout=
"imgMout()"
@
mouseover=
"imgMover()"
:src=
"'http://
m
store.mingsoft.net/'+model.upgraderVersionImg"
onerror=
"this.src='{ms:global.host/}/{ms:global.style/}/images/no-data.png'"
/>
<img
@
mouseout=
"imgMout()"
@
mouseover=
"imgMover()"
:src=
"'http://store.mingsoft.net/'+model.upgraderVersionImg"
onerror=
"this.src='{ms:global.host/}/{ms:global.style/}/images/no-data.png'"
/>
</a>
</a>
<div
class=
"ms-model-mobile-img"
v-if=
"model.upgraderVersionMobileImg != '' && model.upgraderVersionMobileImg != undefined"
style=
"background: url({ms:global.host/}/{ms:global.style/}/images/mobile.png)"
>
<div
class=
"ms-model-mobile-img"
v-if=
"model.upgraderVersionMobileImg != '' && model.upgraderVersionMobileImg != undefined"
style=
"background: url({ms:global.host/}/{ms:global.style/}/images/mobile.png)"
>
<div>
<div>
<img
@
mouseout=
"imgMout()"
@
mouseover=
"imgMover()"
:src=
"'http://
m
store.mingsoft.net/'+model.upgraderVersionMobileImg"
onerror=
"this.src='{ms:global.host/}/{ms:global.style/}/images/no-data.png'"
/>
<img
@
mouseout=
"imgMout()"
@
mouseover=
"imgMover()"
:src=
"'http://store.mingsoft.net/'+model.upgraderVersionMobileImg"
onerror=
"this.src='{ms:global.host/}/{ms:global.style/}/images/no-data.png'"
/>
</div>
</div>
</div>
</div>
<div
class=
"ms-model-info"
>
<div
class=
"ms-model-info"
>
<span
v-text=
"model.upgraderVersionName"
></span>
<span
v-text=
"model.upgraderVersionName"
></span>
<img
class=
"ms-model-info-img"
:src=
"model.upgraderVersionPeopleIcon"
onerror=
"this.src='http://cdn.mingsoft.net/global/images/msheader.png'"
/>
<img
class=
"ms-model-info-img"
:src=
"model.upgraderVersionPeopleIcon"
onerror=
"this.src='http://cdn.mingsoft.net/global/images/msheader.png'"
/>
<img
:src=
"'{ms:global.host/}/{ms:global.style/}/images/level-'+model.upgraderVersionStart+'.png'"
/>
<img
:src=
"'{ms:global.host/}/{ms:global.style/}/images/level-'+model.upgraderVersionStart+'.png'"
/>
<div
class=
"ms-model-type"
>
模板
</div>
<div
class=
"ms-model-type"
>
模板
</div>
</div>
</div>
</div>
</div>
</template>
</template>
<div
class=
"ms-model-list"
style=
"display: none;"
v-show=
"loading"
>
<div
class=
"ms-model-list"
style=
"display: none;"
v-show=
"loading"
>
<div
class=
"ms-model-more"
>
<div
class=
"ms-model-more"
>
<div
onclick=
"window.open('http://
m
store.mingsoft.net/mstoreShow.do')"
>
查看更多
</div>
<div
onclick=
"window.open('http://store.mingsoft.net/mstoreShow.do')"
>
查看更多
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div
role=
"tabpanel"
class=
"tab-pane"
id=
"plug"
>
<div
role=
"tabpanel"
class=
"tab-pane"
id=
"plug"
>
<div
class=
"ms-model-content"
style=
"display: none;"
v-show=
"loading"
>
<div
class=
"ms-model-content"
style=
"display: none;"
v-show=
"loading"
>
<template
v-for=
"pulg in pulgList"
>
<template
v-for=
"pulg in pulgList"
>
<div
class=
"ms-model-list"
>
<div
class=
"ms-model-list"
>
<a
class=
"ms-model-img"
:href=
"pulg.upgraderVersionUrl"
target=
"_blank"
>
<a
class=
"ms-model-img"
:href=
"pulg.upgraderVersionUrl"
target=
"_blank"
>
<img
:src=
"'http://
m
store.mingsoft.net/'+pulg.upgraderVersionImg"
onerror=
"this.src='{ms:global.host/}/{ms:global.style/}/images/no-data.png'"
/>
<img
:src=
"'http://store.mingsoft.net/'+pulg.upgraderVersionImg"
onerror=
"this.src='{ms:global.host/}/{ms:global.style/}/images/no-data.png'"
/>
</a>
</a>
<div
class=
"ms-model-info"
>
<div
class=
"ms-model-info"
>
<span
v-text=
"pulg.upgraderVersionName"
></span>
<span
v-text=
"pulg.upgraderVersionName"
></span>
<img
class=
"ms-model-info-img"
:src=
"pulg.upgraderVersionPeopleIcon"
onerror=
"this.src='http://cdn.mingsoft.net/global/images/msheader.png'"
/>
<img
class=
"ms-model-info-img"
:src=
"pulg.upgraderVersionPeopleIcon"
onerror=
"this.src='http://cdn.mingsoft.net/global/images/msheader.png'"
/>
<img
:src=
"'{ms:global.host/}/{ms:global.style/}/images/level-'+pulg.upgraderVersionStart+'.png'"
/>
<img
:src=
"'{ms:global.host/}/{ms:global.style/}/images/level-'+pulg.upgraderVersionStart+'.png'"
/>
<div
class=
"ms-model-type"
>
插件
</div>
<div
class=
"ms-model-type"
>
插件
</div>
</div>
</div>
</div>
</div>
</template>
</template>
<div
class=
"ms-model-list"
style=
"display: none;"
v-show=
"loading"
>
<div
class=
"ms-model-list"
style=
"display: none;"
v-show=
"loading"
>
<div
class=
"ms-model-more"
>
<div
class=
"ms-model-more"
>
<div
onclick=
"window.open('http://
m
store.mingsoft.net/mstoreShow.do')"
>
查看更多
</div>
<div
onclick=
"window.open('http://store.mingsoft.net/mstoreShow.do')"
>
查看更多
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"ms-content-case"
>
<div
class=
"ms-content-case"
>
<div
class=
"ms-content-case-mian"
>
<div
class=
"ms-content-case-mian"
>
<div
class=
"ms-content-case-title"
>
<div
class=
"ms-content-case-title"
>
<div
class=
"ms-content-case-title-words"
>
网站案例
</div>
<div
class=
"ms-content-case-title-words"
>
网站案例
</div>
<div
class=
"ms-content-case-more"
>
<div
class=
"ms-content-case-more"
>
<a
href=
'{ms:global.url/}/149/index.html'
>
MORE>>
</a>
<a
href=
'{ms:global.url/}/149/index.html'
>
MORE>>
</a>
</div>
</div>
</div>
</div>
<div
class=
"ms-content-case-list"
>
<div
class=
"ms-content-case-list"
>
{ms:arclist typeid=149 size=6}
{ms:arclist typeid=149 size=6}
<div
class=
"ms-content-main-case"
>
<div
class=
"ms-content-main-case"
>
<div
class=
"ms-content-main-case-img"
>
<div
class=
"ms-content-main-case-img"
>
<img
src=
"{ms:global.host/}[field.litpic/]"
>
<img
src=
"{ms:global.host/}[field.litpic/]"
>
</div>
</div>
<div
class=
"ms-content-main-case-explain"
>
<div
class=
"ms-content-main-case-explain"
>
<div
class=
"ms-content-main-case-title"
>
[field.title/]
</div>
<div
class=
"ms-content-main-case-title"
>
[field.title/]
</div>
<div
class=
"ms-content-main-case-content"
>
<div
class=
"ms-content-main-case-content"
>
<p
class=
"ms-content-main-case-written"
>
<p
class=
"ms-content-main-case-written"
>
[field.content/]
[field.content/]
</p>
</p>
</div>
</div>
<div
class=
"ms-content-main-case-click"
>
<div
class=
"ms-content-main-case-click"
>
<a
target=
"_blank"
href=
"[field.source/]"
>
点击查看
</a>
<a
target=
"_blank"
href=
"[field.source/]"
>
点击查看
</a>
</div>
</div>
</div>
</div>
</div>
</div>
{/ms:arclist}
{/ms:arclist}
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"ms-content-product"
>
<div
class=
"ms-content-product"
>
<div
class=
"ms-content-product-main"
>
<div
class=
"ms-content-product-main"
>
<div
class=
"ms-content-product-title"
>
<div
class=
"ms-content-product-title"
>
<div
class=
"ms-content-product-title-words"
>
产品方向
</div>
<div
class=
"ms-content-product-title-words"
>
产品方向
</div>
</div>
</div>
<div
class=
"ms-content-product-list"
>
<div
class=
"ms-content-product-list"
>
<ul
class=
"ms-content-product-list-ul"
>
<ul
class=
"ms-content-product-list-ul"
>
<li>
<li>
<div
class=
"ms-content-product-list-img"
>
<div
class=
"ms-content-product-list-img"
>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5523/index.html"
>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5523/index.html"
>
<img
src=
"http://www.mingsoft.net/templets/1/ming-soft//images/hu1.png"
></a>
<img
src=
"http://www.mingsoft.net/templets/1/ming-soft//images/hu1.png"
></a>
</div>
</div>
<div
class=
"ms-content-product-list-content"
>
<div
class=
"ms-content-product-list-content"
>
<div
class=
"ms-content-product-list-content-title"
>
<div
class=
"ms-content-product-list-content-title"
>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5523/index.html"
>
铭飞建站系统MCMS
</a></div>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5523/index.html"
>
铭飞建站系统MCMS
</a></div>
<div
class=
"ms-content-product-list-content-describe"
>
纯Java开发,MCMS支持PC与MOBILE皮肤定制,同时使用MS团队移动JS插件,支持站群。
</div></div>
<div
class=
"ms-content-product-list-content-describe"
>
纯Java开发,MCMS支持PC与MOBILE皮肤定制,同时使用MS团队移动JS插件,支持站群。
</div></div>
</li>
</li>
<li>
<li>
<div
class=
"ms-content-product-list-img"
>
<div
class=
"ms-content-product-list-img"
>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5524/index.html"
>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5524/index.html"
>
<img
src=
"http://www.mingsoft.net/templets/1/ming-soft//images/hu2.jpg"
></a>
<img
src=
"http://www.mingsoft.net/templets/1/ming-soft//images/hu2.jpg"
></a>
</div>
</div>
<div
class=
"ms-content-product-list-content"
>
<div
class=
"ms-content-product-list-content"
>
<div
class=
"ms-content-product-list-content-title"
>
<div
class=
"ms-content-product-list-content-title"
>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5524/index.html"
>
移动互联网
</a></div>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5524/index.html"
>
移动互联网
</a></div>
<div
class=
"ms-content-product-list-content-describe"
>
重新定义移动开发,快速、开放、高性能,数据无缝对接,超过500个模块api 接口,方便实现各种应用。
</div></div>
<div
class=
"ms-content-product-list-content-describe"
>
重新定义移动开发,快速、开放、高性能,数据无缝对接,超过500个模块api 接口,方便实现各种应用。
</div></div>
</li>
</li>
<li>
<li>
<div
class=
"ms-content-product-list-img"
>
<div
class=
"ms-content-product-list-img"
>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5526/index.html"
>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5526/index.html"
>
<img
src=
"http://www.mingsoft.net/templets/1/ming-soft//images/hu3.jpg"
></a>
<img
src=
"http://www.mingsoft.net/templets/1/ming-soft//images/hu3.jpg"
></a>
</div>
</div>
<div
class=
"ms-content-product-list-content"
>
<div
class=
"ms-content-product-list-content"
>
<div
class=
"ms-content-product-list-content-title"
>
<div
class=
"ms-content-product-list-content-title"
>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5526/index.html"
>
铭飞物联网
</a></div>
<a
target=
"_blank"
href=
"http://www.mingsoft.net/html/1/5526/index.html"
>
铭飞物联网
</a></div>
<div
class=
"ms-content-product-list-content-describe"
>
MS+物联网,让生产企业真正掌握企业命脉,实现互联网+生产,给企业插上信息化翅膀,共享、共荣大数据时代
</div></div>
<div
class=
"ms-content-product-list-content-describe"
>
MS+物联网,让生产企业真正掌握企业命脉,实现互联网+生产,给企业插上信息化翅膀,共享、共荣大数据时代
</div></div>
</li>
</li>
</ul>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"ms-content-news"
>
<div
class=
"ms-content-news"
>
<div
class=
"ms-content-news-main"
>
<div
class=
"ms-content-news-main"
>
<div
class=
"ms-content-news-main-title"
>
<div
class=
"ms-content-news-main-title"
>
<div
class=
"ms-content-news-main-title-words"
>
公司动态
</div>
<div
class=
"ms-content-news-main-title-words"
>
公司动态
</div>
<div
class=
"ms-content-news-main-title-more"
>
<div
class=
"ms-content-news-main-title-more"
>
<a
href=
'{ms:global.url/}/59/index.html'
>
MORE>>
</a>
<a
href=
'{ms:global.url/}/59/index.html'
>
MORE>>
</a>
</div>
</div>
</div>
</div>
<div
class=
"ms-content-news-main-img-text"
>
<div
class=
"ms-content-news-main-img-text"
>
{ms:arclist typeid=59 size=1}
{ms:arclist typeid=59 size=1}
<img
src=
"{ms:global.host/}[field.litpic/]"
>
<img
src=
"{ms:global.host/}[field.litpic/]"
>
{/ms:arclist}
{/ms:arclist}
<ul
class=
"ms-content-news-main-ul"
>
<ul
class=
"ms-content-news-main-ul"
>
{ms:arclist typeid=59 size=6}
{ms:arclist typeid=59 size=6}
<li>
<li>
<a
href=
"{ms:global.url/}[field.link/]"
>
<a
href=
"{ms:global.url/}[field.link/]"
>
<div
class=
"ms-content-news-main-li-title"
>
<div
class=
"ms-content-news-main-li-title"
>
<!-- <span class="ms-content-news-main-li-span">·</span> -->
<!-- <span class="ms-content-news-main-li-span">·</span> -->
<span
class=
""
>
[field.title/]
</span>
<span
class=
""
>
[field.title/]
</span>
</div>
</div>
<div
class=
"ms-content-news-main-li-time"
>
[field.date?string("yyyy-mm-dd")/]
</div>
<div
class=
"ms-content-news-main-li-time"
>
[field.date?string("yyyy-mm-dd")/]
</div>
</a>
</a>
</li>
</li>
{/ms:arclist}
{/ms:arclist}
</ul>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<
#include
"
footer.htm
"
>
<
#include
"
footer.htm
"
>
</body>
</body>
</html>
</html>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
var
index
=
new
Vue
({
var
index
=
new
Vue
({
el
:
"
#indexVue
"
,
el
:
"
#indexVue
"
,
data
:
{
data
:
{
bannerList
:
[
'
01
'
,
'
02
'
,
'
03
'
,
'
04
'
,
'
05
'
],
//幻灯片列表
bannerList
:
[
'
01
'
,
'
02
'
,
'
03
'
,
'
04
'
,
'
05
'
],
//幻灯片列表
modelList
:
[],
//模板列表
modelList
:
[],
//模板列表
pulgList
:
[],
//插件列表
pulgList
:
[],
//插件列表
loading
:
false
,
//加载状态
loading
:
false
,
//加载状态
},
},
methods
:
{
methods
:
{
query
:
function
(
data
,
type
)
{
query
:
function
(
data
,
type
)
{
var
target
=
this
;
var
target
=
this
;
ms
.
web
.
mstore
.
list
(
data
,
function
(
json
)
{
ms
.
web
.
mstore
.
list
(
data
,
function
(
json
)
{
if
(
type
==
'
model
'
)
{
if
(
type
==
'
model
'
)
{
target
.
modelList
=
json
.
list
;
target
.
modelList
=
json
.
list
;
}
else
{
}
else
{
target
.
pulgList
=
json
.
list
;
target
.
pulgList
=
json
.
list
;
target
.
loading
=
true
;
target
.
loading
=
true
;
}
}
});
});
},
},
imgMover
:
function
()
{
imgMover
:
function
()
{
var
_this
=
event
.
target
;
var
_this
=
event
.
target
;
var
ms_top
=
(
$
(
_this
).
height
())
-
275
;
var
ms_top
=
(
$
(
_this
).
height
())
-
275
;
if
(
ms_top
<
0
)
{
if
(
ms_top
<
0
)
{
ms_top
=
0
;
ms_top
=
0
;
}
}
$
(
_this
).
stop
(
true
);
$
(
_this
).
stop
(
true
);
$
(
_this
).
animate
({
$
(
_this
).
animate
({
"
top
"
:
-
(
ms_top
)
"
top
"
:
-
(
ms_top
)
},
2500
);
},
2500
);
},
},
imgMout
:
function
()
{
imgMout
:
function
()
{
var
_this
=
event
.
target
;
var
_this
=
event
.
target
;
$
(
_this
).
stop
(
true
);
$
(
_this
).
stop
(
true
);
$
(
_this
).
animate
({
$
(
_this
).
animate
({
"
top
"
:
0
"
top
"
:
0
},
2500
);
},
2500
);
},
},
},
},
mounted
:
function
()
{
mounted
:
function
()
{
var
data
=
"
upgraderVersionType=2&upgraderVersionIndustry=0&orderBy=uv_id&pageSize=5&pageNo=1
"
;
var
data
=
"
upgraderVersionType=2&upgraderVersionIndustry=0&orderBy=uv_id&pageSize=5&pageNo=1
"
;
this
.
query
(
data
,
'
model
'
);
this
.
query
(
data
,
'
model
'
);
var
data
=
"
upgraderVersionType=1&upgraderVersionIndustry=0&orderBy=uv_id&pageSize=5&pageNo=1
"
;
var
data
=
"
upgraderVersionType=1&upgraderVersionIndustry=0&orderBy=uv_id&pageSize=5&pageNo=1
"
;
this
.
query
(
data
,
'
pulg
'
);
this
.
query
(
data
,
'
pulg
'
);
/*幻灯*/
/*幻灯*/
setTimeout
(
function
()
{
setTimeout
(
function
()
{
var
bannerSlider
=
new
Slider
(
$
(
'
#banner_tabs
'
),
{
var
bannerSlider
=
new
Slider
(
$
(
'
#banner_tabs
'
),
{
time
:
5000
,
time
:
5000
,
delay
:
400
,
delay
:
400
,
event
:
'
hover
'
,
event
:
'
hover
'
,
auto
:
true
,
auto
:
true
,
mode
:
'
fade
'
,
mode
:
'
fade
'
,
controller
:
$
(
'
#bannerCtrl
'
),
controller
:
$
(
'
#bannerCtrl
'
),
activeControllerCls
:
'
active
'
activeControllerCls
:
'
active
'
});
});
$
(
'
#banner_tabs .flex-prev
'
).
click
(
function
()
{
$
(
'
#banner_tabs .flex-prev
'
).
click
(
function
()
{
bannerSlider
.
prev
()
bannerSlider
.
prev
()
});
});
$
(
'
#banner_tabs .flex-next
'
).
click
(
function
()
{
$
(
'
#banner_tabs .flex-next
'
).
click
(
function
()
{
bannerSlider
.
next
()
bannerSlider
.
next
()
});
});
},
300
)
},
300
)
},
},
})
})
</script>
</script>
\ No newline at end of file
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment