1234567891011121314151617181920212223242526272829 |
- @import '@css/mixin.scss';
- .scoped-box {
- padding-top: 20px;
- .sb-item {
- width: 694px;
- height: 150px;
- margin: 0 auto;
- margin-bottom: 20px;
- border-radius: 20px;
- overflow: hidden;
- .bg {
- width: 694px;
- height: 150px;
- border-radius: 20px;
- overflow: hidden;
- }
- }
- }
- .scoped-top {
- width: 750px;
- height: 250px;
- overflow: hidden;
- margin-bottom: 10px;
- .bg {
- width: 750px;
- height: 250px;
- }
- }
|