cycleTaskDone.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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="description" content="email code">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <title>邮件</title>
  9. </head>
  10. <!--邮箱验证码模板-->
  11. <body>
  12. <div class="email">
  13. <div class="head">
  14. <img style="width:70px;height: 35px;" src="cid:logo" alt="logo" srcset="">
  15. </div>
  16. <div class="main">
  17. <div class="body">
  18. <div class="body_head"> 尊敬的用户 {0}:</div>
  19. <div class="body_content">
  20. 您好!您监控的<span class="font-weight_bold">专利数据库{1}</span>,监控到了公开/公告日在<span class="font-weight_bold">{2}</span>范围内共<span class="font-weight_bold">{3}</span>件专利
  21. </div>
  22. <div class="body_content2">
  23. 请点击以下链接进行查看
  24. </div>
  25. <div>
  26. <a class="a" href="https://www.xsip.cn/login?url=/project">https://www.xsip.cn/login?url=/project</a>
  27. </div>
  28. </div>
  29. <div class="foot">
  30. <div>如果您有系统相关问题请联系 <span class="link">朱鎏(电话:18856669949 邮箱:zhuliu@china-wispro.com)</span></div>
  31. <div>如果您有数据相关问题请联系 <span class="link">国海秀(电话:18124613361 邮箱:guohaixiu@china-wispro.com)</span></div>
  32. <div class="foot2">
  33. <div>此为系统邮件,请勿回复</div>
  34. <div>Please do not reply to this system email</div>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </body>
  40. <style>
  41. .email{
  42. border-radius: 5px;
  43. width: 800px;
  44. margin: 0 auto;
  45. text-align: left;
  46. font-size: 14px;
  47. font-family:微软雅黑, 黑体,serif;
  48. line-height: 1.5;
  49. box-shadow: rgb(153, 153, 153) 0 0 5px;
  50. border-collapse: collapse;
  51. background: #fff initial initial initial initial;
  52. }
  53. .head{
  54. /* background-color: RGB(148,0,211); */
  55. background-color: #316192;
  56. height: 35px;
  57. line-height: 35px;
  58. padding: 15px 35px;
  59. }
  60. .head>img{
  61. width:70px;
  62. height: 35px;
  63. }
  64. .main{
  65. padding:25px 35px 40px;
  66. background-color:#fff;
  67. opacity:0.8;
  68. }
  69. .body{
  70. }
  71. .body>*{
  72. line-height: 40px;
  73. }
  74. .body_head{
  75. line-height: 22px;
  76. font-size: medium;
  77. color: #333333;
  78. font-weight: bold;
  79. }
  80. .body_content{
  81. font-size: 14px;
  82. margin-top: 15px;
  83. }
  84. .body_content2{
  85. font-size: 15px;
  86. font-weight: bold;
  87. }
  88. .a{
  89. color: #ff8c00;
  90. }
  91. .link{
  92. color: #551A8B;
  93. }
  94. .font-weight_bold{
  95. font-weight: bold;
  96. }
  97. .foot{
  98. margin-top:20px;
  99. padding: 10px;
  100. padding-left: 0;
  101. border-top: 1px solid #ccc;
  102. color:#747474;
  103. font-size: 12px;
  104. }
  105. .foot>*{
  106. line-height: 25px;
  107. }
  108. .foot2{
  109. margin-top: 30px;
  110. line-height: 1.3em;
  111. }
  112. </style>
  113. </html>