emediaInvite.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. page{
  2. height: 100%;
  3. width: 100%;
  4. }
  5. .wraper{
  6. height: 100%;
  7. position: fixed;
  8. z-index: 999;
  9. width: 100%;
  10. top: 0;
  11. left: 0;
  12. background: #fff;
  13. }
  14. .main_title{
  15. background-color: #fff;
  16. width: 100%;
  17. height: 128rpx;
  18. position: fixed;
  19. top: 0;
  20. z-index: 9;
  21. }
  22. .main_title text{
  23. line-height: 96rpx;
  24. font-size: 64rpx;
  25. font-weight: 400;
  26. margin-left: 32rpx;
  27. }
  28. .main_title_hide{
  29. top: -128rpx;
  30. transition: top 0.5s;
  31. }
  32. .main_title_show{
  33. top: 0;
  34. transition: top 0.5s;
  35. }
  36. .search,.search_input {
  37. width: 100%;
  38. height: 88rpx;
  39. background-color: #fff;
  40. display: flex;
  41. align-items: center;
  42. top: 0;
  43. left: 0;
  44. }
  45. .search {
  46. justify-content: space-around;
  47. }
  48. .search_input {
  49. justify-content: space-around;
  50. }
  51. .search view, .search_input view {
  52. height: 64rpx;
  53. line-height: 64rpx;
  54. background-color: #F5F5F5;
  55. border-radius: 16rpx;
  56. text-align: center;
  57. display: flex;
  58. align-items: center;
  59. margin: 0 32rpx;
  60. }
  61. .search view {
  62. width: 100%;
  63. justify-content: center;
  64. align-items: center;
  65. }
  66. .search image {
  67. display: block;
  68. width: 6%;
  69. height: 53%;
  70. margin-right: 10rpx;
  71. }
  72. .search_input view {
  73. padding-left: 24rpx;
  74. text-align: left;
  75. flex: 1;
  76. margin: 0 28rpx 0 32rpx;
  77. }
  78. .search icon,.search_input icon {
  79. display: inline-block;
  80. margin: 8rpx 12rpx 0;
  81. font-size: 24rpx;
  82. }
  83. .search text {
  84. font-size: 30rpx;
  85. color: #9B9B9B;
  86. }
  87. .search_input text {
  88. display: inline-block;
  89. height: 60rpx;
  90. line-height: 60rpx;
  91. font-size: 30rpx;
  92. color: #0873DE;
  93. margin-right: 32rpx;
  94. }
  95. .search_input input {
  96. font-size: 28rpx;
  97. width: 90%;
  98. }
  99. .scrollWraper{
  100. flex: 1;
  101. position: relative;
  102. }
  103. /*.contain {
  104. margin-top: 40px;
  105. }*/
  106. .chat,.chat_groups,.chat_lists{
  107. position: relative;
  108. width: 100%;
  109. height: 90rpx;
  110. display: flex;
  111. align-items: center;
  112. }
  113. .chat,.chat_groups {
  114. border-bottom: 0.5px solid #E5E5E5;
  115. }
  116. .chat image {
  117. width: 6%;
  118. height: 50%;
  119. margin:0 26rpx 0 20rpx;
  120. }
  121. .chat .em-msgNum {
  122. position: absolute;
  123. right: 20rpx;
  124. height: 34rpx;
  125. border-radius: 20rpx;
  126. min-width: 30rpx;
  127. background: #f04134;
  128. color: #fff;
  129. line-height: 40rpx;
  130. text-align: center;
  131. padding: 0px 4rpx 4rpx 4rpx;
  132. }
  133. .chat_groups image {
  134. width: 8%;
  135. height: 54%;
  136. margin:0 20rpx 0 16rpx;
  137. }
  138. .chat_lists image {
  139. width: 12%;
  140. height: 100%;
  141. margin-right: 4rpx;
  142. }
  143. .chat text,.chat_groups text,.chat_lists text {
  144. font-size: 28rpx;
  145. }
  146. .numbers {
  147. width: 100%;
  148. height: 100rpx;
  149. }
  150. .nbr_header {
  151. height: 2rpx;
  152. background-color: #D4D4D4;
  153. line-height: 40rpx;
  154. padding-left: 32rpx;
  155. }
  156. .nbr_body {
  157. width: 70%;
  158. height: 100rpx;
  159. display: inline-block;
  160. font-size: 32rpx;
  161. line-height: 100rpx;
  162. margin-right: 0;
  163. float: left;
  164. }
  165. .mask {
  166. background-color: black;
  167. opacity: 0.4;
  168. position: absolute;
  169. top: 40rpx;
  170. left: 0;
  171. right: 0;
  172. bottom: 0;
  173. }
  174. .delete {
  175. width: 60rpx;
  176. height: 70rpx;
  177. float: right;
  178. margin-top: 12rpx;
  179. }
  180. .delete image {
  181. width: 32rpx;
  182. height: 4rpx;
  183. }
  184. .info {
  185. margin-top: 10rpx;
  186. width: 12%;
  187. height: 80rpx;
  188. display: inline-block;
  189. float: left;
  190. }
  191. .info image {
  192. width: 68%;
  193. height: 70%;
  194. display: inline-block;
  195. margin: 12rpx auto auto 12rpx;
  196. }
  197. .otherItem{
  198. height: 108rpx;
  199. display: flex;
  200. align-items: center;
  201. border-bottom: 0.5px solid #E5E5E5;
  202. margin:0 32rpx;
  203. position: relative;
  204. }
  205. .otherItem image{
  206. width: 72rpx;
  207. height: 72rpx;
  208. margin: 0 22rpx 0 0;
  209. }
  210. .otherItem text{
  211. font-size: 34rpx;
  212. color: #000;
  213. }
  214. .otherItem .line{
  215. position: absolute;
  216. bottom: 0;
  217. width: 100%;
  218. height:.5px;
  219. }
  220. .content{
  221. box-sizing: border-box;
  222. }
  223. .location{
  224. width: 100%;
  225. }
  226. .location_top{
  227. height: 76rpx;
  228. line-height: 76rpx;
  229. background: #f4f4f4;
  230. color: #606660;
  231. font-size: 28rpx;
  232. padding: 0 20rpx;
  233. }
  234. .location_bottom{
  235. height: 140rpx;
  236. line-height: 140rpx;
  237. color: #d91f16;
  238. font-size: 28rpx;
  239. border-top: 0.5px #E5E5E5 solid;
  240. border-bottom: 0.5px #E5E5E5 solid;
  241. padding: 0 20rpx;
  242. align-items: center;
  243. display: -webkit-flex;
  244. }
  245. .address_top{
  246. height: 80rpx;
  247. line-height: 70rpx;
  248. background: #FAFAFA;
  249. color: #9B9B9B;
  250. font-size: 17px;
  251. padding: 10rpx 32rpx;
  252. }
  253. .address_bottom{
  254. height: 108rpx;
  255. line-height: 108rpx;
  256. background: #fff;
  257. color: #000000;
  258. font-size: 34rpx;
  259. border-bottom: 0.5px #E5E5E5 solid;
  260. margin: 0 32rpx;
  261. display: flex;
  262. align-items: center;
  263. }
  264. .address_bottom image{
  265. width: 72rpx;
  266. height: 72rpx;
  267. margin-right: 24rpx;
  268. }
  269. .address_bottom text{
  270. overflow: hidden;
  271. text-overflow: ellipsis;
  272. flex: 1;
  273. }
  274. .location_img{
  275. width: 48rpx;
  276. height: 48rpx;
  277. position: absolute;
  278. right: 20rpx;
  279. top: 125rpx;
  280. }
  281. .add_city{
  282. width: 228rpx;
  283. height: 60rpx;
  284. line-height: 60rpx;
  285. text-align: center;
  286. border: 0.5px solid #E5E5E5;
  287. color: #000000;
  288. margin-right: 20rpx;
  289. }
  290. .add_citying{
  291. width: 228rpx;
  292. height: 60rpx;
  293. line-height: 60rpx;
  294. text-align: center;
  295. border: 2rpx solid #09bb07;
  296. color: #09bb07;
  297. margin-right: 20rpx;
  298. }
  299. .orientation{
  300. white-space:normal;
  301. display: inline-block;
  302. width: 45rpx;
  303. height:50rpx;
  304. font-size: 28rpx;
  305. font-weight: bold;
  306. color: rgb(88, 87, 87);
  307. text-align: center;
  308. }
  309. .orientation_region{
  310. padding: 10rpx 0px;
  311. width: 28rpx;
  312. font-size: 20rpx;
  313. position: fixed;
  314. top: 50%;
  315. right: 0;
  316. transform:translate(0,-50%);
  317. border-radius: 10px
  318. }
  319. .orientation_city{
  320. height: 24rpx;
  321. width: 24rpx;
  322. line-height: 24rpx;
  323. font-size: 18rpx;
  324. color: #000;
  325. text-align: center;
  326. }
  327. .active{
  328. color: #fff;
  329. background-color: #0873DE;
  330. border-radius: 50%;
  331. }
  332. .list-fixed{
  333. position: fixed;
  334. width: 100%;
  335. z-index: 999;
  336. height: 56rpx;
  337. line-height: 56rpx;
  338. background: #EBEBEB;
  339. color: #999999;
  340. font-size: 28rpx;
  341. padding: 0 20rpx;
  342. top: 128rpx;
  343. }
  344. .fixed-title{
  345. color:#2cc1d1;
  346. }
  347. .goTop{
  348. top: 0;
  349. transition: top 0.5s;
  350. padding-bottom: 104rpx!important;
  351. }
  352. .goTopX{
  353. top: 0rpx;
  354. transition: top 0.5s;
  355. padding-bottom: 140rpx!important;
  356. }
  357. .goback{
  358. top: 128rpx;
  359. transition: top 0.5s;
  360. }
  361. .fixedTitleTop{
  362. top: 0;
  363. }
  364. .tap_mask{
  365. width: 100%;
  366. overflow: hidden;
  367. }
  368. .btnWraper{
  369. align-items: center;
  370. justify-content: center;
  371. display: flex;
  372. flex-direction: column;
  373. }
  374. .button{
  375. width: 80%;
  376. height: 80rpx;
  377. background: green;
  378. border-radius: 40rpx;
  379. right: 0;
  380. left: 0;
  381. color: #fff;
  382. font-size: 16px;
  383. margin: 10rpx;
  384. }
  385. .red{
  386. background: red;
  387. }