1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* pages/deviceDetail/detail.wxss */
- /* pages/settings/settings.wxss */
- .container {
- padding: 20px;
- }
- .img_section {
- width: 100%;
- height: 648rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .avatar {
- width: 470rpx;
- height: 432rpx;
- background: #F2F5F7;
- border-radius: 24rpx;
- }
- .section {
- margin-bottom: 20px;
- }
- .title {
- font-size: 16px;
- font-weight: bold;
- margin-bottom: 10px;
- }
- .item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 10px 0;
- border-bottom: 1px solid #eee;
- }
- .label {
- font-size: 14px;
- }
- .arrow {
- font-size: 14px;
- color: #999;
- }
|