1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .modal_container {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background-color: rgba(0,0,0,0.4);
- z-index: 1;
- width: 100%;
- height: 100%;
- }
- .icon_close {
- position: fixed;
- right: 40rpx;
- top: 40rpx;
- width: 70rpx;
- height: 70rpx;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- /* background-color: #07c160; */
- background-color: rgba(0,0,0,0.7);
- color: white;
- font-size: 32rpx;
- font-weight: bold;
- }
- .code_img {
- width: 400rpx;
- height: 400rpx;
- margin-top: 50%;
- margin-left: 50%;
- transform: translateX(-50%);
- border-radius: 30rpx;
- }
- .install_tip_back {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background-color: rgba(0,0,0,0.4);
- z-index: 1;
- }
- .install_tip_detail {
- position: fixed;
- background-color: white;
- right: 0;
- bottom: 0;
- left: 0;
- top: 60%;
- border-radius: 40rpx 40rpx 0 0;
- padding: 50rpx;
- z-index: 9;
- }
- .install_tip_detail_title {
- font-weight: 400;
- font-size: 40rpx;
- text-align: center;
- }
- .install_tip_detail_tip {
- font-size: 25rpx;
- color: rgba(0,0,0,0.4);
- margin-top: 20rpx;
- text-align: center;
- }
- .install_tip_detail_shell {
- margin: 70rpx 0;
- display: flex;
- justify-content: center;
- }
- .install_tip_detail_copy {
- color: #546488;
- margin-left: 10rpx;
- }
- .install_tip_detail_button {
- color: #07C160;
- font-weight: 500;
- background-color: rgba(0,0,0,0.1);
- width: 60%;
- text-align: center;
- height: 90rpx;
- line-height: 90rpx;
- border-radius: 10rpx;
- margin: 0 auto;
- }
|