network.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. page {
  2. background-color: #fff;
  3. }
  4. .top-bar{
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. right: 0;
  9. background-color: #fff;
  10. z-index: 5;
  11. }
  12. .tab-nav {
  13. height: 45rpx;
  14. line-height: 45rpx;
  15. font-size: 32rpx;
  16. color: #666666;
  17. padding: 30rpx 30rpx 30rpx;
  18. }
  19. .tab-nav-item {
  20. margin-right: 50rpx;
  21. }
  22. .tab-nav-item-active {
  23. font-size: 32rpx;
  24. font-weight: bold;
  25. color: #DB2A2A;
  26. position: relative;
  27. }
  28. .tab-nav-item-active::after {
  29. content: '';
  30. position: absolute;
  31. bottom: -10rpx;
  32. left: 50%;
  33. transform: translateX(-50%);
  34. width: 50%;
  35. height: 6rpx;
  36. background-color: #DB2A2A;
  37. }
  38. /* 搜索 */
  39. .search {
  40. background-color: #fff;
  41. z-index: 3;
  42. width: 100%;
  43. height: 100rpx;
  44. padding: 10rpx 30rpx 30rpx;
  45. box-sizing: border-box;
  46. }
  47. .search-bar {
  48. height: 60rpx;
  49. background: #F7F7F7;
  50. border-radius: 30rpx;
  51. padding: 0 26rpx 0 32rpx;
  52. }
  53. .search-bar .ssico {
  54. width: 31rpx;
  55. height: 31rpx;
  56. margin-right: 7rpx;
  57. }
  58. .search-bar.ipt {
  59. font-size: 28rpx;
  60. color: #32363F;
  61. }
  62. .search-bar .placeholder {
  63. color: #999;
  64. }
  65. /* 分类 */
  66. .rec-association-2 {
  67. padding: 0rpx 30rpx 0;
  68. opacity: 1;
  69. width: 100%;
  70. box-sizing: border-box;
  71. height: 80rpx;
  72. z-index: 5;
  73. background: #fff;
  74. }
  75. .rec-association-nav-2{
  76. position: relative;
  77. }
  78. .rec-association-nav-m-2{
  79. position: absolute;
  80. right: 0;
  81. top: 0;
  82. bottom:0;
  83. width: 55rpx;
  84. background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
  85. /* background: #000; */
  86. opacity: 1;
  87. }
  88. .rec-association-scroll-2 {
  89. white-space: nowrap;
  90. overflow: hidden;
  91. height: 80rpx;
  92. }
  93. .rec-association-scroll-2 ::-webkit-scrollbar {
  94. width: 0;
  95. height: 0;
  96. color: transparent;
  97. display: none;
  98. }
  99. .rec-association-scroll-item-2{
  100. /* max-width: 128rpx; */
  101. overflow: hidden;
  102. font-size: 28rpx;
  103. display: inline-block;
  104. margin-right:20rpx;
  105. color: #666;
  106. padding: 8rpx 30rpx;
  107. border-radius: 50rpx 50rpx 50rpx 50rpx;
  108. height: 40rpx;
  109. line-height: 40rpx;
  110. border: 1rpx solid #E8E8E8;
  111. }
  112. .rec-association-scroll-item-2-active{
  113. color: #333333;
  114. position: relative;
  115. background: #E8E8E8;
  116. border: 1rpx solid #E8E8E8;
  117. }
  118. .rec-association-nav-icon-2{
  119. width: 38rpx;
  120. height: 32rpx;
  121. margin-left: 40rpx;
  122. margin-top: 4rpx;
  123. }
  124. .add{
  125. height: 80rpx;
  126. line-height: 60rpx;
  127. font-size: 28rpx;
  128. color: #333333;
  129. }
  130. /* 数据 */
  131. .card-item{
  132. padding: 30rpx;
  133. }
  134. .header{
  135. width: 120rpx;
  136. height: 120rpx;
  137. border-radius: 100%;
  138. margin-right: 15rpx;
  139. }
  140. .name{
  141. line-height: 47rpx;
  142. font-size: 32rpx;
  143. font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  144. font-weight: bold;
  145. color: #333333;
  146. margin-top: 6rpx;
  147. }
  148. .name text{
  149. line-height: 29rpx;
  150. font-size: 20rpx;
  151. font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  152. font-weight: 400;
  153. color: #999999;
  154. }
  155. .company{
  156. line-height: 36rpx;
  157. font-size: 24rpx;
  158. font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  159. font-weight: 400;
  160. color: #999999;
  161. }
  162. .label{
  163. padding: 0 10rpx;
  164. height: 36rpx;
  165. border-radius: 5rpx 5rpx 5rpx 5rpx;
  166. opacity: 1;
  167. border: 2rpx solid #4C8EF1;
  168. font-size: 20rpx;
  169. font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  170. font-weight: 400;
  171. color: #4C8EF1;
  172. line-height: 36rpx;
  173. text-align: center;
  174. display: inline-block;
  175. margin-top: 6rpx;
  176. }
  177. .card-btn{
  178. width: 125rpx;
  179. height: 50rpx;
  180. border-radius: 50rpx 50rpx 50rpx 50rpx;
  181. font-size: 22rpx;
  182. font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  183. font-weight: 400;
  184. line-height: 46rpx;
  185. text-align: center;
  186. margin-left: 10rpx;
  187. box-sizing: border-box;
  188. }
  189. .btn1{
  190. background: #FFDCDC;
  191. color: #DB2A2A;
  192. }
  193. .btn2{
  194. background: #F0F0F0;
  195. color: #333333;
  196. }
  197. .btn3{
  198. border: 2rpx solid #999999;
  199. color: #333333;
  200. }
  201. /* 更多操作 */
  202. .more{
  203. position: relative;
  204. margin-left: 10rpx;
  205. padding: 30rpx 0;
  206. }
  207. .dian view{
  208. width: 8rpx;
  209. height: 8rpx;
  210. background: #333333;
  211. opacity: 1;
  212. border-radius: 100%;
  213. margin-right: 8rpx;
  214. }
  215. .more-content-position{
  216. position: absolute;
  217. bottom: -190rpx;
  218. right: -12rpx;
  219. z-index: 110;
  220. }
  221. .more-content{
  222. width: 230rpx;
  223. background: #4C4C4C;
  224. box-shadow: 0rpx 6rpx 20rpx 1rpx rgba(168,168,168,0.16);
  225. border-radius: 6rpx 6rpx 6rpx 6rpx;
  226. opacity: 1;
  227. border: 1px solid #F2F2F2;
  228. position: relative;
  229. padding: 30rpx;
  230. box-sizing: border-box;
  231. }
  232. .more-content::before{
  233. position: absolute;
  234. top: -42rpx;
  235. right: 10rpx;
  236. content: '';
  237. width: 0px;
  238. height: 0px;
  239. border-left: 28rpx solid transparent;
  240. border-right: 28rpx solid transparent;
  241. border-top: 28rpx solid transparent;
  242. border-bottom: 28rpx solid #4C4C4C;
  243. }
  244. .more-content-item{
  245. height: 42rpx;
  246. font-size: 30rpx;
  247. font-family: PingFang SC-Regular, PingFang SC;
  248. font-weight: 400;
  249. color: #FFFFFF;
  250. line-height: 42rpx;
  251. border-bottom: 1px solid #676363;
  252. padding-bottom: 20rpx;
  253. margin-bottom: 20rpx;
  254. }
  255. .more-content-item:last-child{
  256. border-bottom: none;
  257. padding-bottom: 0rpx;
  258. margin-bottom: 0rpx;
  259. }
  260. .ceng{
  261. position: fixed;
  262. z-index: 99;
  263. top: 0;
  264. left: 0;
  265. right: 0;
  266. bottom: 0;
  267. }
  268. /* 创建名片 */
  269. .option{
  270. position: fixed;
  271. bottom: 60rpx;
  272. left: 0;
  273. right: 0;
  274. }
  275. .option-btn{
  276. width: 325rpx;
  277. height: 80rpx;
  278. line-height: 80rpx;
  279. background: #DB2A2A;
  280. border-radius: 50rpx 50rpx 50rpx 50rpx;
  281. opacity: 1;
  282. font-size: 28rpx;
  283. color: #FFFFFF;
  284. justify-content: center;
  285. margin-right: 30rpx;
  286. }
  287. .option-btn:last-child{
  288. margin-right: 0rpx;
  289. }