股东背景
BACKGROUND OF SHAREHOLDERS
diff --git a/css/style.css b/css/style.css
index 297be9f..036a7fc 100644
--- a/css/style.css
+++ b/css/style.css
@@ -206,6 +206,7 @@ a.more_white:hover{color: #fff; background: #fff; text-decoration: none;}
.top_box .wrap .list { background-color:rgba(0,0,0,0.6);text-align: center;padding: 20px 0;}
.top_box .wrap .list a { text-decoration:none; }
+.top_box .wrap .list .line_2 { font-size: 10px; }
.top_box .wrap .list:hover { background: #124AA0;}
@@ -230,21 +231,14 @@ a.more_white:hover{color: #fff; background: #fff; text-decoration: none;}
/*关于我们-02*/
-.about_02{ position: relative; height: 680px;}
-
-.about_02 .about_02_wrap{ }
-
-
-.about_02 .about_02_wrap .about_02_left { padding: 0;margin: 0; height: 663px;background: #124AA0;}
-
-.about_02 .about_02_wrap .about_02_left img{ width: 100%; /*height: 100%;*/}
-
-.about_02 .about_02_wrap .about_02_right{ background: #124AA0; height: 663px; padding: 80px 80px; margin: 0; }
-
-.about_02 .about_02_wrap h2:nth-child(2){ font-size: 48px; color: #fff;}
-.about_02 .about_02_wrap h2:nth-child(3){ font-size: 36px; color: #fff;margin-bottom: 40px;}
-
-.about_02 .about_02_wrap .about_text{ font-size: 14px; color: #fff; padding: 0;margin: 20 100 20 0;line-height: 30px;}
+.about_02{ position: relative; /*height: 680px;*/}
+.about_02 .wrap{ }
+.about_02 .wrap .left { padding: 0;margin: 0; /*height: 663px;background: #124AA0;*/}
+.about_02 .wrap .left img{ width: 100%; /*height: 100%;*/}
+.about_02 .wrap .right{ background: #124AA0; /*height: 663px;*/ padding: 60px 60px; margin: 0; }
+.about_02 .wrap h2:nth-child(2){ font-size: 48px; color: #fff;}
+.about_02 .wrap h2:nth-child(3){ font-size: 36px; color: #fff;margin-bottom: 40px;}
+.about_02 .wrap .about_text{ font-size: 14px; color: #fff; padding: 0;margin: 20 100 20 0;line-height: 30px;}
/*关于我们-03*/
@@ -306,12 +300,10 @@ box-shadow: 4px 4px 10px #f9f9f9;}
/*关于我们-11*/
.about_11{ position: relative; margin: 100px 0;}
-
.about_11 .wrap{ text-align: center; }
-
.about_11 .wrap h2:nth-child(2){ font-size: 48px; color: #124AA0;}
.about_11 .wrap h2:nth-child(3){ font-size: 36px; color: #124AA0;margin-bottom: 40px;}
-
+.about_11 .wrap .about_text img{ width: 100%;}
/*关于我们-21*/
.about_21{ position: relative; margin: 100px 0 0 0;}
@@ -706,7 +698,7 @@ box-shadow: 4px 4px 10px #f9f9f9;}
.service_31 .intro{ font-size: 14px; padding: 0;margin: 20 100 20 0;line-height: 30px;}
.service_31 .left{ padding: 0 100px 0 0; margin: 100px 0 50px 0; }
-.service_31 .right{ margin-top: 50px; }
+.service_31 .right{ margin-top: 150px; }
.service_31 .right img{ width: 100%; }
diff --git a/images/业务版图优化-2动图.gif b/images/业务版图优化-2动图.gif
index 572c745..38c29f9 100644
Binary files a/images/业务版图优化-2动图.gif and b/images/业务版图优化-2动图.gif differ
diff --git a/js/common.js b/js/common.js
index 81c7da0..fab73ef 100644
--- a/js/common.js
+++ b/js/common.js
@@ -1 +1 @@
-/*蓝科企业网站系统PHP版
http://www.lankecms.com*/
$(document).ready(function(){
//返回顶部
$("#gototop").click(function(){
$("html,body").animate({scrollTop :0}, 800);return false;
});
// $("#gotocate").click(function(){
// $("html,body").animate({scrollTop:$("#categories").offset().top},800);return false;
// });
// 搜索
$("#small_search").click(function(){
$("#topsearch").slideToggle();
});
// 友情链接
$("#link_btn").click(function(){
if ($(".link_list").css('display') == "none"){
$("#link_btn").addClass("glyphicon-minus");
}else{
$("#link_btn").removeClass("glyphicon-minus");
}
$(".link_list").slideToggle();
});
$("#tags_btn").click(function(){
if ($(".tags_rows").css('display') == "none"){
$("#tags_btn").addClass("glyphicon-minus");
}else{
$("#tags_btn").removeClass("glyphicon-minus");
}
$(".tags_rows").slideToggle();
});
if($(window).width()>768){
//鼠标划过就展开子菜单
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).slideDown();
}, function() {
$(this).find('.dropdown-menu').stop(true, true).slideUp();
});
}
//scrollTop
$(window).scroll(function(){
var scrolls = $(window).scrollTop()
// if (scrolls > 160) {
// $("#top_nav").addClass("navbar-fixed-top")
// }else{
// $("#top_nav").removeClass("navbar-fixed-top")
// }
});
//左侧导航菜单
// if ($("#firstpane .menu_body:eq(0)").text().replace(/[\r\n ]/g,"").length>0) {
// $("#firstpane .menu_body:eq(0)").show().prev().html("-").prev().addClass("left_active");
// };
$("ul.menu_body").each(function(){
if ($(this).text().replace(/[\r\n ]/g,"").length<=0) {$(this).prev().remove();} //去掉span
});
$("#firstpane span.menu_head").click(function(){
var spanatt = $(this).next("ul.menu_body").css('display');
if (spanatt == "block"){
var spantext = "+";
$(this).prev().removeClass("left_active");
}else{
var spantext = "-";
$(this).prev().addClass("left_active");
}
$(this).html(spantext).addClass("current").next("ul.menu_body").slideToggle(300).siblings("ul.menu_body");
});
// 下属企业 流动效果
function groupSlideA(){
imgScroll.rolling({
name:'line_1',
width:'198px',
height:'116px',
direction:'left',
speed:10,
addcss:true
});
imgScroll.rolling({
name:'g2',
width:'198px',
height:'116px',
direction:'right',
speed:10,
addcss:true
});
imgScroll.rolling({
name:'g3',
width:'198px',
height:'116px',
direction:'left',
speed:10,
addcss:true
});
}
groupSlideA()
// 要素资源 流动效果
function groupSlideB(){
imgScroll.rolling({
name:'line_resource',
width:'198px',
height:'116px',
direction:'left',
speed:10,
addcss:true
});
imgScroll.rolling({
name:'g2',
width:'198px',
height:'116px',
direction:'right',
speed:10,
addcss:true
});
imgScroll.rolling({
name:'g3',
width:'198px',
height:'116px',
direction:'left',
speed:10,
addcss:true
});
}
groupSlideB()
});
\ No newline at end of file
+/*蓝科企业网站系统PHP版
http://www.lankecms.com*/
$(document).ready(function(){
//返回顶部
$("#gototop").click(function(){
$("html,body").animate({scrollTop :0}, 800);return false;
});
// $("#gotocate").click(function(){
// $("html,body").animate({scrollTop:$("#categories").offset().top},800);return false;
// });
// 搜索
$("#small_search").click(function(){
$("#topsearch").slideToggle();
});
// 友情链接
$("#link_btn").click(function(){
if ($(".link_list").css('display') == "none"){
$("#link_btn").addClass("glyphicon-minus");
}else{
$("#link_btn").removeClass("glyphicon-minus");
}
$(".link_list").slideToggle();
});
$("#tags_btn").click(function(){
if ($(".tags_rows").css('display') == "none"){
$("#tags_btn").addClass("glyphicon-minus");
}else{
$("#tags_btn").removeClass("glyphicon-minus");
}
$(".tags_rows").slideToggle();
});
if($(window).width()>768){
//鼠标划过就展开子菜单
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).slideDown();
}, function() {
$(this).find('.dropdown-menu').stop(true, true).slideUp();
});
}
//scrollTop
$(window).scroll(function(){
var scrolls = $(window).scrollTop()
// if (scrolls > 160) {
// $("#top_nav").addClass("navbar-fixed-top")
// }else{
// $("#top_nav").removeClass("navbar-fixed-top")
// }
});
//左侧导航菜单
// if ($("#firstpane .menu_body:eq(0)").text().replace(/[\r\n ]/g,"").length>0) {
// $("#firstpane .menu_body:eq(0)").show().prev().html("-").prev().addClass("left_active");
// };
$("ul.menu_body").each(function(){
if ($(this).text().replace(/[\r\n ]/g,"").length<=0) {$(this).prev().remove();} //去掉span
});
$("#firstpane span.menu_head").click(function(){
var spanatt = $(this).next("ul.menu_body").css('display');
if (spanatt == "block"){
var spantext = "+";
$(this).prev().removeClass("left_active");
}else{
var spantext = "-";
$(this).prev().addClass("left_active");
}
$(this).html(spantext).addClass("current").next("ul.menu_body").slideToggle(300).siblings("ul.menu_body");
});
// 下属企业 流动效果
function groupSlideA(){
imgScroll.rolling({
name:'line_1',
width:'198px',
height:'116px',
direction:'left',
speed:10,
addcss:true
});
imgScroll.rolling({
name:'g2',
width:'198px',
height:'116px',
direction:'right',
speed:10,
addcss:true
});
imgScroll.rolling({
name:'g3',
width:'198px',
height:'116px',
direction:'left',
speed:10,
addcss:true
});
}
groupSlideA()
// 要素资源 流动效果
function groupSlideB(){
imgScroll.rolling({
name:'line_resource',
width:'198px',
height:'116px',
direction:'left',
speed:10,
addcss:true
});
imgScroll.rolling({
name:'g2',
width:'198px',
height:'116px',
direction:'right',
speed:10,
addcss:true
});
imgScroll.rolling({
name:'g3',
width:'198px',
height:'116px',
direction:'left',
speed:10,
addcss:true
});
}
groupSlideB()
//移动端展开nav
$('#navToggle').on('click',function(){
$('.m_nav').addClass('open');
})
//关闭nav
$('.m_nav .top .closed').on('click',function(){
$('.m_nav').removeClass('open');
})
//二级导航 移动端
$(".m_nav .ul li").click(function() {
$(this).children("div.dropdown_menu").slideToggle('slow')
$(this).siblings('li').children('.dropdown_menu').slideUp('slow');
});
});
\ No newline at end of file
diff --git a/public/header.html b/public/header.html
index f00adeb..688d3d3 100644
--- a/public/header.html
+++ b/public/header.html
@@ -76,43 +76,43 @@
关于我们
业务版图
新闻中心
- 党建工作
+ 党建工作
人才发展
- 投资申请
+ 投资申请