123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- page{
- height: 100%;
- }
- .page-contract{
- height: 100%;
- position: relative;
- padding: 0 50rpx;
- padding-top: 200rpx;
- }
- .page-contract .bg{
- position: absolute;
- left: 0;
- top:0;
- z-index: 1;
- width: 100%;
- height: 100%;
- }
- .alert-content{
- position: relative;
- z-index: 2;
- width:600rpx;
- height:394rpx;
- background:rgba(255,255,255,1);
- border-radius:4rpx;
- margin: 0 auto;
- padding: 30rpx;
- }
- .alert-content .mail-input{
- position: relative;
- height:90rpx;
- background:rgba(255,255,255,1);
- border-radius:4rpx;
- border:2rpx solid rgba(236,238,243,1);
- margin-top: 30rpx;
- margin-bottom: 30rpx;
- }
- .alert-content .mail-input .icon{
- position: absolute;
- left: 30rpx;
- top:50%;
- transform: translate(0,-50%);
- display: block;
- width: 42rpx;
- height: 32rpx;
- }
- .alert-content .mail-input .input-text{
- position: relative;
- z-index: 2;
- padding-left: 100rpx;
- height:90rpx;
- line-height: 90rpx;
- }
- .alert-content .info{
- display: block;
- text-align: left;
- font-size: 24rpx;
- color: #B4BAC5;
- margin-bottom: 70rpx;
- }
- .alert-content .close{
- position: absolute;
- display: block;
- width: 100rpx;
- height: 100rpx;
- top:100%;
- left: 50%;
- margin-top: 40rpx;
- transform: translate(-50%,0);
- }
|