* {
    margin: 0px;
    padding: 0px;
}

body {
    background: #f6f6f6;
}

.rght {
    width: 80%;
    margin: 0px 0px 0px 40px;
}

.wzm-content {
    background: #f6f6f6;
    width: 100%;
    -ms-flex-wrap: wrap;
    position: relative;
}

.wzm-content .wzm-content-item {
    height: 130px;
    margin-bottom: 14px;
    width: 23%;
    box-sizing: border-box;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 1px rgb(150, 146, 146);
    float: left;
    margin-right: 16px;
    position: relative;
}

input[type=checkbox] {
    position: relative;
    top: 3px;
    left: 10px;
}

input[type=checkbox]::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -3px;
    width: 18px;
    height: 18px;
    line-height: 22px;
    text-align: center;
    color: white;
    font-size: 16px;
    background-color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}

.disabled span {
    color: #d8d8d8;
}

.disabled input[type=checkbox]::before {
    background-color: #d8d8d8 !important;
    border: 2px solid #d8d8d8!important;
}

input[type=checkbox]:checked::before {
    background-color: #ce3939;
    content: '';
    background-image: url(/static/images/white.png);
    width: 18px;
    height: 18px;
    left: -3px;
    top: -1px;
    position: absolute;
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid #ce3939;
}

.wzm-content .wzm-content-item .t {
    flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    position: relative;
}

.wzm-content .wzm-content-item .t .content {
    height: 30px;
    font-size: 22px;
    display: inline-block;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 2;
    text-align: center;
}

.wzm-content .wzm-content-item .t .content .t-i {
    font-size: 20px;
    position: relative;
    width: 120px;
    margin: 0px auto
}

.wzm-content .wzm-content-item .t .content .t {
    position: relative;
    z-index: 2;
}

.wzm-content .wzm-content-item .t .content .t-i img {
    width: 42px;
    position: absolute;
    left: -32px;
    top: -28px;
}

.wzm-content .wzm-content-item .t .content .t-i .arr {
    width: 60px;
    height: 40px;
    left: 140px;
    top: -5px;
}

.wzm-content .wzm-content-item .b {
    flex-basis: 35px;
    -webkit-flex-basis: 35px;
    -ms-flex-basis: 35px;
    position: relative;
}

.wzm-content .wzm-content-item .b .left {
    color: #ce3939;
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    line-height: 40px;
}

.wzm-content .wzm-content-item .b .left img {
    vertical-align: top;
    width: 18px;
    margin-top: 12px;
    margin-right: 3px;
}

.public {
    width: 80px;
    height: 40px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;
    line-height: 40px;
    color: #333;
    font-size: 13px;
}

.public .public-text {
    position: relative;
    font-size: 16px;
    left: 20px;
    top: 3px;
}

/* 当选开关样式 */
.radio {
    width: 68px;
    height: 22px;
    line-height: 22px;
    border-radius: 15px;
    text-align: center;
    float: right;
    cursor: pointer;
    position: relative;
    background: #9b9292;
    color: white;
    font-size: 12px;
    text-align: left;
    padding-left: 15px;
}

.radio.unchecked {
    text-align: right;
    padding-right: 10px;
}

.radio .dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: 0.3s;
}

/* 开关选中样式 */
.radio.checked {
    background: #ce3939;
    color: white;
    transition: 0.3s;
}

.radio.checked .dot {
    left: auto;
    right: 3px;
    transition: 0.3s;
}

/* 第一块样式 */
.wzm-content .wzm-content-item.yellow .t {
    background: linear-gradient(209deg, rgba(255, 215, 67, 1) 0%, rgba(253, 174, 32, 1) 100%);
}

.wzm-content .wzm-content-item.yellow .b {
    background: #fee9c4;
    padding: 5px;
    box-sizing: border-box;
}

/* 第二块样式 */
.wzm-content .wzm-content-item.green .t {
    background: linear-gradient(211deg, rgba(207, 231, 41, 1) 0%, rgba(162, 202, 18, 1) 100%);
}

.wzm-content .wzm-content-item.green .b {
    background: #e6f1c0;
    padding: 5px;
    box-sizing: border-box;
}


/* 第三块样式 */
.wzm-content .wzm-content-item.blue .t {
    background: linear-gradient(212deg, rgba(131, 211, 243, 1) 0%, rgba(76, 167, 226, 1) 100%);
}

.wzm-content .wzm-content-item.blue .b {
    background: #d1e8f7;
    padding: 5px;
    box-sizing: border-box;
}

/* 第四块样式 */
.wzm-content .wzm-content-item.light-blue .t {
    background: linear-gradient(204deg, rgba(157, 233, 215, 1) 0%, rgba(100, 207, 174, 1) 100%);
}

