up
This commit is contained in:
@@ -438,6 +438,35 @@
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.cases-slider {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.cases-slider .owl-stage-outer {
|
||||
padding: 4px 0 12px;
|
||||
}
|
||||
|
||||
.cases-slider .owl-stage {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.cases-slider .owl-item {
|
||||
display: flex;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.cases-slider .case-slide {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.cases-slider .case-card-link {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.case-card {
|
||||
background: #fff;
|
||||
border-radius: 16px;
|
||||
@@ -454,9 +483,7 @@
|
||||
position: relative;
|
||||
padding: 28px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
align-items: flex-end;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@@ -497,15 +524,11 @@
|
||||
font-weight: 700;
|
||||
color: #fff;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.case-card-body {
|
||||
padding: 28px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.case-project {
|
||||
@@ -526,6 +549,24 @@
|
||||
-webkit-line-clamp: 5;
|
||||
}
|
||||
|
||||
.cases-slider .owl-controls {
|
||||
margin-top: 22px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cases-slider .owl-dots .owl-dot span {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin: 5px 6px;
|
||||
background: rgba(20, 129, 255, 0.18);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.cases-slider .owl-dots .owl-dot.active span,
|
||||
.cases-slider .owl-dots .owl-dot:hover span {
|
||||
background: rgba(20, 129, 255, 1);
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.cases-section .row + .row {
|
||||
margin-top: 24px;
|
||||
|
||||
@@ -479,8 +479,8 @@
|
||||
if ($(".services-slider").length) {
|
||||
$(".services-slider").owlCarousel({
|
||||
loop:true,
|
||||
margin: 30,
|
||||
smartSpeed: 500,
|
||||
margin: 30,
|
||||
smartSpeed: 500,
|
||||
responsive:{
|
||||
0 : {
|
||||
items: 1,
|
||||
@@ -501,43 +501,89 @@
|
||||
1400:{
|
||||
items:3
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/*------------------------------------------
|
||||
= PRODUCT CASES TO SLIDER
|
||||
-------------------------------------------*/
|
||||
function buildProductCasesSlider() {
|
||||
$(".cases-section").each(function() {
|
||||
var $section = $(this);
|
||||
var $caseLinks;
|
||||
var $rows;
|
||||
var $headerRow;
|
||||
var $slider;
|
||||
|
||||
if ($section.find(".cases-slider").length || !$section.find(".product-advantages-header").length) {
|
||||
return;
|
||||
}
|
||||
|
||||
$caseLinks = $section.find(".col-md-4 > .case-card-link");
|
||||
|
||||
if (!$caseLinks.length) {
|
||||
return;
|
||||
}
|
||||
|
||||
$rows = $section.find(".container > .row");
|
||||
$headerRow = $rows.first();
|
||||
$slider = $('<div class="cases-slider"></div>');
|
||||
|
||||
$caseLinks.each(function() {
|
||||
var $slide = $('<div class="case-slide"></div>');
|
||||
$slide.append($(this));
|
||||
$slider.append($slide);
|
||||
});
|
||||
|
||||
$rows.slice(1).remove();
|
||||
$headerRow.after($slider);
|
||||
});
|
||||
}
|
||||
|
||||
buildProductCasesSlider();
|
||||
|
||||
|
||||
/*------------------------------------------
|
||||
= CASES SLIDER
|
||||
-------------------------------------------*/
|
||||
if ($(".cases-slider").length) {
|
||||
$(".cases-slider").owlCarousel({
|
||||
loop:true,
|
||||
margin: 30,
|
||||
smartSpeed: 500,
|
||||
nav: false,
|
||||
dots: true,
|
||||
autoplay: false,
|
||||
responsive:{
|
||||
0 : {
|
||||
items: 1,
|
||||
},
|
||||
$(".cases-slider").each(function() {
|
||||
var $slider = $(this);
|
||||
var itemCount = $slider.children().length;
|
||||
|
||||
550 : {
|
||||
items: 2,
|
||||
center: false,
|
||||
margin: 10
|
||||
},
|
||||
$slider.owlCarousel({
|
||||
loop: itemCount > 1,
|
||||
margin: 30,
|
||||
smartSpeed: 500,
|
||||
nav: false,
|
||||
dots: true,
|
||||
autoplay: itemCount > 1,
|
||||
autoplayTimeout: 4000,
|
||||
autoplayHoverPause: true,
|
||||
responsive:{
|
||||
0 : {
|
||||
items: 1,
|
||||
},
|
||||
|
||||
992 : {
|
||||
items: 3,
|
||||
center: false,
|
||||
margin: 10
|
||||
},
|
||||
550 : {
|
||||
items: Math.min(2, itemCount),
|
||||
center: false,
|
||||
margin: 10
|
||||
},
|
||||
|
||||
1400:{
|
||||
items:3
|
||||
992 : {
|
||||
items: Math.min(3, itemCount),
|
||||
center: false,
|
||||
margin: 10
|
||||
},
|
||||
|
||||
1400:{
|
||||
items: Math.min(3, itemCount)
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -156,7 +156,7 @@
|
||||
<h4 class="widget-title widget-title-decorated">相关产品</h4>
|
||||
<a class="related-product-card" href="product_ecommerce_freight_booking.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-9.png" alt="海运订舱平台">
|
||||
<img src="assets/images/pro/pro-9.webp" alt="海运订舱平台">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -163,7 +163,7 @@
|
||||
</a>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_ship_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="岸基船舶代理系统">
|
||||
<img src="assets/images/pro/pro-14.webp" alt="岸基船舶代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -167,7 +167,7 @@
|
||||
</a>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_ship_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="岸基船舶代理系统">
|
||||
<img src="assets/images/pro/pro-14.webp" alt="岸基船舶代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
@@ -178,7 +178,7 @@
|
||||
</a>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_cargo_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="货运代理系统">
|
||||
<img src="assets/images/pro/pro-17.webp" alt="货运代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -152,7 +152,7 @@
|
||||
<h4 class="widget-title widget-title-decorated">相关产品</h4>
|
||||
<a class="related-product-card" href="product_ecommerce_freight_booking.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-9.png" alt="海运订舱平台">
|
||||
<img src="assets/images/pro/pro-9.webp" alt="海运订舱平台">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
@@ -163,7 +163,7 @@
|
||||
</a>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_cargo_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="货运代理系统">
|
||||
<img src="assets/images/pro/pro-17.webp" alt="货运代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -152,7 +152,7 @@
|
||||
<h4 class="widget-title widget-title-decorated">相关产品</h4>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_ship_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="岸基船舶代理系统">
|
||||
<img src="assets/images/pro/pro-14.webp" alt="岸基船舶代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -163,7 +163,7 @@
|
||||
</a>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_cargo_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="货运代理系统">
|
||||
<img src="assets/images/pro/pro-17.webp" alt="货运代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -156,7 +156,7 @@
|
||||
<h4 class="widget-title widget-title-decorated">相关产品</h4>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_ship_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="岸基船舶代理系统">
|
||||
<img src="assets/images/pro/pro-14.webp" alt="岸基船舶代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -150,7 +150,7 @@
|
||||
<h4 class="widget-title widget-title-decorated">相关产品</h4>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_ship_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="岸基船舶代理系统">
|
||||
<img src="assets/images/pro/pro-14.webp" alt="岸基船舶代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -157,7 +157,7 @@
|
||||
<h4 class="widget-title widget-title-decorated">相关产品</h4>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_ship_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="岸基船舶代理系统">
|
||||
<img src="assets/images/pro/pro-14.webp" alt="岸基船舶代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -159,7 +159,7 @@
|
||||
<h4 class="widget-title widget-title-decorated">相关产品</h4>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_ship_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="岸基船舶代理系统">
|
||||
<img src="assets/images/pro/pro-14.webp" alt="岸基船舶代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
@@ -170,7 +170,7 @@
|
||||
</a>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_cargo_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="货运代理系统">
|
||||
<img src="assets/images/pro/pro-17.webp" alt="货运代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
@@ -167,7 +167,7 @@
|
||||
</a>
|
||||
<a class="related-product-card" href="product_full_logistics_chain_cargo_agent.html">
|
||||
<div class="product-image">
|
||||
<img src="assets/images/pro/pro-16.webp" alt="货运代理系统">
|
||||
<img src="assets/images/pro/pro-17.webp" alt="货运代理系统">
|
||||
</div>
|
||||
<div class="product-info">
|
||||
<div style="display:flex;justify-content:space-between;align-items:center;">
|
||||
|
||||
10
docker-compose.nginx.yml
Normal file
10
docker-compose.nginx.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
services:
|
||||
nginx:
|
||||
image: nginx:1.27-alpine
|
||||
container_name: example-com-nginx
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "80:80"
|
||||
volumes:
|
||||
- /opt/1panel/www/sites/example.com/index:/usr/share/nginx/html:ro
|
||||
- ./nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf:ro
|
||||
18
nginx/conf.d/default.conf
Normal file
18
nginx/conf.d/default.conf
Normal file
@@ -0,0 +1,18 @@
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name example.com www.example.com;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
location = /50x.html {
|
||||
internal;
|
||||
}
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
}
|
||||
@@ -99,19 +99,20 @@
|
||||
<p>围绕经营、运营、财务与体系管理构建船舶管理一体化平台</p>
|
||||
</div>
|
||||
<ul class="feature-highlight-tabs" role="tablist">
|
||||
<li role="presentation"><button class="feature-highlight-tab active" type="button" role="tab" aria-selected="true" aria-controls="feature-panel-1" data-target="#feature-panel-1">报销统一管理</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab" type="button" role="tab" aria-selected="false" aria-controls="feature-panel-2" data-target="#feature-panel-2">流程统一审批</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab" type="button" role="tab" aria-selected="false" aria-controls="feature-panel-3" data-target="#feature-panel-3">业财数据互通</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab" type="button" role="tab" aria-selected="false" aria-controls="feature-panel-4" data-target="#feature-panel-4">船员薪资核算</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab active" type="button" role="tab" aria-selected="false" aria-controls="feature-panel-2" data-target="#feature-panel-1">流程统一审批</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab" type="button" role="tab" aria-selected="false" aria-controls="feature-panel-1" data-target="#feature-panel-2">业财数据互通</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab" type="button" role="tab" aria-selected="false" aria-controls="feature-panel-2" data-target="#feature-panel-3">船员薪资核算</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab " type="button" role="tab" aria-selected="true" aria-controls="feature-panel-1" data-target="#feature-panel-4">报销统一管理</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab" type="button" role="tab" aria-selected="false" aria-controls="feature-panel-5" data-target="#feature-panel-5">证书到期预警</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab" type="button" role="tab" aria-selected="false" aria-controls="feature-panel-6" data-target="#feature-panel-6">体系文件无纸化</button></li>
|
||||
<li role="presentation"><button class="feature-highlight-tab" type="button" role="tab" aria-selected="false" aria-controls="feature-panel-7" data-target="#feature-panel-7">BI数据可视</button></li>
|
||||
</ul>
|
||||
<div class="feature-highlight-panels">
|
||||
<div id="feature-panel-1" class="feature-highlight-panel active" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>费用统一报销,降本提效</h2><p>停用分散报销工具,所有费用在系统内统一处理,降低系统维护与流程管理成本。</p><ul class="feature-highlight-points"><li>财务人员无需在多个系统之间切换。</li><li>节省报销系统授权与维护费用。</li><li>流程统一后对账口径更清晰。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/feiyongbaoxiaotongyi.png" alt="统一报销管理"></div></div></div></div>
|
||||
<div id="feature-panel-2" class="feature-highlight-panel" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>工作流统一审批,流程规范可追溯</h2><p>审批流全部回归业务系统统一管理,强化集团标准化管控与审计可追溯能力。</p><ul class="feature-highlight-points"><li>各公司业务流程统一规范执行。</li><li>审批进度实时可查,减少催办成本。</li><li>审批记录集中归档,审计调阅更便捷。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/gongzuoliuchengtongyi.png" alt="统一流程审批"></div></div></div></div>
|
||||
<div id="feature-panel-3" class="feature-highlight-panel" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>业财自动对接,账目清晰</h2><p>多种方式对接财务系统,业务与财务数据自动同步,减少手工转录和对账偏差。</p><ul class="feature-highlight-points"><li>业务单据自动生成财务凭证。</li><li>业务与财务数据口径统一。</li><li>缩短月末结账周期,提高财务效率。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/yecaiduidong.png" alt="业财数据对接"></div></div></div></div>
|
||||
<div id="feature-panel-4" class="feature-highlight-panel" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>船员薪资自动计算,精准高效</h2><p>内置计算引擎处理薪资、补贴、扣款等复杂规则,减少 Excel 手工核算风险。</p><ul class="feature-highlight-points"><li>降低人工算薪引起的多发少发问题。</li><li>计算结果可直接对接财务系统。</li><li>复杂场景规则由系统自动处理。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/chuanyuanxinzizidong.png" alt="船员薪资计算"></div></div></div></div>
|
||||
<div id="feature-panel-1" class="feature-highlight-panel active" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>工作流统一审批,流程规范可追溯</h2><p>审批流全部回归业务系统统一管理,强化集团标准化管控与审计可追溯能力。</p><ul class="feature-highlight-points"><li>各公司业务流程统一规范执行。</li><li>审批进度实时可查,减少催办成本。</li><li>审批记录集中归档,审计调阅更便捷。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/gongzuoliuchengtongyi.png" alt="统一流程审批"></div></div></div></div>
|
||||
<div id="feature-panel-2" class="feature-highlight-panel" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>业财自动对接,账目清晰</h2><p>多种方式对接财务系统,业务与财务数据自动同步,减少手工转录和对账偏差。</p><ul class="feature-highlight-points"><li>业务单据自动生成财务凭证。</li><li>业务与财务数据口径统一。</li><li>缩短月末结账周期,提高财务效率。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/yecaiduidong.png" alt="业财数据对接"></div></div></div></div>
|
||||
<div id="feature-panel-3" class="feature-highlight-panel" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>船员薪资自动计算,精准高效</h2><p>内置计算引擎处理薪资、补贴、扣款等复杂规则,减少 Excel 手工核算风险。</p><ul class="feature-highlight-points"><li>降低人工算薪引起的多发少发问题。</li><li>计算结果可直接对接财务系统。</li><li>复杂场景规则由系统自动处理。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/chuanyuanxinzizidong.png" alt="船员薪资计算"></div></div></div></div>
|
||||
<div id="feature-panel-4" class="feature-highlight-panel" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>费用统一报销,降本提效</h2><p>停用分散报销工具,所有费用在系统内统一处理,降低系统维护与流程管理成本。</p><ul class="feature-highlight-points"><li>财务人员无需在多个系统之间切换。</li><li>节省报销系统授权与维护费用。</li><li>流程统一后对账口径更清晰。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/feiyongbaoxiaotongyi.png" alt="统一报销管理"></div></div></div></div>
|
||||
|
||||
<div id="feature-panel-5" class="feature-highlight-panel" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>证书自动预警,规避合规风险</h2><p>系统主动监控证书与关键节点,到期前预警并推送责任人,减少合规风险。</p><ul class="feature-highlight-points"><li>船舶与船员证书到期前自动提醒。</li><li>待办任务实时推送,减少遗漏。</li><li>流程推进从被动催办转向主动驱动。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/zhengshuyujing.png" alt="证书到期预警"></div></div></div></div>
|
||||
<div id="feature-panel-6" class="feature-highlight-panel" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>体系文件无纸化,高效合规</h2><p>文件从生成、审批到归档全流程线上化,兼顾效率与审计合规要求。</p><ul class="feature-highlight-points"><li>模板化生成文件并附审批意见与电子签名。</li><li>电子化集中存储,支持快速检索调阅。</li><li>审计或体系认证支持一键导出打印。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/tixiwendangwuzhihua.png" alt="体系文件无纸化"></div></div></div></div>
|
||||
<div id="feature-panel-7" class="feature-highlight-panel" role="tabpanel"><div class="feature-highlight-detail"><div class="feature-highlight-copy"><h2>BI 数据可视,科学决策</h2><p>整合船员、客户、船舶等核心数据,形成多维指标看板,提升经营洞察能力。</p><ul class="feature-highlight-points"><li>沉淀统一数据资产,打通多业务视角。</li><li>关键指标图表化展示,管理状态一目了然。</li><li>无需等待月报即可实时查看运营数据。</li></ul></div><div class="feature-highlight-visual"><div class="feature-highlight-visual-card"><img src="assets/images/product/chuanboguanli/bikanban.png" alt="BI数据可视"></div></div></div></div>
|
||||
@@ -140,13 +141,11 @@
|
||||
<div class="row">
|
||||
<div class="col col-xs-12">
|
||||
<div class="service-grids services-slider clearfix">
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/编组-14.svg" alt="统一报销管理"></div><div class="feature-card-body"><h4>统一报销管理</h4><p>集中处理费用报销流程,降低系统分散导致的维护成本与管理复杂度。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/资源_5.svg" alt="统一流程审批"></div><div class="feature-card-body"><h4>统一流程审批</h4><p>审批全流程回归业务系统,集团标准一致,进度透明,审计可追溯。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/资源_3.svg" alt="业财自动对接"></div><div class="feature-card-body"><h4>业财自动对接</h4><p>业务数据自动联动财务系统,减少重复录入,缩短对账与结账周期。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/资源_9.svg" alt="复杂计算自动化"></div><div class="feature-card-body"><h4>复杂计算自动化</h4><p>内置计算引擎处理薪资与经营测算,降低人工核算误差并提升效率。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/编组-14.svg" alt="智能预警主动推送"></div><div class="feature-card-body"><h4>智能预警主动推送</h4><p>证书、合同等关键节点自动预警并推送责任人,减少风险与事项漏办。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/资源_5.svg" alt="体系文件无纸化"></div><div class="feature-card-body"><h4>体系文件无纸化</h4><p>文件生成、审批、归档全线上化,提升审计效率与体系管理合规性。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/资源_3.svg" alt="BI数据可视"></div><div class="feature-card-body"><h4>BI数据可视</h4><p>多维图表集中呈现经营指标,支持管理层实时掌握运营状态并快速决策。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/资源_5.svg" alt="统一流程审批"></div><div class="feature-card-body"><h4>业财数据贯通,精准风控</h4><p>业务数据自动同步财务,减少人工差错,让经营数据真实可信、可追溯。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/编组-14.svg" alt="统一报销管理"></div><div class="feature-card-body"><h4>全流程一体化,高效降本</h4><p>从报销、审批到财务自动联动,减少重复操作,企业整体效率显著提升。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/资源_3.svg" alt="业财自动对接"></div><div class="feature-card-body"><h4>智能预警主动,合规省心/h4><p>证书、合同、流程自动预警,避免遗漏与违规,让运营更稳定、合规更省心。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/资源_9.svg" alt="复杂计算自动化"></div><div class="feature-card-body"><h4>全程数字化闭环,无纸化运营</h4><p>文件、流程、数据全部线上化,减少纸质依赖,审计、查阅、管理更轻松。</p></div></div>
|
||||
<div class="feature-card"><div class="feature-card-icon"><img src="assets/images/project/common/编组-14.svg" alt="智能预警主动推送"></div><div class="feature-card-body"><h4>数据实时可视,科学决策</h4><p>多维度 BI 分析直观呈现运营状况,让管理层看得清、判得准、行动快。</p></div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -166,10 +165,12 @@
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/hede_global_supply_chain.html"><div class="case-card"><div class="case-card-header blue"><h3>唐山港合德海运有限公司</h3></div><div class="case-card-body"><p>唐山港合德海运有限公司专注内外贸集装箱航线运营,主营国际国内水路运输、货运代理、船舶代理及无船承运业务。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/jinjiang_shipping_ecommerce.html"><div class="case-card"><div class="case-card-header blue"><h3>上海锦江航运(集团)股份有限公司</h3></div><div class="case-card-body"><p>上海锦江航运(集团)股份有限公司1983年成立的中国领先区域性集装箱航运企业,聚焦亚洲近洋市场,以上海为母港,形成"东北亚压舱石+东南亚增长极"战略布局。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/shanghai_haihua_shipping.html"><div class="case-card"><div class="case-card-header blue"><h3>上海海华轮船有限公司</h3></div><div class="case-card-body"><p>上海海华轮船有限公司1990年成立,系上海锦江航运(集团)股份有限公司全资国有航运企业,专注近洋集装箱班轮运输。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/tianjin_zhongyun_shipping.html"><div class="case-card"><div class="case-card-header cyan"><h3>天津中运海运集团有限公司</h3></div><div class="case-card-body"><p>天津中运海运集团有限公司(中运集团)成立于2012年,注册资金叁仟万元,总部设于天津滨海经济开发区。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/lianyungang_china_korea_ferry.html"><div class="case-card"><div class="case-card-header indigo"><h3>连云港中韩轮渡有限公司</h3></div><div class="case-card-body"><p>连云港中韩轮渡有限公司,位于新亚欧大陆桥东桥头堡——连云港东端,独家经营连云港至仁川、平泽客货班轮航线,系江苏省唯一客货班轮航线。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/shanghai_haihua_shipping.html"><div class="case-card"><div class="case-card-header blue"><h3>上海海华轮船有限公司</h3></div><div class="case-card-body"><p>上海海华轮船有限公司1990年成立,系上海锦江航运(集团)股份有限公司全资国有航运企业,专注近洋集装箱班轮运输。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/hainan_strait_shipping.html"><div class="case-card"><div class="case-card-header blue"><h3>海南海峡航运股份有限公司</h3></div><div class="case-card-body"><p>作为海南自贸港“四方五港”核心运营主体,承担构建“智慧通道”、服务自贸港封关运作重任。</p></div></div></a></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -162,8 +162,8 @@
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/hede_global_supply_chain.html"><div class="case-card"><div class="case-card-header blue"><h3>唐山港合德海运有限公司</h3></div><div class="case-card-body"><p>上海海华轮船有限公司1990年成立,系上海锦江航运(集团)股份有限公司全资国有航运企业,专注近洋集装箱班轮运输。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/jinjiang_shipping_ecommerce.html"><div class="case-card"><div class="case-card-header blue"><h3>上海锦江航运(集团)股份有限公司</h3></div><div class="case-card-body"><p>上海海华轮船有限公司1990年成立,系上海锦江航运(集团)股份有限公司全资国有航运企业,专注近洋集装箱班轮运输。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/hede_global_supply_chain.html"><div class="case-card"><div class="case-card-header blue"><h3>唐山港合德海运有限公司</h3></div><div class="case-card-body"><p>唐山港合德海运有限公司专注内外贸集装箱航线运营,主营国际国内水路运输、货运代理、船舶代理及无船承运业务。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/jinjiang_shipping_ecommerce.html"><div class="case-card"><div class="case-card-header blue"><h3>上海锦江航运(集团)股份有限公司</h3></div><div class="case-card-body"><p>上海锦江航运(集团)股份有限公司1983年成立的中国领先区域性集装箱航运企业,聚焦亚洲近洋市场,以上海为母港,形成"东北亚压舱石+东南亚增长极"战略布局。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/shanghai_haihua_shipping.html"><div class="case-card"><div class="case-card-header blue"><h3>上海海华轮船有限公司</h3></div><div class="case-card-body"><p>上海海华轮船有限公司1990年成立,系上海锦江航运(集团)股份有限公司全资国有航运企业,专注近洋集装箱班轮运输。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/jiahua_shipping_system.html"><div class="case-card"><div class="case-card-header cyan"><h3>嘉华航运(香港)有限公司</h3></div><div class="case-card-body"><p>嘉华航运(香港)有限公司(Kawa Shipping),2023年成立的新兴国际航运企业,专注中东及北非市场。</p></div></div></a></div>
|
||||
<div class="col-md-4"><a class="case-card-link" href="classiccase/beibuwan_shuttle_bus.html"><div class="case-card"><div class="case-card-header indigo"><h3>北部湾防城港有限公司</h3></div><div class="case-card-body"><p>广西北部湾港涵盖防城港域、北海港域、钦州港域,位居泛北部湾经济圈、泛珠三角区域经济圈与中国—东盟经济圈交汇核心。</p></div></div></a></div>
|
||||
|
||||
Reference in New Issue
Block a user