| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* 用户头部 */
- .user_header {
- width: 100%;
- padding: 0 16rpx;
- box-sizing: border-box;
- }
- .user_header_msg {
- display: flex;
- justify-content: space-between;
- width: 100%;
- height: 130rpx;
- padding: 0 24rpx;
- margin-bottom: 40rpx;
- box-sizing: border-box;
- }
- /* 头像 */
- .user_headPortrait {
- width: 130rpx;
- height: 100%;
- border-radius: 50%;
- margin-right: 30rpx;
- }
- .user_headPortrait>image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- box-shadow: 0px 0px 20rpx 0px rgba(0, 0, 0, 0.1);
- }
- /* 修改头像 */
- .changeImage {
- font-size: 32rpx;
- color: #333333;
- }
- /* 表单输入 */
- .user_message_input {
- padding: 0 30rpx;
- margin-top: 40rpx;
- box-sizing: border-box;
- }
- .input-class {
- font-size: 32rpx !important;
- width: 350rpx !important;
- text-align: right !important;
- background-color: #F6F7F8 !important;
- }
- /* 提交按钮 */
- .submit_but {
- width: 240rpx;
- height: 88rpx;
- box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
- border-radius: 44px;
- margin: 60rpx auto;
- font-size: 32rpx !important;
- font-family: PingFangSC-Medium, PingFang SC !important;
- font-weight: 500 !important;
- }
- .custom-class {
- width: 100% !important;
- }
|