<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>開(kāi)班信息</title>
<style type = "text/css">
*{
margin: 0;
padding: 0;? /*清除緩存*/
}
body{
font: 12px/1 宋體漂彤; /*統(tǒng)一頁(yè)面字體*/
}
.outer{
width: 300px;
height: 471px;
background-color: white-gray;
/*居中*/
margin: 50px auto;?
}
.title{
/*solid 表示實(shí)現(xiàn)*/?
border-top: 2px #019e8b solid;
height: 36px;
background-color: #f5f5f5;
/*設(shè)置行高,用來(lái)居中*/
line-height: 36px;
padding: 0px 22px 0px 16px;
}
.title a{
float: right;
color: red;
}
.title h3{
font: 16px/36px? "微軟雅黑";
/*覆蓋了行高 得重新實(shí)現(xiàn)*/
}
.content{
border: 1px solid #deddd9;
padding: 0px 28px 0px 20px;
}
.content a{
color: black;
text-decoration: none;
font-size: 12px;
}
.content a:hover{
color: red;
text-decoration: underline;
}
.content h3{
margin-top: 15px;
margin-bottom: 15px;
}
.content ul{
/*去除項(xiàng)目符號(hào)*/
list-style: none;
border-bottom: 1px dashed #deddd9;
}
.content li{
margin-bottom: 15px;
}
.content .red-font{
color:red;
font-weight: bold;
}
.content .right{
float:right;
}
.content .no-border{
border: none;
}
</style>
</head>
<body>
<div class="outer">
<div class= "title">? <!-- <開(kāi)班信息頭部> -->
<a href = "#">18年面授開(kāi)班計(jì)劃</a>
<h3>近期開(kāi)班</h3>
</div><!-- <開(kāi)班信息的內(nèi)容> -->
<div class= "content">
<h3><a href="#">人工智能+Python高薪就業(yè)班</a></h3>
<ul>
<li>
<a class="right"? href="#"><span class="red-font">預(yù)約報(bào)名</span></a><a href="#">開(kāi)班時(shí)間:<span class="red-font">2018-04-26</span></a>
</li>
<li>
<a class="right"? href="#"><span class="red-font">無(wú)座,名額爆滿(mǎn)</span></a><a href="#">開(kāi)班時(shí)間:<span class="red-font">2018-03-23</span></a>
</li>
<li>
<a class="right"? href="#">開(kāi)班盛況</a>
<a href="#">開(kāi)班時(shí)間:2018-01-23</a>
</li>
<li>
<a class="right"? href="#">開(kāi)班盛況</a>
<a href="#">開(kāi)班時(shí)間:2017-12-20</a>
</li>
<li>
<a class="right"? href="#">開(kāi)班盛況</a>
<a href="#">開(kāi)班時(shí)間:2017-11-18</a>
</li>
</ul>
<h3><a href="#">Andrior開(kāi)發(fā)+測(cè)試+高薪就業(yè)班</a></h3>
<ul>
<li>
<a class="right"? href="#"><span class="red-font">預(yù)約報(bào)名</span></a><a href="#">開(kāi)班時(shí)間:<span class="red-font">2018-04-26</span></a>
</li>
<li>
<a class="right"? href="#">開(kāi)班盛況</a>
<a href="#">開(kāi)班時(shí)間:2018-03-23</a>
</li>
<li>
<a class="right"? href="#">開(kāi)班盛況</a>
<a href="#">開(kāi)班時(shí)間:2018-01-23</a>
</li>
<li>
<a class="right"? href="#">開(kāi)班盛況</a>
<a href="#">開(kāi)班時(shí)間:2017-12-20</a>
</li>
</ul>
<h3><a href="#">大數(shù)據(jù)軟件開(kāi)發(fā)+青芒工作室</a></h3>
<ul class ="no-border">
<li>
<a class="right"? href="#"><span class="red-font">預(yù)約報(bào)名</span></a><a href="#">開(kāi)班時(shí)間:<span class="red-font">2018-04-26</span></a>
</li>
<li>
<a class="right"? href="#">開(kāi)班盛況</a>
<a href="#">開(kāi)班時(shí)間:2018-01-23</a>
</li>
</ul>
</div>?
</div>
</body>
</html>