.equipment-item-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.equipment-item-content-item {
    width: calc(50% - 12px);
    border-radius: 12px;
    border: 1px solid #000;
    overflow: hidden;
    margin: 8px 6px;
    position: relative;
}

@media screen and (max-width: 740px) {
    .equipment-item-content-item {
        width: calc(100% - 12px);
    }
}

@media screen and (max-width: 350px) {
    .equipment-item-content-item {
        width: 100%;
    }
}

.equipment-item-content-item-info {
    padding: 8px 16px;
    margin-top: 12px;
}

.equipment-item-content-item-name {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    width: fit-content;
}

.equipment-item-content-item-name:hover {
    color: #ab3b3a;
}

.equipment-item-content-item-specification {
    font-size: 12px;
    color: rgba(60, 60, 67, 0.8);
    line-height: 1;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.equipment-item-content-item-description {
    line-height: 25px;
    color: rgba(60, 60, 67, 0.8);
    display: -webkit-box;
    overflow: visible;
    -webkit-box-orient: vertical;
    font-size: 16px;
}

a.equipment-item-content-item-link {
    font-size: 12px;
    background: #9999992b;
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
}

a.equipment-item-content-item-link:hover {
    background: #425AEF;
    color: #fff;
}

h2.equipment-item-title {
    line-height: 1;
}

.equipment-item-description {
    line-height: 1;
    margin: 4px 0 8px 0;
    color: rgba(60, 60, 67, 0.8);
}

.equipment-item-content-item-cover {
    width: 100%;
    height: 200px;
    display: flex;
    margin: 8px 0 0 0;
    justify-content: center;
}

img.equipment-item-content-item-image {
    object-fit: cover;
    height: 100%;
}

div#equipment {
    margin-top: 26px;
}

.equipment-item-content-item-toolbar {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    padding: 0 16px;
}

a.bber-reply {
    cursor: pointer;
}

.no-border-radius {
    border-radius: 0;
    border: none;
}

.timeline {
    width: 100%;
    height: 20px;
    background-color: #e6dece;
    position: relative;
    overflow: hidden;
    margin: 15px 0;
    border-radius: 0.5rem;
    height: 2.5rem;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #ab3b3a;
    position: absolute;
    animation: progressAnimation 2s linear forwards;
    animation-delay: -0.1s;
    border-radius: 0.5rem
}

.past-time {
    width: 2px;
    height: 20px;
    position: absolute;
    transform-origin: left;
    animation: pastTimeAnimation 3s linear forwards;
}

.percentage-label {
    position: absolute;
    left: 0;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    top: 8px;
    white-space: nowrap;
    transition: left 0.5s linear;
    visibility: hidden;
}

.time-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.time-labels>div {
    font-size: 14px;
    color: var(--Jay-fontcolor);
}

.c-text-xin {
    position: relative;
    top: -2px;
    color: #fff;
    padding: 0 2px;
    display: inline-block;
    padding: 0 2px;
    text-align: center;
    vertical-align: middle;
    font-style: normal;
    color: #fff;
    overflow: hidden;
    line-height: 18px;
    height: 18px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 300;
    margin-left: 2px;
    background-color: #ff455b;
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }
    100% {
        width: var(--progress-percentage, 0);
    }
}

@keyframes pastTimeAnimation {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(var(--past-time-percentage, 0));
    }
}

.timeline:hover {
    animation: btn31-eff 3s linear infinite;
    cursor: pointer;
}

@keyframes btn31-eff {
    0% {
        box-shadow: 0 0 2px #ab3b3a;
    }
    50% {
        box-shadow: 0 0 40px #ab3b3a;
    }
    100% {
        box-shadow: 0 0 2px #ab3b3a;
    }
}
