/* 排行榜页面样式 rank-novel.html & rank-video.html */
/* HTML结构使用 listItem、listImgBox 等类名 */
/* 样式仿照 model_2 的 paihangbangNew.html */



/* 排行榜标题标签 */
.rankPageTitleTabs {
    position: relative;
    width: 600px;
    margin: 15px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 6px;
    padding: 0 16px;
    border: 1px solid var(--color-efefef);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .1);
}

    /* .rankPageTitleTabs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 50px;
    background-image: url(/images/HX/wenshi.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100%;
}

.rankPageTitleTabs::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 50px;
    background-image: url(/images/HX/wenshi2.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100%;
} */

.rankPageTitleTabs a {
    font-size: 17px;
    line-height: 19px;
    padding: 16px 32px;
    color: var(--color-333);
    cursor: pointer;
    transition: all 0.2s;
}

.rankPageTitleTabs a:hover {
    color: var(--primary-color);
}

.rankPageTitleTabs a.active {
    position: relative;
    font-weight: bold;
    color: var(--primary-color);
}

.rankPageTitleTabs a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--primary-color);
}

/* 排行榜内容区域 */
.rankPageContent {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.rankPageContent .listBox {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    counter-reset: rank-counter;
}

.rankPageContent .listBox.active {
    display: flex;
}

/* 基础列表项样式 */
.rankPageContent .listItem {
    padding: 15px;
    width: calc(33.33% - 10px); /* PC端：三列布局，每列间距15px，所以宽度减去10px */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s;
    background-color: var(--white-color);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .15);
    margin-top: 15px; /* PC端：列表项上间距15px */
    border-radius: 6px;
    border: 1px solid var(--color-efefef);
}

/* 三列布局：第2、5、8...项右边距15px */
.rankPageContent .listBox .listItem:nth-child(3n+2) {
    margin-left: 15px;
    margin-right: 15px;
}

/* 图片容器 */
.rankPageContent .listImgBox {
    position: relative;
    overflow: hidden;
    width: 111px;
    height: 148px;
    border-radius: 4px;
}

.rankPageContent .listImgBox img {
    width: 100%;
    height: 100%;
}

/* 排名标签 - 使用 ::before 自动生成 */
.rankPageContent .listImgBox::before {
    content: counter(rank-counter);
    counter-increment: rank-counter;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    font-size: 12px;
    color: var(--white-color);
    background: linear-gradient(120deg, var(--primary-color-2), var(--primary-color));;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-weight: bold;
    z-index: 1;
}

/* 信息容器 */
.rankPageContent .listInfoBox {
    width: calc(100% - 125px);
    height: 148px;
    display: flex;
    flex-direction: column;
}

