﻿
/*#region 设置滚动条的样式*/
/*ie滚动条样式*/
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    -ms-scrollbar-face-color: #B4B4B4;
    scrollbar-face-color: #B4B4B4;
    -ms-scrollbar-3dlight-color: #B5CBF7;
    scrollbar-3dlight-color: #B5CBF7;
    -ms-scrollbar-darkshadow-color: #B5CBF7;
    scrollbar-darkshadow-color: #B5CBF7;
    -ms-scrollbar-base-color: #B5CBF7;
    scrollbar-base-color: #B5CBF7;
    -ms-scrollbar-shadow-color: #efeff4;
    scrollbar-shadow-color: #efeff4;
    -ms-scrollbar-highlight-color: #efeff4;
    scrollbar-highlight-color: #efeff4;
    -ms-scrollbar-track-color: #efeff4;
    scrollbar-track-color: #efeff4;
    -ms-scrollbar-arrow-color: #4A6184;
    scrollbar-arrow-color: #4A6184;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*font-family: -apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,simsun,sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/*chrome滚动条样式*/
/*滚动条整体部分，其中的属性有width,height,background,border（就和一个块级元素一样）等。*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 8px;
}

::-webkit-scrollbar-track-piece {
    /*内层轨道，滚动条中间部分（除去）。*/
    background: rgb(240, 240, 240);
}

::-webkit-scrollbar-thumb {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*滚动条里面可以拖动的那部分*/
    background: #dee1e6;
}

    ::-webkit-scrollbar-thumb:hover {
        /*滚动条里面可以拖动的那部分*/
        background: rgb(180, 180, 180);
    }

::-webkit-scrollbar-corner {
    /*边角*/
    background: rgb(200, 200, 200);
}

::-webkit-scrollbar-resizer {
    /*定义右下角拖动块的样式*/
    background: rgb(200, 200, 200);
}

