activity_detail.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. html,body{
  10. margin: 0;
  11. padding: 0;
  12. }
  13. div{
  14. box-sizing: border-box;
  15. }
  16. .box{
  17. /* width: 320px;
  18. height: 487px; */
  19. width: 1280px;
  20. height: 1210px;
  21. background-color: #fff;
  22. padding: 100px 64px 64px 60px;
  23. border-radius: 16px;
  24. border: 1px solid #ECECEC;
  25. background-image: url('https://hzchart.oss-cn-shanghai.aliyuncs.com/static/icon/hzyb/yb-bg-hzlogo.png');
  26. background-position: top right;
  27. background-size: 336px 336px;
  28. background-repeat: no-repeat;
  29. }
  30. .title{
  31. font-size: 64px;
  32. font-weight: bold;
  33. margin-bottom: 20px;
  34. }
  35. .flex{
  36. height: 256px;
  37. margin-top: 40px;
  38. font-size: 56px;
  39. }
  40. .content-box{
  41. /* height: 208px; */
  42. margin: 60px 0;
  43. overflow: hidden;
  44. font-size: 56px;
  45. }
  46. .avatar{
  47. width: 235px;
  48. height: 235px;
  49. object-fit: cover;
  50. border-radius: 50%;
  51. overflow: hidden;
  52. display: block;
  53. margin-left: auto;
  54. margin-right: auto;
  55. }
  56. .xcx-img{
  57. width: 256px;
  58. height: 256px;
  59. float: right;
  60. }
  61. p,span{
  62. margin: 0 !important;
  63. padding: 0 !important;
  64. }
  65. </style>
  66. </head>
  67. <body>
  68. <div class="box">
  69. <div class="title">{{ACTIVITY_TITLE}}</div>
  70. <div class="content-box" style="margin-bottom: 100px;">
  71. <img src="{{ACTIVITY_AVATAR}}" alt="" class="avatar">
  72. <div style="font-size: 48px;text-align: center;margin-top: 20px;font-weight: bold;">主讲人:{{ACTIVITY_SPEAKER}}</div>
  73. <div style="font-size: 41px;text-align: center;margin-top: 20px;">活动时间:{{ACTIVITY_TIME}}</div>
  74. </div>
  75. <div style="text-align:center;font-size:56px;color:#999">长按图片分享</div>
  76. <div class="flex">
  77. <div style="float: left;margin-top: 65px;">
  78. <div>长按识别小程序码</div>
  79. <div style="color:#999;margin-top: 20px;">查看更多</div>
  80. </div>
  81. <img class="xcx-img" src="{{SUN_CODE}}" alt="">
  82. </div>
  83. </div>
  84. </body>
  85. </html>