Custom Motorcycle Reflective Stickers for Tail Box & Side Cases | Night Safety Warning Decals

Our 3M DG grade Reflective Stickers are available in a diverse range of colors including White, Yellow, Orange, Red, Blue, Green, Brown and Fluorescent

Product Specifications/* 全局样式重置与基础设置 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}

/* 关键:固定页面容器,宽度独立于表格 */
.page-container {
width: 100%; /* 固定页面宽度(不随表格变化) */
margin: 2rem auto; /* 页面水平居中 */
padding: 0 1rem;
/* 可选:加边框直观看到页面范围 */
/* border: 1px solid #eee; */
}

/* 表格样式 – 仅限制自身宽度,不影响页面 */
.product-table {
max-width: 840px; /* 表格最大宽度(可按需调整,比如700px) */
width: 100%; /* 小于最大宽度时自适应 */
border-collapse: collapse;
margin: 0 auto 2rem; /* 表格在页面内水平居中 */
table-layout: fixed; /* 固定表格布局,防止宽度塌陷 */
}

/* 表格列宽分配(适配新的2行3列对比表格) */
.product-table th:nth-child(1) {
width: 180px; /* 第一列(特性名称)固定宽度 */
}
.product-table th:nth-child(2),
.product-table th:nth-child(3) {
width: calc((100% – 180px) / 2); /* 后两列(产品类型)平分剩余宽度 */
}

.product-table th,
.product-table td {
border: 1px solid #ddd;
padding: 12px 15px;
text-align: left;
vertical-align: top;
word-break: break-all; /* 强制长文本换行,不撑大表格 */
overflow-wrap: break-word; /* 兼容不同浏览器的换行 */
}

.product-table th {
background-color: #f8f9fa;
font-weight: 600;
}

/* 新增:粘贴表面标题样式 */
.surface-title {
text-align: left;
font-size: 1.4rem;
font-weight: 700;
margin: 2.5rem 0 1rem;
color: #333;
}
/* 适用表面标题(蓝色系) */
.suitable-title {
color: #01449b;
}
/* 不适用表面标题(橘色系) */
.unsuitable-title {
color: #FF6600;
}

/* 粘贴表面描述文本样式 */
.surface-desc {
max-width: 800px;
margin: 0 auto 1rem;
line-height: 1.8;
color: #444;
font-size: 1rem;
padding: 0 1rem;
}

