brokershareinfo.wxss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. /* customer/pages/brokershareinfo/brokershareinfo.wxss */
  2. page {
  3. box-sizing: border-box;
  4. padding-bottom: 210rpx !important;
  5. }
  6. .brokerShareInfoPage {
  7. width: 100%;
  8. height: 100vh;
  9. overflow: hidden;
  10. }
  11. .shareinfoTitle {
  12. width: 100%;
  13. height: 88rpx;
  14. line-height: 88rpx;
  15. text-align: center;
  16. font-size: 36rpx;
  17. font-weight: 700;
  18. }
  19. .shareinfoImg {
  20. width: 100%;
  21. box-sizing: border-box;
  22. padding: 0rpx 20rpx 20rpx;
  23. }
  24. .shareinfoImg>image {
  25. width: 100%;
  26. }
  27. .shareContent {
  28. width: 100%;
  29. box-sizing: border-box;
  30. padding: 0rpx 20rpx 20rpx;
  31. font-size: 30rpx;
  32. }
  33. .shareWordBox {
  34. width: 100%;
  35. box-sizing: border-box;
  36. padding: 0rpx 20rpx 20rpx;
  37. border-radius: 8rpx;
  38. }
  39. .shareWordContent {
  40. width: 100%;
  41. height: auto;
  42. overflow: hidden;
  43. background-color: #F2F2F2;
  44. padding: 0rpx 20rpx 30rpx;
  45. }
  46. .shareWordTitle {
  47. width: 100%;
  48. height: 77rpx;
  49. line-height: 77rpx;
  50. text-align: center;
  51. font-size: 32rpx;
  52. font-weight: 600;
  53. }
  54. .shareWordText {
  55. font-size: 30rpx;
  56. color: #333333;
  57. box-sizing: border-box;
  58. padding: 0rpx 0rpx 20rpx;
  59. }
  60. .shareWordCopy {
  61. width: 300rpx;
  62. height: 88rpx;
  63. border: 2rpx solid #E47930;
  64. border-radius: 44rpx;
  65. text-align: center;
  66. line-height: 88rpx;
  67. color: #E47930;
  68. margin: auto;
  69. }
  70. .cutAndShare {
  71. width: 100%;
  72. height: 120rpx;
  73. position: fixed;
  74. bottom: 0rpx;
  75. left: 0rpx;
  76. background-color: #fff;
  77. box-shadow: 0rpx -10rpx 10rpx 6rpx rgba(0, 0, 0, 0.1);
  78. display: flex;
  79. }
  80. .shareCutImg {
  81. width: 40%;
  82. height: 100%;
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. font-size: 32rpx;
  87. }
  88. .shareBtn {
  89. flex: 1;
  90. height: 100%;
  91. background-color: #F96400;
  92. border-radius: 0rpx !important;
  93. line-height: 120rpx;
  94. color: #fff;
  95. font-size: 32rpx;
  96. }
  97. .shareTips {
  98. width: 100%;
  99. height: 60rpx;
  100. background-color: #FDDAC4;
  101. color: #F96400;
  102. position: fixed;
  103. bottom: 120rpx;
  104. left: 0rpx;
  105. line-height: 60rpx;
  106. text-align: center;
  107. font-size: 28rpx;
  108. }
  109. .cutMask {
  110. width: 100%;
  111. height: 100vh;
  112. position: fixed;
  113. top: 0rpx;
  114. left: 0rpx;
  115. background-color: rgba(0,0,0,0.5);
  116. z-index: 11;
  117. }
  118. .cutBlock {
  119. width: 100%;
  120. height: 70%;
  121. background-color: #fff;
  122. position: absolute;
  123. bottom: 0rpx;
  124. left: 0rpx;
  125. box-sizing: border-box;
  126. padding: 88rpx 0rpx 100rpx;
  127. }
  128. .cutTitle {
  129. width: 100%;
  130. height: 88rpx;
  131. background-color: #F96400;
  132. color: #fff;
  133. font-size: 32rpx;
  134. text-align: center;
  135. line-height: 88rpx;
  136. position: absolute;
  137. top: 0rpx;
  138. left: 0rpx;
  139. }
  140. .cutConfirm {
  141. width: 100%;
  142. height: 100rpx;
  143. background-color: #F96400;
  144. color: #fff;
  145. position: absolute;
  146. bottom: 0rpx;
  147. left: 0rpx;
  148. text-align: center;
  149. line-height: 100rpx;
  150. font-size: 32rpx;
  151. border-radius: 0rpx;
  152. }
  153. .cutContent {
  154. width: 100%;
  155. height: 100%;
  156. overflow: auto;
  157. }
  158. .cutShareLabel {
  159. width: 100%;
  160. height: 66rpx;
  161. line-height: 66rpx;
  162. box-sizing: border-box;
  163. padding: 0rpx 20rpx;
  164. }
  165. .cutImglistBox {
  166. width: 100%;
  167. height: auto;
  168. overflow: hidden;
  169. box-sizing: border-box;
  170. padding: 20rpx;
  171. display: flex;
  172. flex-wrap: wrap;
  173. }
  174. .uploadImg {
  175. width: 150rpx;
  176. height: 150rpx;
  177. border: 2rpx solid #D7DFE4;
  178. display: flex;
  179. flex-direction: column;
  180. justify-content: center;
  181. align-items: center;
  182. }
  183. .uploadImg > image {
  184. width: 50rpx;
  185. }
  186. .u-text {
  187. font-size: 28rpx;
  188. color: #B5C6D3;
  189. }
  190. .imageItem {
  191. width: 150rpx;
  192. height: 150rpx;
  193. background-color: #ccc;
  194. margin-right: 10rpx;
  195. margin-bottom: 10rpx;
  196. position: relative;
  197. }
  198. .imageItem > image {
  199. width: 100%;
  200. height: 100%;
  201. }
  202. .imgdel {
  203. width: 60rpx;
  204. height: 60rpx;
  205. background-color: rgba(0,0,0,0.5);
  206. border-radius: 50%;
  207. display: flex;
  208. justify-content: center;
  209. align-items: center;
  210. position: absolute;
  211. top: 50%;
  212. left: 50%;
  213. transform: translate(-50%,-50%);
  214. box-shadow: 0rpx 0rpx 10rpx 10rpx rgba(0,0,0,0.05);
  215. }
  216. .imgdel > image {
  217. width: 50rpx;
  218. }
  219. .u-textarea-box {
  220. width: 100%;
  221. height: 400rpx;
  222. box-sizing: border-box;
  223. padding: 20rpx;
  224. }
  225. .u-textarea {
  226. width: 100%;
  227. background-color: #F0F4F7;
  228. padding: 10rpx;
  229. }
  230. .videoBox {
  231. width: 100%;
  232. height: 100%;
  233. }
  234. #myVideo {
  235. display: block;
  236. width: 100%;
  237. height: 100%;
  238. }
  239. .housesharebox{
  240. display: block;
  241. position: fixed;
  242. right: 15.5px;
  243. bottom: 290px;
  244. z-index: 94;
  245. }
  246. .housesharebox cover-image{
  247. display: block;
  248. width: 34px;
  249. height:34px;
  250. }
  251. .housesharebox button{
  252. display: block;
  253. width: 100%;
  254. height: 100%;
  255. z-index: 1;
  256. position: absolute;
  257. top: 0;
  258. left: 0;
  259. background-color: transparent;
  260. color: transparent;
  261. }
  262. .panosharebox{
  263. display: block;
  264. width: 38px;
  265. position: fixed;
  266. right: 5px;
  267. bottom: 164px;
  268. z-index: 99;
  269. }
  270. .panosharebox cover-image{
  271. display: block;
  272. width: 38px;
  273. height: 38px;
  274. border-radius: 50%;
  275. /* background-color: red; */
  276. }
  277. .panosharebox cover-view{
  278. display: block;
  279. margin-top: 2px;
  280. width: 44px;
  281. height: 20px;
  282. text-align: center;
  283. font-family: PingFangSC-Semibold;
  284. font-size: 11px;
  285. color: transparent;
  286. letter-spacing: 0;
  287. line-height: 16px;
  288. font-weight: 600;
  289. }
  290. .panosharebox button{
  291. display: block;
  292. width: 100%;
  293. height: 100%;
  294. z-index: 1;
  295. position: absolute;
  296. top: 0;
  297. left: 0;
  298. background-color: transparent;
  299. color: transparent;
  300. }
  301. .tsharebox{
  302. display: block;
  303. width: 25px;
  304. height: 25px;
  305. border-radius: 50%;
  306. position: fixed;
  307. right: 20px;
  308. bottom: 190px;
  309. z-index: 99;
  310. }
  311. .tsharebox cover-image{
  312. display: block;
  313. width: 25px;
  314. height: 25px;
  315. }
  316. .tsharebox button{
  317. display: block;
  318. width: 100%;
  319. height: 100%;
  320. z-index: 1;
  321. position: absolute;
  322. top: 0;
  323. left: 0;
  324. background-color: transparent;
  325. color: transparent;
  326. }
  327. .viewVideo {
  328. width: 100%;
  329. height: 100vh;
  330. }
  331. .viewBoxFixed {
  332. width: 75%;
  333. position: fixed;
  334. bottom: 300rpx;
  335. left: 20rpx;
  336. color: #fff;
  337. }
  338. .viewBoxTitle {
  339. line-height: 50rpx;
  340. }
  341. .viewBoxDesc {
  342. width: 100%;
  343. line-height: 40rpx;
  344. white-space: normal;
  345. }
  346. .ellipsis {
  347. white-space: nowrap;
  348. overflow: hidden;
  349. text-overflow: ellipsis;
  350. }