1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* pages/learn-sv/learn-sv.wxss */
- .title {
- font-size: larger;
- font-weight: 700;
- }
- .hg {
- box-sizing: border-box;
- height: 300rpx;
- border: 1px solid red;
- white-space: nowrap;
- overflow: hidden;
- }
- .hg-item {
-
- width: 750rpx;
- height: 100%;
- display: inline-flex;
- justify-content: center;
- align-items: center;
- }
- .sg {
- box-sizing: border-box;
- width: 750rpx;
- height: 300rpx;
- border: 1px solid blue;
- }
- .sg-item {
- width: 750rpx;
- height: 300rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
|