12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- page {
- background-color: #F4F4F4;
- font-size: 32rpx;
- font-family: PingFang-SC-Bold, PingFang-SC;
- position: relative;
- }
- .userPage {
- height: 100vh;
- position: relative;
- }
- .userPage .userTop {
- position: relative;
- width: 100%;
- box-sizing: border-box;
- padding: 50rpx 30rpx 65rpx;
- }
- .userPage .userTop image {
- width: 100%;
- position: absolute;
- left: 0;
- top: 0;
- z-index: -1;
- }
- .userPage .userTop .userTop-content {
- display: flex;
- align-items: center;
- }
- .userPage .userTop .avatar {
- width: 172rpx;
- height: 172rpx;
- border-radius: 50%;
- background-color: pink;
- margin-right: 30rpx;
- }
- .userPage .userTop .login {
- text-align: center;
- }
- .userPage .userTop .btn {
- width: 324rpx;
- height: 62rpx;
- line-height: 62rpx;
- background: #1E9F6A;
- border-radius: 8rpx 32rpx 8rpx 32rpx;
- color: #FFFFFF;
- margin: 40rpx auto;
- }
- .userPage .userOrder {
- margin: 20rpx 30rpx;
- padding: 40rpx 0;
- border-radius: 8rpx 56rpx 8rpx 8rpx;
- background-color: #ffffff;
- display: flex;
- font-size: 22rpx;
- font-weight: bold;
- color: #141328;
- text-align: center;
- }
- .userPage .userOrder .flex-item {
- flex: 1;
- }
- .userPage .userOrder .line {
- width: 1px;
- height: 48rpx;
- line-height: 48rpx;
- background: #141328;
- opacity: 0.29;
- margin: auto 0;
- }
- .userPage .signout {
- margin: 46rpx auto 0;
- padding: 24rpx 0;
- width: 438rpx;
- text-align: center;
- background: #E6E5E5;
- border-radius: 8rpx 56rpx 8rpx 56rpx;
- }
- .userPage .kefuicon {
- position: absolute;
- right: 30rpx;
- bottom: 0;
- }
- .userPage .kefuicon button::after {
- border: none;
- }
- .userPage .kefuicon image {
- width: 136rpx;
- }
|