File size: 1,585 Bytes
55ba4a3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>离线版异常提醒</title>
<style>
* {
margin: 0;
padding: 0;
color: #444
}
body {
font-size: 14px;
font-family: "宋体"
}
.main {
width: 600px;
margin: 10% auto;
}
.title {
background: #20a53a;
color: #fff;
font-size: 16px;
height: 40px;
line-height: 40px;
padding-left: 20px;
}
.content {
background-color: #f3f7f9;
height: 280px;
border: 1px dashed #c6d9b6;
padding: 20px
}
.t1 {
border-bottom: 1px dashed #c6d9b6;
color: #ff4000;
font-weight: bold;
margin: 0 0 20px;
padding-bottom: 18px;
}
.t2 {
margin-bottom: 8px;
font-weight: bold
}
ol {
margin: 0 0 20px 22px;
padding: 0;
}
ol li {
line-height: 30px
}
</style>
</head>
<body>
<div class="main">
<div class="title">离线版授权失效或者已到期</div>
<div class="content">
<p class="t1">您的离线版已到期,请及时续费</p>
<p class="t2">1.请您到官网(<a href="https://www.bt.cn">www.bt.cn</a>)重新获取授权或续费</p>
<p class="t2">2.下载并替换新的授权文件</p>
</div>
</div>
</body>
</html> |