1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* pages/sendInvitation/sendInvitation.wxss */
- /* 设置背景 */
- .wrapper{
- width: 100%;
- height: 100%;
- background-color: #FFF2CC;
- padding: 20rpx;
- }
- /* 上方邀请号和照片 */
- .above{
- display: flex;
- width: 95%;
- justify-content: space-between;
- }
- /* 上方、中间左侧文字 */
- .aboveTitle,
- .midTitle,
- .bottomTitle{
- padding-bottom: 20rpx;
- }
- /* 头像 */
- .headerPortrait{
- width: 200rpx;
- }
- .bottomWrapper{
- margin-top: 160rpx;
- }
- /* 设置链接样式 */
- .toLink{
- color: skyblue;
- text-decoration: underline;
- }
- /* 设置操作状态字体 */
- .operateState{
- font-weight: bold;
- color: red;
- }
|