返回列表 发布新帖

[其他源码] 网站右侧悬浮窗HTML代码

81 3
发表于 2024-5-7 18:01:44 | 查看全部 阅读模式 来自: 黑龙江七台河

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
效果预览

部署教程
Html代码
  1. <div class="wapnone fk_service">
  2. <ul>
  3. <li>
  4. <div class="fk_service_consult_cont1" style="display: none;"> <span class="fk_service_triangle"></span> 在线咨询 </div>
  5. </li>
  6. <li class="fk_service_box fk_service_consult">
  7. <div class="fk_service_consult_cont"> <span class="fk_service_triangle"></span>
  8. <div class="fk_service_consult_cont_top"> <span class="fk_service_hint"> <span class="fk_service_icon"></span>
  9. <span> 如遇问题,请联系站长 </span> </span> <span class="fk_service_button" onclick="window.open('https://wpa.qq.com/msgrd?v=3&uin=123456&site=qq&menu=yes')">QQ联系</span>
  10. <span class="fk_service_button" onclick="window.open('https://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&email=cpol@qq.com')">在线邮件</span>
  11. </div> <span class="fk_service_phone"> QQ 请注明来意 :123456 </span> <span class="fk_service_check_site"> <span class="fk_service_icon"></span>
  12. <span onclick="window.open('https://huliku.com')">更多:狐狸库</span> </span>
  13. </div>
  14. </li>
  15. <li class="fk_service_box fk_service_qr">
  16. <div class="fk_service_qr_cont"> <span class="fk_service_triangle"></span>
  17. <div class="fk_service_qrimg"> <span class="fk_service_qrimg_site"></span> 微信公众号 </div>
  18. <div class="fk_service_qrtext"><span>奇思妙想 · 科技小新</span></div>
  19. </div>
  20. </li>
  21. <!-- 不需要图标的注释或删除即可 -->
  22. <li class="fk_service_box fk_service_ax" onclick="window.open('https://huliku.com/index.php/t.html')">
  23. <div class="fk_service_ax_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  24. </li>
  25. <li class="fk_service_box fk_service_dh" onclick="window.open('https://huliku.com/index.php/t.html')">
  26. <div class="fk_service_dh_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  27. </li>
  28. <li class="fk_service_box fk_service_jk" onclick="window.open('https://huliku.com/index.php/t.html')">
  29. <div class="fk_service_jk_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  30. </li>
  31. <li class="fk_service_box fk_service_ws" onclick="window.open('https://huliku.com/index.php/t.html')">
  32. <div class="fk_service_ws_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  33. </li>
  34. <li class="fk_service_box fk_service_sd" onclick="window.open('https://huliku.com/index.php/t.html')">
  35. <div class="fk_service_sd_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  36. </li>
  37. <li class="fk_service_box fk_service_dz" onclick="window.open('https://huliku.com/index.php/t.html')">
  38. <div class="fk_service_dz_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  39. </li>
  40. <li class="fk_service_box fk_service_feedback" onclick="window.open('https://huliku.com/index.php/t.html')">
  41. <div class="fk_service_feedback_cont"> <span class="fk_service_triangle"></span> 提交收录,站长收到留言后即刻处理! </div>
  42. </li>
  43. <li class="fk_service_box fk_service_upward" onclick="FkService.fk_upWard();" style="display: block;">
  44. <div class="fk_service_upward_cont"> <span class="fk_service_triangle"></span> <span> 返回顶部 </span> </div>
  45. </li>
  46. </ul>
  47. </div>
