Model | total thickness (mm) | adhesion (gf/25cmm) | resistivity of adhesive surface (Ω/inch2) | shielding effectiviness db((10MHz-3GHz) | aluminium thermal conductivity(W/M.k) | heat resistance (℃) |
SSC | 0.01-0.3 | ≧800 | ≦0.05 | ≧65 | 200 | -10~120 |
DDC | 0.01-0.3 | ≧800 | ≦0.05 | ≧65 | 200 | -10~120 |
SS | 0.01-0.3 | ≧800 | / | ≧65 | 200 | -10~120 |
DD | 0.01-0.3 | ≧800 | / | ≧65 | 200 | -10~120 |






// 获取 class 为 sidebar2 的元素(若有多个,取第一个)
// 获取元素的位置和尺寸信息
// 元素底部到页面顶部的总距离(相对文档顶部)
// // 监听滚动事件
// window.addEventListener('scroll', function() {
// // 当滚动超过600像素时
// if (window.scrollY-800 > elementBottomToDocTop) {
// contactbox .setAttribute("class", 'widget-area sticky-top');
// // $("#contactbox").attr('class','widget-area sticky-top');
// // contactbox.classList.remove('shadow-md');
// } else {
// contactbox .setAttribute("class", 'widget-area');
// // $("#contactbox").attr('class','widget-area');
// // navbar.classList.add('shadow-md');
// }
// })
// const emailPattern = /^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9-.]+$/;
// document.getElementById("GetdiscountForm").onsubmit = function (event) {
// const emailInput = document.getElementById("email").value;
// if (!emailPattern.test(emailInput)) {
// alert("Please enter a valid email address!");
// event.preventDefault();
// }