123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- .mask {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- background: #000;
- z-index: 9000;
- opacity: 0.6;
- }
- .Modal {
- width: 632rpx;
- padding: 0 52rpx;
- position: fixed;
- top: 300rpx;
- left: 50%;
- z-index: 9999;
- transform: translateX(-50%);
- background-color: #fff;
- border-radius: 20rpx;
- }
- .Modal .Modal_title {
- font-size: 32rpx;
- font-weight: 600;
- color: #547cff;
- line-height: 113rpx;
- text-align: center;
- }
- .Modal .Modal_info {
- font-size: 28rpx;
- color: # ;
- line-height: 45rpx;
- text-align: center;
- }
- .Modal .Modal_input {
- text-align: left;
- padding: 0 40rpx;
- }
- .Modal .Modal_input .input {
- overflow: hidden;
- margin-top: 43rpx;
- }
- .Modal .Modal_input .input text {
- font-size: 28rpx;
- line-height: 66rpx;
- color: #666666;
- display: block;
- width: 115rpx;
- float: left;
- }
- .Modal .Modal_input .input input {
- width: 335rpx;
- height: 66rpx;
- float: left;
- padding-left: 20rpx;
- background: #FFFFFF;
- border: 1px solid #C8C8C8;
- border-radius: 12rpx;
- }
- .Modal .Modal_btn {
- height: 156rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .Modal .Modal_btn button {
- width: 196rpx;
- height: 70rpx;
- border-radius: 100px;
- font-size: 26rpx;
- color: #fff;
- background-color: #557CFF;
- }
- .Modal .Modal_btn button:active {
- background-color: #4868d4;
- }
|