.wzm-content .wzm-content-item.light-blue .b {
    background: #d6f2e9;
    padding: 5px;
    box-sizing: border-box;
}

.nav.side-navbar .sidebar-header {
    padding: 0px;
}


/*
*自定义dialog
*/

@charset "utf-8";
/* CSS Document */

.z_i {
    width: 900px;
    text-align: center;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    line-height: 49px;
    margin-top: 60px;
    border: 1px solid #e8e8e8;
}

.z_i td a {
    color: #18a0da;
}

.z_i td {
    height: 49px;
    font-size: 12px;
    color: #4b4b4b;
}

.z_i .z_title {
    border-bottom: none;
    height: 30px;
}

.z_i .z_title td {
    height: 30px;
    background: #dfeef5;
}

.z_i tr {
    border: 1px solid #CCC;
}

.mod-dialog-bg {
    background: #000;
    opacity: .5;
    filter: alpha(opacity=50);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


.mod-dialog {
    background-color: #fff;
    border-top: none;
    width: 480px;
    height: 226px;
    padding-top: 27px;
    position: absolute;
    z-index: 1001;
    margin-top: -20px;
    border-radius: 4px;
}

.mod-inputdialog {
    background-color: #fff;
    border-top: none;
    width: 680px;
    height: 300px;
    *padding-top: 27px;
    position: absolute;
    z-index: 1001;
    margin-top: -20px;
}

.mod-pop {
    background: #fff;
    border: solid 1px #a1a1a1;
    -webkit-box-shadow: 0 0 5px #a1a1a1;
    -moz-box-shadow: 0 0 5px #a1a1a1;
    box-shadow: 0 0 5px #a1a1a1;
    font-size: 14px;
    height: 142px;
    position: absolute;
    width: 276px;
    z-index: 1000;
}

.clearfix_new:after {
    clear: both;
    content: '\20';
    display: block;
    height: 0;
}

.mod-dialog .dialog-nav {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    font-family: "\5b8b\4f53";
    height: 0px;
    *left: 0;
    line-height: 27px;
    *position: absolute;
    *top: -27px;
    *width: 100%;
}

.mod-dialog .dialog-title {
    padding-left: 10px;
}

.mod-dialog .dialog-close {
    background: url(/static/images/transparent-del.png) no-repeat 0 0;
    height: 12px;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 12px;
}

.mod-dialog .dialog-main {
    font-size: 14px;
    padding: 35px;
    /*text-align: center;*/
}

.dialog-main .dialog-content span {
    color: black;
    font-size: 24px
}

.mod-dialog .dialog-content {
    font-size: 14px;
    line-height: 24px;
}

.mod-dialog .dialog-console {
    padding-top: 54px;
    margin-left: 162px;
}

.mod-pop .pop-nav {
    background: #f3f3f3;
    color: #666;
    font-weight: 700;
    line-height: 31px;
    padding: 0 10px;
}

.mod-pop .pop-close {
    background: url(/static/images/transparent-del.png) no-repeat -109px 0;
    height: 22px;
    position: absolute;
    right: 6px;
    top: 6px;
    width: 22px;
}

.mod-pop .pop-main {
    line-height: 24px;
    padding: 15px 10px 10px;
    text-align: center;
}

.mod-pop .pop-console {
    font-size: 16px;
    line-height: 38px;
    margin-top: 20px;
    text-align: center;
}

.mod-pop .pop-btn-green {
    background: url(/static/images/transparent-del.png) no-repeat 0 -24px;
    color: #fff;
    display: block;
    float: left;
    height: 36px;
    margin-right: 16px;
    width: 120px;
}

.mod-pop .pop-btn-gray {
    background: url(/static/images/transparent-del.png) no-repeat 0 -62px;
    color: #999;
    display: block;
    float: left;
    height: 36px;
    width: 120px;
}

.mod-fixed-console.console-fixed {
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 10px;
    z-index: 999;
}

.mod-fixed-console .console-btn {
    background: #82c92f;
    border-bottom: 3px solid #73af2c;
    border-radius: 4px;
    color: #fff;
    display: block;
    font-size: 18px;
    height: 42px;
    line-height: 42px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    width: 210px;
}

.mod-dialog .dialog-console a {
    background: url(/static/images/transparent-del.png) no-repeat 0 -22px;
    display: inline-block;
    font-size: 16px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    width: 120px;
}

.mod-dialog .dialog-console .console-btn-confirm {
    background: #ce3939 repeat-x;
    width: 120px;
    height: 42px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    margin-top: -6px;
    line-height: 42px;
    margin-left: 12px;
    border-radius: 4px;
    letter-spacing: 4px;
}

.mod-dialog .dialog-console .console-btn-cancel {
    background: #949494 repeat-x;
    width: 116px;
    height: 42px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    margin-top: -6px;
    line-height: 42px;
    border-radius: 4px;
    letter-spacing: 4px;
}

.mod-pop .pop-close:hover {
    background-position: -86px 0;
}

.mod-pop .pop-btn-green:hover {
    background-position: 0 -100px;
}

.mod-pop .pop-btn-gray:hover {
    background-position: 0 -138px;
}

.dialog-delorder {
    box-shadow: 0 2px 11px #ccc;
    height: 142px;
    left: 50%;
    margin-left: auto;
    position: absolute;
    top: 0;
    width: 276px;
    z-index: 1001;
}

.dialog-delorder .dialog-bar {
    background: #f3f3f3;
    color: #666;
    font-size: 12px;
    font-family: simsun;
    font-weight: 700;
    height: 31px;
    line-height: 31px;
    overflow: hidden;
    text-indent: 10px;
}

.dialog-delorder .dialog-close {
    background: url(/static/images/transparent-del.png) -357px -1875px no-repeat;
    float: right;
    height: 21px;
    margin-right: 6px;
    margin-top: 5px;
    width: 21px;
}

.dialog-delorder .dialog-content {
    background: #fff;
    color: #666;
    font-size: 14px;
    line-height: 24px;
}

.dialog-delorder .dialog-console {
    background: #fff;
    overflow: hidden;
    padding: 8px 0 10px;
    text-align: center;
    *zoom: 1;
}

.dialog-delorder .dialog-content p {
    font-size: 14px;
    padding: 20px 0 16px;
    text-align: center;
}

.dialog-delorder .dialog-console a, .dialog-delorder .dialog-console a:link, .dialog-delorder .dialog-console a:hover {
    background: #8ecd1c;
    border: 1px #7ebb48 solid;
    display: inline-block;
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    margin-right: 12px;
    text-align: center;
    text-decoration: none;
    width: 118px;
}

.dialog-delorder .dialog-console a.console-btn-confirm {
    color: #fff;
}

.dialog-delorder .dialog-console a.console-btn-cancel, .dialog-delorder .dialog-console a.console-btn-cancel:link, .dialog-delorder .dialog-console a.console-btn-cancel:hover {
    background: #fefefe;
    border-color: #d9d9d9;
    color: #999;
    margin: 0;
}

.dialog-addtocart {
    box-shadow: 0 2px 11px #ccc;
    height: 200px;
    left: 50%;
    position: absolute;
    top: 300px;
    width: 368px;
    z-index: 1001;
}

.dialog-addtocart .dialog-bar {
    background: url(/static/images/transparent-del.png) repeat-x top;
    color: #fff;
    font-size: 12px;
    font-family: simsun;
    font-weight: 700;
    height: 27px;
    line-height: 28px;
    overflow: hidden;
    text-indent: 10px;
}

.dialog-addtocart .dialog-close {
    background: url(/static/images/transparent-del.png) no-repeat 0 0;
    float: right;
    height: 22px;
    margin-right: 10px;
    width: 45px;
}

.dialog-addtocart .dialog-content {
    background: #fff;
    border: 1px #93c803 solid;
    color: #666;
    font-size: 14px;
    height: 171px;
    line-height: 24px;
}

.dialog-addtocart .dialog-console {
    background: #fff;
    overflow: hidden;
    padding: 8px 0 10px;
    text-align: center;
    *zoom: 1;
}

.dialog-addtocart .dialog-bar i {
    background: url(/static/images/transparent-del.png) no-repeat 0 0;
    float: left;
    height: 16px;
    margin: 5px;
    width: 16px;
}

.dialog-addtocart .dialog-content p {
    color: #27292b;
    font-size: 16px;
    height: 48px;
    line-height: 60px;
    margin: 20px 0 26px;
    text-align: left;
    text-indent: 108px;
}

.dialog-addtocart .dialog-console a, .dialog-addtocart .dialog-console a:link, .dialog-addtocart .dialog-console a:hover {
    background: #8ecd1c;
    border: 1px #7ebb48 solid;
    display: inline-block;
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    margin-right: 12px;
    text-align: center;
    text-decoration: none;
    width: 118px;
}

.dialog-addtocart .dialog-console a.console-btn-continue {
    background: #ededed;
    border: 1px #dbdbdb solid;
    border-radius: 3px;
    color: #999;
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    width: 118px;
}

.dialog-addtocart .dialog-console a.console-btn-gocart, .dialog-addtocart .dialog-console a.console-btn-gocart:link, .dialog-addtocart .dialog-console a.console-btn-gocart:hover {
    background: #fb8124;
    border: 0;
    border-radius: 3px;
    color: #fff;
    height: 36px;
    margin: 0;
    text-align: right;
    width: 157px;
}

.dialog-addtocart .dialog-console a.console-btn-gocart span, .dialog-addtocart .dialog-console a.console-btn-gocart:link span, .dialog-addtocart .dialog-console a.console-btn-gocart:hover span {
    background: url(/static/images/transparent-del.png) -398px -1875px no-repeat;
    float: right;
    *float: none;
    height: 22px;
    margin: 7px 10px 0 8px;
    width: 22px;
}

.dialog-war {
    box-shadow: 0 2px 11px #ccc;
    height: 200px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 300px;
    width: 368px;
    z-index: 1024;
    *zoom: 1;
}

.dialog-war .dialog-bar {
    background: url(/static/images/transparent-del.png) repeat-x top;
    color: #fff;
    font-size: 12px;
    font-family: simsun;
    font-weight: 700;
    height: 27px;
    line-height: 26px;
    text-indent: 10px;
}

.dialog-war .dialog-close {
    background: url(/static/images/transparent-del.png) no-repeat 0 0;
    float: right;
    height: 22px;
    margin-right: 10px;
    width: 45px;
}

.dialog-war .dialog-content {
    background: #fff;
    border: 1px #93c803 solid;
    color: #666;
    font-size: 14px;
    height: 171px;
    line-height: 24px;
    overflow: hidden;
    *zoom: 1;
}

.dialog-war .dialog-console {
    background: #fff;
    overflow: hidden;
    padding: 0 0 10px;
    text-align: center;
    *zoom: 1;
}

.dialog-war .dialog-bar i {
    background: url(/static/images/transparent-del.png) no-repeat 0 0;
    float: left;
    height: 16px;
    margin: 5px;
    width: 16px;
}

.dialog-war .dialog-content p {
    color: #27292b;
    font-size: 16px;
    line-height: 24px;
    margin: 30px 0 32px;
    padding: 0 30px;
    text-align: center;
}

.dialog-war .dialog-console a.console-btn-confirm {
    background: #87cb27;
    border: 1px #7ebb48 solid;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    width: 118px;
}

.dialog-war .dialog-console a, .dialog-war .dialog-console a:link, .dialog-war .dialog-console a:hover {
    background: #8ecd1c;
    border: 1px #7ebb48 solid;
    display: inline-block;
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    text-decoration: none;
    width: 118px;
}

.dialog-content-icon {
    width: 110px;
    height: 55px;
    vertical-align: middle;
    margin-right: 35px;
    background: url("/static/images/dialog-content-icon.png");
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

/*
* 自定义inputdialog
*/

.mod-inputdialog {
    background-color: #fff;
    border-top: none;
    width: 680px;
    height: 300px;
    *padding-top: 27px;
    position: absolute;
    z-index: 1001;
    margin-top: -20px;
}

.mod-inputdialog .dialog-nav {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    font-family: "\5b8b\4f53";
    height: 0px;
    *left: 0;
    line-height: 27px;
    *position: absolute;
    *top: -27px;
    *width: 100%;
}

.mod-inputdialog .dialog-title {
    padding-left: 15px;
}

.mod-inputdialog .dialog-close {
    background: url(/static/images/transparent-del.png) no-repeat 0 0;
    height: 12px;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 12px;
}

.mod-inputdialog .dialog-main {
    font-size: 14px;
    padding: 30px 35px 30px 35px;
    /*text-align: center;*/
}

.mod-inputdialog .dialog-main .dialog-content span {
    color: #CE3939;
    font-size: 22px
}

.mod-inputdialog .dialog-content {
    font-size: 14px;
    line-height: 24px;
}

.mod-inputdialog .dialog-console {
    padding-top: 30px;
    margin-left: 286px;
}

.mod-inputdialog .dialog-console a {
    background: url(/static/images/transparent-del.png) no-repeat 0 -22px;
    display: inline-block;
    font-size: 16px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    width: 120px;
}

.inputdialog-content-icon {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #ce3939;
    color: white;
    display: inline-block;
    font-size: 12px;
    text-align: center;
    line-height: 21px;
}

.inputdialog-input {
    width: 610px;
    height: 50px;
    background: rgba(247, 247, 247, 1);
    border-radius: 4px;
    border: 1px solid rgba(229, 229, 229, 1);
    padding-left: 7px;
    font-size: 18px;
    font-family: PingFangSC-Light, PingFang SC;
    font-weight: 300;
    color: rgba(51, 51, 51, 1);
}


.inputdialog-content-childtxt {
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: rgba(206, 57, 57, 1);
    line-height: 22px;
    margin-left: 10px;
}

.mod-inputdialog .dialog-console .console-btn-confirm {
    background: red repeat-x;
    width: 146px;
    height: 42px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin-top: -6px;
    line-height: 42px;
    margin-left: 30px;
}

.mod-inputdialog .dialog-console .console-btn-cancel {
    background: #949494 repeat-x;
    width: 146px;
    height: 42px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin-top: -6px;
    line-height: 42px;
}