| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- .user-payment {
- padding: 20rpx 30rpx;
- }
- .user-payment .payment {
- text-align: center;
- border-radius: 20rpx;
- overflow: hidden;
- padding-bottom: 74rpx;
- }
- .user-payment .payment .nav {
- margin: 20rpx 95rpx 80rpx;
- }
- .user-payment .payment .nav .item {
- flex: 1;
- }
- .user-payment .payment .nav .item .line {
- width: 110rpx;
- height: 2px;
- }
- .user-payment .payment .line {
- width: 110rpx;
- height: 2px;
- }
- .user-payment .payment .input {
- margin-left: 66rpx;
- margin-top: 35rpx;
- margin-right: 30rpx;
- border-bottom: 1px solid #E5E5E5;
- }
- .user-payment .payment .input input {
- height: 94rpx;
- text-align: left;
- font-size: 66rpx;
- margin-left: 30rpx;
- }
- .user-payment .payment .tip {
- margin: 25rpx 66rpx;
- }
- .user-payment .btn {
- background: linear-gradient(79deg, #f95f2f 0%, #ff2c3c 100%);
- margin: 70rpx 0 30rpx;
- }
- .user-payment .fast-payment-container {
- margin-top: 72rpx;
- }
- .user-payment .fast-payment-container .title {
- font-size: 38rpx;
- line-height: 53rpx;
- }
- .user-payment .fast-payment-container .fast-pay {
- margin-top: 40rpx;
- }
- .user-payment .fast-payment-container .fast-pay .fast-pay-item {
- position: relative;
- width: 214rpx;
- height: 150rpx;
- border-radius: 10rpx;
- margin-bottom: 16rpx;
- }
- .user-payment .fast-payment-container .fast-pay .fast-pay-item:not(:nth-of-type(3n)) {
- margin-right: 24rpx;
- }
- .user-payment .fast-payment-container .fast-pay .fast-pay-item .hot-recharge {
- position: absolute;
- padding: 2rpx 10rpx;
- height: 30rpx;
- background: linear-gradient(180deg, #FF2C3C 0%, #F95F2F 100%);
- border-radius: 0 20rpx 0 20rpx;
- font-size: 20rpx;
- top: 0;
- right: 0;
- }
- .user-payment .fast-payment-container .fast-pay .fast-pay-item .price {
- font-size: 42rpx;
- line-height: 50rpx;
- }
- .user-payment .fast-payment-container .fast-pay .fast-pay-item .preferential {
- line-height: 32rpx;
- }
- .pay-popup .content {
- padding: 40rpx 0;
- text-align: center;
- width: 560rpx;
- border-radius: 20rpx;
- }
- .pay-popup .img-icon {
- width: 112rpx;
- height: 112rpx;
- display: inline-block;
- }
- .pay-popup .btn {
- margin: 80rpx 60rpx 0;
- }
|