/* 引入公共样式 */
@import url(./base.css);
/* 自述 */
:root {
    --white: #fff;
    --radius: 8px;
    --blue: #1890f7;
}

/* .blogger-w {
    max-width: 1280px;
    margin: 0 auto;
} */

.blogger-container {
    display: flex;
    width: 100%;
    margin-top: 60px;
}

.blogger-container h2{
    line-height: 2;
    margin-bottom: 0;
    color: #3c3a3a;
    font-size: 28px;
    text-align: center;
}

.blogger-wrap{
    width: 72%;
    margin-right: 28px;
}
/* 左侧 */
.blogger-content{
    margin-bottom: 18px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius);
}

.blogger-content ul{
    padding: 18px 18px;
}

.blogger-content ul h3{
    font-size: 18px;
}

.blogger-content ul li{
    position: relative;
    padding: 8px 0 ;
    transition: .5s;
    white-space:nowrap; /*一行显示*/
    cursor: default;
    font-size: 16px;
}

.blogger-content ul li:hover{
    transform: translateX(16px);
}

.blogger-content ul li:first-child::before{
    position: absolute;
    left: -18px;
    top: 40%;
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 3px;
    content: '';
}

/* hr */
.hr {
    position: relative;
    width: 100%;
    height: 2px;
    border: 2px dashed var(--blue);
}

.hr i {
    position: absolute;
    top: -14px;
    left: 10px;
    font-size: 28px;
    color: var(--blue);
    transition: all 1.5s;
}

.hr:hover i{
    left: 95%;
}

.blogger-txt a{
    color: var(--blue);
}

/* 右侧 */
.right-wrap{
    width: 28%;
}

.right-content{
    padding: 18px 0;
}