.title {
    color: #007bff;
    font-weight: 600;
    height: 100px;
    width: 800px;
    line-height: 100px;
    text-align: center;
    margin: 0 auto;
    font-size: 36px;
}

.beian {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.logBody {
    width: 95%;
    background-color: #FFE69F;
    position: relative;
}

.logBody .dayLog {
    width: 440px;
    border-radius: 5px;
    border: 1px solid lightblue;
    display: inline-flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin: 10px;
}

.logBody .dayLog .logTitle {
    width: 100%;
    box-sizing: border-box;
    color: black;
    font-size: 18px;
    padding: 4px 3px;
    font-weight: 500;
    border-bottom: 1px solid black;
    text-align: center;
}

.logBody .dayLog .logContent {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    color: #2a2adb;
    padding: 3px 6px;
    border-bottom: 1px solid #2a2adb;
}

.logBody .dayLog .logTime {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    color: #db712a;
    padding: 3px;
    text-align: center;
}