.wrap {
    width: 100%;
    min-height: 100vh;
    background: #fff;
}

.pageSize {
    width: 990px !important;
    min-width: 990px !important;
}

/* 内容 */

.content {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    box-sizing: border-box;
}

.content_main {
    width: 100%;
    margin-bottom: 20px;
}

/* 搜索 */

.search_bar {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search_barLeft {
    height: 60%;
    cursor: pointer;
}

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

.search_barRight {
    display: flex;
    align-items: center;
    height: 24px;
    border: 2px solid var(--lordColor);
    background: var(--lordColor);
    overflow: hidden;
}

.search_barRight input {
    width: 260px;
    height: 100%;
    padding: 3px 5px;
    line-height: 18px;
    border: 0;
}

.search_barRight input:focus-visible {
    outline: none;
}

.search_barRight_btn {
    width: 48px;
    height: 100%;
    background: var(--lordColor);
    text-align: center;
    color: #fff;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
}

/* 状态筛选 */
.myOrder_cenNav {
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.myOrder_cenNav_leftItem {
    font-size: 15px;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.myOrder_cenNav_leftItem ~ .myOrder_cenNav_leftItem {
    margin-left: 20px;
}

.myOrder_cenNav_leftItem:hover {
    color: var(--lordColor);
}

.myOrder_cenNav_leftItem_ative {
    color: var(--lordColor);
    border-color: var(--lordColor);
}

/* 配送地址 */

.shipping_address {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.shipping_addressLeft {
    display: flex;
    align-items: center;
    font-size: 22px;
    /* color: var(--lordColor); */
    font-weight: 700;
}

.shipping_addressLeft p {
    font-size: 14px;
    margin-left: 3px;
}

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

.shipping_addressRight_title {
    font-size: 12px;
    color: #666;
}

.shipping_addressRight_box {
    position: relative;
    top: 0;
    padding: 0 4px;
    height: 22px;
    background: #fff;
    border: 1px solid #cecbce;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    letter-spacing: 1px;
    font-size: 12px;
    cursor: pointer;
}

.shipping_addressRight_box .iconfont {
    margin-left: 4px;
}

/* 购物车列表 */

.shoppingCart_list {
    width: 100%;
}

/* 购物车导航栏 */

.shoppingCart_nav {
    width: 100%;
    height: 32px;
    line-height: 32px;
    /* margin-bottom: 10px; */
    padding: 5px 0;
    background: #f3f3f3;
    border: 1px solid #e9e9e9;
    border-top: 0;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.shoppingCart_navAll {
    width: 133px;
    padding-left: 11px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.shoppingCart_navAll input {
    margin-right: 6px;
}

.shoppingCart_navGoods {
    flex: 1;
    padding-right: 10px;
    box-sizing: border-box;
}

.shoppingCart_navPrice {
    width: 210px;
    padding-right: 50px;
    box-sizing: border-box;
    text-align: right;
}

.shoppingCart_navNum {
    width: 80px;
    text-align: center;
    margin-right: 50px;
    box-sizing: border-box;
}

.shoppingCart_navSubtotal {
    width: 140px;
    padding-right: 40px;
    box-sizing: border-box;
    text-align: right;
}

.shoppingCart_navOperation {
    width: 75px;
}

/* 购物车列表 */
.cart_store {
    padding: 10px;
    box-sizing: border-box;
}
.shoppingCart_ul {
    width: 100%;
}

.shoppingCart_li {
    width: 100%;
    border: 1px solid #f1f1f1;
    background: #fff;
    padding: 10px 0;
    box-sizing: border-box;
    display: flex;
    font-size: 12px;
}

.shoppingCart_li ~ .shoppingCart_li {
    border-top: 0;
}

.shoppingCart_liAll {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.shoppingCart_liGoods {
    cursor: pointer;
    flex: 1;
    padding: 0 10px 0 20px;
    box-sizing: border-box;
}

.shoppingCart_liGoods_top {
    width: 100%;
    display: flex;
}

.shoppingCart_liGoods_img {
    width: 80px;
    height: 80px;
    border: 1px solid #eee;
    margin-right: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shoppingCart_liGoods_img img {
    width: 100%;
    height: 100%;
    display: block;
}

.shoppingCart_liGoods_title {
    width: 207px;
    height: 36px;
    font-size: 12px;
    color: #333;
}

.shoppingCart_liGoods_spec {
    flex: 1;
    font-size: 12px;
    color: #333;
    margin-left: 20px;
}

.shoppingCart_liGoods_bottom {
    width: 100%;
    margin-top: 15px;
}

.shoppingCart_liGoods_bottomItem {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.shoppingCart_liGoods_bottomItem01 {
    width: 300px;
    color: #999;
    margin-right: 20px;
}

.shoppingCart_liGoods_bottomItem02 {
    color: #666;
    margin-left: 10px;
}

.shoppingCart_liGoods_bottomItem p {
    color: #999;
    margin: 0 5px;
}

.shoppingCart_liGoods_bottomItem01:hover,
.shoppingCart_liGoods_bottomItem02:hover {
    color: var(--lordColor);
}

.shoppingCart_liPrice {
    width: 210px;
    padding-right: 40px;
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.shoppingCart_liNum {
    width: 80px;
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-right: 50px;
    box-sizing: border-box;
}

.shoppingCart_liNum_operation {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #cbcbcb;
}

.shoppingCart_liNum_operationSub,
.shoppingCart_liNum_operationAdd {
    width: 17px;
    height: 20px;
    line-height: 18px;
    background: #f1f1f1;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
}

.operationAddSub {
    cursor: not-allowed;
}

.shoppingCart_liNum_operationInput {
    flex: 1;
    height: 20px;
    /* border-left: 1px solid #cbcbcb;
    border-right: 1px solid #cbcbcb; */
}

.shoppingCart_liNum_operationInput input {
    width: 100%;
    height: 100%;
    padding: 2px;
    box-sizing: border-box;
    text-align: center;
}

.shoppingCart_liNum_operationInput input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 2px;
    box-sizing: border-box;
    text-align: center;
}

.shoppingCart_liNum_operationInput input:focus-visible {
    outline: none;
}

.shoppingCart_liNum_text {
    font-size: 12px;
    color: #aaa;
}

.shoppingCart_liSubtotal {
    width: 140px;
    padding-right: 40px;
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    font-weight: bold;
}

.shoppingCart_liOperation {
    width: 75px;
}

.shoppingCart_liOperation_btn {
    font-size: 12px;
    color: #666;
    cursor: pointer;
}

.shoppingCart_liOperation_btn:hover {
    color: var(--lordColor);
}

/* 购物车操作 */

.shoppingCart_opera {
    width: 100%;
}

/* 购物车操作占位栏 */

.shoppingCart_operaSeat {
    width: 100%;
    height: 52px;
}

.shoppingCart_operaStatic .shoppingCart_operaSeat {
    height: 0;
}

/* 购物车操作栏 */

.shoppingCart_operaBox {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -1px 8px rgb(0 1 1 / 8%);
}

.shoppingCart_operaStatic .shoppingCart_operaBox {
    position: static;
    bottom: 0;
    left: 0;
    box-shadow: none;
}

.shoppingCart_operaBar {
    width: 100%;
    height: 52px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.shoppingCart_operaStatic .shoppingCart_operaBar {
    height: 50px;
    border: 1px solid #f1f1f1;
}

.shoppingCart_operaLeft {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.shoppingCart_operaLeftAll {
    padding-left: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.shoppingCart_operaLeftAll input {
    margin-right: 3px;
}

.shoppingCart_operaLeftBtn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}

.shoppingCart_operaLeftBtn:hover {
    color: var(--lordColor);
}

.shoppingCart_operaRight,
.shoppingCart_operaRight_info,
.shoppingCart_operaRight_infoLeft,
.shoppingCart_operaRight_infoRight {
    display: flex;
    align-items: center;
}

.shoppingCart_operaRight_infoLeft {
    color: #999;
    line-height: 20px;
    /* cursor: pointer; */
}

.shoppingCart_operaRight_infoLeft02 {
    color: var(--lordColor);
    margin: 0 3px;
    font-weight: 700;
}

.shoppingCart_operaRight_infoLeft .iconfont {
    margin-left: 3px;
    transition: transform 0.2s;
}

.shoppingCart_operaRight_infoRight {
    margin-left: 15px;
    font-size: 12px;
    color: #999;
}

.shoppingCart_operaRight_infoRight02 {
    font-size: 16px;
    color: var(--lordColor);
    font-weight: 700;
}

.shoppingCart_operaRight_infoRight img {
    height: 18px;
    width: 12px;
    display: block;
    margin-left: 5px;
}

.shoppingCart_operaRight_btn {
    width: 94px;
    height: 52px;
    background: var(--lordColor);
    line-height: 52px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin-left: 15px;
    cursor: pointer;
}

.shoppingCart_operaSelect {
    display: none;
    position: absolute;
    z-index: 10;
    top: -122px;
    left: 0;
    width: 100%;
    height: 122px;
    background: hsla(0, 0%, 40%, 0.85);
}

.operaSelect_title {
    width: 100%;
    color: #fff;
    height: 18px;
    line-height: 18px;
    padding: 5px 0 0 10px;
    font-size: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.operaSelect_title p {
    margin: 0 5px;
    color: var(--lordColor);
}

.operaSelect_rotation {
    width: 100%;
    height: 82px;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.operaSelect_rotationLeft,
.operaSelect_rotationRight {
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.operaSelect_rotationLeft .iconfont,
.operaSelect_rotationRight .iconfont {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
}

.operaSelect_rotationCen {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.operaSelect_rotationCen .swiper-slide {
    width: 82px !important;
}

.rotationCenSwiper {
    width: 100%;
    overflow: hidden;
}

.rotationCen_img {
    width: 100%;
    height: 100%;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.rotationCen_img img {
    width: 100%;
    height: 100%;
    display: block;
}

/* 推荐商品 */

.recomm_goods {
    width: 100%;
    margin-top: 20px;
}

.recomm_goodsTitle {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

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

.recomm_goodsTitle_top::before,
.recomm_goodsTitle_top::after {
    content: "";
    display: block;
    width: 13px;
    height: 1px;
    background: #f1f1f1;
    margin: 0 20px;
}

.recomm_goodsTitle_top p {
    font-weight: 700;
}

.recomm_goodsTitle_top .iconfont {
    font-size: 24px;
    color: var(--lordColor);
    margin-right: 5px;
}

.recomm_goodsTitle_bottom {
    margin-top: 5px;
    font-size: 12px;
    color: #434343;
}

.recomm_goodsUl {
    width: 100%;
    border: 1px solid #f1f1f1;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.recomm_goodsLi {
    width: 25%;
    height: 254px;
    /* height: 275px; */
    padding: 0 18px;
    box-sizing: border-box;
    font-size: 12px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    cursor: pointer;
}

.recomm_goodsLi_img {
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.recomm_goodsLi_img img {
    width: 100%;
    height: 100%;
    display: block;
}

.recomm_goodsLi_title {
    height: 36px;
    color: #666;
    margin-bottom: 6px;
    cursor: pointer;
}

.recomm_goodsLi_title:hover {
    color: var(--lordColor);
}

.recomm_goodsLi_price {
    color: var(--lordColor);
}

.recomm_goodsLi_num {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recomm_goodsLi_numLeft {
    color: #434343;
}

.recomm_goodsLi_numright {
    width: 27px;
    height: 24px;
    border: 1px solid #e2e2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.recomm_goodsLi_numright .iconfont {
    color: var(--lordColor);
    font-size: 26px;
}

.recomm_goodsLi_numright:hover {
    background: var(--lordColor);
}

.recomm_goodsLi_numright:hover .iconfont {
    color: #fff;
}

/* 侧边栏 */

.sidebar {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
    width: 35px;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.sidebar_ul {
    width: 100%;
}

.sidebar_ulTwo {
    position: absolute;
    bottom: 0;
    z-index: 99;
}

.sidebar_li {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.sidebar_li ~ .sidebar_li {
    margin-top: 1px;
}

.sidebar_li a {
    display: block;
    width: 100%;
    height: 100%;
}

.sidebar_li i {
    position: relative;
    z-index: 99;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #7a6e6e;
    background-image: url("../../images/22.png");
    background-repeat: no-repeat;
}

.sidebar_liSpan {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    background: var(--lordColor);
    line-height: 14px;
}

.sidebar_liOne i {
    background-image: url("../../images/23.png");
    background-position: center;
}

.sidebar_liTwo i {
    background-position: -86px -175px;
}

.sidebar_liThree i {
    background-position: -48px 0;
}

.sidebar_liFour i {
    background-position: -188px -100px;
}

.sidebar_liFive i {
    background-image: url("../../images/24.gif");
    background-position: center;
}

.sidebar_liSix i {
    background-position: -46px -300px;
}

.sidebar_liSeven i {
    background-position: -46px -250px;
}

.sidebar_li p {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 62px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: var(--lordColor);
    transition: left 0.3s ease-in-out 0.1s;
}

.sidebar_li:hover p {
    left: -60px;
}

.sidebar_li:hover i {
    background-color: var(--lordColor);
}

.sidebar_liFive_img {
    display: none;
    position: absolute;
    bottom: 0px;
    left: -146px;
    width: 142px;
    padding: 10px;
    box-sizing: border-box;
    background: var(--lordColor);
    color: #fff;
    font-size: 14px;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
}

.sidebar_liFive_img img {
    margin-top: 8px;
    width: 100%;
    display: block;
}

.sidebar_liFive:hover .sidebar_liFive_img {
    display: flex;
}

/* 首页底部 */

.index_footer {
    background: #eaeaea;
}
