.blog .blog-latest {
    width: 340px;
    margin: 0 40px 40px 0;
    float: left;
}

.blog .blog-latest .latest-title {
    margin: 0 0 20px;
    font-family: 'PTSans-Bold';
    font-size: 24px;
    line-height: 26px;
    color: #333;
}

.blog .blog-latest .latest-post {
    margin: 0 0 10px;
    padding: 2px;
    border: 1px solid transparent;
    border-radius: 50px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: border 0.2s linear;
}

.pc .blog .blog-latest .latest-post:hover {
    border: 1px solid #d7ccc8;
}

.blog .blog-latest .latest-post .post-image {
    width: 80px;
    height: 80px;
    float: left;
}

.blog .blog-latest .latest-post .post-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog .blog-latest .latest-post .post-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.blog .blog-latest .latest-post .post-content {
    width: 254px;
    height: 80px;
    padding: 0 0 0 20px;
    float: left;
}

.blog .blog-latest .latest-post .post-content a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.blog .blog-latest .latest-post .post-content span:nth-of-type(1) {
    font-family: 'PTSans-Regular';
    font-size: 14px;
    line-height: 20px;
    color: #9e9e9e;
}

.blog .blog-latest .latest-post .post-content span:nth-of-type(2) {
    max-height: 60px;
    overflow: hidden;
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 20px;
    color: #333;
}

.blog .blog-latest .latest-divider {
    width: 86px;
    height: 10px;
    margin: 0 0 10px;
    position: relative;
}

.blog .blog-latest .latest-divider:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #d7ccc8;
    border-radius: 50%;
    position: absolute;
    top: 0; left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}



.blog .blog-post {
    width: 1000px;
    margin: 0 0 40px;
    float: right;
}

.blog .blog-post .post-image {
    width: 1000px;
    height: 300px;
    margin: 0 0 40px;
}

.blog .blog-post .post-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.blog .blog-post .post-title {
    margin: 0 0 40px;
}

.blog .blog-post .post-title h1 {
    font-family: 'PTSans-Bold';
    font-size: 28px;
    line-height: 30px;
    color: #333;
    text-align: center;
}

.blog .blog-post .post-content {
    margin: 0 0 40px;
}

.blog .blog-post .post-content h2 {
    margin: 0 0 20px;
    font-family: 'PTSans-Bold';
    font-size: 24px;
    line-height: 26px;
    color: #333;
}

.blog .blog-post .post-content h3 {
    font-family: 'PTSans-Bold';
    font-size: 20px;
    line-height: 22px;
    color: #333;
}

.blog .blog-post .post-content p {
    font-family: 'PTSans-Regular';
    font-size: 18px;
    line-height: 20px;
    color: #333;
}

.blog .blog-post .post-content ul li {
    display: block;
    margin: 0 0 5px;
    padding: 0 0 0 16px;
    position: relative;
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #333;
}

.blog .blog-post .post-content ul li:last-of-type {
    margin: 0;
}

.blog .blog-post .post-content ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #663130;
    border-radius: 50%;
    position: absolute;
    top: 6px; left: 0;
}

.blog .blog-post .post-content ol li {
    margin: 0 0 5px;
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #333;
    list-style-type: decimal;
    list-style-position: inside;
}

.blog .blog-post .post-content ol li:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 18px;
}

.blog .blog-post .post-content strong {
    font-family: 'PTSans-Bold';
}

.blog .blog-post .post-content em {
    font-family: 'PTSans-Italic';
}

.blog .blog-post .post-content a {
    font-family: 'PTSans-Bold';
    font-size: 16px;
    line-height: 18px;
    color: #663130;
    text-decoration: none;
}

.blog .blog-post .post-date p {
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 20px;
    color: #9e9e9e;
    text-align: right;
}



.blog .blog-posts .posts-item {
    width: 660px;
    height: 180px;
    margin: 0 0 40px;
    position: relative;
    float: left;
}

.blog .blog-posts .posts-item:nth-child(odd) {
    margin-right: 60px;
}


.blog .blog-posts .posts-item .item-image {
    width: 180px;
    height: 180px;
    float: left;
}

.blog .blog-posts .posts-item .item-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.blog .blog-posts .posts-item .item-image a img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: opacity linear 0.2s;
}

.pc .blog .blog-posts .posts-item .item-image a:hover img {
    opacity: 0.8;
}

.blog .blog-posts .posts-item .item-content {
    width: 480px;
    height: 180px;
    padding: 10px 0 10px 20px;
    float: left;
}

.blog .blog-posts .posts-item .item-content .content-text {
    max-height: 160px;
    overflow: hidden;
}

.blog .blog-posts .posts-item .item-content .content-text h3 {
    margin: 0 0 20px;
}

.blog .blog-posts .posts-item .item-content .content-text h3 a {
    font-family: 'PTSans-Bold';
    font-size: 18px;
    line-height: 20px;
    color: #333;
    text-decoration: none;
    transition: color linear 0.2s;
}

.pc .blog .blog-posts .posts-item .item-content .content-text h3 a:hover {
    color: #743736d9;
}

.blog .blog-posts .posts-item .item-content p:nth-of-type(1) {
    font-family: 'PTSans-Regular';
    font-size: 14px;
    line-height: 20px;
    color: #9e9e9e;
}

.blog .blog-posts .posts-item .item-content p:nth-of-type(2) {
    margin: 0 0 10px;
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 20px;
    color: #333;
}



.blog .blog-empty {
    padding: 100px 0 0;
}

.blog .blog-empty p {
    font-family: 'PTSans-Regular';
    font-size: 16px;
    line-height: 18px;
    color: #9e9e9e;
    text-align: center;
}