.rankPageContent .itemName {
    font-size: 15px;
    color: var(--color-333);
    line-height: 20px;
    height: 40px;
    margin-bottom: 5px;
    font-weight: bold;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rankPageContent .listItem:hover .itemName {
    color: var(--primary-color);
}

.rankPageContent .itemDesc {
    font-size: 13px;
    color: var(--color-666);
    line-height: 18px;
    height: 54px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.rankPageContent .itemAuthor {
    font-size: 13px;
    color: var(--color-666);
    line-height: 18px;
    margin-top: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* itemAuthor 中的 em 标签样式（继承 list.css）*/
.rankPageContent .itemAuthor em {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    padding: 3px 4px;
    background: linear-gradient(120deg, var(--primary-color-2), var(--primary-color));
    border-radius: 2px;
    color: var(--white-color);
    margin-right: 6px;
    white-space: normal;
}

.rankPageContent .itemAuthor em:last-child {
    margin-right: 0;
}

.rankPageContent .itemAuthor em:first-child {
    position: relative;
    margin-left: 1em;
}

.rankPageContent .itemAuthor em:first-child::before {
    content: '·';
    position: absolute;
    right: 100%;
    display: inline-block;
    color: var(--color-666);
    white-space: nowrap;
    margin-right: 6px;
}

/* 前三名 em 标签在右上角 */
.rankPageContent .listBox .listItem:nth-child(1) .listImgBox em,
.rankPageContent .listBox .listItem:nth-child(2) .listImgBox em,
.rankPageContent .listBox .listItem:nth-child(3) .listImgBox em {
    position: absolute;
    
    padding: 3px 5px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    color: var(--white-color);
    background: linear-gradient(120deg, var(--primary-color-2), var(--primary-color));
}

/* 第四名及以后 em 标签在右下角 */
.rankPageContent .listBox .listItem:nth-child(n+4) .listImgBox em {
    position: absolute;
    
    padding: 3px 5px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    color: var(--white-color);
    background: linear-gradient(120deg, var(--primary-color-2), var(--primary-color));
}

/* ========== 前三名特殊样式 ========== */

/* 第一名 - 大图黑色渐变背景 */
.rankPageContent .listBox .listItem:nth-child(1) {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    padding: 15px;
    border: 0;
    margin-top: 60px;
    border-radius:6px;
    background: linear-gradient(160deg, #3d3d45, #1d1d25);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .6);
}

.rankPageContent .listBox .listItem:nth-child(1) .listImgBox {
    width: 144px;
    height: 192px;
    position: absolute;
    top: -75px;
    left: 15px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .9);
    overflow: visible;
}

    .rankPageContent .listBox .listItem:nth-child(1) .listImgBox::before {
        content: "";
        position: absolute;
        top: -15px;
        left: -15px;
        width: 50px;
        height: 50px;
        background-image: url(/images/HX/diyi.png);
        background-repeat: no-repeat;
        background-position: top left;
        background-size: 100%;
        background-color: transparent;
        z-index: 2;
    }

/* 前三名皇冠微动动画 */
.rankPageContent .listBox .listItem:nth-child(1) .listImgBox::before,
.rankPageContent .listBox .listItem:nth-child(2) .listImgBox::before,
.rankPageContent .listBox .listItem:nth-child(3) .listImgBox::before {
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.08);
    }
}

.rankPageContent .listBox .listItem:nth-child(1) .listImgBox img {
    border-radius: 6px;
}

.rankPageContent .listBox .listItem:nth-child(1):hover .listImgBox img {
    transform: scale(1);
}

.rankPageContent .listBox .listItem:nth-child(1) .listInfoBox {
    width: 100%;
    height: auto;
    padding-left: 170px;
}

.rankPageContent .listBox .listItem:nth-child(1) .itemName {
    font-size: 24px;
    line-height: 24px;
    height: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
    -webkit-line-clamp: 1;
}

.rankPageContent .listBox .listItem:nth-child(1) .itemDesc {
    font-size: 15px;
    line-height: 20px;
    height: 40px;
    margin-bottom: 8px;
    color: var(--color-ddd);
    -webkit-line-clamp: 2;
}
.listItem .itemMeta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-666);
    margin-top: 0;
}

.listItem .itemMeta .itemTag {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    padding: 3px 4px;
    background: linear-gradient(120deg, var(--primary-color-2), var(--primary-color));
    border-radius: 2px;
    color: var(--white-color);
    margin-right: 4px;
}
.listItem:first-child .itemMeta .itemTag{
    background: rgba(255, 255, 255, 0.2);
}
.listItem .itemMeta .itemPlayCount {
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    position: relative;
    margin-left: auto; 
}

.listItem .itemMeta .itemPlayCount span {
    line-height: 1;
}
.listItem:first-child .itemMeta .itemPlayCount span {
    /*color: var(--white-color);*/
}

.listItem .itemMeta .itemPlayCount img {
    width: 14px;
    height: 14px;
    background-color: var(--primary-color);
}
.rankPageContent .listBox .listItem:nth-child(1) .itemAuthor {
    color: var(--white-color);
    font-size: 14px;
    line-height: 18px;
}
.rankPageContent .listBox .listItem:nth-child(1) .itemMeta .itemPlayCount img{
    opacity: 0;
}
.rankPageContent .listBox .listItem:nth-child(1) .itemMeta .itemPlayCount::before {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/images/HX/view-w.png);
    background-size: cover;
}
.rankPageContent .listBox .listItem:nth-child(1) .itemAuthor em {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.2);
}

