我们的产品

用至臻服务创造美好生活

用态度换来您的微笑,用诚意换来您的信任,用实力换来您的赞美。

电子银行

电子银行

个人网银、企业网银、手机银行、直销银行、微信银行、电话银行、快捷支付

公司业务

公司业务

对公存款业务、公司贷款业务、支付结算业务、中间业务、对公开户业务

个人业务

个人业务

铁岭银行个人业务主要包括个人储蓄业务、个人贷款业务、中间业务等

投资业务

投资业务

金条、金钞、纪念币、贵金属工艺品等

 

铁岭银行手机银行

手机银行5.0焕新升级!聚焦个性化、便捷性、生态融合,为您打造更极致、更贴心、更温暖的移动金融服务平台。

 

我们在哪?

众里寻他千百度


 

手机银行

便捷转账、无卡取款,7x24小时全天候为您服务。

Our 风采

路漫漫其修远兮,吾将上下而求索

探险
生活
艺术
运动
 

科技

大数据

大数据风控 / 个性化服务 / 精准营销数字化 / 财富管理 / 智能运维

 

IT

云计算

基于分布式 架构的银行核心系统 / 高扩展性金融云 / 场景SDK/API

document.addEventListener("DOMContentLoaded", function () { // --- 1. 创建并注入 CSS 样式 --- // 使用模板字符串定义所有需要的CSS规则 const styles = ` /* 基础页面样式,确保字体应用 */ body { } /* 遮罩层 */ .announcement-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(10, 20, 30, 0.6); /* 半透明深色背景 */ backdrop-filter: blur(5px); /* 毛玻璃效果 */ display: flex; justify-content: center; align-items: center; z-index: 2147483647; /* 设置一个非常高的z-index以确保在最上层 */ opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s; } /* 激活状态 */ .announcement-overlay.active { opacity: 1; visibility: visible; } /* 公告框主体 */ .announcement-modal { background-color: #ffffff; padding: 35px 45px; border-radius: 16px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); width: 90%; max-width: 520px; position: relative; transform: scale(0.95) translateY(10px); opacity: 0; transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.4s ease; } .announcement-overlay.active .announcement-modal { transform: scale(1) translateY(0); opacity: 1; } .announcement-overlay.closing .announcement-modal { transform: scale(0.95) translateY(10px); opacity: 0; } /* 关闭按钮 */ .close-button { position: absolute; top: 15px; right: 15px; width: 30px; height: 30px; display: flex; justify-content: center; align-items: center; font-size: 28px; color: #b0b0b0; cursor: pointer; transition: color 0.2s ease, transform 0.3s ease; line-height: 1; font-weight: 300; } .close-button:hover { color: #333; transform: rotate(90deg); } /* 文本样式 */ .announcement-modal h2 { margin: 0; color: #1a1a1a; font-size: 24px; font-weight: 600; text-align: center; margin-bottom: 15px; } .announcement-modal p { color: #555; font-size: 16px; line-height: 1.7; margin-bottom: 25px; text-align: left; } .announcement-modal .signature { text-align: right; color: #777; font-size: 14px; line-height: 1.5; } p{ text-indent: 2em; } `; // 创建一个