::-webkit-scrollbar-track {
    background: #eee;
    border: thin solid lightgray;
    -moz-box-shadow: 0 0 3px #dfdfdf inset;
    -webkit-box-shadow: 0 0 3px #dfdfdf inset;
    box-shadow: 0 0 3px #dfdfdf inset;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
/*#endregion*/

/*#region 重置*/
body {
    color: #777;
    line-height: 1.6;
    font-size: 12px;
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    -moz-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
}

input:-internal-autofill-selected {
    background-color: transparent;
    box-shadow: none;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999 !important;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999 !important;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999 !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999 !important;
}



*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ul {
    list-style: none;
}

blockquote {
    quotes: none;
}

    blockquote:before,
    blockquote:after {
        content: '';
        content: none;
    }

del {
    text-decoration: line-through;
}

a {
    text-decoration: none;
    outline: 0px;
    color: #2fb3ff;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
        color: #0071e6;
    }

p {
    color: #333;
    font-size: 0.75rem;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.75rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: normal;
    line-height: 1em;
}

h1,
h1 a {
    font-size: 1.1875rem;
}

h2,
h2 a {
    font-size: 1.0625rem;
}

h3,
h3 a {
    font-size: 0.9375rem;
}

h4,
h4 a {
    font-size: 0.875rem;
}

h5,
h5 a {
    font-size: 0.8125rem;
}

h6,
h6 a {
    font-size: 0.75rem;
}

pre {
    white-space: pre-wrap;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

input,
button,
textarea {
    -webkit-appearance: none;
    resize: none;
    outline: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-size: 12px;
}


input {
    border: 0.0625rem solid #ced4da;
    background-color: #fff;
    border-radius: 3px;
}

    input[readonly], textarea[readonly] {
        background-color: #e8e9e9;
    }

select {
    border: 0.0625rem solid #ced4da;
}

textarea {
    border: 0.0625rem solid #ced4da;
    background-color: #fff;
    padding: 0.3125rem;
    width: 100%;
    resize: auto;
}
/*#endregion*/

.bx-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.bx-layer {
    /* background: url(/Content/buyer/images/layer.png) no-repeat 0px 0px;*/
    background-size: cover;
    min-height: 100vh;
    background-color: rgba(33,43,54,.3);
}

.bx-login-bg {
    background: url(/Content/buyer/images/login2.jpg) no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    background-position: center center;
}

.bx-login-content {
    text-align: center;
    margin: 0 auto;
    width: 360px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -87px;
    margin-left: -180px;
}

    .bx-login-content .bx-login-info h2 {
        font-size: 55px;
        line-height: 60px;
        color: #ffff;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .bx-login-content .bx-login-info p {
        color: #ffffffd6;
        font-style: normal;
        font-weight: normal;
        font-size: 17px;
        line-height: 25px;
        margin: 40px 0;
    }

.bx-login-form-gds {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
}

.bx-login-form input {
    background-color: #f6f6f6;
    border: 1px solid #eee;
    border-radius: 3px;
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    padding: 0px 15px;
    color: #304659;
    height: 45px;
    text-align: left;
    -webkit-appearance: none;
    margin-bottom: 20px;
}

.bx-login-btn {
    background: #000000;
    color: #fff;
    text-decoration: none;
    padding: 0px 30px;
    text-align: center;
    font-size: 17px;
    display: inline-block;
    width: 100%;
    border: none;
    cursor: pointer;
    height: 45px;
    line-height: 45px;
    -webkit-appearance: none;
}

    .bx-login-btn:hover {
        opacity: 0.8;
        background-color: #000000;
    }

.bx-header-top {
    padding: 0;
}


.bx-header-search {
}

    .bx-header-search input {
        padding: 8px 10px;
        height: auto;
        box-shadow: none;
        margin: 0;
        -webkit-tap-highlight-color: transparent;
        /*  border: none;*/
        background-color: transparent;
        color: #3d3d3d;
        font-size: 12px;
    }

    .bx-header-search button {
        margin-right: -1px;
    }

.bx-dropdown {
    top: 35px;
    z-index: 9999;
    display: none;
    min-width: 120px;
}

    .bx-dropdown.cate {
        width: 800px;
    }

    .bx-dropdown a {
        color: #888888;
    }

        .bx-dropdown a.viewall {
            color: #46a0fb;
            font-weight: bold;
            margin-top: 10px;
            display: block;
            font-size: 15px;
            font-size: .9375rem;
        }

    .bx-dropdown li:hover a {
        color: #222;
    }

.bx-hover-show:hover .bx-dropdown {
    display: block;
}

.bx-cate-list {
    padding: 20px;
}

    .bx-cate-list h4 {
        font-size: 20px;
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .bx-cate-list .row-2 a {
        font-size: 15px;
        font-size: .9375rem;
        font-weight: 400;
        color: #3d3d3d;
        width: 25%;
        padding: 5px 0;
    }

        .bx-cate-list .row-2 a:hover {
            text-decoration: underline;
        }

.bx-popular-cate {
    padding: 10px 0;
}

    .bx-popular-cate a {
        /*  margin-right: 10px;*/
    }

        .bx-popular-cate a:hover {
            text-decoration: underline;
        }

    .bx-popular-cate img {
        height: 160px;
        width: 160px;
        /* width: auto;*/
        /* height: auto;
        width: 100%;*/
        display: block;
        margin: 0 auto;
    }




.bx-product-list li, .bx-product-list-aside li.product-item {
    /* padding: 0 10px;*/
    margin-bottom: 5px;
    width: 33.33333333%;
}

.bx-product-list-aside.viewlist li.product-item {
    /* padding: 0 10px;*/
    margin-bottom: 5px;
    width: 33.33333333%;
}

.bx-product-list li.product-item img {
    width: 100%;
    max-height: 152px;
}

.bx-product-list-aside li.product-item img {
    width: 100%;
    height: 250px;
}

.bx-product-list-aside.table li.product-item img {
    max-width: 100%;
    height: 250px;
    margin: 0 auto;
    display: block;
}

.bx-product-list-aside.viewlist li.product-item img {
    width: 100%;
    height: 160px;
}

.bx-product-list li span, .bx-product-list-aside li.product-item span {
    color: #777;
}

.bx-product-list li a, .bx-product-list-aside li.product-item a {
    color: #777;
}

    .bx-product-list li a:hover, .bx-product-list-aside li.product-item a:hover {
        text-decoration: underline;
    }

/*.bx-product-list-aside li.product-item .bx-iamge-view .main {
    margin-bottom: 10px;
}*/

.bx-product-list-aside li.product-item .bx-iamge-view .smallimage {
    width: 100%;
}

.bx-product-list-aside li.product-item .bx-iamge-view .bar img {
    width: 80px;
    margin-left: 10px;
}

.bx-product-list2 .product-item {
    width: 50%;
    margin-bottom: 20px;
}

    .bx-product-list2 .product-item img {
        width: auto;
        /*  max-height: 182px;*/
    }

/*#region leo-accordion**/
.bx-accordion {
    border: 1px solid #eee;
    border-bottom: none;
    position: relative;
    /*-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;*/
}

    .bx-accordion h3 {
        padding: 10px 30px 10px 10px;
        background-color: #eee;
        border-bottom: 1px solid #ddd;
        position: relative;
        margin-top: 0;
    }

        .bx-accordion h3 .iconfont {
            position: absolute;
            top: 8px;
            font-size: 18px;
        }

        .bx-accordion h3 .icon-xiala, .bx-accordion h3 .icon-xiala2 {
            right: 8px;
        }

    .bx-accordion menu {
        display: none;
    }

    .bx-accordion h3.absolute-top ~ menu {
        overflow: auto;
        padding-top: 40px;
    }

    .bx-accordion menu a {
        border-bottom: 1px solid #eee;
        display: block;
        padding: 10px 15px 10px 10px;
        color: #555;
        text-align: left;
        position: relative;
    }

.homeaside .bx-accordion menu a {
    color: #2fb3ff;
}

.bx-accordion menu a:hover {
    text-decoration: none;
    background-color: #f5f5f5;
}

.bx-accordion menu a.bx-active {
    /*  background-color: #428bca;
        border: 1px solid #428bca;*/
    color: #428bca;
    font-weight: bold;
}

    .bx-accordion menu a.bx-active .iconfont.icon-xiala1 {
        display: inline-block;
        font-size: 14px;
    }

.bx-accordion menu a .iconfont.icon-xiala1 {
    display: none;
    /* position: absolute;*/
}
/*
    .leo-accordion menu a:hover .iconfont {
        display: block;
    }*/


.bx-accordion menu a .icon-xiugai {
    right: 40px;
    top: 9px;
    font-size: 14px;
}

.bx-accordion menu a .icon-hebingxingzhuang {
    right: 10px;
    font-size: 20px;
    top: 5px;
}
/*#endregion **/


/*#region leo-pagination**/
.bx-pagination {
    background-color: #FFFFFF;
    padding: 0.3125rem 0.3125rem;
    height: 2.5rem;
}

.leo-footer .bx-pagination {
    border-top: none;
}

.bx-pagination.fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: right;
}

.bx-pagination .total {
    padding: 0.375rem 0.625rem;
}

.bx-pagination .leo-input-row {
    width: 6.25rem;
    padding: 0;
}

    .bx-pagination .leo-input-row select {
        width: 100%;
        text-align: center;
        height: 1.75rem;
        border: 0.0625rem solid #ced4da;
        padding: 0 0.625rem;
    }

    .bx-pagination .leo-input-row input {
        height: 1.75rem;
    }

    .bx-pagination .leo-input-row.down:after {
        right: 10px;
    }

    .bx-pagination .leo-input-row.go {
        font-size: 0;
        width: 90px;
        margin-right: 30px;
    }

        .bx-pagination .leo-input-row.go input {
            width: 40px;
            text-align: center;
        }

.bx-pagination .leo-input-prepend,
.bx-pagination .leo-input-after {
    line-height: 1.6875rem;
    padding: 0 2px;
    background-color: transparent;
    border: none;
}

    .bx-pagination .leo-input-prepend ~ input {
        border-radius: .25rem;
    }

.bx-pagination .leo-input-row.page {
    line-height: 1.75rem;
    width: auto;
}

    .bx-pagination .leo-input-row.page span {
        display: inline-block;
        vertical-align: top;
        padding: 0 0.625rem;
        font-weight: bold;
    }

        .bx-pagination .leo-input-row.page span.disabled {
            cursor: not-allowed;
            color: #c8c9ca;
        }

        .bx-pagination .leo-input-row.page span.cur {
            color: #ed1818;
        }

    .bx-pagination .leo-input-row.page a {
        padding: 3px 8px;
        color: #333;
        border: 1px solid #ddd;
        background-color: #f7f7f7;
        margin-right: 5px;
    }
/*#endregion **/
.bx-list-tool span {
    font-weight: bold;
}

.bx-list-tool select {
    border: 0.0625rem solid #ced4da !important;
    padding: 6px 15px;
    border-radius: 5px;
}

.bx-cart {
    max-width: 400px;
    z-index: 1031;
    height: 100%;
    overflow: hidden;
    width: 100%;
}


.leo-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1033;
    background-color: rgba(0,0,0,.2);
    display: none;
}

@media (min-width: 768px) {
    .bx-container {
        width: 750px;
    }

    .bx-product-list li {
        width: 33.33333333%;
    }
}

@media (min-width: 992px) {
    .bx-container {
        width: 970px;
    }

    .bx-product-list li {
        width: 20%;
    }
}

@media (min-width: 1200px) {
    .bx-container {
        width: 90%;
    }

    .bx-product-list.home li, .bx-product-list-aside.home li.product-item {
        width: 25%;
    }

    .bx-product-list li {
        width: 25%;
    }
}


@media all and (max-width:992px) {
    .bx-login-content {
        padding: 12em 0 0 0;
    }
}

@media all and (max-width:736px) {
    .bx-login-content {
        padding: 12em 0 0 0;
    }
}

@media all and (max-width:568px) {
    .bx-login-content h2 {
        font-size: 45px;
        line-height: 55px;
    }
}

@media all and (max-width: 600px) {
    .bx-login-content h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .bx-login-content {
        padding: 8em 0 0 0;
    }
}

@media all and (max-width: 480px) {
    .bx-login-content h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .bx-login-form-gds {
        grid-template-columns: 1fr;
    }
}


@media all and (max-width:384px) {

    .bx-login-content {
        padding: 6em 0 0 0;
    }

        .bx-login-content h2 {
            font-size: 35px;
            line-height: 45px;
        }
}

.w-e-text pre {
    max-height: 80px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.plistcontainer {
    overflow: auto;
    padding-left: 240px;
}

.bx-productheight {
    height: calc(100% - 136px);
    overflow: hidden;
}

.pagecontainer {
    left: 240px;
}

.mui-indicator-lefticon, .mui-indicator-righticon {
    position: absolute;
    top: 50%;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.3);
    cursor: pointer;
    margin-top: -18px;
}

.mui-indicator-lefticon {
    left: 40px;
}

.mui-indicator-righticon {
    right: 40px;
}

.buyer-footer a {
    color: #777;
}

    .buyer-footer a:hover {
        color: #777;
        text-decoration: underline;
    }

.buyer-footer ul {
    padding-top: 10px;
}

    .buyer-footer ul li {
        padding: 5px 0;
    }
