iframe.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*可以在这里添加你自己的css*/
  2. .audio_iframe {
  3. position: relative;
  4. font-size: 14px;
  5. color: #333;
  6. display: inline-block;
  7. border: 1px solid #e7e7eb;
  8. padding: 9px 6px 9px 60px;
  9. overflow: hidden;
  10. width: 100%;
  11. height: 60px;
  12. background: #fcfcfc
  13. url(http://res.wx.qq.com/mmbizwap/zh_CN/htmledition/images/icon/appmsg/audio/icon_audio_unread26f1f1.png)
  14. no-repeat 16px 16px;
  15. background-size: 18px auto;
  16. }
  17. .audio_iframe::before {
  18. position: absolute;
  19. left: 60px;
  20. top: 10px;
  21. color: #333;
  22. content: attr(name);
  23. }
  24. .audio_iframe::after {
  25. position: absolute;
  26. right: 10px;
  27. top: 7px;
  28. color: #8d8d8d;
  29. content: attr(data-length);
  30. }
  31. mp-miniprogram {
  32. border-radius: 8px;
  33. background-color: #f7f7f7;
  34. height: 200px;
  35. width: 200px;
  36. margin: 0 auto;
  37. display: block;
  38. position: relative;
  39. }
  40. mp-miniprogram::before {
  41. content: '小程序卡片请用预览查看';
  42. position: absolute;
  43. top: 50%;
  44. left: 50%;
  45. display: block;
  46. transform: translate(-50%, -50%);
  47. width: 100%;
  48. text-align: center;
  49. }