<!DOCTYPE html> <html> <head> <title>朱雀</title> <meta charset="utf-8"> <style type="text/css"> div { width: 500px; height: 280px; padding: 15px; border-radius: 18px; box-shadow: 6px 6px 6px 6px#777E88; background-image: url(img/lightcolor.jpg); background-size: 530px 310px; background-repeat: no-repeat; } .content { color: #5E87A2; text-indent: 2em; line-height: 1.5em; } </style> </head> <body> <div> <h3 style="color:bule;text-align: center;font-size: 21px" onmouseover="closeto(this)" onmouseout="faraway(this)"><b>朱雀</b></h3> <p class="content">历史的大潮奔流不息,当时代随着动乱浩浩荡荡扑面而来的时候,无论是曾经的钟鸣鼎食之族,书香清贵之地,还是曾经的斑驳古城.而葛亮的《朱雀》,以时代动乱为经,以三代女性的人生经历为纬.</p> <p class="content">与其说葛亮是在写故事,倒不如说葛亮是用一种剪影式的方式去描写他想象中的南京,描绘他所认识的南京的儿女们。</p> </div> <script type="text/javascript"> function closeto(cursor){ cursor.style.fontSize='30px' cursor.style.color='brown' } function faraway(cursor) { cursor.style.fontSize='25px' cursor.style.color='blue' } </script> </body> </html>