setting-message.wxss 1.04 KB
.message-wrapper {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 3000;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
}

.setting-layer {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.setting-message {
    position: absolute;
    display: block;
    width: 500rpx;
    background-color: #fff;
}

.setting-message .message-title {
    position: relative;
    display: block;
    padding: 30rpx 20rpx 30rpx 20rpx;
    font-size: 28rpx;
    color: gray;
    text-align: center;
    border-bottom: 1px solid lightgray;
}

.setting-message .message-button {
    position: relative;
    width: 100%;
    display: flex;
}

.message-button button {
    border: none;
    width: 50%;
    text-align: center;
    height: 80rpx;
    font-size: 30rpx;
    line-height: 80rpx;
    border-radius: 0;
    color: lightskyblue;
}

.border-right {
    border-right: 1px solid lightgray !important;
    color: gray !important;
}