12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /* nova-werun/pages/home/share/index.wxss */
- .all {
- width: 100vw;
- padding-top: 15rpx;
- background: linear-gradient(to bottom, #4F9AF7, #FFFFFF);
- }
- .all #myCanvas {
- margin: auto;
- }
- .all .sharebox {
- width: 100%;
- padding: 20rpx;
- }
- .all .sharebox .share-text {
- width: 100%;
- font-size: 30rpx;
- font-weight: 600;
- display: flex;
- justify-content: center;
- }
- .all .sharebox .share-picbox {
- width: 100%;
- height: 178rpx;
- margin-top: 16rpx;
- display: flex;
- justify-content: space-around;
- }
- .all .sharebox .share-picbox .share-pic {
- width: 130rpx;
- height: 178rpx;
- }
- .all .sharebox .share-picbox .share-pic .share-pic-box {
- width: 130rpx;
- height: 130rpx;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #4F9AF7;
- }
- .all .sharebox .share-picbox .share-pic .share-pic-box .image {
- width: 60rpx;
- height: 60rpx;
- }
- .all .sharebox .share-picbox .share-pic .pic-tex {
- width: 130rpx;
- font-size: 30rpx;
- display: flex;
- justify-content: center;
- margin-top: 10rpx;
- color: #4F9AF7;
- }
|