1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* pages/hrDetail/fanPortraits/fanPortraits.wxss */
- .loadingView{
- width: 100%;
- padding: 40rpx;
- text-align: center;
- font-size: 24rpx;
- color: #444444;
- background: #fff;
- }
- .content {
- background: #fff;
- padding: 30rpx 20rpx;
- }
- .loadingView .dataLoadingImg{
- width: 318rpx;
- height: 253rpx;
- margin: auto;
- }
- .echartsDiv{
- width: 100%;
- height: 560rpx;
- position: relative;
- background: #fff;
- }
- .canvas::before {
- content: "";
- position: absolute;
- left: 40rpx;
- top: 12rpx;
- width: 20rpx;
- height: 20rpx;
- background: #1c87ff;
- }
- .sexView{
- position: relative;
- }
- .man,.woman{
- position: absolute;
- text-align: center;
- z-index: 1;
- }
- .man image,.woman image{
- width: 80rpx;
- margin: auto;
- height: 66rpx;
- }
- .manText{
- display: block;
- font-size: 30rpx;
- line-height: 40rpx;
- font-weight: bold;
- padding-top: 6rpx;
- }
- .manView{
- font-size: 20rpx;
- line-height: 40rpx;
- }
- .woman{
- color: #FF5A7B;
- right: 60rpx;
- bottom: 40rpx;
- }
- .man{
- color: #2296F3;
- left: 60rpx;
- bottom: 40rpx;
- }
|