@import "../../commons/css/common.wxss"; .lcb-msg{ } .lcb-msg .msgBg{ position: fixed; left: 0; top: 0; width: 100%; height: 100%; z-index: 9998; } .lcb-msg .msgMain{ position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%); min-width: 560rpx; /* min-height: 456rpx; */ z-index: 9999; background-color: #fff; border-radius: 20rpx; overflow: hidden; } .lcb-msg .msgMain.active{ /* animation: card .5s linear 1; */ } .lcb-msg .msgMain .close{ position: absolute; } .lcb-msg .msgMain .close.up{ right: 0; top: -80rpx; font-size: 30rpx; } .lcb-msg .msgMain .close.up::before{ content: ''; position: absolute; width: 4rpx; height: 34rpx; background-color: #fff; left: 50%; top: 53rpx; } .lcb-msg .msgMain .close.up text{ width: 53rpx; height: 53rpx; line-height: 53rpx; text-align: center; display: inline-block; border-radius: 100%; border: 4rpx solid #fff; box-sizing: border-box; } /* .lcb-msg .msgMain .close.down{ left: 50%; bottom: -140rpx; transform: translateX(-50%); font-size: 53rpx; } */ .lcb-msg .msgMain .close.down{ right: 20rpx; top: 20rpx; /* font-size: 30rpx; */ width: 35rpx; height: 35rpx; background-size: 100%; background-repeat: no-repeat; background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjBAMAAADs965qAAAAG1BMVEUAAAAjGBUjGBUjGBUjGBUjGBUjGBUjGBUjGBUq0FsOAAAACXRSTlMAZlQITRE0SzF33gruAAAAh0lEQVQoz33S0Q1AMBDG8Uss4GzQiHfpBBoLsAEbGMHoHtr6N/lEX1x9v1Dn7FytXV06zIe5vRW9t+Rji4IvFluWd12AlQ2MGkYJyxUZBSGopCBYRTAQrCLYVBHMXwQriLW7b/av9Fn6Rj2Xnl6/UTsB4qpd1d6TwYhg+rdBMJ2c62O+dArvBxZYHZp91AHFAAAAAElFTkSuQmCC"); } .lcb-msg .msgMain-title{ display: block; padding: 25rpx 0 5rpx 0; text-align: center; font-weight:bold; font-size: 36rpx; color: #000; } .lcb-msg .msgMain-content{ display: block; font-size: 24rpx; color: #999; padding: 0 39rpx 55rpx; text-align: center; } .lcb-msg .msgMain .bd{ /* padding-bottom: 30rpx; */ height: 100rpx; line-height: 100rpx; } .lcb-msg .msgMain-opt{ display: flex; } .msgMain-opt-item{ position: relative; flex: 1; text-align: center; } .msgMain-opt-item text{ font-size: 32rpx; } .msgMain-opt-item+.msgMain-opt-item::before{ content: ''; position: absolute; left: 0; top: 0; width: 2rpx; height: 100%; background-color: #d5d6d8; font-size: 32rpx; } .msgMain-opt-close{ border-radius: 10rpx; margin-left: 30rpx; margin-right: 30rpx; font-size: 32rpx; height: 100rpx; line-height: 100rpx; } .msgMain-icon{ margin-top: 80rpx; text-align: center; } .msgMain-icon image{ width: 75rpx; height: 75rpx; } @keyframes card{ 0% { opacity: 0; transform: translate(-50%,-50%) scale3d(.3, .3, .3); } 50% { transform: translate(-50%,-50%) scale3d(1,1,1); opacity: 1 } }