product.less 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. @import "../../../src/themeColor.less";
  2. .right_nav {
  3. position: fixed;
  4. top: 20vh;
  5. right: 10px;
  6. width:120px;
  7. background:rgba(255,255,255,1);
  8. box-shadow:0 0 15px 0 rgba(153,153,153,0.15);
  9. .nav_title{
  10. height:38px;
  11. line-height: 38px;
  12. width: 100%;
  13. display: inline-block;
  14. background:rgba(236,245,255,1);
  15. text-align:center;
  16. color: #08A9B7;
  17. font-size: 14px;
  18. font-weight: 700;
  19. }
  20. .nav_item{
  21. color: #999;
  22. font-size: 12px;
  23. font-weight: 700;
  24. padding: 9px 35px 9px 26px;
  25. width:111px;
  26. height:30px;
  27. line-height: 12px;
  28. background:#fff;
  29. border-radius:15px 0 0 15px;
  30. display: block;
  31. margin: 10px 0 10px 9px;
  32. }
  33. .nav_item:hover,.nav_item.nav_sel{
  34. color: #333;
  35. background:rgba(65,157,253,.1);
  36. }
  37. }
  38. .goods_detail_body{
  39. border: 1px solid #F2F2F2;
  40. padding: 15px;
  41. }
  42. .goods_info{
  43. position: relative;
  44. .virtual_goods_flag{
  45. position: absolute;
  46. left: 1px;
  47. top: 1px;
  48. font-size: 12px;
  49. color: #fff;
  50. background: linear-gradient(90deg, @theme-color 0%, @theme-headerColor 100%);
  51. border-radius: 3px 0 3px 0;
  52. padding: 0 3px;
  53. }
  54. .goods_detail{
  55. height: 80px;
  56. margin-left: 10px;
  57. flex: 1;
  58. }
  59. .goods_img{
  60. width:80px;
  61. height:80px;
  62. background:rgba(248,248,248,1);
  63. border:1px solid rgba(226,229,246,1);
  64. border-radius:3px;
  65. overflow: hidden;
  66. display: inline-block;
  67. }
  68. .goods_name{
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. display: -webkit-box;
  72. -webkit-line-clamp: 2;
  73. /*! autoprefixer: off */
  74. -webkit-box-orient: vertical;
  75. word-break: break-word;
  76. color:#333;
  77. font-size: 14px;
  78. line-height: 17px;
  79. text-align: left;
  80. height: 34px;
  81. flex-shrink: 0;
  82. }
  83. .goods_brief{
  84. color: #666;
  85. font-size: 12px;
  86. overflow: hidden;
  87. text-overflow: ellipsis;
  88. white-space: nowrap;
  89. text-align: left;
  90. width: 100%;
  91. display: inline-block;
  92. }
  93. }
  94. .goods_import_title{
  95. font-size: 18px;
  96. font-family: PingFangSC-Semibold, PingFang SC;
  97. font-weight: 600;
  98. color: #404040;
  99. margin-left: 10px;
  100. margin-top: 10px;
  101. margin-bottom: 35px;
  102. }
  103. .goods_import_con{
  104. width: 100%;
  105. padding-left: 15px;
  106. .item{
  107. cursor: pointer;
  108. width: 466px;
  109. height: 150px;
  110. background: #FFF;
  111. box-shadow: 0 0 3px 0 rgba(0,0,0,0.09);
  112. border-radius: 4px;
  113. padding: 25px 20px;
  114. box-sizing: border-box;
  115. margin-left: 100px;
  116. &:first-child{
  117. margin-left: 0;
  118. }
  119. .icon{
  120. width: 100px;
  121. height: 100px;
  122. }
  123. .right_con{
  124. margin-left: 20px;
  125. flex: 1;
  126. height: 100%;
  127. .top{
  128. .title{
  129. font-size: 15px;
  130. line-height: 27px;
  131. font-family: PingFangSC-Medium, PingFang SC;
  132. font-weight: 500;
  133. color: #404040;
  134. }
  135. .desc{
  136. font-size: 13px;
  137. font-family: PingFangSC-Regular, PingFang SC;
  138. font-weight: 400;
  139. color: #666;
  140. margin-top: 1px;
  141. }
  142. }
  143. .import_btn{
  144. width: 86px;
  145. height: 28px;
  146. line-height: 28px;
  147. background: @theme-color;
  148. border-radius: 4px;
  149. font-size: 14px;
  150. font-family: PingFangSC-Regular, PingFang SC;
  151. font-weight: 400;
  152. color: #FFF;
  153. text-align: center;
  154. }
  155. }
  156. }
  157. }