复制代码
Css代码

  1. <style>

  2. .fk_service {
  3.         max-height: 232px;
  4.         position: fixed;
  5.         right: 10px;
  6.         top: 40%;
  7. /* 垂直位置 */
  8.         font-family: "寰蒋闆呴粦";
  9.         font-size: 14px;
  10.         color: #243558;
  11.         z-index: 10000
  12. }

  13. .fk_service ul {
  14.         margin: 0;
  15.         padding: 0;
  16.         position: absolute;
  17.         right: 0
  18. }

  19. .fk_service li {
  20.         list-style-type: none
  21. }

  22. .fk_service li>div {
  23.         box-sizing: border-box;
  24.         box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1)
  25. }

  26. .fk_service_box {
  27.         width: 40px;
  28.         height: 40px;
  29.         background: #fff;
  30.         margin-bottom: 10px;
  31.         border-radius: 4px;
  32.         box-sizing: border-box;
  33.         box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1)
  34. }

  35. .fk_service_triangle {
  36.         top: 12px;
  37.         right: -11px;
  38.         position: absolute;
  39.         border-top: 7px solid transparent;
  40.         border-bottom: 7px solid transparent;
  41.         border-left: 11px solid #e1e6ec;
  42.         z-index: 1010
  43. }

  44. .fk_service_triangle:after {
  45.         content: "\20";
  46.         top: -6px;
  47.         right: 1px;
  48.         position: absolute;
  49.         border-top: 6px solid transparent;
  50.         border-bottom: 6px solid transparent;
  51.         border-left: 10px solid #fff;
  52.         z-index: 1000
  53. }

  54. .fk_service_triangle:before {
  55.         content: "\20";
  56.         width: 80px;
  57.         height: 45px;
  58.         top: -20px;
  59.         right: -52px;
  60.         position: absolute;
  61.         background: rgba(0, 0, 0, 0)
  62. }

  63. @keyframes fade-in {

  64.         0% {
  65.                 opacity: .4;
  66.                 right: 82px
  67.         }

  68.         100% {
  69.                 opacity: 1;
  70.                 right: 62px
  71.         }
  72. }

  73. .fk_service_consult {
  74.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -366px -16px #fff
  75. }

  76. .fk_service_consult:hover {
  77.         border: 0;
  78.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -410px -16px #4f7cfc
  79. }

  80. .fk_service_consult:hover .fk_service_consult_cont {
  81.         display: block;
  82.         opacity: 1;
  83.         transition: linear .2s;
  84.         animation-name: fade-in;
  85.         animation-duration: .3s;
  86.         animation-iteration-count: 1;
  87.         animation-delay: 0s
  88. }

  89. .fk_service_consult_cont {
  90.         width: 200px;
  91.         min-height: 210px;
  92.         max-height: 268px;
  93.         border-radius: 3px;
  94.         background: #fff;
  95.         right: 62px;
  96.         position: absolute;
  97.         text-align: center;
  98.         border: 1px solid #e1e6ec;
  99.         display: none;
  100.         opacity: 0
  101. }

  102. .fk_service_consult_cont1 {
  103.         width: 70px;
  104.         height: 40px;
  105.         line-height: 40px;
  106.         background: #fff;
  107.         border-radius: 5px;
  108.         right: 62px;
  109.         text-align: center;
  110.         position: absolute;
  111.         display: none;
  112.         border: 1px solid #e1e6ec
  113. }

  114. .fk_service_consult_cont1 .fk_service_triangle:before {
  115.         width: 0 !important
  116. }

  117. .fk_service_consult_cont>.fk_service_triangle:after {
  118.         border-left: 10px solid #f6f8fb !important
  119. }

  120. .fk_service_consult_cont span {
  121.         float: left
  122. }

  123. .fk_service_consult_cont_top {
  124.         width: 100%;
  125.         height: 157px;
  126.         background: #f6f8fb;
  127.         border-radius: 3px;
  128.         border-bottom: 1px solid #eef2f8
  129. }

  130. .fk_service_hint {
  131.         width: 100%;
  132.         height: 40px;
  133.         line-height: 40px;
  134.         font-size: 12px;
  135.         color: #9aa8c2;
  136.         text-align: center
  137. }

  138. .fk_service_hint>.fk_service_icon {
  139.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -460px -25px;
  140.         width: 15px;
  141.         height: 15px;
  142.         margin: 13px 2px 0 18px
  143. }

  144. .fk_service_button {
  145.         width: 160px;
  146.         height: 38px;
  147.         line-height: 38px;
  148.         background: #4f7cfc;
  149.         border-radius: 18px;
  150.         text-align: center;
  151.         color: #fff;
  152.         margin: 5px 0 10px 20px;
  153.         cursor: pointer
  154. }

  155. .fk_service_button:hover {
  156.         background: #618aff
  157. }

  158. .fk_service_phone {
  159.         width: 100%;
  160.         height: 53px;
  161.         line-height: 53px;
  162.         font-size: 14px;
  163.         text-align: center
  164. }

  165. .fk_service_check_site {
  166.         width: 100%;
  167.         height: 48px;
  168.         line-height: 48px;
  169.         color: #3b6bf4;
  170.         border-top: 1px solid #eaeef5;
  171.         cursor: pointer
  172. }

  173. .fk_service_check_site>.fk_service_icon {
  174.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -461px -75px;
  175.         width: 20px;
  176.         height: 20px;
  177.         margin: 15px 2px 0 45px
  178. }

  179. .fk_service_feedback {
  180.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -363px -64px #fff
  181. }

  182. .fk_service_feedback:hover {
  183.         border: 0;
  184.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -407px -64px #4f7cfc;
  185.         cursor: pointer
  186. }

  187. .fk_service_feedback:hover .fk_service_feedback_cont {
  188.         display: block;
  189.         opacity: 1;
  190.         transition: linear .2s;
  191.         animation-name: fade-in;
  192.         animation-duration: .3s;
  193.         animation-iteration-count: 1;
  194.         animation-delay: 0s
  195. }

  196. .fk_service_feedback_cont {
  197.         width: 264px;
  198.         height: 40px;
  199.         line-height: 40px;
  200.         background: #fff;
  201.         border-radius: 5px;
  202.         right: 62px;
  203.         text-align: center;
  204.         position: absolute;
  205.         display: none;
  206.         border: 1px solid #e1e6ec
  207. }

  208. .fk_service_qr {
  209.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -365px -113px #fff
  210. }

  211. .fk_service_qr:hover {
  212.         border: 0;
  213.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -409px -113px #4f7cfc
  214. }

  215. .fk_service_qr:hover .fk_service_qr_cont {
  216.         display: block;
  217.         opacity: 1;
  218.         transition: linear .2s;
  219.         animation-name: fade-in;
  220.         animation-duration: .3s;
  221.         animation-iteration-count: 1;
  222.         animation-delay: 0s
  223. }

  224. .fk_service_qr_cont {
  225.         width: 143px;
  226.         height: 202px;
  227.         border-radius: 3px;
  228.         background: #fff;
  229.         right: 62px;
  230.         position: absolute;
  231.         text-align: center;
  232.         border: 1px solid #e1e6ec;
  233.         background-color: #f6f8fb;
  234.         display: none;
  235.         opacity: 0
  236. }

  237. .fk_service_qr_cont>.fk_service_triangle:after {
  238.         border-left: 10px solid #f6f8fb !important
  239. }

  240. .fk_service_qr_cont>.fk_service_qrimg {
  241.         width: 100%;
  242.         height: 164px;
  243.         float: left
  244. }

  245. .fk_service_qrimg_site {
  246.         width: 119px;
  247.         height: 119px;
  248.         float: left;
  249.         margin: 12px 12px 5px 12px;
  250.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -41px -26px
  251. }

  252. .fk_service_qrimg_hd {
  253.         width: 119px;
  254.         height: 119px;
  255.         float: left;
  256.         margin: 12px 12px 5px 12px;
  257.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -198px -26px
  258. }

  259. .fk_service_qrimg_wxast {
  260.         width: 119px;
  261.         height: 119px;
  262.         float: left;
  263.         margin: 12px 12px 5px 12px;
  264.         background: url(../image/fk_service.png?v=201905151200) no-repeat -198px -328px
  265. }

  266. .fk_service_qrimg_flyer {
  267.         width: 119px;
  268.         height: 119px;
  269.         float: left;
  270.         margin: 12px 12px 5px 12px;
  271.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -41px -177px
  272. }

  273. .fk_service_qrimg_wxapp {
  274.         width: 119px;
  275.         height: 119px;
  276.         float: left;
  277.         margin: 12px 12px 5px 12px;
  278.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -198px -177px
  279. }

  280. .fk_service_qrimg_fkmall {
  281.         width: 119px;
  282.         height: 119px;
  283.         float: left;
  284.         margin: 12px 12px 5px 12px;
  285.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -41px -326px
  286. }

  287. .fk_service_qr_cont>.fk_service_qrtext {
  288.         width: 100%;
  289.         height: 35px;
  290.         font-size: 12px;
  291.         color: #7b89a6;
  292.         background-color: #fff;
  293.         float: left;
  294.         bottom: 0;
  295.         display: table
  296. }

  297. .fk_service_qr_cont>.fk_service_qrtext>span {
  298.         display: table-cell;
  299.         vertical-align: middle
  300. }

  301. .fk_service_upward {
  302.         display: none;
  303.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -363px -159px #fff
  304. }

  305. .fk_service_upward:hover {
  306.         border: 0;
  307.         background: url(https://a-oss.zmki.cn/2019/20190827-5d652476ab305.png) no-repeat -407px -159px #4f7cfc;
  308.         cursor: pointer
  309. }

  310. .fk_service_upward:hover .fk_service_upward_cont {
  311.         display: block;
  312.         opacity: 1;
  313.         transition: linear .2s;
  314.         animation-name: fade-in;
  315.         animation-duration: .3s;
  316.         animation-iteration-count: 1;
  317.         animation-delay: 0s
  318. }

  319. .fk_service_upward_cont {
  320.         width: 84px;
  321.         height: 40px;
  322.         line-height: 40px;
  323.         border-radius: 3px;
  324.         background: #fff;
  325.         right: 62px;
  326.         position: absolute;
  327.         text-align: center;
  328.         border: 1px solid #e1e6ec;
  329.         display: none;
  330.         opacity: 0
  331. }

  332. .fk_service_upward_cont span {
  333.         font-size: 14px
  334. }

  335. /* ----------------------------------------------------------------------- */

  336. /* 新增图标->zmki 开始*/

  337. .fk_service_jk {
  338. /* 前景图标 */
  339.         background: url(https://a-oss.zmki.cn/2019/20191218-c9feba3074fcf.png) no-repeat center center #fff;
  340.         background-size: 40%40%;
  341. }

  342. .fk_service_jk:hover {
  343.         border: 0;
  344. /* 鼠标悬浮图标 */
  345.         background: url(https://a-oss.zmki.cn/2019/20191218-9e8acd5341cdc.png) no-repeat center center #4f7cfc;
  346.         background-size: 40%40%;
  347.         cursor: pointer
  348. }

  349. .fk_service_jk:hover .fk_service_jk_cont {
  350.         display: block;
  351.         opacity: 1;
  352.         transition: linear .2s;
  353.         animation-name: fade-in;
  354.         animation-duration: .3s;
  355.         animation-iteration-count: 1;
  356.         animation-delay: 0s
  357. }

  358. .fk_service_jk_cont {
  359.         width: 264px;
  360.         height: 40px;
  361.         line-height: 40px;
  362.         background: #fff;
  363.         border-radius: 5px;
  364.         right: 62px;
  365.         text-align: center;
  366.         position: absolute;
  367.         display: none;
  368.         border: 1px solid #e1e6ec
  369. }

  370. /* 新增图标->zmki 结束*/

  371. /* 新增图标->zmki 开始*/

  372. .fk_service_ws {
  373.         background: url(https://a-oss.zmki.cn/2019/20191218-61b4baac98ee7.png) no-repeat center center #fff;
  374.         background-size: 50%50%;
  375. }

  376. .fk_service_ws:hover {
  377.         border: 0;
  378.         background: url(https://a-oss.zmki.cn/2019/20191218-8ded04c01bb3c.png) no-repeat center center #4f7cfc;
  379.         background-size: 50%50%;
  380.         cursor: pointer
  381. }

  382. .fk_service_ws:hover .fk_service_ws_cont {
  383.         display: block;
  384.         opacity: 1;
  385.         transition: linear .2s;
  386.         animation-name: fade-in;
  387.         animation-duration: .3s;
  388.         animation-iteration-count: 1;
  389.         animation-delay: 0s
  390. }

  391. .fk_service_ws_cont {
  392.         width: 264px;
  393.         height: 40px;
  394.         line-height: 40px;
  395.         background: #fff;
  396.         border-radius: 5px;
  397.         right: 62px;
  398.         text-align: center;
  399.         position: absolute;
  400.         display: none;
  401.         border: 1px solid #e1e6ec
  402. }

  403. /* 新增图标->zmki 结束*/

  404. /* 闪电 新增图标->zmki 开始*/

  405. .fk_service_sd {
  406.         background: url(https://a-oss.zmki.cn/2019/20191218-94664bd399372.png) no-repeat center center #fff;
  407.         background-size: 50%50%;
  408. }

  409. .fk_service_sd:hover {
  410.         border: 0;
  411.         background: url(https://a-oss.zmki.cn/2019/20191218-fab840acee28b.png) no-repeat center center #4f7cfc;
  412.         background-size: 50%50%;
  413.         cursor: pointer
  414. }

  415. .fk_service_sd:hover .fk_service_sd_cont {
  416.         display: block;
  417.         opacity: 1;
  418.         transition: linear .2s;
  419.         animation-name: fade-in;
  420.         animation-duration: .3s;
  421.         animation-iteration-count: 1;
  422.         animation-delay: 0s
  423. }

  424. .fk_service_sd_cont {
  425.         width: 264px;
  426.         height: 40px;
  427.         line-height: 40px;
  428.         background: #fff;
  429.         border-radius: 5px;
  430.         right: 62px;
  431.         text-align: center;
  432.         position: absolute;
  433.         display: none;
  434.         border: 1px solid #e1e6ec
  435. }

  436. /*闪电 新增图标->zmki 结束*/

  437. /* 导航 新增图标->zmki 开始*/

  438. .fk_service_dh {
  439.         background: url(https://a-oss.zmki.cn/2019/20191218-711bcdc875f32.png) no-repeat center center #fff;
  440.         background-size: 60%60%;
  441. }

  442. .fk_service_dh:hover {
  443.         border: 0;
  444.         background: url(https://a-oss.zmki.cn/2019/20191218-8d9cf4c72a239.png) no-repeat center center #4f7cfc;
  445.         background-size: 60%60%;
  446.         cursor: pointer
  447. }

  448. .fk_service_dh:hover .fk_service_dh_cont {
  449.         display: block;
  450.         opacity: 1;
  451.         transition: linear .2s;
  452.         animation-name: fade-in;
  453.         animation-duration: .3s;
  454.         animation-iteration-count: 1;
  455.         animation-delay: 0s
  456. }

  457. .fk_service_dh_cont {
  458.         width: 264px;
  459.         height: 40px;
  460.         line-height: 40px;
  461.         background: #fff;
  462.         border-radius: 5px;
  463.         right: 62px;
  464.         text-align: center;
  465.         position: absolute;
  466.         display: none;
  467.         border: 1px solid #e1e6ec
  468. }

  469. /*导航 新增图标->zmki 结束*/

  470. /* 爱心 新增图标->zmki 开始*/

  471. .fk_service_ax {
  472.         background: url(https://a-oss.zmki.cn/2019/20191218-bf1792e790a39.png) no-repeat center center #fff;
  473.         background-size: 40%40%;
  474. }

  475. .fk_service_ax:hover {
  476.         border: 0;
  477.         background: url(https://a-oss.zmki.cn/2019/20191218-f379809ce7aef.png) no-repeat center center #4f7cfc;
  478.         background-size: 40%40%;
  479.         cursor: pointer
  480. }

  481. .fk_service_ax:hover .fk_service_ax_cont {
  482.         display: block;
  483.         opacity: 1;
  484.         transition: linear .2s;
  485.         animation-name: fade-in;
  486.         animation-duration: .3s;
  487.         animation-iteration-count: 1;
  488.         animation-delay: 0s
  489. }

  490. .fk_service_ax_cont {
  491.         width: 264px;
  492.         height: 40px;
  493.         line-height: 40px;
  494.         background: #fff;
  495.         border-radius: 5px;
  496.         right: 62px;
  497.         text-align: center;
  498.         position: absolute;
  499.         display: none;
  500.         border: 1px solid #e1e6ec
  501. }

  502. /*爱心 新增图标->zmki 结束*/

  503. /* 点赞 新增图标->zmki 开始*/

  504. .fk_service_dz {
  505.         background: url(https://a-oss.zmki.cn/2019/20191218-3d077e8df0bf0.png) no-repeat center center #fff;
  506.         background-size: 50%50%;
  507. }

  508. .fk_service_dz:hover {
  509.         border: 0;
  510.         background: url(https://a-oss.zmki.cn/2019/20191218-986a9393f3e9e.png) no-repeat center center #4f7cfc;
  511.         background-size: 50%50%;
  512.         cursor: pointer
  513. }

  514. .fk_service_dz:hover .fk_service_dz_cont {
  515.         display: block;
  516.         opacity: 1;
  517.         transition: linear .2s;
  518.         animation-name: fade-in;
  519.         animation-duration: .3s;
  520.         animation-iteration-count: 1;
  521.         animation-delay: 0s
  522. }

  523. .fk_service_dz_cont {
  524.         width: 264px;
  525.         height: 40px;
  526.         line-height: 40px;
  527.         background: #fff;
  528.         border-radius: 5px;
  529.         right: 62px;
  530.         text-align: center;
  531.         position: absolute;
  532.         display: none;
  533.         border: 1px solid #e1e6ec
  534. }

  535. /*点赞 新增图标->zmki 结束*/

  536. /* 手机端自动隐藏 开始 */

  537. @media screen and (max-width: 1221px) {
  538.         .wapnone {
  539.                 display: none;
  540.         }
  541. }

  542. /* 手机端自动隐藏 结束 */

  543. </style>
复制代码
里面的图标地址自行替换!
生无可恋

评论3

AokiLv.1 发表于 2024-5-8 11:34:20 | 查看全部 来自: 山东聊城
kankan  看看
SanS三石Lv.8实名认证 版主 创作者 赞助者 发表于 2024-5-9 20:53:43 | 查看全部 来自: 上海
眼花了
要么刷卡,要么投币,要么滚蛋。看什么看!公交车都坐不起,还冒充黑客帝国。
七夏Lv.10实名认证 官方 版主 创作者 开发者 赞助者 发表于 2024-5-9 20:59:45 | 查看全部 来自: 山东泰安

整的太乱了,我给他修理修理
终于到了小时候羡慕的年纪,你现在怎么不笑了?

回复

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

幸运大抽奖,更多好礼等你来抢!
投诉/建议联系

8641340@qq.com

欢迎各位朋友加入本社区,
共同维护良好的社区氛围
  • 加入QQ群
  • 添加微信客服
Copyright © 2001-2024 荷包蛋部落 版权所有 All Rights Reserved. 鲁ICP备20023396号-6
关灯 在本版发帖
扫一扫添加微信客服
QQ客服返回顶部
快速回复 返回顶部 返回列表