123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /**index.wxss**/
- @import '../../../app.wxss';
-
- .top {
- width: 100%;
- position: relative;
- overflow: hidden;
- }
-
- .top > image {
- width: 100%;
- display: block;
- position: relative;
- z-index: 1;
- }
-
- .top > .centerLabel {
- width: 100%;
- z-index: 2;
- overflow: hidden;
- }
-
- .userIcon {
- width: 154rpx;
- height: 154rpx;
- position: relative;
- overflow: hidden;
- border-radius: 100%;
- border: 2rpx solid #fff;
- margin: 0 auto;
- background: rgba(255, 255, 255, 0.5);
- }
-
- .userIcon > view {
- width: 144rpx;
- height: 144rpx;
- overflow: hidden;
- border-radius: 100%;
- background: #eee;
- }
-
- .userName {
- width: 100%;
- display: block;
- text-align: center;
- color: #fff;
- font-size: 24rpx;
- line-height: 40rpx;
- margin-top: 5rpx;
- font-weight: bold;
- }
-
- .unsigned {
- width: 100%;
- display: block;
- text-align: center;
- line-height: 40rpx;
- margin-top: 5rpx;
- }
-
- .unsigned > button {
- font-size: 24rpx;
- color: #fff;
- width: 25%;
- background-color: rgba(0, 0, 0, .2);
- }
-
- .userPhone {
- width: 100%;
- display: block;
- text-align: center;
- color: #fff;
- font-size: 20rpx;
- line-height: 36rpx;
- }
-
- .list {
- padding: 25rpx;
- position: relative;
- overflow: hidden;
- }
-
- .list > view {
- width: 100%;
- position: relative;
- overflow: hidden;
- border-radius: 10rpx;
- box-shadow: 0 0 20rpx 10rpx rgba(0, 0, 0, .05);
- }
-
- .listBg {
- display: inline-block;
- position: absolute;
- right: 10rpx;
- bottom: 40rpx;
- opacity: 0.06;
- z-index: 1;
- width: 400rpx;
- }
-
- .list > view > view {
- padding: 0 45rpx;
- position: relative;
- overflow: hidden;
- }
-
- .item {
- border-top: 1rpx solid #eee;
- position: relative;
- overflow: hidden;
- padding: 30rpx 0;
- align-items: center;
- z-index: 2;
- }
-
- .item:first-child {
- border: none;
- }
-
- .list text {
- line-height: 42rpx;
- font-size: 26rpx;
- /* font-weight: bold; */
- margin: 0 25rpx;
- }
|