123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- .my-box {
- width: 100vw;
- background-color: #ffffff;
- margin-bottom: 20px;
- padding: 20rpx 24rpx 20rpx;
- box-sizing: border-box;
- }
- .my-head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 76rpx;
- width: 100%;
- margin-bottom: 8rpx;
- }
- .my-head-left {
- width: 490rpx;
- height: 80rpx;
- }
- .my-user {
- position: relative;
- height: 60rpx;
- line-height: 30rpx;
- font-size: 28rpx;
- color: #333333;
- padding-left: 55rpx;
- box-sizing: border-box;
- }
- .my-user .my-name {
- display: inline-block;
- width: 400rpx;
- margin-right: 10rpx;
- vertical-align: top;
- }
- .my-user .my-image-class {
- position: absolute;
- border-radius: 50%;
- overflow: hidden;
- left: 0rpx;
- top: 50%;
- margin-top: -26rpx;
- }
- /* 地址 */
- .my-address {
- width: 100%;
- height: 34rpx;
- line-height: 34rpx;
- font-size: 24rpx;
- color: #333333;
- opacity: .7;
- margin-top: 6rpx;
- }
- /* 电话联系按钮 */
- .my-call-up {
- display: flex;
- align-items: center !important;
- width: 196rpx;
- height: 52rpx;
- background: linear-gradient(180deg, #FFDC00 0%, #FFB600 100%);
- box-shadow: 2rpx 2rpx 8rpx 0px rgba(0, 0, 0, 0.15);
- border-radius: 33rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- color: #FFFFFF;
- padding: 0 !important;
- }
- /* 供需标题 */
- .my-title {
- height: 44rpx;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #000000;
- line-height: 44rpx;
- margin-top: 30rpx;
- }
- /* 供需说明 */
- .my-content {
- font-size: 28rpx;
- color: #000000;
- line-height: 40rpx;
- opacity: .7;
- margin-top: 10rpx;
- }
- /* 底部 */
- .my-footer {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 690rpx;
- height: 40rpx;
- margin-top: 20rpx;
- font-size: 28rpx;
- color: rgba(51, 51, 51, .7);
- overflow: hidden;
- }
- .shareBut{
- padding: 0 !important;
- margin: 0 !important;
- border: 0 !important;
- background-color: #ffffff;
- color: rgba(51, 51, 51, .7) !important;
- font-size: 28rpx !important;
- }
|