1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* components/diy-intro/index.wxss */
- page {
- background: #f6f6f6;
- }
- .intro_index {
- .intro {
- display: flex;
- align-items: center;
- justify-content: space-around;
- .intro_info {
- padding: 20rpx 0;
- text-align: center;
- .image {}
- .name {
- font-weight: 700;
- }
- .desc {}
- }
- }
- .slide_info {
- display: flex;
- white-space: nowrap;
- .intro_info {
- display: inline-block;
- text-align: center;
- .image {}
- .name {
- font-weight: 700;
- }
- .desc {}
- }
- }
- }
|