12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- @charset "UTF-8";
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- .u-avatar.data-v-4f1b1b40 {
- display: -webkit-inline-box;
- display: -webkit-inline-flex;
- display: inline-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- font-size: 28rpx;
- color: #606266;
- border-radius: 10px;
- position: relative;
- }
- .u-avatar__img.data-v-4f1b1b40 {
- width: 100%;
- height: 100%;
- }
- .u-avatar__sex.data-v-4f1b1b40 {
- position: absolute;
- width: 32rpx;
- color: #ffffff;
- height: 32rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- border-radius: 100rpx;
- top: 5%;
- z-index: 1;
- right: -7%;
- border: 1px #ffffff solid;
- }
- .u-avatar__sex--man.data-v-4f1b1b40 {
- background-color: #2979ff;
- }
- .u-avatar__sex--woman.data-v-4f1b1b40 {
- background-color: #fa3534;
- }
- .u-avatar__sex--none.data-v-4f1b1b40 {
- background-color: #ff9900;
- }
- .u-avatar__level.data-v-4f1b1b40 {
- position: absolute;
- width: 32rpx;
- color: #ffffff;
- height: 32rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- border-radius: 100rpx;
- bottom: 5%;
- z-index: 1;
- right: -7%;
- border: 1px #ffffff solid;
- background-color: #ff9900;
- }
|