:root {
    --title-color: #6c2800;
    --title-font-size: 14px;
    --category-color: #aaaaaa;
    --category-font-size: 12px;
    --author-color: #aaaaaa;
    --author-font-size: 12px;
    --card-border-color: #c6c6c6;
    --swiper-font-color: #fff;
    --swiper-bullet-active-color: #f37a01;
    --swiper-inactive-font-color: #000;
    --swiper-bullet-inactive-color: rgba(0,0,0,0.2);
    --swiper-navigation-color: #fff;
    --swiper-navigation-background: #878787;
    --swiper-navigation-font-size: 18px;
}
.swiper-container {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.swiper-wrapper {
    margin: 10px 0;
}
.writer-swiper-wrapper {
    width: 132px !important;
    height: 100%;
    border: 1px solid var(--card-border-color);
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.writer-swiper-wrapper .cover {
    width: 100%;
    height: 195px;
}
.writer-swiper-wrapper .detail-wrapper {
    padding: 6px 8px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.writer-swiper-wrapper .detail-wrapper .category {
    font-size: var(--category-font-size);
    color: var(--category-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: initial;
    margin-bottom: 4px;
}
.writer-swiper-wrapper .detail-wrapper .title {
    color: var(--title-color);
    font-size: var(--title-font-size);
    font-weight: bold;
    line-height: 1.3em;
    height: 100%;
    width: 100%;
    max-height: 36px;
    margin-bottom: 6px;
    /* Multi Line Text Ellipsis */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.writer-swiper-wrapper .detail-wrapper .author {
    font-size: var(--author-font-size);
    color: var(--author-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: var(--swiper-inactive-font-color);
    opacity: 1;
    background: var(--swiper-bullet-inactive-color);
}
.swiper-pagination-bullet-active {
    color:var(--swiper-font-color);
    background: var(--swiper-bullet-active-color);
}
.swiper-pagination {
    position: relative;
    margin: 20px 0 0 0;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--swiper-navigation-color);
    background: var(--swiper-navigation-background);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: var(--swiper-navigation-font-size);
}
.hide {
    display: none;
}