提交
This commit is contained in:
parent
e0bc6381ea
commit
30c3549b51
@ -11,8 +11,8 @@
|
||||
<script src="{dreamer-cms:template /}css/tailwindcss.css"></script>
|
||||
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> -->
|
||||
<link rel="stylesheet" href="{dreamer-cms:template /}css/font-awesome.css">
|
||||
<!-- 1. 引入 Animate.css -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
|
||||
<!-- 1. 引入 Animate.css 实现标题飞入-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<!-- 禁止百度转码 -->
|
||||
<meta http-equiv="Cache-Control" content="no-siteapp">
|
||||
@ -21,8 +21,8 @@
|
||||
<!-- QQ强制竖屏 -->
|
||||
<meta name="x5-orientation" content="portrait">
|
||||
<title>{dreamer-cms:global name="title"/}</title>
|
||||
<meta name="Keywords" content="{dreamer-cms:global name="keywords"/}" />
|
||||
<meta name="Description" content="{dreamer-cms:global name="describe"/}" />
|
||||
<meta name="Keywords" content="{dreamer-cms:global name=" keywords"/}" />
|
||||
<meta name="Description" content="{dreamer-cms:global name=" describe"/}" />
|
||||
<link rel="stylesheet" href="{dreamer-cms:template /}css/iconfont/iconfont.css">
|
||||
<link rel="stylesheet" href="{dreamer-cms:template /}css/reset.css">
|
||||
<link rel="stylesheet" href="{dreamer-cms:template /}css/animate.css">
|
||||
@ -33,7 +33,6 @@
|
||||
<script src="{dreamer-cms:template /}scripts/js.js"></script>
|
||||
<script src="{dreamer-cms:template /}scripts/layer.js"></script>
|
||||
<style>
|
||||
|
||||
.hero-section {
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1605152276897-4f618f831968?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
|
||||
background-size: cover;
|
||||
@ -176,7 +175,7 @@
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
max-width: 100% ;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
@ -235,9 +234,110 @@
|
||||
.carousel-indicator.active {
|
||||
background: white;
|
||||
}
|
||||
|
||||
#timeline {
|
||||
height: 235px;
|
||||
}
|
||||
|
||||
#projectoutdiv {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#projectoutdiv::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0.2;
|
||||
/* 调整这个值改变背景图透明度 (0=全透明, 1=不透明) */
|
||||
z-index: -1;
|
||||
/* 确保背景在内容下方 */
|
||||
/* background-image: url('{dreamer-cms:template /}images/IMG_20250429150832.png'); */
|
||||
background-size: cover; /* 新增:确保图片覆盖 */
|
||||
background-position: center; /* 新增:居中显示 */
|
||||
}
|
||||
|
||||
#projectindiv {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
/* 动态调整透明度(配合JavaScript) */
|
||||
#projectoutdiv:hover::before {
|
||||
opacity: 0.35; /* 鼠标悬停时恢复部分清晰度 */
|
||||
}
|
||||
.custom-btn {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 16px 40px; /* 增加左右内边距 */
|
||||
min-width: 240px; /* 设置最小宽度 */
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
border-radius: 50px;
|
||||
overflow: visible !important;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* 按钮文字 */
|
||||
.btn-text {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
color: #1a365d;
|
||||
transition: color 0.3s ease;
|
||||
text-align: center; /* 确保文字居中 */
|
||||
}
|
||||
|
||||
/* 动态背景层 */
|
||||
.btn-bg {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(135deg,
|
||||
#3b82f6 0%,
|
||||
#8b5cf6 100%
|
||||
);
|
||||
transform: scale(0.95);
|
||||
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* 悬停动效 */
|
||||
.custom-btn:hover {
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
|
||||
.custom-btn:hover .btn-bg {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
.custom-btn:hover .btn-text {
|
||||
color: #f0f8ff;
|
||||
}
|
||||
|
||||
/* 二级按钮样式 */
|
||||
.btn-secondary .btn-bg {
|
||||
background: linear-gradient(135deg,
|
||||
#10b981 0%,
|
||||
#34d399 100%
|
||||
);
|
||||
}
|
||||
|
||||
/* 点击动效 */
|
||||
.custom-btn:active {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
/* 平台按钮点击动效 */
|
||||
#bbb {
|
||||
z-index: 3;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
@ -271,133 +371,265 @@
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 新闻动态 - 放在轮播图下方 -->
|
||||
<section class="py-16 bg-gray-50">
|
||||
<div class="container mx-auto px-6">
|
||||
<div class="text-center mb-12">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4">新闻动态</h2>
|
||||
<div class="w-20 h-1 bg-blue-600 mx-auto mb-6"></div>
|
||||
<p class="text-gray-600 max-w-3xl mx-auto">了解我们的最新动态和资讯</p>
|
||||
</div>
|
||||
<!-- 新闻动态 - 放在轮播图下方 -->
|
||||
<section class="py-16 bg-gray-50">
|
||||
<div class="container mx-auto px-6">
|
||||
<div class="text-center mb-12">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4">新闻动态</h2>
|
||||
<div class="w-20 h-1 bg-blue-600 mx-auto mb-6"></div>
|
||||
<p class="text-gray-600 max-w-3xl mx-auto"><b>了解我们的最新动态和资讯</b></p>
|
||||
</div>
|
||||
|
||||
<div class="news-container bg-white rounded-lg shadow-md overflow-hidden">
|
||||
<!-- 左侧新闻图片 -->
|
||||
<div class="news-container bg-white rounded-lg shadow-md overflow-hidden">
|
||||
<!-- 左侧新闻图片 -->
|
||||
{dreamer-cms:list typeid="zac9idyl" pagenum="1" pagesize="1" cascade="true" sortBy="show_time" sortWay="desc"}
|
||||
<div class="news-image">
|
||||
<img src="[field:litpic/]" alt="新闻图片">
|
||||
<div class="absolute bottom-0 left-0 right-0 p-6 bg-gradient-to-t from-black to-transparent text-white">
|
||||
<div class="text-sm text-gray-300 mb-2">
|
||||
<span>[field:showtime function="format('yyyy-MM-dd HH:mm:ss')" /]</span>
|
||||
<!-- <span class="mx-2">|</span>
|
||||
<div class="news-image">
|
||||
<img src="[field:litpic/]" alt="新闻图片">
|
||||
<div
|
||||
class="absolute bottom-0 left-0 right-0 p-6 bg-gradient-to-t from-black to-transparent text-white">
|
||||
<div class="text-sm text-gray-300 mb-2">
|
||||
<span>[field:showtime function="format('yyyy-MM-dd HH:mm:ss')" /]</span>
|
||||
<!-- <span class="mx-2">|</span>
|
||||
<span>公司新闻</span> -->
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3">[field:title/]</h3>
|
||||
<a href="[field:arcurl/]" class="view-details">
|
||||
阅读更多 <i class="fas fa-arrow-right"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{/dreamer-cms:list}
|
||||
<!-- 分割线 -->
|
||||
<div class="divider"></div>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-3">[field:title/]</h3>
|
||||
<a href="[field:arcurl/]" class="view-details">
|
||||
阅读更多 <i class="fas fa-arrow-right"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{/dreamer-cms:list}
|
||||
<!-- 分割线 -->
|
||||
<div class="divider"></div>
|
||||
|
||||
<!-- 右侧新闻列表 -->
|
||||
<div class="news-list">
|
||||
<div id="news-list-content">
|
||||
<!-- News items will be dynamically inserted here -->
|
||||
</div>
|
||||
<!-- 右侧新闻列表 -->
|
||||
<div class="news-list">
|
||||
<div id="news-list-content">
|
||||
<!-- News items will be dynamically inserted here -->
|
||||
</div>
|
||||
|
||||
<div class="pagination-container">
|
||||
<nav>
|
||||
<ul class="pagination flex" id="pagination">
|
||||
<!-- Pagination will be dynamically inserted here -->
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<div class="pagination-container">
|
||||
<nav>
|
||||
<ul class="pagination flex" id="pagination">
|
||||
<!-- Pagination will be dynamically inserted here -->
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="flex flex-col md:flex-row w-full max-w-[1480px] mx-auto gap-8 py-12">
|
||||
<!-- 左侧区块 -->
|
||||
<div class="bg-white rounded-xl shadow-md overflow-hidden flex-1 flex flex-col">
|
||||
<div class="p-6 border-b">
|
||||
<h3 class="text-xl font-semibold text-gray-700 mb-4">招采信息</h3>
|
||||
<div class="p-6 border-b">
|
||||
<h3 class="text-xl font-semibold text-gray-700 mb-4">招采信息</h3>
|
||||
|
||||
<!-- 表格容器修改 -->
|
||||
<div class="overflow-hidden"> <!-- 移除滚动条 -->
|
||||
<table class="w-full table-auto">
|
||||
<colgroup>
|
||||
<col span="1" style="width: 70%;">
|
||||
<col span="1" style="width: 30%;">
|
||||
</colgroup>
|
||||
<tbody class="divide-y divide-gray-100">
|
||||
{dreamer-cms:list typeid="c44273d2" pagenum="1" pagesize="5" cascade="true" sortBy="show_time" sortWay="desc"}
|
||||
<tr class="hover:bg-gray-50">
|
||||
<!-- 修改后的单元格 -->
|
||||
<td class="px-6 py-4 font-medium text-gray-800 text-lg max-w-[30ch] truncate break-words">
|
||||
[field:title/]
|
||||
</td>
|
||||
<td class="px-6 py-4 text-gray-600 text-lg max-w-[30ch] truncate">
|
||||
[field:showtime function="format('yyyy-MM-dd')" /]
|
||||
</td>
|
||||
</tr>
|
||||
<!-- 其他行保持相同结构 -->
|
||||
{/dreamer-cms:list}
|
||||
<!-- 表格容器修改 -->
|
||||
<div class="overflow-hidden">
|
||||
<!-- 移除滚动条 -->
|
||||
<table class="w-full table-auto">
|
||||
<colgroup>
|
||||
<col span="1" style="width: 70%;">
|
||||
<col span="1" style="width: 30%;">
|
||||
</colgroup>
|
||||
<tbody class="divide-y divide-gray-100">
|
||||
{dreamer-cms:list typeid="c44273d2" pagenum="1" pagesize="5" cascade="true" sortBy="show_time" sortWay="desc"}
|
||||
<tr class="hover:bg-gray-50">
|
||||
<!-- 修改后的单元格 -->
|
||||
<td
|
||||
class="px-6 py-4 font-medium text-gray-800 text-lg max-w-[30ch] truncate break-words">
|
||||
[field:title/]
|
||||
</td>
|
||||
<td class="px-6 py-4 text-gray-600 text-lg max-w-[30ch] truncate">
|
||||
[field:showtime function="format('yyyy-MM-dd')" /]
|
||||
</td>
|
||||
</tr>
|
||||
<!-- 其他行保持相同结构 -->
|
||||
{/dreamer-cms:list}
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="pt-4 flex justify-end">
|
||||
<a href="/list-c44273d2/gongsixinwen/1/10">
|
||||
<button
|
||||
class="px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors text-lg">
|
||||
显示更多
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pt-4 flex justify-end">
|
||||
<a href="/list-c44273d2/gongsixinwen/1/10">
|
||||
<button class="px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors text-lg">
|
||||
显示更多
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 右侧区块(相同修改) -->
|
||||
<div class="bg-white rounded-xl shadow-md overflow-hidden flex-1 flex flex-col">
|
||||
<div class="p-6 border-b">
|
||||
<h3 class="text-xl font-semibold text-gray-700 mb-4">政策法规</h3>
|
||||
<h3 class="text-xl font-semibold text-gray-700 mb-4">政策法规</h3>
|
||||
|
||||
<!-- 表格容器修改 -->
|
||||
<div class="overflow-hidden"> <!-- 移除滚动条 -->
|
||||
<table class="w-full table-auto">
|
||||
<colgroup>
|
||||
<col span="1" style="width: 70%;">
|
||||
<col span="1" style="width: 30%;">
|
||||
</colgroup>
|
||||
<tbody class="divide-y divide-gray-100">
|
||||
{dreamer-cms:list typeid="gez4xw34" pagenum="1" pagesize="5" cascade="true" sortBy="show_time" sortWay="desc"}
|
||||
<tr class="hover:bg-gray-50">
|
||||
<!-- 修改后的单元格 -->
|
||||
<td class="px-6 py-4 font-medium text-gray-800 text-lg max-w-[30ch] truncate break-words">
|
||||
[field:title/]
|
||||
</td>
|
||||
<td id="thetime"class="px-6 py-4 text-gray-600 text-lg max-w-[30ch] truncate">
|
||||
[field:showtime function="format('yyyy-MM-dd')" /]
|
||||
</td>
|
||||
</tr>
|
||||
<!-- 其他行保持相同结构 -->
|
||||
{/dreamer-cms:list}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- 表格容器修改 -->
|
||||
<div class="overflow-hidden">
|
||||
<!-- 移除滚动条 -->
|
||||
<table class="w-full table-auto">
|
||||
<colgroup>
|
||||
<col span="1" style="width: 70%;">
|
||||
<col span="1" style="width: 30%;">
|
||||
</colgroup>
|
||||
<tbody class="divide-y divide-gray-100">
|
||||
{dreamer-cms:list typeid="gez4xw34" pagenum="1" pagesize="5" cascade="true" sortBy="show_time" sortWay="desc"}
|
||||
<tr class="hover:bg-gray-50">
|
||||
<!-- 修改后的单元格 -->
|
||||
<td
|
||||
class="px-6 py-4 font-medium text-gray-800 text-lg max-w-[30ch] truncate break-words">
|
||||
[field:title/]
|
||||
</td>
|
||||
<td id="thetime" class="px-6 py-4 text-gray-600 text-lg max-w-[30ch] truncate">
|
||||
[field:showtime function="format('yyyy-MM-dd')" /]
|
||||
</td>
|
||||
</tr>
|
||||
<!-- 其他行保持相同结构 -->
|
||||
{/dreamer-cms:list}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="pt-4 flex justify-end">
|
||||
<a href="/list-gez4xw34/ztb/1/10">
|
||||
<button class="px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors text-lg">
|
||||
显示更多
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
<div class="pt-4 flex justify-end">
|
||||
<a href="/list-gez4xw34/ztb/1/10">
|
||||
<button
|
||||
class="px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors text-lg">
|
||||
显示更多
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="py-16 bg-gray-50">
|
||||
<div class="container mx-auto px-6">
|
||||
<div class="flex flex-col md:flex-row items-center justify-center gap-8 max-w-6xl mx-auto">
|
||||
<!-- 加长版招采平台按钮 -->
|
||||
<a href="http://lxjt.lxxmgl.net/trading#/login?activeName=1" target="_blank" class="custom-btn btn-primary">
|
||||
<span class="btn-bg"></span>
|
||||
<i id="bbb" class="fas fa-search text-blue-600 text-2xl fa-1x ml-2 mr-4" style="position: relative;left:-10px"></i>
|
||||
<span class="btn-text">进入招采平台</span>
|
||||
</a>
|
||||
|
||||
<!-- 加长版数字平台按钮 -->
|
||||
<a href="http://lxjt.lxxmgl.net/trading#/login?activeName=1" target="_blank" class="custom-btn btn-secondary">
|
||||
<span class="btn-bg"></span>
|
||||
<i id="bbb" class="fas fal fa-city text-blue-600 text-2xl fa-1x ml-2 mr-4"style="position: relative;left:-10px"></i>
|
||||
<span class="btn-text">进入数字平台</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- 服务项目 -->
|
||||
<section class="py-20 bg-gray-50">
|
||||
<div class="container mx-auto px-6">
|
||||
<div class="text-center mb-16">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4">我们的服务</h2>
|
||||
<div class="w-20 h-1 bg-blue-600 mx-auto mb-6"></div>
|
||||
<h><p class="text-gray-600 max-w-3xl mx-auto"><b>我们提供全方位的工程咨询服务,助力项目顺利实施</b></p></h>
|
||||
</div>
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||
{dreamer-cms:list typeid="gez4xw34" pagenum="1" pagesize="1" cascade="true" sortBy="show_time" sortWay="desc"}
|
||||
<div id="projectoutdiv" class="service-card bg-white p-8 rounded-lg shadow-md" data-bg-image="/resources/uploads/20250411/1910576712700710912.png">
|
||||
<div id="projectindiv">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-project-diagram text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4"><strong>全过程工程咨询</strong></h3>
|
||||
<p class="text-gray-600 mb-6"><b>提供从项目前期策划到竣工验收的全过程咨询服务</b></p>
|
||||
<a href="/list-48385ou5/quanguocheng/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{/dreamer-cms:list}
|
||||
<div id="projectoutdiv" class="service-card bg-white p-8 rounded-lg shadow-md" data-bg-image="/resources/uploads/20250411/1910576712700710912.png">
|
||||
<div id="projectindiv" class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-tasks text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4"><strong>项目管理服务</strong></h3>
|
||||
<p class="text-gray-600 mb-6"><b>专业的项目管理团队,确保项目按计划顺利实施</b></p>
|
||||
<a href="/list-48385ou5/quanguocheng/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-calculator text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4"><strong>工程造价咨询</strong></h3>
|
||||
<p class="text-gray-600 mb-6"><b>专业的造价控制服务,优化项目投资效益</b></p>
|
||||
<a href="/list-0723u098/zjzx/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-search text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4"><strong>BIM咨询</strong></h3>
|
||||
<p class="text-gray-600 mb-6"><b>BIM咨询赋能,智建高效协同</b></p>
|
||||
<a href="/list-5dwqhes7/bim/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-file-contract text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4"><strong>工程监理服务</strong></h3>
|
||||
<p class="text-gray-600 mb-6"><b>专业的工程监理团队,确保工程质量达标</b></p>
|
||||
<a href="/list-v35683wr/gcjl/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-solid fa-user text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4"><strong>资金申请</strong></h3>
|
||||
<p class="text-gray-600 mb-6"><b>精准资金规划,体现服务价值</b></p>
|
||||
<a href="/list-fjr7p75l/zjsq/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fal fa-city text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4"><strong>勘察设计</strong></h3>
|
||||
<p class="text-gray-600 mb-6"><b>精勘设计先行,赋能工程科学决策</b></p>
|
||||
<a href="/list-32n9y542/kcsj/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-shield-alt text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4"><strong>安全咨询</strong></h3>
|
||||
<p class="text-gray-600 mb-6"><b>专业安全咨询,护航工程零风险</b></p>
|
||||
<a href="/list-8q398bn8/aqzx/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-desktop text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4"><strong>信息化咨询</strong></h3>
|
||||
<p class="text-gray-600 mb-6"><b>智能信息化,赋能工程高效决策</b></p>
|
||||
<a href="/list-10o2ipu3/xxh/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 关于我们 -->
|
||||
<section class="py-20">
|
||||
@ -407,12 +639,12 @@
|
||||
<div class="w-20 h-1 bg-blue-600 mx-auto mb-6"></div>
|
||||
<p class="text-gray-800 text-left text-lg">
|
||||
龙翔工程咨询集团,成立于2005年,是一家集工程咨询、投融资咨询、财税鉴证、安全咨询、环保职业卫生、信息化咨询、数据资产、项目管理、勘察设计、监理服务、行业咨询教育为一体的综合性企业。集团管理中心位于北京市西城区,集团总部位于青岛西海岸新区,现有职工300余人,注册类工程师百余人。集团自成立以来,始终坚持“专业第一,服务第一,信誉第一”核心发展理念,秉承与恪守“公平、公正、守法”的职业风范,为客户提供全方位咨询服务。
|
||||
</p>
|
||||
</p>
|
||||
</div>
|
||||
<div class="flex flex-col md:flex-row items-center">
|
||||
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
|
||||
<img src="{dreamer-cms:template /}images/IMG_20250429150832.png"
|
||||
alt="关于我们" class="rounded-lg shadow-xl">
|
||||
<img src="{dreamer-cms:template /}images/IMG_20250429150832.png" alt="关于我们"
|
||||
class="rounded-lg shadow-xl">
|
||||
</div>
|
||||
<div class="md:w-1/2">
|
||||
<h3 class="text-2xl font-bold mb-6">我们的使命与愿景</h3>
|
||||
@ -452,111 +684,8 @@
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 服务项目 -->
|
||||
<section class="py-20 bg-gray-50">
|
||||
<div class="container mx-auto px-6">
|
||||
<div class="text-center mb-16">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4">我们的服务</h2>
|
||||
<div class="w-20 h-1 bg-blue-600 mx-auto mb-6"></div>
|
||||
<p class="text-gray-600 max-w-3xl mx-auto">我们提供全方位的工程咨询服务,助力项目顺利实施</p>
|
||||
</div>
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-project-diagram text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4">全过程工程咨询</h3>
|
||||
<p class="text-gray-600 mb-6">提供从项目前期策划到竣工验收的全过程咨询服务</p>
|
||||
<a href="/list-48385ou5/quanguocheng/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-tasks text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4">项目管理服务</h3>
|
||||
<p class="text-gray-600 mb-6">专业的项目管理团队,确保项目按计划顺利实施</p>
|
||||
<a href="/list-48385ou5/quanguocheng/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-calculator text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4">工程造价咨询</h3>
|
||||
<p class="text-gray-600 mb-6">专业的造价控制服务,优化项目投资效益</p>
|
||||
<a href="/list-0723u098/zjzx/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-search text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4">BIM咨询</h3>
|
||||
<p class="text-gray-600 mb-6">BIM咨询赋能,智建高效协同</p>
|
||||
<a href="/list-5dwqhes7/bim/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-file-contract text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4">工程监理服务</h3>
|
||||
<p class="text-gray-600 mb-6">专业的工程监理团队,确保工程质量达标</p>
|
||||
<a href="/list-v35683wr/gcjl/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-solid fa-user text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4">资金申请</h3>
|
||||
<p class="text-gray-600 mb-6">精准资金规划,体现服务价值</p>
|
||||
<a href="/list-fjr7p75l/zjsq/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fal fa-city text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4">勘察设计</h3>
|
||||
<p class="text-gray-600 mb-6">精勘设计先行,赋能工程科学决策</p>
|
||||
<a href="/list-32n9y542/kcsj/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-shield-alt text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4">安全咨询</h3>
|
||||
<p class="text-gray-600 mb-6">专业安全咨询,护航工程零风险</p>
|
||||
<a href="/list-8q398bn8/aqzx/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="service-card bg-white p-8 rounded-lg shadow-md">
|
||||
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
|
||||
<i class="fas fa-desktop text-blue-600 text-2xl"></i>
|
||||
</div>
|
||||
<h3 class="text-xl font-bold mb-4">信息化咨询</h3>
|
||||
<p class="text-gray-600 mb-6">智能信息化,赋能工程高效决策</p>
|
||||
<a href="/list-10o2ipu3/xxh/1/10" class="text-blue-600 font-medium flex items-center">
|
||||
了解更多 <i class="fas fa-arrow-right ml-2 text-sm"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 发展历程 -->
|
||||
<section class="py-20">
|
||||
<!-- <section class="py-20">
|
||||
<div class="container mx-auto px-6">
|
||||
<div class="text-center mb-16">
|
||||
<h2 class="text-3xl md:text-4xl font-bold mb-4">发展历程</h2>
|
||||
@ -619,7 +748,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</section> -->
|
||||
{dreamer-cms:include file="inc/footer.html" /}
|
||||
<script>
|
||||
// var user = [[{dreamer-cms:list typeid="6j0r9qzq" pagenum="1" pagesize="1" cascade="true"/}]];
|
||||
@ -681,52 +810,52 @@
|
||||
// Pagination variables
|
||||
const itemsPerPage = 5;
|
||||
let currentPage = 1;
|
||||
// 从接口获取新闻数据
|
||||
// 从接口获取新闻数据
|
||||
async function fetchNewsData() {
|
||||
try {
|
||||
// 显示加载状态
|
||||
document.getElementById('news-list-content').innerHTML = `
|
||||
try {
|
||||
// 显示加载状态
|
||||
document.getElementById('news-list-content').innerHTML = `
|
||||
<div class="loading">
|
||||
<div class="loading-spinner"></div>
|
||||
</div>
|
||||
`;
|
||||
|
||||
// 实际项目中替换为你的真实API地址
|
||||
const response = await fetch('/getIndexNews', {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
// 如果需要认证,可以添加认证头
|
||||
// 'Authorization': 'Bearer your_token_here'
|
||||
}
|
||||
});
|
||||
// 实际项目中替换为你的真实API地址
|
||||
const response = await fetch('/getIndexNews', {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
// 如果需要认证,可以添加认证头
|
||||
// 'Authorization': 'Bearer your_token_here'
|
||||
}
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error('网络响应不正常');
|
||||
}
|
||||
if (!response.ok) {
|
||||
throw new Error('网络响应不正常');
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
const data = await response.json();
|
||||
|
||||
// 假设API返回的数据格式为:
|
||||
// {
|
||||
// success: true,
|
||||
// data: [
|
||||
// { date: "2023-06-15", category: "公司新闻", title: "新闻标题1" },
|
||||
// { date: "2023-06-10", category: "行业动态", title: "新闻标题2" },
|
||||
// // 更多新闻...
|
||||
// ]
|
||||
// }
|
||||
// 假设API返回的数据格式为:
|
||||
// {
|
||||
// success: true,
|
||||
// data: [
|
||||
// { date: "2023-06-15", category: "公司新闻", title: "新闻标题1" },
|
||||
// { date: "2023-06-10", category: "行业动态", title: "新闻标题2" },
|
||||
// // 更多新闻...
|
||||
// ]
|
||||
// }
|
||||
|
||||
if (data.code==200) {
|
||||
return data.data;
|
||||
} else {
|
||||
throw new Error(data.message || '获取新闻数据失败');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('获取新闻数据失败:', error);
|
||||
if (data.code == 200) {
|
||||
return data.data;
|
||||
} else {
|
||||
throw new Error(data.message || '获取新闻数据失败');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('获取新闻数据失败:', error);
|
||||
|
||||
// 显示错误信息
|
||||
document.getElementById('news-list-content').innerHTML = `
|
||||
// 显示错误信息
|
||||
document.getElementById('news-list-content').innerHTML = `
|
||||
<div class="p-8 text-center text-red-500">
|
||||
<i class="fas fa-exclamation-triangle text-2xl mb-2"></i>
|
||||
<p>加载新闻失败: ${error.message}</p>
|
||||
@ -736,30 +865,30 @@
|
||||
</div>
|
||||
`;
|
||||
|
||||
// 返回空数组或默认数据
|
||||
return [];
|
||||
}
|
||||
}
|
||||
// 返回空数组或默认数据
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
// 获取新闻数据并显示
|
||||
// 获取新闻数据并显示
|
||||
async function fetchNewsDataAndDisplay() {
|
||||
const newsData = await fetchNewsData();
|
||||
const newsData = await fetchNewsData();
|
||||
|
||||
// 如果获取数据成功,初始化分页和显示
|
||||
if (newsData.length > 0) {
|
||||
// 初始化分页和显示
|
||||
displayNewsItems(newsData);
|
||||
setupPagination(newsData);
|
||||
} else {
|
||||
// 如果没有数据,显示提示信息
|
||||
document.getElementById('news-list-content').innerHTML = `
|
||||
// 如果获取数据成功,初始化分页和显示
|
||||
if (newsData.length > 0) {
|
||||
// 初始化分页和显示
|
||||
displayNewsItems(newsData);
|
||||
setupPagination(newsData);
|
||||
} else {
|
||||
// 如果没有数据,显示提示信息
|
||||
document.getElementById('news-list-content').innerHTML = `
|
||||
<div class="p-8 text-center text-gray-500">
|
||||
<i class="fas fa-info-circle text-2xl mb-2"></i>
|
||||
<p>暂无新闻数据</p>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
let currentNewsData = [];
|
||||
// const newsData =await fetchNewsData();
|
||||
// Function to display news items for current page
|
||||
@ -771,8 +900,8 @@
|
||||
const startIndex = (currentPage - 1) * itemsPerPage;
|
||||
const endIndex = Math.min(startIndex + itemsPerPage, newsData.length);
|
||||
const paginatedData = newsData.slice(startIndex, endIndex);
|
||||
// <span class="mx-2">|</span>
|
||||
// <span>${item.title}</span>
|
||||
// <span class="mx-2">|</span>
|
||||
// <span>${item.title}</span>
|
||||
paginatedData.forEach(item => {
|
||||
const newsItem = document.createElement('div');
|
||||
newsItem.className = 'news-item';
|
||||
@ -1033,8 +1162,8 @@
|
||||
// 初始化新闻列表
|
||||
// displayNewsItems();
|
||||
// setupPagination();
|
||||
// 初始化新闻列表 - 从API获取数据
|
||||
fetchNewsDataAndDisplay();
|
||||
// 初始化新闻列表 - 从API获取数据
|
||||
fetchNewsDataAndDisplay();
|
||||
});
|
||||
window.onload = function () {
|
||||
console.log("页面加载完成,自动运行方法");
|
||||
@ -1046,13 +1175,37 @@
|
||||
elements.forEach(function (element) {
|
||||
var text = element.textContent;
|
||||
if (text.length > 9) {
|
||||
element.textContent = text.slice(0, -15);
|
||||
element.textContent = text.slice(0, -17);
|
||||
} else {
|
||||
// 处理长度不足的情况,比如清空或者保留原样
|
||||
element.textContent = '';
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// 动态设置服务背景图
|
||||
document.querySelectorAll('.service-card').forEach(card => {
|
||||
const bgImage = card.dataset.bgImage;
|
||||
|
||||
// 创建动态样式
|
||||
const style = document.createElement('style');
|
||||
style.textContent = `
|
||||
#${card.id}::before {
|
||||
background-image: ${bgImage ? `url('${bgImage}')` : 'none'};
|
||||
}
|
||||
`;
|
||||
|
||||
// 插入样式并清理旧样式
|
||||
card.parentNode.insertBefore(style, card);
|
||||
card._dynamicStyle = style;
|
||||
});
|
||||
|
||||
// 清理函数(可选)
|
||||
window.addEventListener('beforeunload', () => {
|
||||
document.querySelectorAll('.service-card').forEach(card => {
|
||||
if (card._dynamicStyle) card._dynamicStyle.remove();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
Loading…
x
Reference in New Issue
Block a user