You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
559 B
30 lines
559 B
/* 页面布局(layout) */
|
|
|
|
.section-wrap {
|
|
padding-left: var(--p-x)!important;
|
|
padding-right: var(--p-x)!important;
|
|
}
|
|
/* 小屏幕:手机端 范围:0-576px*/
|
|
@media (max-width: 576px) {
|
|
:root {
|
|
--p-x: 20px;
|
|
}
|
|
}
|
|
/* 中屏幕:平板端 范围:576-768px*/
|
|
@media (min-width: 576px) and (max-width: 768px) {
|
|
:root {
|
|
--p-x: 40px;
|
|
}
|
|
}
|
|
/*768-992px*/
|
|
@media (min-width: 768px) and (max-width: 992px) {
|
|
:root {
|
|
--p-x: 60px;
|
|
}
|
|
}
|
|
/* 大屏幕:范围:>=992px*/
|
|
@media (min-width: 992px) {
|
|
:root {
|
|
--p-x: 16.25rem;
|
|
}
|
|
}
|