123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- /* 20190711 */
- .wrap {
- padding-bottom: 100rpx;
- }
- .details {
- padding: 30rpx;
- background-color: #fff;
- margin-bottom: 20rpx;
- }
- .tit {
- padding-bottom: 20rpx;
- }
- .content {
- color: #666;
- }
- /* timeline */
- .timeline {
- display: flex;
- flex-direction: column;
- position: relative;
- }
- .timeline-item {
- display: flex;
- flex-direction: row;
- position: relative;
- padding-bottom: 20rpx;
- box-sizing: border-box;
- overflow: hidden;
- }
- .timeline-item .timeline-item-keynode {
- width: 160rpx;
- flex-shrink: 0;
- box-sizing: border-box;
- padding-right: 20rpx;
- text-align: right;
- line-height: 65rpx;
- }
- .timeline-item .timeline-item-divider {
- flex-shrink: 0;
- position: relative;
- width: 30rpx;
- height: 30rpx;
- top: 6rpx;
- border-radius: 50%;
- background-color: #bbb;
- }
- .timeline-item-divider::before, .timeline-item-divider::after {
- position: absolute;
- left: 15rpx;
- width: 1rpx;
- height: 100vh;
- content: '';
- background: inherit;
- }
- .timeline-item-divider::before {
- bottom: 100%;
- }
- .timeline-item-divider::after {
- top: 100%;
- }
- .timeline .timeline-item:last-child .timeline-item-divider:after {
- display: none;
- }
- .timeline .timeline-item:first-child .timeline-item-divider:before {
- display: none;
- }
- .timeline-item .timeline-item-content {
- padding-left: 20rpx;
- }
- .timeline-last-item .bottom-border::after {
- display: none;
- }
- .timeline-item-content .datetime {
- color: #ccc;
- }
- .goods {
- background-color: #fff;
- }
- .goods-item {
- position: relative;
- display: flex;
- padding: 30rpx;
- }
- .goods-item-r {
- flex: 1;
- margin-left: 20rpx;
- width: 0;
- }
- .show-img {
- width: 120rpx;
- height: 120rpx;
- }
- .name {
- font-size: 26rpx;
- color: #444;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .mount {
- font-size: 22rpx;
- color: #aaa;
- margin-top: 8rpx;
- }
- .goods-item .price {
- display: block;
- font-size: 28rpx;
- color: #444;
- margin-top: 14rpx;
- }
- .img-list {
- display: flex;
- }
- .img-list .img {
- width: 200rpx;
- height: 200rpx;
- margin-right: 30rpx;
- }
- .ll {
- color: #666;
- line-height: 2;
- }
- .ll text {
- color: #333;
- }
- .btn {
- display: flex;
- line-height: 98rpx;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .btn-item {
- flex: 1;
- text-align: center;
- color: #fff;
- }
- .btn-item.red {
- background: linear-gradient(270deg, #f9c706 0%, #feb600 100%);
- }
- .btn-item.bule {
- background: linear-gradient(90deg, #ff5041 0%, #ff695c 100%);
- }
|