index.wxss 823 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* components/detail-navi-card/index.wxss */
  2. .detail-navi {
  3. width: 690rpx;
  4. height: 120rpx;
  5. background: rgba(255, 255, 255, 1);
  6. box-shadow: 0px 4rpx 16rpx 0px rgba(140, 160, 181, 0.2);
  7. border-radius: 12rpx;
  8. display: flex;
  9. align-items: center;
  10. padding:0 40rpx;
  11. justify-content: space-between;
  12. box-sizing: border-box;
  13. margin-bottom: 30rpx;
  14. }
  15. .detail-left {
  16. display: flex;
  17. flex-direction: row;
  18. align-items: center;
  19. }
  20. .detail-icon {
  21. width: 48rpx;
  22. height: 48rpx;
  23. }
  24. .detail-content {
  25. display: flex;
  26. flex-direction: column;
  27. margin-left: 38rpx;
  28. }
  29. .detail-navi-name {
  30. font-size:32rpx;
  31. font-weight:600;
  32. color:rgba(69,82,107,1);
  33. line-height:44rpx;
  34. }
  35. .detail-navi-desc {
  36. font-size:24rpx;
  37. color:rgba(140,152,174,1);
  38. line-height:34rpx;
  39. }
  40. .navi-button {
  41. width:32rpx;
  42. height:24rpx;
  43. }