code/src/views/home/homeView.vue

1141 lines
26 KiB
Vue
Raw Normal View History

2025-04-02 15:07:17 +08:00
<script>
2025-03-19 17:21:07 +08:00
import logo from '../../assets/images/logo.png'
import s1 from '../../assets/images/lbt1.jpeg'
import s2 from '../../assets/images/lbt2.jpeg'
import s3 from '../../assets/images/lbt3.jpeg'
import tb1 from '../../assets/images/tb1.png'
2025-04-02 15:07:17 +08:00
import dt from '../../assets/images/dt.jpg'
2025-03-19 17:21:07 +08:00
import { ref, onMounted } from 'vue'
2025-03-21 15:38:59 +08:00
import FootView from '../../components/footView.vue'
2025-04-02 15:07:17 +08:00
// import { subMenuProps } from 'element-plus'
2025-03-19 17:21:07 +08:00
export default {
2025-03-21 15:38:59 +08:00
components: {
FootView,
},
2025-03-19 17:21:07 +08:00
data() {
return {
imagePath: {
2025-04-02 15:07:17 +08:00
logo,
tb1,
s1,
s2,
s3,
dt,
2025-03-19 17:21:07 +08:00
},
2025-04-01 23:59:52 +08:00
isDark: false,
2025-03-19 17:21:07 +08:00
}
},
setup() {
2025-04-02 15:07:17 +08:00
const form = ref({
input1: '',
input2: '',
input3: '',
});
const input1 = ref(null);
const input2 = ref(null);
const input3 = ref(null);
const submitBtn = ref(null);
const focusNext = (refName) => {
switch (refName) {
case 'input2':
input2.value.focus();
break;
case 'input3':
input3.value.focus();
break;
case 'submitBtn':
submitBtn.value.focus();
break;
}
};
const resetForm = () => {
form.value = {
input1: '',
input2: '',
input3: ''
};
};
const submitForm = () => {
alert('提交成功!')
resetForm();
input1.value.focus();
};
onMounted(() => {
input1.value.focus();
});
2025-03-19 17:21:07 +08:00
const slides = [{ image: s1 }, { image: s2 }, { image: s3 }]
const currentIndex = ref(0)
const nextSlide = () => {
currentIndex.value = (currentIndex.value + 1) % slides.length
}
const prevSlide = () => {
currentIndex.value = (currentIndex.value - 1 + slides.length) % slides.length
}
2025-03-25 10:36:42 +08:00
function tiaoZhuan(id) {
const element = document.getElementById(id)
if (element) {
element.scrollIntoView({ behavior: 'smooth' })
}
}
2025-03-24 22:27:21 +08:00
const geet = () => {
2025-03-25 10:36:42 +08:00
alert(`欢迎咨询!`)
}
const tiJiao = () => {
alert('提交成功!')
}
2025-04-01 23:59:52 +08:00
const shouYe = (id) => {
2025-03-25 10:36:42 +08:00
tiaoZhuan(id)
}
const canPingFangan = (id) => {
tiaoZhuan(id)
}
const jieJuewenTi = (id) => {
tiaoZhuan(id)
}
const keHuanLi = (id) => {
tiaoZhuan(id)
}
const yuanYuwoMen = (id) => {
tiaoZhuan(id)
2025-03-24 22:27:21 +08:00
}
2025-04-02 15:07:17 +08:00
// const tij = () => {
// alert('提交成功!')
// }
2025-03-19 17:21:07 +08:00
// 自动播放
onMounted(() => {
setInterval(nextSlide, 4000)
})
return {
slides,
currentIndex,
nextSlide,
prevSlide,
2025-03-24 22:27:21 +08:00
geet,
2025-04-01 23:59:52 +08:00
shouYe,
2025-03-25 10:36:42 +08:00
canPingFangan,
tiaoZhuan,
jieJuewenTi,
keHuanLi,
yuanYuwoMen,
tiJiao,
2025-04-02 15:07:17 +08:00
resetForm,
form,
input1,
input2,
input3,
submitBtn,
focusNext,
submitForm,
2025-03-19 17:21:07 +08:00
}
},
}
</script>
<template>
<div class="box">
<div class="common-layout">
<el-container>
<!-- 顶部 -->
<el-header>
2025-03-25 10:36:42 +08:00
<div class="dhl" id="dhl">
2025-03-19 22:26:57 +08:00
<div class="left-box">
<img class="img-1" :src="imagePath.logo" alt="Logo" />
2025-04-02 15:23:20 +08:00
<span class="sys-title-bt" title="辉擎科技">辉擎科技</span>
2025-03-19 17:21:07 +08:00
</div>
2025-03-19 22:26:57 +08:00
<div class="right-box">
<div class="dhl-x">
2025-04-01 23:59:52 +08:00
<div><a class="dhl-yt" @click="shouYe('dhl')">首页</a></div>
<div><a class="dhl-yt" @click="canPingFangan('bk')">产品方案</a></div>
<div><a class="dhl-yt" @click="jieJuewenTi('fan-mk')">行业解决问题</a></div>
<div><a class="dhl-yt" @click="keHuanLi('bk-2')">客户案例</a></div>
2025-04-02 15:07:17 +08:00
<div><a class="dhl-yt" @click="yuanYuwoMen('dt-mk')">关于我们</a></div>
2025-03-19 22:26:57 +08:00
</div>
2025-03-24 22:27:21 +08:00
<el-button @click="geet" class="an-3" type="primary">免费咨询</el-button>
2025-03-19 22:26:57 +08:00
</div>
</div>
2025-03-19 17:21:07 +08:00
</el-header>
2025-03-21 15:38:59 +08:00
<el-main class="main" style="padding: 0 20px">
2025-03-19 17:21:07 +08:00
<div class="carousel">
<div class="slides" :style="{ transform: `translateX(-${currentIndex * 100}%)` }">
<div class="slide" v-for="(slide, index) in slides" :key="index">
<div v-if="!isDark" class="demo-term-box">
<div class="em-2">构建智能未来</div>
<div class="em-3">
辉擎成都科技有限公司致力于提供创新的软件开发解决方案帮助企业实现数字化转型提升竞争力
</div>
2025-04-02 15:07:17 +08:00
<el-button class="an-1" type="primary" @click="yuanYuwoMen('lx-mk')">联系我们</el-button>
2025-03-25 10:36:42 +08:00
<el-button class="an-2" @click="canPingFangan('bk')">了解服务</el-button>
2025-03-19 17:21:07 +08:00
</div>
<img :src="slide.image" alt="Slide Image" />
</div>
</div>
<!-- <button class="prev" @click="prevSlide">&#10094;</button>
<button class="next" @click="nextSlide">&#10095;</button> -->
</div>
2025-03-25 10:36:42 +08:00
<div class="bk" id="bk">
2025-03-31 17:18:01 +08:00
<div>
2025-04-01 23:59:52 +08:00
<div class="em-4">我们的服务</div>
<div class="em-5">
辉擎科技提供全方位的软件开发服务从需求分析到部署维护我们用技术为您的业务赋能
</div>
2025-03-19 17:21:07 +08:00
</div>
<div class="fw">
2025-04-02 15:07:17 +08:00
<div class="fw-box" title="人工智能平台">
<img class="img-2" :src="imagePath.tb1" alt="tb1" />
<div class="rgzn">人工智能平台</div>
<div class="tgfw">
2025-03-19 17:21:07 +08:00
提供企业级AI能力包括机器学习深度学习自然语言处理等核心技术支持
</div>
</div>
2025-04-02 15:07:17 +08:00
<div class="fw-box" title="人工智能平台">
<img class="img-2" :src="imagePath.tb1" alt="tb1" />
<div class="rgzn">人工智能平台</div>
<div class="tgfw">
2025-03-19 17:21:07 +08:00
提供企业级AI能力包括机器学习深度学习自然语言处理等核心技术支持
</div>
</div>
2025-04-02 15:07:17 +08:00
<div class="fw-box" title="人工智能平台">
<img class="img-2" :src="imagePath.tb1" alt="tb1" />
<div class="rgzn">人工智能平台</div>
<div class="tgfw">
2025-03-19 17:21:07 +08:00
提供企业级AI能力包括机器学习深度学习自然语言处理等核心技术支持
</div>
</div>
2025-04-02 15:07:17 +08:00
<div class="fw-box" title="人工智能平台">
<img class="img-2" :src="imagePath.tb1" alt="tb1" />
<div class="rgzn">人工智能平台</div>
<div class="tgfw">
2025-03-19 17:21:07 +08:00
提供企业级AI能力包括机器学习深度学习自然语言处理等核心技术支持
</div>
</div>
</div>
2025-03-19 17:21:07 +08:00
</div>
<!-- -->
2025-03-25 10:36:42 +08:00
<div class="bk-2" id="bk-2">
<div>
<div class="em-4">成功案例</div>
<div class="em-5">服务超过1000家企业客户,助力企业数字化转型</div>
</div>
<div class="an-li-box">
<div class="an-ls-body">
<div class="an-li">
<div class="top-box">
<img class="img-2" :src="imagePath.tb1" alt="tb1" />
<div class="sys">
<div class="sys-title">远洋集团</div>
<div class="fdc">房地产行业</div>
</div>
</div>
<div class="chenter-box">
通过部署智能分析平台,实现销售数据可视化分析,提升决策效率超过60%
</div>
<div class="bteen-box">
2025-04-01 23:59:52 +08:00
<div style="color: #646262">部署时间:xxxx年</div>
2025-04-02 15:07:17 +08:00
<el-link :underline="false" style="color: #3d8dce" title="查看详情">查看详情</el-link>
</div>
2025-03-19 17:21:07 +08:00
</div>
<div class="an-li">
<div class="top-box">
<img class="img-2" :src="imagePath.tb1" alt="tb1" />
<div class="sys">
<div class="sys-title">远洋集团</div>
<div class="fdc">房地产行业</div>
</div>
</div>
<div class="chenter-box">
通过部署智能分析平台,实现销售数据可视化分析,提升决策效率超过60%
</div>
<div class="bteen-box">
2025-04-01 23:59:52 +08:00
<div style="color: #646262">部署时间:xxxx年</div>
2025-04-02 15:07:17 +08:00
<el-link :underline="false" style="color: #3d8dce" title="查看详情">查看详情</el-link>
</div>
2025-03-19 17:21:07 +08:00
</div>
<div class="an-li">
<div class="top-box">
<img class="img-2" :src="imagePath.tb1" alt="tb1" />
<div class="sys">
<div class="sys-title">远洋集团</div>
<div class="fdc">房地产行业</div>
</div>
</div>
<div class="chenter-box">
通过部署智能分析平台,实现销售数据可视化分析,提升决策效率超过60%
</div>
<div class="bteen-box">
2025-04-01 23:59:52 +08:00
<div style="color: #646262">部署时间:xxxx年</div>
2025-04-02 15:07:17 +08:00
<el-link :underline="false" style="color: #3d8dce" title="查看详情">查看详情</el-link>
</div>
2025-03-19 17:21:07 +08:00
</div>
</div>
</div>
<div class="an-nu">
2025-04-02 15:07:17 +08:00
<el-button class="an-nu-1" title="查看案例">查看更多案例</el-button>
</div>
2025-03-19 17:21:07 +08:00
</div>
<!-- -->
2025-04-02 15:07:17 +08:00
<div class="dt-mk" id="dt-mk">
<div>
<div class="em-4">最新动态</div>
<div class="em-5">了解公司最新资讯与行业洞察</div>
</div>
<div class="dt-box">
<div class="dt-bj">
<div class="bt-nr">
<div class="img">
<img class="img-4" :src="imagePath.s1" alt="tb1" />
</div>
<div class="bt-nr-1">
<div class="shij">2024年3月15日</div>
<div class="fbt-1">2024数字化转型峰会圆满举行</div>
<div class="fbt-2">
本次峰会汇聚行业专家深入探讨数字化转型趋势与实践经验共同展望为了发展方向
</div>
<div class="xq-1">
2025-04-02 15:07:17 +08:00
<el-link :underline="false" style="color: #2d3fdd">查看详情<el-icon>
<Right />
</el-icon></el-link>
</div>
</div>
2025-03-19 17:21:07 +08:00
</div>
</div>
<div class="dt-bj">
<div class="bt-nr">
<div class="img">
<img class="img-4" :src="imagePath.s1" alt="tb1" />
</div>
<div class="bt-nr-1">
<div class="shij">2024年3月15日</div>
<div class="fbt-1">2024数字化转型峰会圆满举行</div>
<div class="fbt-2">
本次峰会汇聚行业专家深入探讨数字化转型趋势与实践经验共同展望为了发展方向
</div>
<div class="xq-1">
2025-04-02 15:07:17 +08:00
<el-link :underline="false" style="color: #2d3fdd">查看详情<el-icon>
<Right />
</el-icon></el-link>
</div>
</div>
2025-03-19 17:21:07 +08:00
</div>
</div>
<div class="dt-bj">
<div class="bt-nr">
<div class="img">
<img class="img-4" :src="imagePath.s1" alt="tb1" />
</div>
<div class="bt-nr-1">
<div class="shij">2024年3月15日</div>
<div class="fbt-1">2024数字化转型峰会圆满举行</div>
<div class="fbt-2">
本次峰会汇聚行业专家深入探讨数字化转型趋势与实践经验共同展望为了发展方向
</div>
<div class="xq-1">
2025-04-02 15:07:17 +08:00
<el-link :underline="false" style="color: #2d3fdd">查看详情<el-icon>
<Right />
</el-icon></el-link>
</div>
</div>
2025-03-19 17:21:07 +08:00
</div>
</div>
</div>
2025-03-19 17:21:07 +08:00
</div>
2025-03-21 15:38:59 +08:00
<!-- -->
2025-03-25 10:36:42 +08:00
<div class="fan-mk" id="fan-mk">
2025-03-21 15:38:59 +08:00
<div class="fan-bt">解决方案</div>
<div class="fan-nr">
<div class="fan-left">
<div class="fan-wb1">金融解决方案</div>
<div class="fan-wb2">
为金融机构提供智能风控数据分析客户画像等全方位解决方案助力数字化转型
</div>
<div>
<div class="fan-wb3">
2025-04-02 15:07:17 +08:00
<el-icon class="tb">
<CircleCheckFilled />
</el-icon>智能风控系统
2025-03-21 15:38:59 +08:00
</div>
<div class="fan-wb3">
2025-04-02 15:07:17 +08:00
<el-icon class="tb">
<CircleCheckFilled />
</el-icon>数据分析平台
2025-03-21 15:38:59 +08:00
</div>
<div class="fan-wb3">
2025-04-02 15:07:17 +08:00
<el-icon class="tb">
<CircleCheckFilled />
</el-icon>客户画像系统
2025-03-21 15:38:59 +08:00
</div>
</div>
</div>
<div class="fan-right"><img class="img-7" :src="imagePath.s1" alt="tb1" /></div>
</div>
</div>
<!-- -->
2025-04-02 15:07:17 +08:00
<div class="lx-mk" id="lx-mk">
<form @submit.prevent="submitForm">
<div class="lx-left">
<span class="lx-wb">联系我们</span>
<div class="inputBox">
2025-03-25 16:39:22 +08:00
<div class="lx-wb-1">姓名</div>
2025-04-02 15:07:17 +08:00
<input type="text" placeholder="请输⼊您的姓名" v-model="form.input1"
@keydown.enter.prevent="focusNext('input2')" ref="input1">
2025-03-21 15:38:59 +08:00
</div>
2025-04-02 15:07:17 +08:00
<div class="inputBox">
2025-03-25 16:39:22 +08:00
<div class="lx-wb-1">邮箱</div>
2025-04-02 15:07:17 +08:00
<input type="text" placeholder="请输⼊您的邮箱" v-model="form.input2"
@keydown.enter.prevent="focusNext('input3')" ref="input2">
<span></span>
2025-03-21 15:38:59 +08:00
</div>
2025-04-02 15:07:17 +08:00
<div class="inputBox">
2025-03-25 16:39:22 +08:00
<div class="lx-wb-1">需求描述</div>
2025-04-02 15:07:17 +08:00
<textarea type="text" placeholder="请详细描述您的需求" class="align-placeholder" v-model="form.input3"
@keydown.enter.prevent="focusNext('submitBtn')" ref="input3"></textarea>
2025-03-21 15:38:59 +08:00
</div>
2025-04-02 15:07:17 +08:00
<div><button type="submit" class="tij" ref="submitBtn" @keydown.enter.prevent="submitForm">提交</button>
</div>
</div>
</form>
2025-03-21 15:38:59 +08:00
<div class="lx-right">
<div class="lx-right-haed">
<div class="lx-wb-2">联系方式</div>
<div class="lx-wb-3">
2025-04-02 15:07:17 +08:00
<el-icon class="lx-tb-1">
<PhoneFilled />
</el-icon>
2025-03-21 15:38:59 +08:00
<div>
<div>电话</div>
<div class="lx-dh">400-888-8888</div>
</div>
</div>
<div class="lx-wb-3">
2025-04-02 15:07:17 +08:00
<el-icon class="lx-tb-1">
<Message />
</el-icon>
2025-03-21 15:38:59 +08:00
<div>
<div>邮箱</div>
<div class="lx-dh">huiqing@huiqing-cd.com</div>
</div>
</div>
<div class="lx-wb-3">
2025-04-02 15:07:17 +08:00
<el-icon class="lx-tb-1">
<LocationInformation />
</el-icon>
2025-03-21 15:38:59 +08:00
<div>
<div>地址</div>
<div class="lx-dh">四川成都</div>
</div>
</div>
</div>
<div class="lx-right-foot">
2025-04-02 15:07:17 +08:00
<div class="fan-right"><img class="img-8" :src="imagePath.dt" alt="dt" title="点击查看详细位置" /></div>
2025-03-21 15:38:59 +08:00
</div>
</div>
</div>
2025-04-02 15:07:17 +08:00
<el-backtop :right="100" :bottom="100" style="
height: 50px;
width: 50px;
color: #2d3fdd;
" />
2025-03-19 17:21:07 +08:00
</el-main>
2025-03-21 15:38:59 +08:00
<FootView></FootView>
2025-03-19 17:21:07 +08:00
</el-container>
</div>
</div>
</template>
<style scoped>
2025-04-02 15:07:17 +08:00
.align-placeholder {
width: 100%;
padding: 10px;
border: 1px solid rgba(255, 255, 255, 0.25);
color: #0c0c0c;
font-size: 16px;
border-radius: 5px;
outline: none;
font-size: 15px;
min-height: 100px;
}
.inputBox {
position: relative;
width: 550px;
}
.inputBox input {
width: 100%;
padding: 10px;
border: 1px solid rgba(255, 255, 255, 0.25);
color: #0c0c0c;
font-size: 16px;
border-radius: 5px;
outline: none;
font-size: 18px;
}
.fw-box:hover {
background-color: #fff;
transform: scale(1.2);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
2025-03-25 16:39:22 +08:00
.tij {
2025-04-02 15:07:17 +08:00
min-width: 570px;
2025-03-25 16:39:22 +08:00
color: #fff;
background-color: #2c4cdb;
border: none;
height: 40px;
border-radius: 3px;
2025-04-02 15:07:17 +08:00
transition: transform 0.1s;
2025-03-25 10:36:42 +08:00
}
2025-04-02 15:07:17 +08:00
.tij:hover {
transform: scale(0.99)
2025-03-25 16:39:22 +08:00
}
2025-04-02 15:07:17 +08:00
2025-03-25 16:39:22 +08:00
form textarea {
width: 600px;
height: 150px;
line-height: 30px;
border: none;
outline: none;
border-radius: 3px;
margin-bottom: 20px;
}
2025-04-02 15:07:17 +08:00
2025-03-25 16:39:22 +08:00
.dhl-x a {
text-decoration: none;
color: inherit;
2025-03-21 15:38:59 +08:00
}
2025-03-25 16:39:22 +08:00
2025-03-21 15:38:59 +08:00
.lx-right {
display: flex;
flex-direction: column;
justify-content: space-around;
height: 700px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.img-8 {
2025-04-01 15:32:31 +08:00
min-width: 600px;
2025-04-02 15:07:17 +08:00
height: 250px;
2025-03-21 15:38:59 +08:00
border-radius: 10px;
2025-04-02 15:07:17 +08:00
transition: transform 0.4s ease
}
.img-8:hover {
transform: scale(1.05)
2025-03-21 15:38:59 +08:00
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.lx-tb-1 {
font-size: 25px;
color: #2d3fdd;
margin-right: 5px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.lx-wb-3 {
margin-left: 20px;
display: flex;
}
2025-03-31 17:18:01 +08:00
2025-03-21 15:38:59 +08:00
.lx-dh {
font-weight: bold;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.lx-wb-2 {
font-size: 20px;
font-weight: bold;
margin-left: 20px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.lx-right-haed {
display: flex;
flex-direction: column;
justify-content: space-around;
height: 250px;
2025-03-24 22:27:21 +08:00
2025-03-21 15:38:59 +08:00
background-color: #fff;
width: 600px;
2025-03-25 10:36:42 +08:00
2025-03-21 15:38:59 +08:00
border-radius: 15px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.lx-wb-1 {
2025-04-02 15:07:17 +08:00
margin-bottom: 5px;
margin-top: 10px;
font-size: 19px;
2025-03-21 15:38:59 +08:00
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.lx-left {
display: flex;
flex-direction: column;
justify-content: space-around;
height: 500px;
margin-top: 50px;
}
.lx-wb {
font-size: 25px;
font-weight: bold;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.lx-mk {
display: flex;
2025-03-25 10:36:42 +08:00
justify-content: space-around;
2025-03-21 15:38:59 +08:00
margin-top: 180px;
2025-03-31 17:18:01 +08:00
min-height: 700px;
2025-03-21 15:38:59 +08:00
background-color: #f7f6f6;
2025-04-01 23:59:52 +08:00
flex-wrap: wrap;
2025-03-21 15:38:59 +08:00
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.tb {
color: #2d3fdd;
margin-right: 15px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.fan-bt {
text-align: center;
font-weight: bold;
font-size: 30px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.img-7 {
2025-04-01 23:59:52 +08:00
min-width: 500px;
height: 300px;
2025-03-21 15:38:59 +08:00
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
border-radius: 10px;
2025-04-02 15:07:17 +08:00
transition: transform 0.3s ease
2025-03-21 15:38:59 +08:00
}
2025-04-02 15:07:17 +08:00
.img-7:hover {
transform: scale(1.1);
}
2025-03-21 15:38:59 +08:00
.fan-nr {
display: flex;
justify-content: space-around;
2025-04-01 23:59:52 +08:00
flex-wrap: wrap;
2025-03-21 15:38:59 +08:00
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.fan-left {
display: flex;
flex-direction: column;
justify-content: space-around;
height: 300px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.fan-wb1 {
font-size: 20px;
font-weight: bold;
margin-top: 20px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.fan-wb2 {
margin-top: 10px;
font-weight: 100;
line-height: 1.5;
letter-spacing: 1px;
width: 600px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.fan-wb3 {
margin-top: 10px;
font-weight: bold;
line-height: 1.5;
letter-spacing: 2px;
}
2025-04-02 15:07:17 +08:00
2025-03-21 15:38:59 +08:00
.fan-mk {
display: flex;
flex-direction: column;
justify-content: space-around;
margin-top: 80px;
2025-03-31 17:18:01 +08:00
min-height: 500px;
2025-03-21 15:38:59 +08:00
}
2025-04-02 15:07:17 +08:00
.dt-box {
display: flex;
justify-content: space-around;
2025-04-01 23:59:52 +08:00
flex-wrap: wrap;
}
2025-04-02 15:07:17 +08:00
.fbt-2 {
color: #272626;
}
2025-04-02 15:07:17 +08:00
.fbt-1 {
font-size: 20px;
font-weight: bold;
margin-bottom: 15px;
}
2025-04-02 15:07:17 +08:00
.shij {
color: #a19f9f;
}
2025-04-02 15:07:17 +08:00
.xq-1 {
display: flex;
}
.bt-nr-1 {
display: flex;
flex-direction: column;
height: 200px;
justify-content: space-around;
margin-left: 35px;
margin-right: 15px;
line-height: 1.5;
letter-spacing: 2px;
}
2025-04-02 15:07:17 +08:00
.img {
display: flex;
align-items: center;
justify-content: center;
}
2025-04-02 15:07:17 +08:00
.bt-nr {
display: flex;
flex-direction: column;
}
2025-04-02 15:07:17 +08:00
.dt-bj {
display: flex;
2025-04-01 23:59:52 +08:00
width: 450px;
height: 500px;
border-radius: 10px;
margin-top: 60px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.dt-mk {
display: flex;
flex-direction: column;
2025-03-31 17:18:01 +08:00
min-height: 700px;
}
2025-04-02 15:07:17 +08:00
.img-4 {
margin-top: 20px;
height: 250px;
2025-03-21 15:38:59 +08:00
border-radius: 10px;
2025-04-02 15:07:17 +08:00
transition: transform 0.3s ease;
}
.img-4:hover {
transform: scale(1.05)
}
2025-04-02 15:07:17 +08:00
.an-nu-1 {
width: 200px;
height: 50px;
}
2025-04-02 15:07:17 +08:00
.an-nu {
display: flex;
justify-content: center;
2025-03-31 17:18:01 +08:00
padding: 10px 0px;
}
2025-04-02 15:07:17 +08:00
.an-ls-body {
display: flex;
justify-content: space-around;
2025-04-01 23:59:52 +08:00
2025-03-31 17:18:01 +08:00
flex-wrap: wrap;
}
2025-04-02 15:07:17 +08:00
.em-5 {
text-align: center;
margin-top: 20px;
font-weight: 100;
}
2025-04-02 15:07:17 +08:00
.em-4 {
text-align: center;
font-weight: bold;
font-size: 30px;
margin-top: 50px;
}
2025-04-02 15:07:17 +08:00
.bk-2 {
2025-03-31 17:18:01 +08:00
min-height: 700px;
background-color: #f7f6f6;
display: flex;
flex-direction: column;
justify-content: space-around;
}
2025-04-02 15:07:17 +08:00
.bteen-box {
display: flex;
justify-content: space-between;
margin-left: 20px;
}
2025-04-02 15:07:17 +08:00
.chenter-box {
margin-left: 20px;
margin-right: 30px;
line-height: 1.5;
font-weight: 100;
letter-spacing: 2px;
}
2025-04-02 15:07:17 +08:00
.sys {
margin-left: 10px;
display: flex;
flex-direction: column;
justify-content: space-around;
letter-spacing: 1px;
}
2025-03-31 17:18:01 +08:00
.top-box {
display: flex;
height: 55px;
margin-top: 20px;
}
2025-04-02 15:07:17 +08:00
.an-li {
display: flex;
flex-direction: column;
justify-content: space-around;
2025-04-01 23:59:52 +08:00
width: 400px;
height: 250px;
margin-top: 60px;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
background-color: #fff;
2025-04-02 15:07:17 +08:00
transition: all 0.3s ease;
}
2025-04-02 15:07:17 +08:00
.an-li:hover {
background-color: #fff;
transform: scale(1.1);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.rgzn {
margin-left: 20px;
margin-top: 30px;
font-size: 20px;
font-weight: bold;
}
2025-04-02 15:07:17 +08:00
.tgfw {
margin-left: 20px;
margin-top: 25px;
font-size: 14px;
line-height: 1.5;
letter-spacing: 2px;
font-weight: 100;
2025-04-01 23:59:52 +08:00
margin-right: 10px;
}
2025-04-02 15:07:17 +08:00
.fw {
display: flex;
justify-content: space-around;
2025-04-01 23:59:52 +08:00
flex-wrap: wrap;
}
2025-04-02 15:07:17 +08:00
.fw-box {
2025-04-01 23:59:52 +08:00
width: 330px;
height: 280px;
align-content: space-around;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
letter-spacing: 2px;
2025-03-31 17:18:01 +08:00
margin-top: 40px;
margin-bottom: 40px;
2025-04-02 15:07:17 +08:00
transition: all 0.3s ease;
}
2025-04-02 15:07:17 +08:00
.img-2 {
width: 55px;
height: 55px;
margin-left: 20px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 22:26:57 +08:00
.an-5 {
2025-03-19 17:21:07 +08:00
margin-left: -20px;
margin-top: 20px;
width: 100px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.sj-2 {
margin-top: 15px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.em-8 {
margin-top: 30px;
width: 390px;
line-height: 1.5;
font-size: 15px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.bt-3 {
margin-top: 15px;
font-weight: bold;
}
2025-03-19 17:21:07 +08:00
.bk-3-1 {
height: 470px;
border-radius: 5px;
margin-top: 80px;
margin-left: 115px;
box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.2);
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.bk-3 {
margin-top: 100px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.sj-1 {
margin-top: 20px;
margin-left: 30px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.img-3 {
margin-top: 25px;
margin-left: 30px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.em-7 {
margin-left: 30px;
margin-top: 35px;
font-size: 15px;
line-height: 1.7;
width: 350px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.wb-1 {
margin-left: 110px;
margin-top: 8px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.bk-2-2 {
height: 230px;
margin-top: 80px;
margin-left: 115px;
border-radius: 7px;
padding: 20px;
background-color: #f0f0f0;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.bt-2 {
font-weight: bold;
margin-top: -80px;
margin-left: 110px;
}
2025-03-19 17:21:07 +08:00
.img-1 {
2025-03-19 22:26:57 +08:00
width: 60px;
height: 60px;
2025-03-19 17:21:07 +08:00
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.bt-1 {
margin-top: -70px;
margin-left: 30px;
font-size: 25px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.em-6 {
margin-top: 40px;
margin-left: 30px;
font-size: 14px;
width: 260px;
line-height: 1.5;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.bk-1-1 {
background-color: #dad3d3;
height: 300px;
margin-top: 80px;
margin-left: 62px;
2025-04-02 15:07:17 +08:00
border-radius: 15px;
/* 设置圆角 */
2025-03-19 17:21:07 +08:00
padding: 20px;
background-color: #f0f0f0;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.bk-1 {
background-color: #d1cfcf;
height: 300px;
margin-top: 70px;
margin-left: 62px;
2025-04-02 15:07:17 +08:00
border-radius: 15px;
/* 设置圆角 */
2025-03-19 17:21:07 +08:00
padding: 20px;
background-color: #f0f0f0;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.bk {
2025-03-31 17:18:01 +08:00
display: flex;
2025-04-01 23:59:52 +08:00
flex-direction: column;
2025-03-19 17:21:07 +08:00
background-color: #fff;
2025-04-01 23:59:52 +08:00
justify-content: space-around;
min-height: 700px;
2025-03-19 17:21:07 +08:00
}
2025-03-19 17:21:07 +08:00
.an-1 {
position: absolute;
top: 300px;
left: 145px;
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.an-2 {
position: absolute;
top: 300px;
left: 280px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.an-4 {
margin-top: 90px;
margin-left: -440px;
width: 150px;
}
2025-03-31 17:18:01 +08:00
2025-03-19 17:21:07 +08:00
.em-3 {
position: absolute;
top: 190px;
left: 145px;
width: 290px;
color: #fff;
font-size: 16px;
line-height: 1.2;
letter-spacing: 2.5px;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.em-2 {
position: absolute;
width: 250px;
font-weight: bold;
margin: 120px 300px 300px 145px;
font-size: 40px;
color: #fff;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.em-1 {
margin-left: 5px;
position: absolute;
top: 22px;
left: 260px;
font-size: 25px;
font-weight: bold;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.dhl {
width: 100%;
2025-03-19 22:26:57 +08:00
height: 60px;
2025-03-19 17:21:07 +08:00
display: flex;
justify-content: space-around;
2025-03-19 17:21:07 +08:00
align-items: center;
background-color: #fff;
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.el-link {
margin-right: 25px;
float: right;
color: #000;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.dhl-x {
display: flex;
gap: 20px;
margin-right: 100px;
2025-03-19 17:21:07 +08:00
}
2025-04-02 15:07:17 +08:00
2025-04-01 23:59:52 +08:00
.dhl-yt {
color: black;
transition: color 0.3s;
}
2025-04-02 15:07:17 +08:00
2025-04-01 23:59:52 +08:00
.dhl-yt:hover {
color: rgb(56, 84, 195);
cursor: pointer;
}
2025-04-02 15:07:17 +08:00
2025-03-19 17:21:07 +08:00
.carousel {
position: relative;
width: 100%;
height: 500px;
overflow: hidden;
}
.slides {
display: flex;
transition: transform 0.5s ease;
}
.slide {
min-width: 100%;
box-sizing: border-box;
position: relative;
}
.slide img {
width: 100%;
height: 500px;
object-fit: cover;
}
.prev,
.next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
padding: 10px;
cursor: pointer;
}
.prev {
left: 10px;
}
.next {
right: 10px;
}
2025-03-19 22:26:57 +08:00
.left-box {
display: flex;
align-items: center;
margin-left: 80px;
2025-03-19 22:26:57 +08:00
}
.sys-title {
2025-04-02 15:23:20 +08:00
font-size: 30px;
font-weight: 600;
cursor: default;
}
.sys-title-bt {
2025-04-02 15:17:40 +08:00
font-size: 2vw;
2025-03-19 22:26:57 +08:00
font-weight: 600;
2025-04-02 15:07:17 +08:00
cursor: default;
2025-03-19 22:26:57 +08:00
}
.right-box {
display: flex;
align-items: center;
}
2025-03-19 17:21:07 +08:00
</style>