/* 第二、三名 - 两列布局 */
.rankPageContent .listBox .listItem:nth-child(2),
.rankPageContent .listBox .listItem:nth-child(3) {
    width: calc(50% - 7.5px); /* PC端：两列布局，中间间距15px，所以每列减7.5px */
    margin-left: 0;
    margin-top: 15px;
    padding: 15px;
}

.rankPageContent .listBox .listItem:nth-child(2) {
    margin-right: 15px; /* PC端：第二名右边距15px */
}

.rankPageContent .listBox .listItem:nth-child(2) .listImgBox,
.rankPageContent .listBox .listItem:nth-child(3) .listImgBox {
    width: 144px;
    height: 192px;
    overflow: visible;
}

.rankPageContent .listBox .listItem:nth-child(2) .listImgBox img,
.rankPageContent .listBox .listItem:nth-child(3) .listImgBox img {
    border-radius: 6px;
    transform: scale(1);
}

/* 第二名图标 */
.rankPageContent .listBox .listItem:nth-child(2) .listImgBox::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background-image: url(/images/HX/dier.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top left;
    background-color: transparent;
    z-index: 2;
}



/* 第三名图标 */
    .rankPageContent .listBox .listItem:nth-child(3) .listImgBox::before {
        content: "";
        position: absolute;
        top: -15px;
        left: -15px;
        width: 50px;
        height: 50px;
        background-image: url(/images/HX//disan.png);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: top left;
        background-color: transparent;
        z-index: 2;
    }



.rankPageContent .listBox .listItem:nth-child(2) .listInfoBox,
.rankPageContent .listBox .listItem:nth-child(3) .listInfoBox {
    width: calc(100% - 159px);
    height: 192px;
}

.rankPageContent .listBox .listItem:nth-child(2) .itemName,
.rankPageContent .listBox .listItem:nth-child(3) .itemName {
    font-size: 17px;
    line-height: 22px;
    height: 44px;
}

.rankPageContent .listBox .listItem:nth-child(2) .itemDesc,
.rankPageContent .listBox .listItem:nth-child(3) .itemDesc {
    font-size: 14px;
    line-height: 19px;
    height: 57px;
}

.rankPageContent .listBox .listItem:nth-child(2) .itemAuthor,
.rankPageContent .listBox .listItem:nth-child(3) .itemAuthor {
    font-size: 14px;
}

/* 第四名及以后 */
.rankPageContent .listBox .listItem:nth-child(4),
.rankPageContent .listBox .listItem:nth-child(5),
.rankPageContent .listBox .listItem:nth-child(6) {
    margin-top: 15px; /* PC端：第4、5、6名上间距15px */
}


/* -----------------大图版本-------------------------- */
.rankPageContent-video{
    flex-direction: column;
    margin-top: 15px;
}

.rankPageContent-video .listBox {
    /* display: flex; */
    flex-wrap: wrap;
    gap: 15px;
}

/* 前三个在第一排 */
.rankPageContent-video .listBox .listItem:nth-child(1),
.rankPageContent-video .listBox .listItem:nth-child(2),
.rankPageContent-video .listBox .listItem:nth-child(3) {
    width: calc((100% - 30px) / 3) !important;
    flex-direction: column !important;
    padding: 12px !important;
    margin: 0 !important;
    border: 1px solid var(--color-efefef) !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    background: var(--white-color) !important;
}

/* 第一个特殊黑色渐变背景 */
.rankPageContent-video .listBox .listItem:nth-child(1) {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%) !important;
    border: 1px solid #555 !important;
}

.rankPageContent-video .listBox .listItem:nth-child(1) .itemName {
    color: var(--primary-color) !important;
}

.rankPageContent-video .listBox .listItem:nth-child(1) .itemDesc,
.rankPageContent-video .listBox .listItem:nth-child(1) .itemAuthor {
    color: var(--white-color) !important;
}

/* 所有名称改成1行显示 */
.rankPageContent-video .listBox .listItem .itemName {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1 !important;
    display: block !important;
    height: auto !important;
    margin-bottom: 8px;
}

/* 后面的5个一排 */
.rankPageContent-video .listBox .listItem:nth-child(n+4) {
    width: calc((100% - 60px) / 5);
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--color-efefef);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: var(--white-color);
}

