print.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. @media print {
  2. body{
  3. background: #ffffff;
  4. overflow-y: hidden;
  5. }
  6. #Print{
  7. overflow-y: hidden
  8. }
  9. .scaletitle{
  10. display: block;
  11. }
  12. .info_left{
  13. display: block;
  14. }
  15. .contentList{
  16. max-width: 100%;
  17. border-bottom: 1PX solid #F3F3F3;
  18. margin-bottom: 6px;
  19. }
  20. .item-list{
  21. padding: 0 21px;
  22. }
  23. .item-title,.item-titles{
  24. font-size: 14px;
  25. font-weight: 400;
  26. color: #333333;
  27. line-height: 20px;
  28. margin-top: 14px;
  29. }
  30. .item-content{
  31. margin: 10px 0;
  32. display: inline-block;
  33. }
  34. .radio {
  35. display: flex;
  36. margin: 5px;
  37. margin-right: 25px;
  38. float: left;
  39. }
  40. label{
  41. font-weight: 400;
  42. color: #666666;
  43. line-height: 20px;
  44. }
  45. label> input{
  46. margin-right: 6px;
  47. }
  48. .num{
  49. margin-left: 10px;
  50. }
  51. .recommend{
  52. width: 18px;
  53. height: 18px;
  54. }
  55. .result{
  56. background: #EDFAFF;
  57. border-radius: 10px;
  58. font-size: 14px;
  59. font-weight: 500;
  60. color: #333333;
  61. display: none;
  62. margin: 0;
  63. text-align: center;
  64. }
  65. .result_box{
  66. margin:0;
  67. display: inline-block;
  68. }
  69. .result_left{
  70. display: flex;
  71. }
  72. .result_left>span{
  73. display: block;
  74. width: 250px;
  75. }
  76. .hel{
  77. width: 21px;
  78. height: 21px;
  79. background: #2C96E5;
  80. border-radius: 50%;
  81. color: #fff;
  82. font-size: 12px;
  83. vertical-align: middle;
  84. margin-right: 9px;
  85. float: left;
  86. }
  87. }