1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- @import './modules/list/index.scss';
- .contacts {
- margin-bottom: 20rpx;
- }
- .box {
- margin-bottom: 20rpx;
- background-color: #ffffff;
- .row {
- width: 100vw;
- box-sizing: border-box;
- padding-left: 30rpx;
- .cell {
- display: flex;
- justify-content: space-between;
- width: 100%;
- padding: 30rpx 30rpx 28rpx 0;
- border-bottom: 2rpx solid #DDDDDD;
- box-sizing: border-box;
- .label {
- width: 200rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #000000;
- flex-shrink: 0;
- }
- .content {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- }
- }
- .row:last-child {
- .cell {
- padding-bottom: 30rpx;
- border-bottom: none;
- }
- }
- }
- /* 底部 */
- .footer {
- position: fixed;
- display: flex;
- justify-content: space-between;
- width: 100vw;
- padding: 20rpx 30rpx;
- bottom: 0;
- box-sizing: border-box;
- background-color: #ffffff;
- z-index: 999;
- .delete {
- width: 200rpx;
- height: 90rpx;
- background: #FFFFFF;
- border-radius: 100rpx;
- border: 1px solid #CCCCCC;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #999999;
- }
- .edit {
- width: 460rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 100rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- }
|