/*********名字与文字样式*************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

body {
    color: #333;
    background: #afaaa4cb;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 10pt;
    line-height: 1.8;
}

#blogTitle {
    padding: 0px;
}

#blogTitle .title {
    font-size: 17pt;
    font-size: 150px;
    width: max-content;
}

.day {
    margin: 20px auto;
    padding: 0 20px;
    border-radius: 7px;
    background-color: #91704acb;
}

.dayTitle a:hover {
    color: #ff9c1acb;
}

#home {
    margin: 0 50px;
    border: 1px solid;
}

/**********导航栏样式*******/

ul#navList li a {
    font-size: 25px;
}
/********导航栏css****************/
    .menu-box{
        width: 50px;
        height: 85px;
        background: black;  
        transition: 0.5s; 
    }
    #navigator {
    background: rgb(117, 187, 181);
    height: 75px;
    line-height: 75px;
    color: #999;
    padding-left: 15px;
    padding-right: 5px;
    padding-top: 2px\9;
}

ul#navList li a {
    font-size: 25px;
    transition: 0.3s;
}
#navList li {
    height: 75px;
    float: left;
    margin-right: 20px;
    font-size: 10.5pt;
    overflow: hidden;
}
ul#navList li a:hover {
    color: white;
}
/**********daytime的css*********/
.dayTitle {
    display: inline-block;
    text-align: center;
    font-size: 25px;
    border-bottom-width: 30px;
    position: relative;
}
.dayTitle::after{
    content: "";
    width: 10px;
    height: 10px;
    border-bottom: 1px #775b71 solid;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left:-7px ;
    transition: 0.5s;
}
.dayTitle:hover::after{
    transform: scaleX(17);
}
/* 标语样式 */
.title-two{
    float: right;
    margin-top: -24px;
}