/* 粘贴表面图片样式 */
.surface-image {
display: block;
margin: 0 auto 2rem;
max-width: 800px; /* 和表格最大宽度一致 */
width: 100%;
height: auto;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 标题样式(统一所有标题风格) */
.section-title {
text-align: center;
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: #333;
}
.feature-title {
text-align: center;
font-size: 1.4rem;
font-weight: 600;
margin: 2.5rem 0 1rem;
color: #444;
}
/* 使用说明标题样式(居左) */
.usage-title {
text-align: left;
font-size: 1.6rem;
font-weight: 700;
margin: 3rem 0 1.5rem;
color: #333;
}
.steps-title {
text-align: left;
font-size: 1.3rem;
font-weight: 600;
margin: 0 0 1.2rem;
color: #444;
}
/* 错误使用标题样式 */
.wrong-usage-title {
text-align: left;
font-size: 1.3rem;
font-weight: 600;
margin: 3rem 0 1.2rem;
color: #d9534f; /* 红色系,突出错误提示 */
}
/* 新增:粘贴注意事项标题样式 */
.precautions-title {
text-align: left;
font-size: 1.5rem;
font-weight: 700;
margin: 3rem 0 1.5rem;
color: #333;
border-bottom: 2px solid #f0f0f0; /* 底部边框分隔 */
padding-bottom: 0.8rem;
}

/* 图片样式 – 统一风格 */
.custom-image,
.feature-image {
display: block;
margin: 0 auto;
max-width: 800px; /* 和表格最大宽度一致 */
width: 100%;
height: auto;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
margin-bottom: 1rem; /* 图片与下方内容间距 */
}

/* 产品信息样式 */
.product-info {
max-width: 800px;
margin: 0 auto 2rem;
padding: 1.2rem;
background-color: #fafafa;
border-radius: 4px;
line-height: 2;
}

.product-info strong {
color: #222;
margin-right: 8px;
}

/* 两张配图布局 */
.image-group {
max-width: 800px;
margin: 0 auto 2rem;
display: flex;
gap: 1rem; /* 图片间距 */
flex-wrap: wrap;
justify-content: center;
}

.image-group img {
flex: 1;
min-width: 300px; /* 最小宽度,避免过窄 */
max-width: calc(50% – 0.5rem); /* 每行两张图 */
height: auto;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 特性描述文本样式 */
.feature-desc {
max-width: 800px;
margin: 0 auto 1rem;
text-align: center;
line-height: 1.8;
color: #555;
padding: 0 1rem;
}

/* 使用步骤 2 行 2 列布局 */
.steps-grid {
max-width: 800px;
margin: 0 auto 2rem;
display: grid;
grid-template-columns: repeat(2, 1fr); /* 2 列等宽 */
gap: 1.5rem; /* 网格间距(行列都生效) */
}

.step-item {
display: flex;
flex-direction: column;
align-items: center; /* 图文水平居中 */
}

.step-image {
width: 100%;
max-width: 380px; /* 单张图片最大宽度 */
height: auto;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
margin-bottom: 0.8rem;
}

.step-text {
text-align: center;
line-height: 1.6;
color: #444;
font-size: 1rem;
}

/* 错误使用 1 行 5 列布局 */
.wrong-usage-grid {
max-width: 800px;
margin: 0 auto 2rem;
display: grid;
grid-template-columns: repeat(5, 1fr); /* 5 列等宽 */
gap: 0.8rem; /* 列间距(避免拥挤) */
}

.wrong-item {
display: flex;
flex-direction: column;
align-items: center; /* 图文水平居中 */
}

.wrong-image {
width: 100%;
max-width: 150px; /* 单张图片最大宽度(适配5列) */
height: auto;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
margin-bottom: 0.6rem;
}

.wrong-text {
text-align: center;
line-height: 1.5;
color: #666;
font-size: 0.85rem; /* 缩小字体,适配窄列宽 */
word-break: break-all; /* 强制长文本换行 */
}

/* 新增:粘贴注意事项列表样式 */
.precautions-list {
max-width: 800px;
margin: 0 auto 3rem;
line-height: 1.8;
color: #444;
font-size: 1rem;
}

.precautions-list >li {
margin-bottom: 1.5rem;
list-style-type: none; /* 清除默认列表样式 */
position: relative;
padding-left: 2rem; /* 左侧留空,用于自定义序号(去掉点后减少留白) */
}

/* 关键修改:去掉序号前的点,仅保留文字序号 */
.precautions-list > li::before {
content: “①”;
position: absolute;
left: 0;
font-weight: 600;
color: #222;
}

/* 自定义序号(②-⑥) */
.precautions-list > li:nth-child(2)::before { content: “②”; }
.precautions-list > li:nth-child(3)::before { content: “③”; }
.precautions-list > li:nth-child(4)::before { content: “④”; }
.precautions-list > li:nth-child(5)::before { content: “⑤”; }
.precautions-list > li:nth-child(6)::before { content: “⑥”; }

.precautions-list strong {
color: #222;
margin-right: 8px;
}

.precautions-list ul {
margin: 1rem 0 0 2rem; /* 子列表左侧留空同步调整 */
list-style-type: decimal; /* 子列表使用数字序号 */
}

.precautions-list ul li {
margin-bottom: 0.8rem;
}

/* 窄屏适配(修正适配阈值,与页面宽度一致) */
@media (max-width: 840px) {
.page-container {
width: 100%; /* 屏幕小于840px时,页面自适应 */
min-width: auto;
}

.image-group img {
max-width: 100%; /* 窄屏时图片独占一行 */
}

/* 窄屏时正确步骤布局改为 1 列 */
.steps-grid {
grid-template-columns: 1fr;
}

/* 窄屏时错误使用布局改为 2-3 列自适应 */
.wrong-usage-grid {
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

/* 窄屏时注意事项左侧留空减小 */
.precautions-list > li {
padding-left: 1.8rem;
}

/* 窄屏表格列宽自适应调整 */
.product-table th,
.product-table td {
width: auto !important;
padding: 10px 8px;
font-size: 0.9rem;
}

/* 窄屏粘贴表面标题调整 */
.surface-title {
font-size: 1.3rem;
}

.section-title {
font-size: 1.6rem;
}
.feature-title,
.usage-title,
.precautions-title {
font-size: 1.4rem;
}
.steps-title,
.wrong-usage-title {
font-size: 1.2rem;
}
}

Features Diamond Grade HIP Grade
Reflectivity 0.2/-4 8261/-4 165 0.2/-4 8301/-4 89
Prism Reflection Full Prism Reflection Micro-Prism Reflection (with Light-Dark Stripes)
Thickness 0.55mm 0.45mm

Suitable for Adhesive Surfaces

Suitable for various smooth, flat, and clean surfaces

Suitable Adhesive Surfaces

   

Unsuitable Surfaces for Adhesion

Rough surfaces, powdery walls, leather surfaces, etc. cannot be adhered

Unsuitable Surfaces for Adhesion

   

Usage and Precautions

Correct Steps:

Step 1

① Clean the pre-paste position and dry it

Step 2

② Peel off the release paper on the back of the reflective sticker

Step 3

③ Align the position and paste slowly

Step 4

④ Press for about 10 seconds after pasting

✘ Wrong Usage:

Wrong Usage 1

Dust and oil affect adhesion

Wrong Usage 2

Seams are easy to fall off

Wrong Usage 3

Violent tearing of backing paper damages the product

Wrong Usage 4

Sticking on uneven surfaces is easy to fold and damage the edges

Wrong Usage 5

Repeated tearing is easy to damage the product

Precautions for Sticking

  • Clean Surface
                   The area to be stuck must be cleaned in advance. Substances like dust, water droplets, oil stains, wax, and crystals will reduce adhesiveness. It is recommended to wait 15 days after waxing and coating before sticking!

  • Keep Dry
                   Water sticking is prohibited. Do not get water or spray water before and during the sticking process. You can wash the car and other water-related operations 24 hours after sticking.

  • Flat and Smooth

    • Diamond-grade reflective car sticker material is relatively hard, and there is a risk of warping due to excessive corner curvature.

    • The matte surface and the car sticker's back glue cannot be completely in contact, leaving a large amount of air gaps, reducing the contact area between the glue and the stuck surface. Water and oil will pollute the back glue, causing the car sticker to fall off.

    • It is strictly forbidden to stick on the gaps between car parts. Because the expansion and vibration frequencies of the parts are different when the car is driving, shear force will be generated, causing problems such as delamination, degumming, and fracture at random positions of the car sticker.

  • No Repairs on the Surface
                   If the car sticker is stuck on a repainted area, when it is removed in the future, if the putty layer under the paint is not firm, there is a risk of the car paint being peeled off together.

  • Suitable Temperature
                   The initial adhesion occurs when the ambient temperature is above 18 degrees Celsius. It is recommended not to be lower than 8 degrees Celsius. Low temperatures will reduce the initial viscosity of the car sticker's back glue, making it difficult to stick or unable to stick during the first sticking. When the temperature is too low, both the car and the car sticker need to be heated before sticking.

  • Do Not Stick on Hard Surfaces

    • Diamond-grade reflective car stickers stuck on soft materials (such as plastic films, soft silicone products) will fall off due to too large a difference in expansion and contraction deformation values.

    • Some car plastic parts, such as anti-collision under bumpers, wheel eyebrow protection bumpers, four-wheel fenders, etc., have a matte surface treatment. The material contains elastic energy-absorbing rubber and is oily, so self-adhesive cannot stick. Please try to avoid these positions when sticking.

Reviews

There are no reviews yet.

Be the first to review “Custom Motorcycle Reflective Stickers for Tail Box & Side Cases | Night Safety Warning Decals”

Your email address will not be published. Required fields are marked *