123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /* parents/pages/wish_detail/wish_detail.wxss */
- @import '../../../templates/loading/loading.wxss';
- .header {
- margin: 20rpx 30rpx 0 30rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .header-img {
- width: 108rpx;
- height: 108rpx;
- border-radius: 200rpx;
- margin-right: 30rpx;
- }
- .header-col {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .header-icon {
- width: 20rpx;
- height: 16rpx;
- }
- .header-text-black {
- font-size: 28rpx;
- color: #333;
- }
- .header-text-gray {
- font-size: 30rpx;
- color: #666;
- margin-top: 22rpx;
- }
- .header-text-gray text {
- margin: 0 16rpx;
- }
- .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-reset {
- padding: 0;
- }
- .li-title {
- padding: 30rpx 0rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- }
- .li-title-icon {
- width: 18rpx;
- height: 16rpx;
- }
- .li-title-text {
- margin: 0 16rpx;
- font-size: 30rpx;
- color: #FF80A8;
- }
- .li-items {
- padding-left: 30rpx;
- }
- .li-item {
- padding: 30rpx 30rpx 30rpx 0;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- border-top: solid 1rpx #e6e6e6;
- }
- .li-item:nth-of-type(1) {
- padding-top: 10rpx;
- border-top: none;
- }
- .li-item-img {
- width: 98rpx;
- height: 98rpx;
- border-radius: 200rpx;
- margin-right: 30rpx;
- }
- .li-item-col {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .li-item-text {
- font-size: 30rpx;
- color: #666;
- }
- .li-item-text-small {
- font-size: 28rpx;
- color: #666;
- margin-top: 8rpx;
- }
|