12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* pages/me/me.wxss */
- @import '../../templates/footer_parent/footer.wxss';
- .li{
- height:269rpx;
- background:rgba(255,255,255,1);
- box-shadow:0px 6rpx 30rpx 0px rgba(81,108,227,0.2);
- border-radius:16rpx;
- margin:0 24rpx 95rpx 24rpx;
- }
- .li-img{
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- margin:75rpx 15rpx 75rpx 40rpx;
- }
- .li-names{
- color: #393939;
- font-size: 36rpx;
- margin: auto;
- display: inline-block;
- position: relative;
- bottom: 100rpx
- }
- .list{
- padding: 0 24rpx;
- background: #F1F3FA;
- border-bottom: 1rpx solid #D0D5E6;
- border-top: 1rpx solid #D0D5E6;
- }
- .list-items{
- border-bottom: 1rpx solid #D0D5E6;
- display: flex;
- justify-content: space-between;
- align-items: center;
- overflow: hidden;
- }
- .list-items-names{
- color: #393939;
- font-size: 30rpx;
- margin: 35rpx 0;
- display: inline-block;
- }
- .list-items-guide{
- display: inline-block;
- /* float: right; */
- font-size: 24rpx;
- color: #7C819D;
- }
- .list-items-img{
- width: 55rpx;
- height: 55rpx;
- border-radius: 50%;
- margin: 28rpx 28rpx 21rpx 11rpx;
- }
- .list-items-guide-img{
- width: 18rpx;
- height: 29rpx;
- position: relative;
- bottom: 32rpx;
- }
- .list-items-guide-names{
- position: relative;
- bottom: 38rpx;
- }
- .li-row{
- display: flex;
- justify-content: space-between;
- align-items: center;
- overflow: hidden;
- }
- .li-row-img{
- width: 18rpx;
- height: 29rpx;
- /* margin-top: 30rpx; */
- }
- .header-btn{
- border: none;
- color: #373737;
- font-size: 40rpx;
- text-align: center;
- background: transparent;
- display: inline-block;
- position: relative;
- bottom: 80rpx;
- }
|