
@media (min-width: 851px) {
    .rotate-90 {
      transform: rotate(90deg);
    }
    .rotate-180 {
      transform: rotate(180deg);
    }
    .rotate-360 {
      transform: rotate(360deg);
    }

}
 /* ==========================================================================
卡片动画
   ========================================================================== */


.order .item .is-border {
    height: 0; 
    transition: height 0.5s ease;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    border-left: 3px solid var(--primary-color) !important;
    border-width: 0px 0px 0px 3px !important;
    z-index: 10;
}

.order .item:hover .is-border {
    height: 100%;
}

.order .item .col-inner {
    position: relative;
    transition: transform 0.3s ease;
}

/* 重点：当容器被 hover 时，改变内部 h3 的颜色 */
.order .item:hover h3 {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.order .item:hover .col-inner {
    transform: translateY(-3px);
}


.order .item .num p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}