| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .circle-bar-wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: center;
- box-sizing: border-box;
- /* padding: 0 20%; */
- }
- .circle-bar-wrap .font {
- max-height: 62rpx;
- font-size: 26rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- white-space: normal;
- }
- .canvas{
- position: relative;
- z-index: 0;
- }
- .circle-bar-wrap .val {
- width: 68%;
- height: 68%;
- font-size: 40rpx;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .round{
- width:100%;
- height:100%;
- /* border: 2.5rpx solid #DCD7FC; */
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
|