1234567891011121314151617181920212223242526272829303132333435 |
- /* pages/integral/integral.wxss */
- page{
- background: #f5f5f5;
- display:flex;
- flex-flow: column nowrap;
- justify-content: left;
- align-items: center;
- box-sizing: border-box;
- }
- /* 垂直方向布局,水平居中 **/
- .flex-column{
- display: flex;
- flex-flow: column nowrap;
- align-items: center;
- justify-content: left;
- }
- /* 水平方向布局,垂直居中 **/
- .flex-row{
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- justify-content: center;
- }
- .integral-banner{
- width: 750rpx;
- height: 256rpx;
- border-radius: 8px;
- overflow: hidden;
- }
- .head-follow{
- width: 100%;
- height: 100%;
- }
|