discounts.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .c-list {
  12. font-size: 26rpx;
  13. color: #606266;
  14. background: #fff;
  15. }
  16. .c-list .title {
  17. color: #333333;
  18. font-size: 32rpx;
  19. font-weight: bold;
  20. }
  21. .c-list .c-row {
  22. display: flex;
  23. align-items: center;
  24. padding: 20rpx 30rpx;
  25. position: relative;
  26. }
  27. .c-list .tit {
  28. width: 140rpx;
  29. }
  30. .c-list .con {
  31. flex: 1;
  32. color: #303133;
  33. }
  34. .c-list .con .selected-text {
  35. margin-right: 10rpx;
  36. }
  37. .c-list .reding {
  38. color: #FF0815 !important;
  39. }
  40. .c-list .bz-list {
  41. height: 40rpx;
  42. font-size: 26rpx;
  43. color: #303133;
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. white-space: nowrap;
  47. }
  48. .c-list .bz-list text {
  49. display: inline-block;
  50. margin-right: 30rpx;
  51. overflow: hidden;
  52. text-overflow: ellipsis;
  53. white-space: nowrap;
  54. width: 100%;
  55. }
  56. .c-list .copy-btn {
  57. background-color: #F3F3F2;
  58. padding: 8rpx 20rpx;
  59. border-radius: 10rpx;
  60. color: #040406;
  61. }
  62. .c-list .red {
  63. color: #fb6d24;
  64. }
  65. /* 商品详情中限制图片大小 */
  66. .rich-img {
  67. width: 100% !important;
  68. height: auto;
  69. }