/* 所有项目上下布局 */
.rankPageContent-video .listBox .listItem {
    flex-direction: column;
}

/* 图片容器保持3:4比例 */
.rankPageContent-video .listBox .listItem .listImgBox{
    position: relative;
    width: 100%;
    padding-top: 133.33%; /* 4/3 = 1.3333 */
    top: auto;
    right: auto;
    overflow: hidden;
    border-radius: 6px;
}

.rankPageContent-video .listBox .listItem .listImgBox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rankPageContent-video .listBox .listItem .listInfoBox{
    padding-left: 0;
    padding-top: 10px;
    width: 100%;
    height: auto !important;
}

/* 覆盖前三个项目的特殊样式，使其完全一致 */
.rankPageContent-video .listBox .listItem:nth-child(1) .listImgBox,
.rankPageContent-video .listBox .listItem:nth-child(2) .listImgBox,
.rankPageContent-video .listBox .listItem:nth-child(3) .listImgBox {
    position: relative !important;
    width: 100% !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
}

.rankPageContent-video .listBox .listItem:nth-child(1) .listInfoBox,
.rankPageContent-video .listBox .listItem:nth-child(2) .listInfoBox,
.rankPageContent-video .listBox .listItem:nth-child(3) .listInfoBox {
    padding-left: 0 !important;
    width: 100% !important;
    height: auto !important;
}

.rankPageContent-video .listBox .listItem:nth-child(1) .itemName,
.rankPageContent-video .listBox .listItem:nth-child(1) .itemDesc,
.rankPageContent-video .listBox .listItem:nth-child(1) .itemAuthor {
    font-size: inherit !important;
    line-height: inherit !important;
    height: auto !important;
    /* color: inherit !important; */
    -webkit-line-clamp: inherit !important;
}

/* 覆盖原有的margin样式，避免出现空隙 */
.rankPageContent-video .listBox .listItem {
    margin: 0 !important;
}

