12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- .user_plant_item{
- position: relative;
- display: flex;
- padding: 30rpx 20rpx;
- background-color: #fff;
- align-items: center;
- &::after{
- content: ' ';
- position: absolute;
- bottom: 0;
- left: 30rpx;
- right: 0;
- height: 1px;
- background: #f0f0f0;
- }
- image{
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .info{
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-left: 20rpx;
- position: relative;
- .name{
- width: 410rpx;
- font-size: 30rpx;
- color: #282828;
- }
- .plant-des{
- color: #999999;
- font-size: 24rpx;
- margin-top: 16rpx;
- .des{
- margin-right: 15rpx;
- +.des{
- margin-left: 15rpx;
- &::before{
- content: "";
- display: inline-block;
- width: 1rpx;
- height: 16rpx;
- background: #999999;
- position: relative;
- left: -15rpx;
- top: -2rpx;
- }
- }
- text{
- padding-left: 8rpx;
- &::before{
- content: ".";
- position: relative;
- top: -6rpx;
- left: -3rpx;
- }
- }
- }
- }
- .btn{
- display: flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- right: 0;
- top: 50%;
- width: 126rpx;
- height: 50rpx;
- transform: translateY(-50%);
- border:1px solid #999999;
- color: #999999;
- border-radius: 33rpx;
- font-size: 26rpx;
- &.focusBtn{
- .iconfont{
- font-size: 20rpx;
- margin-right: 10rpx;
- }
- }
- }
- }
- }
|