123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .money {
- color: #f65067;
- }
- .disagree {
- padding: 10rpx 30rpx;
- font-size: 28rpx;
- width: 200rpx;
- height: 64rpx;
- color: #f65067;
- border-radius: 999rpx;
- border: 2rpx solid #f65067;
- }
- .agree {
- padding: 10rpx 30rpx;
- width: 210rpx;
- height: 64rpx;
- font-size: 28rpx;
- color: #fff;
- background-color: #f65067;
- border-radius: 999rpx;
- border: 2rpx solid #f65067;
- }
- .button {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 0;
- display: flex;
- padding: 24rpx;
- justify-content: center;
- text-align: center;
- justify-content: space-around;
- }
- .content {
- position: absolute;
- left: 0;
- right: 0;
- top: 100rpx;
- bottom: 120rpx;
- z-index: 0;
- font-size: 28rpx;
- padding: 0 50rpx;
- line-height: 44rpx;
- }
- .title {
- font-size: 36rpx;
- padding: 20rpx 50rpx;
- }
- .background {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 0;
- background-color: rgba(0, 0, 0, 0.4);
- }
- .popup {
- position: absolute;
- z-index: 0;
- left: 50%;
- top: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- width: 600rpx;
- height: 700rpx;
- background-color: #fff;
- border-radius: 30rpx;
- }
|