123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- html,
- body {
- height: 100%;
- font-family: PingFangSC-Regular;
- color: #333333;
- background: #ffffff;
- overflow-x: hidden;
- }
- .tab {
- width: 100%;
- box-sizing: border-box;
- padding: 28rpx 120rpx 0;
- background: #ffffff;
- font-size: 32rpx;
- color: #666666;
- text-align: center;
- position: fixed;
- top: 0;
- z-index: 999;
- }
- .tab > view:first-child {
- width: 100%;
- display: flex;
- justify-content: space-between;
- }
- .tab > view:first-child > view {
- padding: 0 12rpx 28rpx;
- }
- .tab .selected {
- color: #3296fb;
- }
- .tab .blueLine {
- width: 120rpx;
- height: 4rpx;
- border-radius: 2rpx;
- background: #3296fb;
- position: absolute;
- transition: all 1s;
- }
- .tips {
- width: 100%;
- background: #F1F8FF;
- box-sizing: border-box;
- padding-left: 30rpx;
- line-height: 100rpx;
- font-size: 24rpx;
- color: #666666;
- display: flex;
- }
- .tips .red {
- color: #FF5E5E;
- }
- .card {
- width: 200%;
- height: 100%;
- overflow-x: hidden;
- display: flex;
- box-sizing: border-box;
- padding-top: 100rpx;
- }
- .col {
- width: 750rpx;
- display: flex;
- justify-content: space-between;
- }
- .contentNull{
- width: 100%;
- height: 100%;
- position: relative;
- }
- .contentNull>view{
- position: absolute;
- top: 332rpx;
- left: 222rpx;
- display:flex;
- flex-direction:column;
- }
- .contentNull image{
- width: 308rpx;
- height: 308rpx;
- }
- .contentNull>view>text{
- color: #9197A3;
- font-size: 28rpx;
- text-align: center;
- }
- .cItem {
- padding: 30rpx 30rpx 0;
- }
- .cItem > .cardItem {
- width: 690rpx;
- height: 200rpx;
- margin-bottom: 28rpx;
- display: flex;
- }
- .cItem > .cardItem > .left {
- width: 220rpx;
- height: 200rpx;
- background-image: linear-gradient(-179deg, #21bfd5 3%, #2c8fd8 100%);
- color: #ffffff;
- display: flex;
- flex-direction: column;
- align-items: center;
- border-bottom-left-radius: 4rpx;
- border-top-left-radius: 4rpx;
- }
- .unuse > .cardItem > .left {
- background-image: linear-gradient(-180deg, #d2d2d2 0%, #b4b4b4 100%);
- }
- .cItem > .cardItem > .left > view {
- margin-top: 34rpx;
- }
- .cItem > .cardItem > .left > view > text:first-child {
- font-family: DINAlternate-Bold;
- font-size: 17px;
- }
- .cItem > .cardItem > .left > view > text:last-child {
- font-family: DINAlternate-Bold;
- font-size: 80rpx;
- }
- .cItem > .cardItem > .left > text {
- font-size: 20rpx;
- }
- .cItem > .cardItem > .right {
- flex: 1;
- box-sizing: border-box;
- padding: 30rpx 32rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-shadow: 2rpx 4rpx 16rpx #dedede;
- border-bottom-right-radius: 4rpx;
- border-top-right-radius: 4rpx;
- }
- .cItem > .cardItem > .right image {
- width: 48rpx;
- height: 48rpx;
- }
- .cItem > .cardItem > .right > view {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- font-family: SFProText-Regular;
- font-size: 24rpx;
- color: #999999;
- }
- .cItem > .cardItem > .right > view > text {
- margin-bottom: 10rpx;
- }
- .cItem > .cardItem > .right > view > text:first-child {
- font-size: 30rpx;
- color: #666666;
- }
- .btnBox,
- .btnBox-X {
- width: 100%;
- height: 100rpx;
- background: #ffffff;
- box-sizing: border-box;
- padding: 0 32rpx;
- position: fixed;
- bottom: 0;
- z-index: 100;
- }
- .btnBox-X {
- height: 168rpx;
- }
- .btn {
- height: 90rpx;
- background: #3296fb;
- border-radius: 45rpx;
- color: #ffffff;
- font-family: PingFangSC-Medium;
- font-size: 32rpx;
- text-align: center;
- line-height: 90rpx;
- }
- .empty {
- height: 90rpx;
- }
- .empty-X {
- height: 158rpx;
- }
|