modal.wxss 1.8 KB
/*弹框样式*/
.modal_box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(0,0,0,0.3);
}
.input-box {
    width: 80%;
    /* height: 1100rpx; */
    background: #ffffff;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index:999;
    position: fixed;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 46rpx 88rpx;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 40rpx;
}
.input-box image {
    width: 110rpx;
    height: 110rpx;
    border-radius: 50%;
    margin-bottom: 34rpx;
}
.input-box .title {
    color: #333333;
    font-size: 36rpx;
    margin-bottom: 16rpx;
}
.input-box .tips {
    color: #333333;
    font-size: 24rpx;
    margin-bottom: 26rpx;
}
.input-box .answer-btn {
    width: 100%;
    height: 66rpx;
    background-color: #323232;
    border-radius: 6rpx;
    color:#E2C8B1;
    font-size: 30rpx;
    text-align: center;
    line-height: 66rpx;
    margin-top: 16rpx;
}
.release-btn-box {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 70%;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 999;
}
.release-btn-box .left-btn, .release-btn-box .right-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 84rpx;
}
.release-btn-box .right-btn {
    margin-right: 0;
}
.release-btn-box image {
    width: 100rpx;
    height: 100rpx;
    border-radius: 50%;
    margin-bottom: 22rpx;
}
.release-btn-box .text {
    color: #ffffff;
    font-size: 26rpx;
}