123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /* plugin/etc/components/pop-active-fail/pop-active-fail.wxss */
-
- .modal_mask {
- position: fixed;
- z-index: 10000;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.3);
- }
-
- .modal_container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- position: fixed;
- width: 596rpx;
- top: 50%;
- left: 50%;
- transform: translateX(-50%) translateY(-50%);
- background: #ffffff;
- z-index: 10001;
- border-radius: 24rpx;
- }
-
- .c-title {
- font-weight: bold;
- font-size: 32rpx;
- color: #1A1D25;
- margin-top: 40rpx;
- }
-
- .info-bg {
- margin-top: 32rpx;
- box-sizing: border-box;
- width: 486rpx;
- background: #F4F5F9;
- border-radius: 16rpx;
- }
-
- .info-tip-bg {
- padding-left: 32rpx;
- padding-top: 28rpx;
- padding-bottom: 32rpx;
- }
-
- .dev-name {
- font-weight: 500;
- font-size: 28rpx;
- color: #1A1D25;
- margin-bottom: 16rpx;
- }
-
- .dev-msg {
- font-size: 24rpx;
- color: #59677F;
- line-height: 40rpx;
- }
-
- .fail-bg {
- padding-top: 20rpx;
- padding-left: 32rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-start;
- font-size: 28rpx;
- color: #F7454E;
- line-height: 40rpx;
- padding-bottom: 28rpx;
-
- }
-
- .btn-bg {
- margin-top: 32rpx;
- border-top: 1rpx solid #eeeeee;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 104rpx;
- width: 100%;
- font-weight: 500;
- font-size: 32rpx;
- color: #279DFD;
- line-height: 44rpx;
- }
-
- .normal-btn {
-
- margin-top: 32rpx;
- margin-bottom: 40rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 486rpx;
- height: 80rpx;
- background: #3E7DF5;
- border-radius: 48rpx;
- }
|