05/13.2026
/* 容器隔离样式 - 只影响本组件内部元素 */
#ccs-tech-support-platform.ccs-tech-support-container {
font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
color: #333;
padding: 20px;
border-radius: 8px;
}
#ccs-tech-support-platform .ccs-intro-section {
background: #fff;
border-radius: 16px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
text-align: center;
border-left: 6px solid #2c5282;
}
#ccs-tech-support-platform .ccs-intro-text {
font-size: 16px;
line-height: 1.8;
color: #444;
margin: 0;
}
#ccs-tech-support-platform .ccs-highlight {
color: #2c5282;
font-weight: 600;
}
/* 服务模块网格 */
#ccs-tech-support-platform .ccs-services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
/* 服务卡片 */
#ccs-tech-support-platform .ccs-service-card {
background: #fff;
border-radius: 16px;
padding: 30px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
transition: all 0.3s ease;
cursor: pointer;
border: 2px solid transparent;
position: relative;
overflow: hidden;
text-decoration: none;
display: block;
}
#ccs-tech-support-platform .ccs-service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, #2c5282, #4a7ab8);
}
#ccs-tech-support-platform .ccs-service-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
border-color: #2c5282;
}
#ccs-tech-support-platform .ccs-card-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #2c5282 0%, #4a7ab8 100%);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
overflow: hidden;
}
#ccs-tech-support-platform .ccs-card-icon img {
width: 100%;
height: 100%;
object-fit: cover;
}
#ccs-tech-support-platform .ccs-card-title {
font-size: 22px;
font-weight: 700;
color: #1e3a5f;
margin: 0 0 10px 0;
}
#ccs-tech-support-platform .ccs-card-subtitle {
font-size: 14px;
color: #4a7ab8;
font-weight: 500;
margin-bottom: 15px;
padding: 6px 12px;
background: rgba(44, 82, 130, 0.08);
border-radius: 6px;
display: inline-block;
}
#ccs-tech-support-platform .ccs-card-subtitle:empty {
display: none;
}
#ccs-tech-support-platform .ccs-card-description {
font-size: 14px;
line-height: 1.7;
color: #555;
margin: 0;
}
#ccs-tech-support-platform .ccs-card-arrow {
position: absolute;
bottom: 25px;
right: 25px;
width: 40px;
height: 40px;
background: rgba(44, 82, 130, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #2c5282;
font-size: 18px;
transition: all 0.3s ease;
}
#ccs-tech-support-platform .ccs-service-card:hover .ccs-card-arrow {
background: #2c5282;
color: #fff;
}
/* 二维码弹窗 */
#ccs-tech-support-platform .ccs-qr-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 99999;
justify-content: center;
align-items: center;
backdrop-filter: blur(4px);
}
#ccs-tech-support-platform .ccs-qr-modal.active {
display: flex;
}
#ccs-tech-support-platform .ccs-qr-content {
background: #fff;
border-radius: 20px;
padding: 40px;
text-align: center;
max-width: 400px;
width: 90%;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
animation: ccsModalSlideIn 0.3s ease;
}
@keyframes ccsModalSlideIn {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
#ccs-tech-support-platform .ccs-qr-title {
font-size: 22px;
font-weight: 700;
color: #1e3a5f;
margin: 0 0 10px 0;
}
#ccs-tech-support-platform .ccs-qr-subtitle {
font-size: 14px;
color: #718096;
margin-bottom: 25px;
}
#ccs-tech-support-platform .ccs-qr-image {
width: 200px;
height: 200px;
margin: 0 auto 20px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
#ccs-tech-support-platform .ccs-qr-image img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 12px;
}
#ccs-tech-support-platform .ccs-qr-tip {
font-size: 14px;
color: #555;
margin-bottom: 25px;
line-height: 1.6;
}
#ccs-tech-support-platform .ccs-qr-close {
background: linear-gradient(135deg, #2c5282 0%, #4a7ab8 100%);
color: #fff;
border: none;
padding: 12px 40px;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
}
#ccs-tech-support-platform .ccs-qr-close:hover {
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(44, 82, 130, 0.4);
}
/* 响应式 - 手机端每行一个 */
@media (max-width: 768px) {
#ccs-tech-support-platform.ccs-tech-support-container {
padding: 15px;
}
#ccs-tech-support-platform .ccs-services-grid {
grid-template-columns: 1fr;
}
#ccs-tech-support-platform .ccs-intro-section {
padding: 20px;
}
#ccs-tech-support-platform .ccs-service-card {
padding: 25px;
}
#ccs-tech-support-platform .ccs-card-title {
font-size: 20px;
}
#ccs-tech-support-platform .ccs-qr-content {
padding: 30px 20px;
}
#ccs-tech-support-platform .ccs-qr-image {
width: 180px;
height: 180px;
}
}
欢迎各位船舶检验的同仁在本平台开展检验技术交流,使用中任何问题请联系中国船级社技术指导处,sd@ccs.org.cn
在线专家解答
CCS-KC—中国船级社知识中心
如在检验过程中需要获得中国船级社更多的需求,请联系中国船级社技术指导处。
→
在线法规查询
查询并下载最新海事法规
→
CCS检验技术支持系统APP
扫码下载
可查看涉及船舶海洋工程检验的公约、规范、指南等大量技术资料。新注册用户,首月免费试用;试用期满后,船舶检验机构用户可联系中国船级社申请继续免费使用。
→
AI智能解答
智舸Class-Mate—船海智能知识库
智舸系统是针对船海行业特点,应用人工智能技术构建的垂直领域专业知识库系统。AI问答提供的信息仅作为一般性参考和信息交流使用,不构成专业建议,不应将本平台内容作为决策的唯一依据。
→
CCS检验技术支持系统APP
扫码下载安装
新注册用户首月免费试用
试用期满后,船舶检验机构用户可联系中国船级社申请继续免费使用
关闭
// 打开二维码弹窗
function openCCSQRModal() {
document.getElementById('ccsQRModal').classList.add('active');
}
// 关闭二维码弹窗
function closeCCSQRModal(event) {
if (!event || event.target === document.getElementById('ccsQRModal') || event.target.classList.contains('ccs-qr-close')) {
document.getElementById('ccsQRModal').classList.remove('active');
}
}
// 添加卡片点击效果
(function() {
var cards = document.querySelectorAll('#ccs-tech-support-platform .ccs-service-card');
cards.forEach(function(card) {
card.addEventListener('click', function(e) {
this.style.transform = 'scale(0.98)';
setTimeout(function() {
card.style.transform = '';
}, 150);
});
});
})();
// ESC键关闭弹窗
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape') {
closeCCSQRModal();
}
});