/* 订单顶部 */

.order_nav {
    width: 100%;
    height: 80px;
    background: var(--lordColor);
}

.order_navCen {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order_navCen_left {
    height: 100%;
    display: flex;
    align-items: center;
}

.order_navCen_leftLogo {
    height: 80%;
    cursor: pointer;
}

.order_navCen_leftLogo img {
    height: 100%;
    display: block;
}

.order_navCen_leftIndex {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-left: 20px;
}

.order_navCen_leftIndex a {
    margin-top: 5px;
    color: #ffb2b2;
    border: 1px solid #ffb2b2;
    height: 18px;
    line-height: 18px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
}

.order_navCen_leftIndex a:hover {
    border-color: #fff;
    background: #fff;
    color: var(--lordColor);
}

.order_navCen_leftUl {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.order_navCen_leftLi,
.order_navCen_leftLi_a {
    color: #fff;
    font-size: 14px;
}

.order_navCen_leftLi_a {
    cursor: pointer;
}

.order_navCen_leftLiTitle,
.order_navCen_leftLi {
    padding: 9px 16px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.order_navCen_leftLi {
    /* max-width: 74px; */
    min-width: 56px;
}

.order_navCen_leftLi .iconfont {
    transition: transform 0.4s;
    margin-left: 5px;
}

.order_navCen_leftLi:hover .order_navCen_leftDropDown {
    display: block;
}

.order_navCen_leftLi:hover .iconfont {
    animation: iconfontRotate 0.4s;
    transform: rotate(180deg);
}

@keyframes iconfontRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

.order_navCen_leftDropDown {
    display: none;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 99;
    width: 100%;
    background: #fff;
    color: #666;
    border: 1px solid #ddd;
}

.order_navCen_leftDropDown_itemTitle,
.order_navCen_leftDropDown_item {
    padding: 9px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order_navCen_leftDropDown_item {
    font-size: 12px;
    padding-left: 16px;
    justify-content: flex-start;
    text-align: center;
    cursor: pointer;
}

.order_navCen_leftDropDown_item:hover {
    background: #f5f5f5;
    color: var(--lordColor);
}

.order_navCen_leftLi_a:hover {
    text-decoration: underline;
}

.order_navCen_leftLi_cen {
    display: flex;
    align-items: center;
}

.order_navCen_right {
    display: flex;
    align-items: center;
}

.order_navCen_rightInput {
    height: 36px;
    background: #fff;
    display: flex;
}

.order_navCen_rightInput input {
    width: 128px;
    height: 100%;
    font-size: 14px;
    padding: 4px;
    box-sizing: border-box;
}

.order_navCen_rightInput_btn {
    width: 56px;
    height: 100%;
    background: #f7f7f7;
    font-size: 12px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
}

.headerRight_inputShoppingCart,
.inputShoppingCart_dropDown {
    border: none !important;
}

.headerRight_inputShoppingCart_box:hover .inputShoppingCart_dropDown {
    box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.08);
}

/* 内容分类栏 */

.content_classBar {
    padding: 10px 0;
    box-sizing: border-box;
    flex: 0 0 auto;
    /* width: 9.2%; */
    width: 150px;
    background-color: #fff;
}

.content_classBar_title,
.content_classBar_item {
    display: block;
    width: 100%;

    /* height: 35px; */
    background: #fff;
    /* line-height: 35px; */
    font-size: 12px;
    color: #666;
    padding: 10px;
    box-sizing: border-box;
    /* text-align: center; */
}

.content_classBar_item {
    cursor: pointer;
}

.content_classBar_title {
    font-size: 14px;
    font-weight: 700;
}

.content_classBar_item:hover {
    color: var(--lordColor);
    text-decoration: underline;
}
.content_classBar_item_active{
    color: var(--lordColor);
    text-decoration: underline;
}
/* 内容区域 */

.content_region {
    flex: 1;
    margin-left: 10px;
}

.content_regionTitle {
    width: 100%;
    padding: 20px;
    background: #fff;
    box-sizing: border-box;
    font-size: 16px;
    color: #666;
    font-weight: 700;
    margin-bottom: 20px;
}
