123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- /* parents/pages/wish/wish.wxss */
- @import '../../../templates/nodata/nodata.wxss';
- @import '../../../templates/loading/loading.wxss';
- .li-progress {
- width: 100%;
- margin-top: 40rpx;
- }
- .li-row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- margin-top: 10rpx;
- }
- .li-row-center {
- justify-content: center;
- }
- .li-icon-one {
- width: 64rpx;
- height: 68rpx;
- display: flex;
- justify-content: center;
- align-items: flex-start;
- position: relative;
- animation: snake-slow 2s infinite ease-in-out;
- }
- .li-icon-one image {
- position: absolute;
- bottom: 20rpx;
- left: 0;
- width: 64rpx;
- height: 68rpx;
- }
- .li-icon-one text {
- margin-top: -5rpx;
- font-size: 24rpx;
- color: #fff;
- z-index: 9;
- }
- .li-icon-two {
- width: 30rpx;
- height: 18rpx;
- }
- .li-circle-blue {
- width: 14rpx;
- height: 14rpx;
- border-radius: 100rpx;
- border: 8rpx solid rgba(0,183,255,1);
- background: #fff;
- z-index: 1;
- }
- .li-circle-red {
- width: 14rpx;
- height: 14rpx;
- border-radius: 100rpx;
- border: 8rpx solid rgba(255,128,168,1);
- background: #fff;
- z-index: 1;
- }
- .li-line {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- left: 0;
- width: 100%;
- height: 2rpx;
- background: rgba(0,183,255,1);
- }
- .li-text-red {
- font-size: 26rpx;
- color: #FF80A8;
- }
- .li-text-blue {
- font-size: 26rpx;
- color: #00B7FF;
- }
- .li-footer {
- padding: 30rpx 30rpx 0 30rpx;
- margin-top: 30rpx;
- border-top: solid 1rpx #e6e6e6;
- text-align: center;
- }
- .li-footer-text {
- background: linear-gradient(90deg,rgba(81,206,255,1),rgba(0,183,255,1));
- border-radius: 200rpx;
- font-size: 28rpx;
- color: #fff;
- padding: 16rpx 30rpx;
- }
- .li-footer-btn {
- background: linear-gradient(90deg,rgba(81,206,255,1),rgba(0,183,255,1));
- border-radius: 200rpx;
- font-size: 28rpx;
- color: #fff;
- display: inline-block;
- padding: 6rpx 50rpx;
- }
- .li-items {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- align-items: flex-start;
- padding: 1rpx;
- }
- .li-item {
- width: 30%;
- margin: 40rpx 0;
- text-align: center;
- }
- .li-item:nth-of-type(1),
- .li-item:nth-of-type(2),
- .li-item:nth-of-type(3) {
- margin-top: 0;
- }
- .li-item-image {
- width: 198rpx;
- height: 232rpx;
- box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(204,204,204,1);
- border-radius: 6rpx;
- }
- .li-item-text {
- max-width: 198rpx;
- font-size: 32rpx;
- color: #666;
- margin-top: 20rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .li-item-text-red {
- font-size: 32rpx;
- color: #FF542B;
- margin-top: 10rpx;
- max-width: 198rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .li-item-btn-red {
- display: inline-block;
- border-radius: 100px;
- padding: 4rpx 20rpx 8rpx 20rpx;
- font-size: 28rpx;
- color: #FF542B;
- border: 1rpx solid rgba(255,84,43,1);
- margin-top: 20rpx;
- cursor: pointer;
- }
- .li-item-icon {
- width: 18rpx;
- height: 28rpx;
- margin-right: 10rpx;
- vertical-align: middle;
- }
- .li-item-text-red text {
- vertical-align: middle;
- }
- .margin10 {
- margin: 0 10rpx;
- }
- .modal-container {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.5);
- z-index: 999;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .modal-wrapper {
- margin: 0 92rpx;
- background: rgba(255,255,255,1);
- border-radius: 18rpx;
- border: 4rpx solid rgba(0,183,255,1);
- padding: 40rpx;
- position: relative;
- }
- .modal-icon {
- position: absolute;
- top: 0;
- left: 50%;
- transform: translate(-50%, -75%);
- width: 466rpx;
- height: 72rpx;
- }
- .modal-context {
- font-size: 32rpx;
- color: #666;
- text-align: center;
- line-height: 52rpx;
- }
|