12345678910111213141516171819202122232425262728293031 |
- /* nova-werun/components/circle/index.wxss */
- .all{
- width: 100vw;
- position: relative;
- .trends{
- width: 100%;
- border-top: grey solid 1px;
- padding-top: 20rpx;
- .no-more{
- width: 100%;
- display: flex;
- justify-content: center;
- font-size: 28rpx;
- margin-bottom: 35rpx;
- }
- }
- .trends::-webkit-scrollbar {
- display: none; /* 隐藏滚动条 */
- }
- .publishbox{
- position: absolute;
- bottom:214rpx;
- right: 12rpx;
- image{
- width: 80rpx;
- height: 80rpx;
- }
- }
- }
|