.rankPageContent-video .listBox .listItem:nth-child(3n+2) {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 所有名称改成1行显示 */
.rankPageContent-video .listBox .listItem .itemName {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1 !important;
    display: block !important;
    height: auto !important;
}
/* ========== 移动端响应式 ========== */
@media screen and (max-width: 1080px) {
    .rankPageTitleTabs {
        width: 90%;
    }
    
    .rankPageTitleTabs a {
        font-size: 15px;
        padding: 10px 24px;
    }
    
    .rankPageContent {
        margin-top: 12px;
    }
    
    /* 移动端所有 em 标签统一在右下角 */
    .rankPageContent .listImgBox em {
        top: auto !important;
        bottom: 3px !important;
    }
    
    /* 第一名 - 移动端与其他项完全一致，只保留背景颜色特殊 */
    .rankPageContent .listBox .listItem:nth-child(1) {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 12px;
        margin-top: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: linear-gradient(160deg, #3d3d45, #1d1d25);
    }
    
    .rankPageContent .listBox .listItem:nth-child(1) .listImgBox {
        width: 111px;
        height: 148px;
        position: relative;
        top: auto;
        left: auto;
        overflow: visible;
        border-radius: 4px;
        border: 0;
        box-shadow: none;
    }
    
    .rankPageContent .listBox .listItem:nth-child(1) .listImgBox::before {
        width: 32px;
        height: 32px;
        top: -10px;
        left: -10px;
    }
    

    
    .rankPageContent .listBox .listItem:nth-child(1) .listImgBox img {
        border-radius: 4px;
    }
    
    .rankPageContent .listBox .listItem:nth-child(1) .listInfoBox {
        width: calc(100% - 126px);
        padding-left: 0;
    }
    
    .rankPageContent .listBox .listItem:nth-child(1) .itemName {
        font-size: 15px;
        line-height: 20px;
        height: 40px;
        margin-bottom: 5px;
        color: var(--primary-color);
        -webkit-line-clamp: 2;
    }
    
    .rankPageContent .listBox .listItem:nth-child(1) .itemDesc {
        font-size: 13px;
        line-height: 18px;
        height: 54px;
        margin-bottom: 5px;
        color: var(--color-ddd);
        -webkit-line-clamp: 3;
    }
    
    .rankPageContent .listBox .listItem:nth-child(1) .itemAuthor {
        font-size: 13px;
        line-height: 18px;
        color: var(--white-color);
    }
    .rankPageContent-video .listBox .listItem:nth-child(1),
    .rankPageContent-video .listBox .listItem:nth-child(2),
    .rankPageContent-video .listBox .listItem:nth-child(3) {
        padding: 8px !important;
    }

    /* 第二、三名 - 移动端一列 */
    .rankPageContent .listBox .listItem:nth-child(2),
    .rankPageContent .listBox .listItem:nth-child(3) {
        width: 100%;
        padding: 12px;
        margin-right: 0;
        margin-top: 0;
        border: 0;
        border-top: 1px solid var(--color-efefef);
        border-radius: 0;
        box-shadow: none;
    }
    
    .rankPageContent .listBox .listItem:nth-child(2) .listImgBox,
    .rankPageContent .listBox .listItem:nth-child(3) .listImgBox {
        width: 111px;
        height: 148px;
    }
    
    .rankPageContent .listBox .listItem:nth-child(2) .listImgBox::before,
    .rankPageContent .listBox .listItem:nth-child(3) .listImgBox::before {
        width: 32px;
        height: 32px;
        top: -10px;
        left: -10px;
    }
    
    .rankPageContent .listBox .listItem:nth-child(2) .listInfoBox,
    .rankPageContent .listBox .listItem:nth-child(3) .listInfoBox {
        width: calc(100% - 126px);
        height: 148px;
    }
    
    .rankPageContent .listBox .listItem:nth-child(2) .itemName,
    .rankPageContent .listBox .listItem:nth-child(3) .itemName {
        font-size: 15px;
        line-height: 20px;
        height: 40px;
        margin-bottom: 5px;
    }
    
    .rankPageContent .listBox .listItem:nth-child(2) .itemDesc,
    .rankPageContent .listBox .listItem:nth-child(3) .itemDesc {
        font-size: 13px;
        line-height: 18px;
        height: 54px;
        margin-bottom: 5px;
    }
    
    .rankPageContent .listBox .listItem:nth-child(2) .itemAuthor,
    .rankPageContent .listBox .listItem:nth-child(3) .itemAuthor {
        font-size: 13px;
    }
    
    /* 第四名及以后 - 移动端一列 */
    .rankPageContent .listItem {
        width: 100%;
        padding: 12px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0;
        border: 0;
        border-top: 1px solid var(--color-efefef);
        border-radius: 0;
        box-shadow: none;
    }
    
    .rankPageContent .listBox .listItem:nth-child(3n+2) {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }
    
    .rankPageContent .listBox .listItem:nth-child(4),
    .rankPageContent .listBox .listItem:nth-child(5),
    .rankPageContent .listBox .listItem:nth-child(6) {
        margin-top: 0;
    }
    .rankPageContent-video{
        margin: 12px 12px 0;
    }
    /* 移动端 video 版本：所有项目2个一排 */
    .rankPageContent-video .listBox {
        gap: 10px;
    }
    
    .rankPageContent-video .listBox .listItem {
        width: calc((100% - 10px) / 2) !important;
        flex-direction: column !important;
        padding: 8px !important;
        margin: 0 !important;
        border: 1px solid var(--color-efefef) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* 移动端前三个也是2个一排 */
    .rankPageContent-video .listBox .listItem:nth-child(1),
    .rankPageContent-video .listBox .listItem:nth-child(2),
    .rankPageContent-video .listBox .listItem:nth-child(3) {
        width: calc((100% - 10px) / 2) !important;
    }
    
    /* 移动端第一个保持特殊背景 */
    .rankPageContent-video .listBox .listItem:nth-child(1) {
        background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%) !important;
        border: 1px solid #555 !important;
    }
    
    .rankPageContent-video .listBox .listItem .listImgBox {
        width: 100% !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
    }
    
    .rankPageContent-video .listBox .listItem .listInfoBox {
        width: 100% !important;
        padding-left: 0 !important;
    }
    
    .rankPageContent-video .listBox .listItem .itemName {
        margin-bottom: 8px !important;
    }
}





