articleshare.wxss 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. /* share/pages/articleshare/articleshare.wxss */
  2. page{
  3. display: block;
  4. width: 100%;
  5. height: 100%;
  6. overflow: auto;
  7. }
  8. .topbox{
  9. display: block;
  10. width: 100%;
  11. background-color: #ffffff;
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. z-index: 9999999;
  16. }
  17. .leftindexbox{
  18. position: absolute;
  19. left: 8px;
  20. width: 70px;
  21. border: 1px solid #d1cfcf;
  22. padding: 4px 0;
  23. height: 28px;
  24. border-radius: 18px;
  25. box-sizing: border-box;
  26. }
  27. .leftindexbox .leftgoto{
  28. display: block;
  29. width: 8px;
  30. height: 14px;
  31. float: left;
  32. margin-left: 11px;
  33. transform: rotateY(180deg);
  34. position: relative;
  35. top: 2px;
  36. z-index: 9;
  37. }
  38. .gotoindex{
  39. display: block;
  40. width: 16px;
  41. height: 16px;
  42. float: right;
  43. position: relative;
  44. right: 10px;
  45. top: 1px;
  46. }
  47. .leftindexbox text{
  48. position: absolute;
  49. height: 14px;
  50. width: 1px;
  51. left: 30px;
  52. top: 6px;
  53. background-color: #d1cfcf;
  54. }
  55. .sharenumBox{
  56. position: fixed;
  57. display: block;
  58. width: 50%;
  59. height: 98rpx;
  60. bottom: 0;
  61. right: 0%;
  62. background-color: transparent;
  63. z-index: 10;
  64. }
  65. .sharenumBox button{
  66. display: block;
  67. width: 100%;
  68. height: 98rpx;
  69. color: transparent;
  70. line-height: 98rpx;
  71. background-color: transparent;
  72. }
  73. .viewBox{
  74. display: block;
  75. width:750px;
  76. height:100%;
  77. position: fixed;
  78. top: 0;
  79. left:0;
  80. z-index: 9999;
  81. background: transparent;
  82. }
  83. .viewBox button{
  84. display: block;
  85. width: 100%;
  86. height:100%;
  87. color: transparent;
  88. line-height: 2000rpx;
  89. background-color: transparent;
  90. }
  91. .userLogin{
  92. display: block;
  93. width:750px;
  94. height:100%;
  95. color: transparent;
  96. background: transparent;
  97. line-height: 2000rpx;
  98. }
  99. .articleshareshow{
  100. position: fixed;
  101. display: block;
  102. width: 25%;
  103. height: 98rpx;
  104. bottom: 0;
  105. right: 25%;
  106. background-color: transparent;
  107. z-index: 10;
  108. }
  109. .bannerImg{
  110. display: block;
  111. width: 100%;
  112. }
  113. .contentBox{
  114. background-color: #ffffff;
  115. border-radius: 20rpx;
  116. padding: 32rpx 10rpx 0;
  117. position: relative;
  118. z-index: 2;
  119. padding-bottom: 140rpx;
  120. }
  121. .contentBox .title{
  122. font-size: 40rpx;
  123. line-height: 64rpx;
  124. color: #384855;
  125. margin-bottom: 28rpx;
  126. text-align: center;
  127. font-weight: 600;
  128. }
  129. .articlebox{
  130. display: block;
  131. font-family: PingFangSC-Medium,Source Han Sans CN Medium;
  132. font-size: 28rpx;
  133. line-height: 42rpx;
  134. color: #384855;
  135. padding: 0rpx 20rpx 24rpx;
  136. }
  137. .unloginbox{
  138. min-height: 400rpx;
  139. max-height: 900rpx;
  140. overflow: hidden;
  141. position: relative;
  142. }
  143. .articlebox image{
  144. max-width: 100%;
  145. margin:12rpx auto;
  146. }
  147. .unloginlayer{
  148. display: block;
  149. position: fixed;
  150. bottom: 0;
  151. left: 0;
  152. width: 100%;
  153. height: 50%;
  154. background-image: linear-gradient(180deg, rgba(255,255,255,0.00) 0%, #FFFFFF 69%);
  155. z-index: 8;
  156. }
  157. .articlebtn{
  158. display: block;
  159. width: 312rpx;
  160. height: 64rpx;
  161. background: #FFFFFF;
  162. border: 1px solid #384855;
  163. border-radius: 36rpx;
  164. position: absolute;
  165. bottom: 200rpx;
  166. left: 50%;
  167. margin-left: -156rpx;
  168. text-align: center;
  169. line-height: 64rpx;
  170. font-size: 24rpx;
  171. color: #384855;
  172. }
  173. .articleview{
  174. width: auto;
  175. height: 64rpx;
  176. line-height: 64rpx;
  177. }
  178. .articleview image{
  179. width: 32rpx;
  180. height: 32rpx;
  181. position: relative;
  182. top: 16rpx;
  183. margin-left: 8rpx;
  184. margin-top: 0;
  185. }
  186. .footer{
  187. display: block;
  188. width: 100%;
  189. height: 98rpx;
  190. position: fixed;
  191. left: 0;
  192. bottom: 0;
  193. z-index: 11;
  194. background-color: #FFFFFF;
  195. box-shadow: 0 -4rpx 12rpx 0 rgba(0,145,255,0.15);
  196. overflow:hidden;
  197. }
  198. .sharebox{
  199. width: 100%;
  200. height: 100%;
  201. }
  202. .sharebox{
  203. height:100%;
  204. overflow: hidden;
  205. background-color: #249EFB;
  206. font-size: 32rpx;
  207. color: #fff;
  208. border: unset;
  209. }
  210. .tagBox{
  211. margin: 20rpx 0 32rpx;
  212. }
  213. .companybox image{
  214. display: block;
  215. width: 48rpx;
  216. height: 48rpx;
  217. border-radius: 50%;
  218. margin-right:24rpx;
  219. }
  220. /* css */
  221. .contactSales {
  222. position: fixed;
  223. width: 100%;
  224. height: 140rpx;
  225. background-color: #fff;
  226. bottom: 0rpx;
  227. left: 0rpx;
  228. z-index: 9999;
  229. display: flex;
  230. align-items: center;
  231. box-sizing: border-box;
  232. padding: 20rpx 30rpx;
  233. border-top: 1rpx solid #CCCCCC;
  234. }
  235. .contactSales-left {
  236. flex:2;
  237. display: flex;
  238. align-items: center;
  239. }
  240. .left-avatar {
  241. width: 80rpx;
  242. height: 80rpx;
  243. border-radius: 50%;
  244. }
  245. .left-msg {
  246. display: flex;
  247. flex-direction: column;
  248. box-sizing: border-box;
  249. padding-left: 20rpx;
  250. }
  251. .left-name {
  252. display: flex;
  253. align-items: center;
  254. }
  255. .nameCard {
  256. width: 40rpx;
  257. height: 40rpx;
  258. margin-left: 10rpx;
  259. }
  260. .left-text {
  261. font-size: 24rpx;
  262. color: #999999;
  263. }
  264. .contactSales-right {
  265. flex:1;
  266. display: flex;
  267. flex-direction: row;
  268. justify-content: space-between;
  269. }
  270. .rightmobile {
  271. width: 40rpx;
  272. height: 40rpx;
  273. }
  274. .right-box1 {
  275. width: 100rpx;
  276. display: flex;
  277. flex-direction: column;
  278. align-items: center;
  279. }
  280. .right-box1 > text {
  281. font-size: 24rpx;
  282. margin-top: 10rpx;
  283. }
  284. /* css */
  285. /* css */
  286. .updateBox {
  287. width: 100%;
  288. height: auto;
  289. overflow: hidden;
  290. padding: 0 20rpx 30rpx;
  291. background-color: #fff;
  292. display: flex;
  293. align-items: center;
  294. }
  295. .u-img-box {
  296. width: 94rpx;
  297. height: 94rpx;
  298. border-radius: 50%;
  299. overflow: hidden;
  300. }
  301. .u-img-box image {
  302. width: 100%;
  303. height: 100%;
  304. }
  305. .u-company {
  306. overflow: hidden;
  307. box-sizing: border-box;
  308. padding: 0rpx 20rpx;
  309. }
  310. .u-company-name {
  311. font-size: 32rpx;
  312. color: #333333;
  313. }
  314. .u-company-address {
  315. color: #999999;
  316. font-size: 24rpx;
  317. width: 100%;
  318. display: flex;
  319. }
  320. .address-text {
  321. flex:1;
  322. }
  323. .address-ellipsis {
  324. overflow: hidden;
  325. white-space: nowrap;
  326. text-overflow: ellipsis;
  327. }
  328. .address-show {
  329. color: #28A1FF;
  330. }
  331. .u-button {
  332. width: 150rpx;
  333. height: 60rpx;
  334. background-color: #28A1FF;
  335. color: #fff;
  336. font-size: 28rpx;
  337. font-style: normal;
  338. line-height: 60rpx !important;
  339. }
  340. .flex-sub {
  341. flex:1;
  342. }
  343. /* css */
  344. .line {
  345. width: 100vw;
  346. height: 20rpx;
  347. background-color: #f6f6f6;
  348. margin-bottom: 20rpx;
  349. position: relative;
  350. left: -30rpx;
  351. }
  352. .title-tips {
  353. border-left: 10rpx solid #333333;
  354. height: 35rpx;
  355. line-height: 35rpx;
  356. box-sizing: border-box;
  357. padding-left: 10rpx;
  358. font-size: 32rpx;
  359. color: #333333;
  360. font-weight: bold;
  361. margin-bottom: 20rpx;
  362. }
  363. .titleStyle {
  364. color: #333333;
  365. font-weight: bold;
  366. width: 80%;
  367. }
  368. .clientBox {
  369. position: fixed;
  370. bottom: 200rpx;
  371. right: 30rpx;
  372. z-index: 999;
  373. width: 112rpx;
  374. height: 112rpx;
  375. transition: 1s;
  376. }
  377. .clientBox-avatar {
  378. width: 110rpx;
  379. height: 110rpx;
  380. border-radius: 50%;
  381. border: 5rpx solid #249EFB;
  382. overflow: hidden;
  383. }
  384. .clientBox-avatar>image {
  385. width: 100%;
  386. height: 100%;
  387. }
  388. .clientBox-text {
  389. width: 57rpx;
  390. height: 28rpx;
  391. background-color: #249EFB;
  392. border-radius: 8rpx;
  393. color: #fff;
  394. font-size: 18rpx;
  395. text-align: center;
  396. position: absolute;
  397. left: 50%;
  398. transform: translateX(-50%);
  399. bottom: -8rpx;
  400. }
  401. .pricebtnimg{
  402. display: block;
  403. position: fixed;
  404. right: 20rpx;
  405. bottom:300rpx;
  406. width: 140rpx;
  407. height: 140rpx;
  408. z-index: 9;
  409. }