2025-10-16 20:51:00 +08:00

14 lines
247 B
CSS

/* PC端设置 */
#tanChiShe {
width: clamp(100px, 40vw, 600px);
height: auto;
display: block;
margin: 0 auto;
}
/* 移动端适配 */
@media (max-width: 768px) {
#tanChiShe {
width: clamp(100px, 80vw, 600px);
}
}