123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 0 24rpx 20rpx;
- box-sizing: border-box;
- padding-top: calc(88rpx + var(--status-bar-height));
- }
- .header {
- width: 100%;
- height: calc(88rpx + var(--status-bar-height));
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999999;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- padding: var(--status-bar-height) 0 0;
- background-color: #fff;
- }
- .header-top {
- width: 100%;
- height: 88rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- position: relative;
- }
- .return {
- width: 19rpx;
- position: absolute;
- left: 24rpx;
- }
- .header-title {
- width: 100%;
- font-weight: 700;
- font-size: 16px;
- text-align: center;
- color: rgb(0, 0, 0);
- }
- .header-msg {
- color: #F2501A;
- font-size: 24rpx;
- position: absolute;
- right: 24rpx;
- }
- .list {
- width: 100%;
- display: flex;
- flex-direction: column;
- border-radius: 16rpx;
- background-color: #fff;
- padding: 28rpx 28rpx 36rpx;
- box-sizing: border-box;
- margin-top: 20rpx;
- }
- .item {
- width: 100%;
- display: flex;
- align-items: center;
- margin-bottom: 32rpx;
- }
- .item:last-child {
- margin-bottom: 0;
- }
- .sidebar {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .name {
- width: 100%;
- color: #070707;
- font-size: 32rpx;
- font-weight: bold;
- margin-bottom: 4rpx;
- }
- .msg {
- width: 100%;
- color: #676767;
- font-size: 26rpx;
- }
- .avatar {
- width: 90rpx;
- height: 90rpx;
- border-radius: 50%;
- margin-right: 16rpx;
- }
- .mask {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- height: 100vh;
- background-color: rgba(0, 0, 0, 0.38);
- z-index: 9998;
- }
- .window {
- position: fixed;
- width: calc(100% - 48rpx);
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- border-radius: 20rpx;
- overflow: hidden;
- background-color: #fff;
- z-index: 9999;
- display: flex;
- flex-direction: column;
- }
- .window-top {
- width: 100%;
- height: 344rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 50rpx 0 85rpx;
- box-sizing: border-box;
- }
- .window-label {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .window-input {
- width: calc(100% - 204rpx);
- height: 76rpx;
- line-height: 76rpx;
- margin: 0 86rpx 0 118rpx;
- border-bottom: 1px solid #E6E6E6;
- box-sizing: border-box;
- font-size: 32rpx;
- color: #F2501A;
- }
- .placeholder {
- color: #F2501A;
- }
- .window-bottom {
- width: 100%;
- display: flex;
- align-items: center;
- border-top: 1px solid #EEEEEE;
- box-sizing: border-box;
- }
- .window-bottom button {
- width: 50%;
- height: 106rpx;
- line-height: 106rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #ADADB0;
- font-size: 36rpx;
- border-radius: initial;
- border-right: 1px solid #EEEEEE;
- background-color: #fff;
- }
- .window-bottom button:last-child {
- border-right: none;
- color: #F2501A;
- }
|