14 lines
247 B
CSS
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);
|
|
}
|
|
} |