﻿html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    margin: 0;
    outline: none;
}

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

img, iframe {
    max-width: 100%;
}

iframe {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
    text-align: left;
}

a:hover, a:link, a:visited, a:active {
    text-decoration: none;
}

a, a:focus {
    outline: none;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: color 200ms ease-out, background-color 200ms ease-out, border-color 200ms ease-out, opacity 200ms ease-out;
    transition: color 200ms ease-out, background-color 200ms ease-out, border-color 200ms ease-out, opacity 200ms ease-out;
}


.qhomew_custom_blue {
    background-color: #1dd388 !important;
}

.page-container {
    max-width: 1460px;
    min-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.ui-input {
    width: 130px;
    background-color: #f6f6f6;
    height: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 24px;
    box-sizing: border-box;
    padding: 2px 10px;
    color: #787878;
    -webkit-transition: width 300ms;
    transition: width 300ms;
}

.page-header-title {
    font-size: 22px;
    color: #333;
    line-height: 30px;
    padding: 8px 0;
    margin-top: 16px;
    padding: 1px 20px;
    padding: 10px;
}

    .page-header-title > span {
        font-size: 14px;
        font-weight: 900;
        line-height: 26px;
        display: inline-block;
        height: 36px;
        border-bottom: 2px solid #22d38a;
    }

    .page-header-title .more-right {
        float: right;
        margin-right: 20px;
        border:none!important;
    }

.global-category-list-ul {
    overflow: hidden;
}

.global-category-list-item {
    float: left;
    position: relative;
    z-index: 1;
    margin: 0 15px 12px 0;
    width: 180px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: border 400ms ease-in-out;
    transition: border 400ms ease-in-out;
}

    .global-category-list-item > a {
        display: block;
        box-sizing: content-box;
        position: relative;
        width: 100%;
        color: #333;
        background-color: #fff;
    }

        .global-category-list-item > a .global-category-img-container > img {
            height: 250px;
        }

        .global-category-list-item > a .global-category-text {
            height: 39px;
            font-size: 14px;
            line-height: 36px;
            color: #333;
            text-align: center;
            -webkit-transition: all 250ms;
            transition: all 250ms;
        }

        .global-category-list-item > a:hover .global-category-text {
            background-color: #1dd388;
            color: #fff;
        }

.videos-block-list {
    width: 100%;
    margin-top: 5px;
    overflow: hidden;
}

.videos-block-item {
    float: left;
    background-color: #fff;
}

    .videos-block-item > a {
        width: 100%;
        display: block;
    }

        .videos-block-item > a:hover .play-icon {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }

        .videos-block-item > a:hover .image-icon {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }

        .videos-block-item > a:hover .videos-block-bottom:before {
            width: 100%;
        }


.videos-block-img {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 10px;
    background-color:black;
}

    .videos-block-img > img {
        width: auto;
        height: 180px;
    }

    .videos-block-img .play-icon {
        width: 40px;
        height: 40px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -20px;
        margin-top: -20px;
        background: url(/Images/common/icon-play.png) no-repeat;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        -webkit-transform: scale(6);
        transform: scale(6);
        opacity: 0;
    }

    .videos-block-img .image-icon {
        width: 40px;
        height: 40px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -20px;
        margin-top: -20px;
        background: url(/Images/common/icon-image.png) no-repeat;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        -webkit-transform: scale(6);
        transform: scale(6);
        opacity: 0;
    }

    .videos-block-img .thumb-title {
        height: 32px;
        line-height: 32px;
        padding: 0 10px;
        background: rgba(0,0,0,0.5);
        position: absolute;
        width: 100%;
        bottom: 0;
        color: #fff;
    }

.videos-block-title {
    padding: 10px;
    background-color: white;
    margin-bottom: 12px;
}

    .videos-block-title .name {
        height: 18px;
        line-height: 18px;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box; /** 对象作为伸缩盒子模型显示 **/
        -webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
        -webkit-line-clamp: 2; /** 显示的行数 **/
        overflow: hidden; /** 隐藏超出的内容 **/
    }

    .worker-block-title {
    padding: 10px;
    padding-top:5px;
    padding-bottom:5px;
    background-color: white;
    margin-bottom: 12px;
}

    .worker-block-title .name {
        height: 18px;
        line-height: 18px;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box; /** 对象作为伸缩盒子模型显示 **/
        -webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
        -webkit-line-clamp: 2; /** 显示的行数 **/
        overflow: hidden; /** 隐藏超出的内容 **/
    }

    .worker-block-text {
    overflow: hidden;
    padding: 0 10px 6px 10px;
    color: red;
    margin-bottom: 5px;
}

     .worker-block-text .desc {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
        color: rgba(0,0,0,0.5) !important;
    }

.videos-block-text {
    overflow: hidden;
    padding: 0 10px 6px 10px;
    margin-bottom: 5px;
}

    .videos-block-text .name {
        float: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
        color: #b9b9b9;
    }

    .videos-block-text .price {
        float: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 20px !important;
        color: red !important;
    }

    .videos-block-text .storename {
        float: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px !important;
        color: #d6cccc !important;
    }

        .videos-block-text .price .sign {
            font-size: 12px !important;
        }

    .videos-block-text .count {
        float: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
        color: #d6cccc !important;
    }

     .videos-block-text .desc {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
        color: rgba(0,0,0,0.5) !important;
    }

    .videos-block-text .createtime {
        float: right;
        padding-right: 10px;
        color: #b9b9b9;
        font-size: 12px;
        height: 18px;
        line-height: 18px;
    }

    .videos-block-text .price {
        float: left;
        padding-right: 10px;
        color: #b9b9b9;
        font-size: 12px;
        height: 18px;
        line-height: 18px;
    }

.videos-block-bottom {
    width: 100%;
    height: 3px;
    background-color: #ececec;
    position: relative;
}

    .videos-block-bottom:before {
        content: '';
        width: 0%;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        background-color: #1cd388;
        height: 3px;
        display: block;
    }

.global-pagination {
    text-align: center;
    margin-top: 10px;
}

    .global-pagination > div {
        display: inline-block;
    }

@font-face {
    font-family: "iconfont";
    src: url("/Content/fonts/iconfont.eot?t=1494251462421");
    src: url("/Content/fonts/iconfont.eot?t=1494251462421#iefix") format("embedded-opentype"),url("/Content/fonts/iconfont.woff?t=1494251462421") format("woff"),url("/Content/fonts/iconfont.ttf?t=1494251462421") format("truetype"),url("/Content/fonts/iconfont.svg?t=1494251462421#iconfont") format("svg");
}

.iconfont, i {
    font-family: "iconfont";
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-search:before {
    content: "\e611";
}

.icon-lishi:before {
    content: "\e60a";
}

.icon-face:before {
    content: "\e600";
}

.icon-fenlei:before {
    content: "\e633";
}

.icon-person:before {
    content: "\e61b";
}

.icon-download:before {
    content: "\e67f";
}

.icon-new-living-anchor:before {
    content: "\e60c";
}

.icon-share:before {
    content: "\e640";
}

.icon-money:before {
    content: "\e614";
}

.icon-trash:before {
    content: "\e7cb";
}

.icon-arrow-left:before {
    content: "\e606";
}

.icon-13zhibo-copy:before {
    content: "\e60e";
}

.icon-zhibo1:before {
    content: "\e622";
}

.icon-arrow-point-right:before {
    content: "\e60f";
}

.icon-jiantouright:before {
    content: "\e601";
}

.icon-icon-03:before {
    content: "\e610";
}

.icon-password:before {
    content: "\e60d";
}

.icon-xinxiuzhubo:before {
    content: "\e621";
}

.icon-triangle-down:before {
    content: "\e602";
}

.icon-jiantou21:before {
    content: "\e607";
}

.icon-anchor:before {
    content: "\e612";
}

.icon-jiantou-copy1:before {
    content: "\e608";
}

.icon-guanzhu1:before {
    content: "\e647";
}

.icon-arrow-top:before {
    content: "\e680";
}

.icon-arrow-down:before {
    content: "\e681";
}

.icon-arrow-right:before {
    content: "\e682";
}

.icon-arrow-point-down:before {
    content: "\e683";
}

.icon-arrow-point-left:before {
    content: "\e684";
}

.icon-arrow-point-top:before {
    content: "\e685";
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

    .row:before, .row:after {
        display: table;
        content: " ";
    }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
}

body, input, select, textarea, button {
    font: 14px/1.5 "Hiragino Sans GB", "STHeiti", "Microsoft YaHei", "Helvetica Neue", "Helvetica", "SimSun", "Tahoma", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.body-container {
    padding-top: 50px;
}

.body-containerV2 {
    padding-top: 50px;
}

body {
    background-color: #f6f6f6;
}

.page-body-container {
    padding-left: 230px;
    padding-right: 30px;
}

    .page-body-container > .right-body-container {
        padding-top: 20px;
        float: left;
    }

.text-align-left {
    text-align: left!important;
}

.text-align-right {
    text-align: right;
}

.text-align-center {
    text-align: center;
}

.line-height-38 {
    line-height: 38px !important;
}

.margin-5 {
    margin: 5px !important;
}

.margin-20 {
    margin: 20px !important;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-9 {
    font-size: 9px !important;
}

.layui-form-checkbox i {
    height: 30px !important;
}

.display-none {
    display: none !important;
}

.width-120 {
    width: 120px !important;
}

.width-250 {
    width: 250px !important;
}

.width-percent-100 {
    width: 100% !important;
}

.min-width-1530 {
    min-width: 1530px !important;
}

.color-red {
    color: red !important;
}

.color-white {
    color: white !important;
}

.color-green {
    color: #1cd388 !important;
}

.border-radius-percent-50 {
    border-radius: 50% !important;
}

.min-height-auto {
    min-height: initial !important;
}

.font-size-16 {
    font-size: 16px !important;
}

.color-black {
    color: #000000 !important;
}

.layui-form-label {
    width: 90px !important;
}

.float-right {
    float: right !important;
}

.margin-top-11 {
    margin-top: 11px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-top-70 {
    margin-top: 70px !important;
}



.layout-right {
    visibility: visible;
    float: left;
    margin-left: 10px;
    width:85%!important;
}

.bg_color_009688 {
    background-color: #009688;
}

.bg_color_5FB878 {
    background-color: #5FB878;
}

.bg_color_393D49 {
    background-color: #393D49;
}

.bg_color_1E9FFF {
    background-color: #1E9FFF;
}

.bg_color_01AAED {
    background-color: #01AAED;
}

.bg_color_FFB800 {
    background-color: #FFB800;
}

.bg_color_5c8c66 {
    background-color: #5c8c66;
}

.bg_color_FF5722 {
    background-color: #FF5722;
}

.bg_color_ad6222 {
    background-color: #ad6222;
}

.bg_color_dcd184 {
    background-color: #dcd184;
}

.bg_color_93afc3 {
    background-color: #93afc3;
}

.bg_color_a4ca30 {
    background-color: #a4ca30;
}

.bg_color_54b4c3 {
    background-color: #54b4c3;
}

.lable_padding {
    padding: 9px 10px !important;
}

.no-border {
    border: none !important;
}

.margin-left-15 {
    margin-left: 15px !important;
}

.margin-30 {
    margin: 30px !important;
}

.color-white {
    color: white !important;
}

.margin-left-100 {
    margin-left: 100px !important;
}

.margin-left-70 {
    margin-left: 70px !important;
}

.margin-left-40 {
    margin-left: 40px !important;
}

.height-41 {
    height: 41px !important;
}

.selected {
    background: #1cd388 !important;
    color: white !important;
}

.market-price{
    color:#1cd388!important;
    text-decoration:line-through!important;
}

.discount-label{
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 5px;
    color:#b9b9b9 !important;
    height: 18px;
    font-size: 15px;
    line-height: 18px;
}

.background-color-white{
    background-color:white!important
}

.margin-left-right-20 {
    margin-left: 20px;
    margin-right: 20px;
}