12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /* pages/welfareMall/staff/noStaff.wxss */
- page{
- background: #F9F9F9;
- 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;
- }
- .noStaff-head{
- justify-content: space-between;
- position: relative;
- }
- .head-noStaff-logo{
- width: 152rpx;
- height: 152rpx;
- border-radius: 50%;
- overflow : hidden ;
- position: absolute;
- bottom: 130rpx;
- }
- .head-text{
- font-size: 36rpx;
- font-weight: 500;
- color: #F6C6A3;
- position: absolute;
- bottom: 34rpx;
- }
- .noStaff-content{
- background: #F9F9F9;
- }
- .noStaff-content{
- margin-top: 40rpx;
- }
- .content-join{
- width: 676rpx;
- height: 246rpx;
- background-image: url(https://dy.shpr.top/welfareGo/write-off-join.png);
- background-size: 100% 100%;
- margin-bottom: 40rpx;
- }
- .content-partnership{
- width: 676rpx;
- height: 246rpx;
- background-image: url(https://dy.shpr.top/welfareGo/write-off-partnership.png);
- background-size: 100% 100%;
- }
|