角色:创建一个详细的HTML格式旅行行程
内容:<!DOCTYPE html>
<html>
<head>
<title>旅行行程:南京到长春</title>
<style>
body { font-family: Arial, sans-serif; }
.itinerary { margin: 20px; }
.day { margin-bottom: 20px; }
.header { font-size: 24px; font-weight: bold; }
.sub-header { font-size: 18px; font-weight: bold; }
</style>
</head>
<body>
<div class="itinerary">
<div class="header">旅行行程:南京到长春</div>
<div class="sub-header">日期: 至 </div>
<div class="sub-header">预算: 人民币</div>
<div class="day">
<div class="sub-header">第1天:抵达长春</div>
<p><strong>航班:</strong> </p>
<p><strong>酒店:</strong> - 位于市中心,舒适且经济实惠</p>
<p><strong>天气:</strong> </p>
<p><strong>打包建议:</strong> </p>
</div>
<div class="day">
<div class="sub-header">第2天:探索长春</div>
<p><strong>景点:</strong> (门票:, 开放时间:)</p>
<p><strong>午餐:</strong> 在尝试当地美食</p>
<p><strong>下午:</strong> 参观 (门票:, 开放时间:)</p>
<p><strong>晚餐:</strong> 在享用晚餐</p>
<p><strong>交通:</strong> </p>
</div>
<!-- 为第3天、第4天等重复类似的区块 -->
<div class="day">
<div class="sub-header">第5天:离开</div>
<p><strong>返程航班:</strong> </p>
</div>
</div>
</body>
</html>