/* 标签选择器 */

p {
    text-align: center;
    font-size: 25px;
    color: cadetblue;
    font-family: fantasy;

}
a {
    text-decoration: none;
}

/* id选择器 */

#hr1 {

    background-color: cadetblue;

    height: 2px;

    width: 75%;

}

/* 类选择器 */

.imgbox {

    border-top: 5px solid cadetblue;

    /* 避免因窗口变化影响图片效果 */

    width: 60%;

    height: 40%;

    margin: 0 auto;

}

.img {

    width: 15%;

    height: 10%;

    margin: 0 auto;

    /* display: none; */

}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    background: #222328;
    position: fixed;
    bottom: 0;
    left: 0;
}

footer p{
    margin: 0;
    padding: 0;
    text-align: left;
    font-family: none;
    font-size: 14px;
    color: #666
}

footer .foot {
    width: 1200px;
    display: flex;
    justify-content: space-between
}

footer .foot .left-foot a {
    color: #fff
}

footer .foot .left-foot a:hover {
    cursor: pointer;
    color: #ff7c53
}

footer .foot .left-foot span {
    color: #fff
}

footer .foot .left-foot p {
    margin-top: 14px;
    font-size: 14px;
    color: #666
}

footer .foot .right-foot {
    /*padding-top: 40px;*/
}

footer .foot .right-foot p {
    font-size: 14px;
    color: #666;
}
