1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .detail-content {
- padding: 30rpx;
- }
- .detail-content .detail-avatar {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- }
- .detail-content .detail-box {
- background: #fff;
- border-radius: 16rpx;
- padding: 30rpx;
- box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
- }
- .detail-content .detail-label {
- color: #8c8c8c;
- font-weight: 300;
- margin-bottom: 10rpx;
- }
- .detail-content .detail-value {
- font-size: 32rpx;
- color: #434343;
- }
- .detail-content .detail-item {
- margin-bottom: 20rpx;
- }
- .detail-content .logout {
- margin-top: 40rpx;
- background: #ff4d4f;
- color: #fff;
- height: 68rpx;
- line-height: 68rpx;
- border-radius: 68rpx;
- text-align: center;
- }
|