123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding-top: 84rpx;
- }
- .header {
- width: 100%;
- height: 84rpx;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999999;
- background-color: #fff;
- }
- .tab-list {
- width: 100%;
- height: 84rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 124rpx;
- box-sizing: border-box;
- border-top: 1px solid #F2F2F2;
- }
- .child {
- height: 84rpx;
- display: flex;
- align-items: center;
- font-size: 32rpx;
- color: #777777;
- position: relative;
- }
- .child.active::after {
- content: "";
- width: 122rpx;
- height: 8rpx;
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translate(-50%, 0);
- background-color: #F2501A;
- border-radius: 10rpx;
- }
- .child.active {
- color: #F2501A;
- font-weight: bold;
- }
- .list {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .list-label {
- width: 100%;
- padding: 20rpx 0 0;
- display: flex;
- align-items: center;
- font-weight: bold;
- font-size: 32rpx;
- }
- .list-label text {
- color: #F2501A;
- font-size: 30rpx;
- margin-left: 14rpx;
- }
- .item {
- width: 100;
- /* min-height: 148rpx; */
- display: flex;
- flex-direction: column;
- justify-content: center;
- background-color: #FFFFFF;
- border-radius: 16rpx;
- margin-top: 20rpx;
- }
- .item-top-content {
- width: 100%;
- min-height: 148rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- padding: 0 24rpx 0 44rpx;
- box-sizing: border-box;
- }
- .item-top {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 12rpx;
- }
- .item-top text:first-child {
- font-size: 30rpx;
- font-weight: bold;
- color: #202020;
- }
- .item-top text:last-child {
- font-size: 32rpx;
- font-weight: bold;
- }
- .numadd {
- color: #3E9CFB;
- font-size: 32rpx;
- font-weight: bold;
- }
- .numless {
- color: #FF0000;
- font-size: 32rpx;
- font-weight: bold;
- }
- .item-bottom {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .item-bottom text {
- color: #454545;
- font-size: 24rpx;
- }
- .more-row {
- display: flex;
- align-items: center;
- color: #A7A7A7;
- font-size: 24rpx;
- }
- .more-row image {
- width: 20rpx;
- margin-left: 12rpx;
- }
- .item-bottom-content {
- width: 100%;
- height: 74rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-top: 1px solid #F2F2F2;
- padding: 0 24rpx 0 44rpx;
- box-sizing: border-box;
- }
- .item-bottom-content text:first-child {
- color: #454545;
- font-size: 24rpx;
- }
- .item-bottom-content text:last-child {
- color: #777777;
- font-size: 24rpx;
- }
- .hide1 {
- display: none;
- }
- .show1 {
- display: flex;
- }
- .sanjiao {
- width: 20rpx;
- margin-left: 8rpx;
- -webkit-transition: .25s;
- }
- .sanjiaoSelect {
- width: 20rpx;
- margin-left: 8rpx;
- -webkit-transform: rotate(180deg);
- -moz-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg);
- -webkit-transition: .25s;
- -moz-transition: .25s;
- -ms-transition: .25s;
- -o-transition: .25s;
- -webkit-transition: .25s;
- }
|