/*样式表文件out.css*/
* {
    /*全局选择器*/
    margin: 0px;/*外边距*/
    padding: 0px;/*内边距*/
}
 
body {
    /*主体*/
    color: rgb(42, 61, 79);
    font-family: 楷体;/*字体样式*/
    background-color: rgb(235, 225, 225);/*背景颜色*/
}
 
.header {
    /*头部*/
    width: 100%;/*宽度*/
    height: 150px;/*高度*/
}
 
#hi1 {
    /*头部图片*/
    width: 100%;/*宽度*/
    height: 150px;/*高度*/
}
 
.dh ul {
    /*导航栏*/
    width: 1539px;
    padding: 0px;/*内边距*/
    height: 30px;/*高度*/
    margin-bottom: 30px;/*外边距*/
}
 
.dh ul li {/*导航栏行的设置*/
    height: 30px;
    width: 16.45%;
    list-style: none;/*列表样式*/
    float: left;/*左浮动*/
    display: inline;
    font: 0.9em;
}
 
.dh ul li a {/*导航栏链接设置*/
    text-align: center;/*文本位置*/
    color: white;
    font-size: larger;/*字体大小*/
    font-family: 楷体;
    width: 100%;
    margin: 0px;
    text-decoration: none;/*列表样式*/
    display: block;
    background-color: rgb(87, 156, 241);
    line-height: 40px;
    border-bottom: 0px solid rgb(168, 164, 172);
}
 
.dh ul li a:hover {    /*鼠标划过导航栏时*/
    color: rgb(0, 0, 0);
    background-color: rgb(37, 84, 155);
    border-bottom: 3px solid rgb(16, 4, 28);
    
}
 
.footer {
    /*尾部*/
    margin-top: 10px;
    clear: both;/*清楚浮动*/
    width: 100%;
    height: 70px;
    background-color: rgb(87, 156, 241);
    color: rgb(99, 34, 34);
    font: italic 14px/20px 宋体;/*文字样式*/
    text-align: center;
}
 
.footer p{
    margin-top: 10px;
}
 
#fi1 {
    /*尾部图片*/
    width: 100px;
    height: 70px;
    float: right;/*右浮动*/
    padding: 0px;/*内边距*/
}
 
/*主体部分*/
 
.donghua {
    /*轮播*/
    border-radius: 5px;/*边框弧度*/
    width: 70%;
    height: 250px;
    overflow: hidden;/*图片隐藏*/
    margin: 10px 200px 0px 200px;
}
 
#photo {/*轮播图片的总设置*/
    display: block;/*块展示*/
    width: 6000px;
    height: 250px;
    animation: bj 8s linear infinite;/*动画设置*/
    /*动画*/
}
 
#photo img {
    float: left;
    width: 1200px;
    height: 100%;
    padding: 0px 0px 0px 0px;
}
 
@keyframes bj {/*轮播图动画*/
 
    0%,
    20% {
        margin-left: 0px;
    }
 
    25%,
    40% {
        margin-left: -1200px;
    }
 
    45%,
    60% {
        margin-left: -2400px;
    }
 
    65%,
    80% {
        margin-left: -3600px;
    }
 
    85%,
    100% {
        margin-left: -4800px;
    }
}
 
.zhuti {/*主体内容*/
    margin: 20px 100px 0px 100px;
}
 
#zhuti-left {/*主体左边部分*/
    float: left;
    padding: 5px;
    width: 200px;
    background-color: rgb(210, 200, 170);
}
 
#zhuti-left img {/*左边图片设置*/
    width: 190px;
    height: 150px;
}
 
#zhuti-left img:hover{
    transform: scale(1.1);
}
 
#zhuti-left a {/*左边超链接*/
    text-decoration: none;
    color: rgb(61, 87, 109);
}
 
#zhuti-left a:hover{
    color: rgb(211, 35, 35);
}
 
#zhuti-left p {/*左边文字设置*/
    letter-spacing: 2px;/*字间距*/
    text-indent: 2em;
    line-height: 1.5em;
}
 
#zhuti-right {/*右边整体设置*/
    float: left;/*左浮动*/
    width: 800px;
    height: 438px;
    padding: 5px;
    background-color: rgb(210, 200, 170);
    margin-left: 40px;
}
 
#zhuti-right p {/*右边文字设置*/
    letter-spacing: 2px;
    text-indent: 2em;
    line-height: 1.5em;
}
 
#zhuti-right img {/*右边图片设置*/
    width: 170px;
    height: 200px;
    border: 2px #cc66 ridge;
}
 
#zhuti-right ul {/*右边列表设置图片*/
    list-style-type: none;/*列表样式无*/
}
 
#zhuti-right li {
    float: left;
}