raylinx/pages/News/RaylinxAmazonSummitChina.vue
frankkeres 6599754f1d init
2025-02-14 18:46:25 +08:00

72 lines
3.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="News_view">
<div class="news_title">{{news_title}}</div>
<div class="description_view">
<div class="banner_view_left">
<div><img :src="top_IMG" alt=""></div>
<div><img :src="bottom_IMG" alt=""></div>
</div>
<div class="content_view_right">
2024 5 29 为实现更好地服务客户这一目标我司作为亚马逊云服务器代理商积极参加了亚马逊云科技中国峰会此次峰会主题围绕 共智共创共赢 展开为行业发展带来新的契机与活力<br><br>
在峰会上我司团队与众多行业精英深入交流汲取先进理念和技术经验通过参与各类主题研讨和案例分享环节我们对亚马逊云服务的最新技术趋势和创新应用有了更深刻的理解<br><br>
<span>共智</span>意味着我们积极吸收行业智慧不断提升自身专业素养公司成员们认真聆听专家们的见解与他们共同探讨如何将云服务更好地应用于实际业务场景中为客户提供更具前瞻性的解决方案<br><br>
<span>共创</span>我们将携手亚马逊云科技以及其他合作伙伴共同打造创新的服务模式和产品以客户需求为导向结合峰会中获得的灵感积极探索新的业务领域和合作机会<br><br>
<span>共赢</span>这是我们始终追求的目标通过与各方的紧密合作将优质的亚马逊云服务带给客户助力客户实现业务增长和数字化转型同时也推动公司自身的发展实现多方互利共赢的局面<br><br>
此次峰会为我们提供了宝贵的学习和交流机会公司将以此为契机进一步优化服务体系提升服务质量我们相信 共智共创共赢 理念的引领下我们一定能够为客户提供更加卓越的亚马逊云服务在行业中取得更加优异的成绩<br><br>
Raylinx公司对所有客户长期以来的信任和支持表示感谢并承诺将持续努力不断提供更优质的服务助力客户实现业务的持续发展和创新<br><br>
关于我司 Raylinx公司是一家领先的AWS云服务代理商专注于为客户提供全面的云计算解决方案和专业服务公司以其深厚的技术专长创新的服务理念和卓越的客户服务而受到业界的高度认可
</div>
</div>
</div>
</template>
<script>
export default {
name: 'RaylinxAmazonSummitChina',
data(){
return {
news_title:'Raylinx积极参与亚马逊云科技中国峰会开启服务客户新征程',
top_IMG:require("@/assets/about/about_bg.jpg"),
bottom_IMG:require("@/assets/about/about_bg3.jpg"),
}
},
}
</script>
<style lang="scss">
.News_view{
width: 60%;
margin: 5% auto;
.news_title{
font-size: 18px;
color: #1f76cc;
line-height: 2;
border-bottom: 2px solid #1f76cc;
margin-bottom: 10px;
}
.description_view{
display: flex;
}
.banner_view_left{
img{
width: 80%;
margin-bottom: 10px;
}
}
.content_view_right{
width: 60%;
font-size: 14px;
line-height: 1.6;
color: #676666;
span{
color: #000000;
font-weight: bold;
}
}
}
</style>