﻿html {
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    font-family: "Microsoft YaHei";
    font-size: 12px;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 16px;
    height: 10px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #000000;
    border-radius: 10px;
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px #000000;
    background-color: #555;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 5px;
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}


body {
    background: #f7f7f7;
    _background-attachment: fixed;
}

.task-bar {
    min-width: 99.9%;
    min-height: 30px;
    border: 0;
    background-color: #35bc73;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.task-bar-item {
    width: 120px;
    margin: 3px;
    height: 25px;
    border-radius: 3px;
    float: left;
    background-color: #333E4D;
    color: white;
    margin-left: 3px;
}

.task-bar-item-close span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ff0000;
    text-align: center;
    color: white;
}

.task-bar-item-close :hover {
    cursor: pointer;
    color: #ccc;
}

.task-bar-item-desc {
    height: 20px;
    line-height: 20px;
    width: 80%;
    text-align: center;
    cursor: pointer;
}

@media screen and (max-width:1180px) {
    body {
        width: 1180px;
    }
}
/*遮盖层*/
.bord {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    z-index: 10000;
    filter: alpha(opacity=30);
    opacity: 0.3;
    top: 0;
    left: 0;
    display: none;
    background: url('themes/images/bodyBg.png') repeat;
}
/*去除输入框的默认获取焦点样式*/
textarea:focus {
    outline: none;
}

input[type=button] {
    -webkit-appearance: none;
    outline: none;
    border: none;
    cursor: pointer;
}

/*去掉input在ios下的默认效果*/
input.txt {
    border: 1px solid #ccc;
    font: 12px 'Microsoft YaHei';
    color: #333;
    text-indent: 10px;
}

    input.txt:focus {
        outline: none;
        border-color: #35bc73;
    }

input.error {
    border-color: #ff6000;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

/*地址select*/
select {
    padding: 5px;
    font: 12px 'Microsoft YaHei';
    color: #333;
}

    select option {
        font: 12px 'Microsoft YaHei';
    }

.none {
    display: none;
}





/*面包屑*/
.crumbs {
    width: 1000px;
    margin: 20px 0 10px 0;
    font: 12px 'Microsoft YaHei';
    color: #333;
}

    .crumbs a {
        color: #333;
        font: 12px 'Microsoft YaHei';
        cursor: pointer;
    }


    .crumbs i {
        color: #999;
        margin: 0 5px;
        font-style: normal;
    }





/*模板页*/
.model {
    width: 100%;
    height: 100%;
    background: #f7f7f7;
}

    .model .mod-l {
        width: 200px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        background: #333e4d;
    }

    .model .mod-r {
        padding-left: 200px;
        background: #f7f7f7 url(/Content/themes/images/bodyBg.png) repeat-y;
    }

        .model .mod-r .mod-h {
            height: 40px;
            width: 100%;
            border-bottom: 1px solid #dcdcdc;
            background: #fff;
        }

        .model .mod-r .mod-b {
            width: 100%;
        }

        .model .mod-r .mod-f {
            width: 100%;
        }

.contain {
    width: 1300px;
    min-height: 600px;
    _height: 600px;
    margin: 0px 0 0 10px;
}

@media screen and (max-width:1210px) {
    .model .mod-r {
        width: 1010px;
    }

    .contain {
        margin: 20px auto;
    }
}
/*菜单*/
.mainleft {
    width: 200px;
}

    .mainleft img {
        margin: 5px 10px;
    }

.main-menu {
    width: 200px;
    border-top: 1px solid #2a3440;
    font: 14px 'Microsoft YaHei';
    text-align: left;
}

    .main-menu li {
        width: 200px;
        border-bottom: 1px solid #2a3440;
        border-top: 1px solid #3a4657;
        float: left;
        background-color: #333E4D;
    }

        .main-menu li a {
            color: #c8cdd4;
        }

    .main-menu .menu {
        width: 200px;
        height: 40px;
        display: inline-block;
        text-indent: 20px;
        line-height: 40px;
    }

        .main-menu .menu a {
            float: left;
            outline: none;
        }

        .main-menu .menu b {
            float: right;
            width: 35px;
            height: 35px;
            display: inline-block;
            margin: 2px 10px;
            cursor: pointer;
            background: url(/Content/themes/images/fabu_icon.png) -522px -4px no-repeat;
        }

            .main-menu .menu b.curr {
                background-position: -478px -4px;
                border: 0px none;
            }

    .main-menu li div.curr {
        background: #35bc73;
        color: #fff;
    }

    .main-menu li div:hover {
        background: #35bc73;
        color: #fff;
    }

        .main-menu li div:hover a, .main-menu li div.curr a {
            color: #fff;
        }

    .main-menu li .submenu {
        width: 180px;
        padding: 10px;
        display: none;
        background: #414d5d;
    }

        .main-menu li .submenu li {
            height: 35px;
            line-height: 35px;
            width: 180px;
            border: none;
            float: none;
            background-color: #414d5d;
        }

            .main-menu li .submenu li a {
                height: 35px;
                line-height: 35px;
                margin-left: 15px;
                width: 160px;
            }

            .main-menu li .submenu li:hover {
                background: #35bc73;
                color: #fff;
            }

            .main-menu li .submenu li.curr {
                background: #35bc73;
                color: #fff;
            }

                .main-menu li .submenu li.curr a, .main-menu li .submenu li:hover a {
                    color: #fff;
                }
/*时间按钮*/
input.time-btn {
    width: 112px;
    height: 31px;
    color: #666;
    font: 12px 'Microsoft YaHei';
    border: 0;
    background: url(/Content/themes/images/orderIcon.png) -73px -12px no-repeat;
    text-indent: 22px;
    margin: 0 5px;
    float: left;
    padding: 0;
    line-height: 29px;
}

    input.time-btn:hover {
        border: 1px solid #999;
        background-position: -74px -13px;
    }

input.time-btn-curr {
    border: 1px solid #999;
    background-position: -74px -13px;
}


.head .head-ul {
    float: right;
    font: 12px 'Microsoft YaHei';
    color: #666;
    height: 40px;
}

    .head .head-ul li {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        border-left: 1px solid #dcdcdc;
        float: left;
    }

        .head .head-ul li span {
            float: left;
            margin: 0 5px;
        }

        .head .head-ul li .msg {
            padding: 10px 0;
            display: inline-block;
            line-height: 20px;
        }

            .head .head-ul li .msg .msg-tb {
                width: 20px;
                height: 20px;
                display: inline-block;
                float: left;
                background: url(/Content/themes/images/comIcon.png) -11px -3px no-repeat;
            }

            .head .head-ul li .msg .msg-sum {
                padding: 0 10px;
                background: #ff9900;
                height: 16px;
                display: inline-block;
                float: left;
                border-radius: 5px;
                color: #fff;
                line-height: 16px;
            }

            .head .head-ul li .msg .down-tb {
                cursor: pointer;
                width: 20px;
                height: 20px;
                display: inline-block;
                float: left;
                background: url(/Content/themes/images/comIcon.png) -47px 3px no-repeat;
            }

        .head .head-ul li #exit {
            text-decoration: underline;
            margin-left: 10px;
            cursor: pointer;
        }

/*foot*/
.foot {
    padding: 50px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
}

    .foot p {
        margin-bottom: 15px;
    }





/*弹出框*/
.popup {
    position: absolute;
    z-index: 10000;
    border: 1px solid #595959;
    top: 150px;
    left: 350px;
    font: 12px 'Microsoft YaHei';
    color: #333;
    background: #fff;
    display: none;
}

    .popup .pp-top {
        width: 100%;
        height: 30px;
        background: #f7f7f7;
        position: relative;
    }

        .popup .pp-top span {
            line-height: 30px;
            height: 30px;
            margin-left: 10px;
            font-weight: bold;
            color: #333;
            display: inline-block;
        }

        .popup .pp-top a.close-btn {
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            display: inline-block;
            font-size: 18px;
            cursor: pointer;
            color: #999;
            font-weight: bold;
            margin: 0;
            padding: 0;
            position: absolute;
            top: 0;
            right: 0;
        }

    .popup .con {
        padding: 15px 0;
    }

/*删除弹出框*/
#delpopup {
    width: 350px;
    height: 200px;
    margin: -100px 0 0 -175px;
}

    #delpopup .pp-con {
        margin: 35px 35px;
        text-align: center;
    }

        #delpopup .pp-con p {
            font-size: 16px;
        }

        #delpopup .pp-con .pp-btns {
            text-align: center;
            margin-top: 15px;
        }

        #delpopup .pp-con input {
            width: 80px;
            height: 28px;
            background: #19a8e8;
            color: #fff;
            margin-right: 10px;
            cursor: pointer;
        }

        #delpopup .pp-con a {
            width: 80px;
            height: 28px;
            background: #19a8e8;
            color: #fff;
            margin-right: 10px;
            cursor: pointer;
            line-height: 28px;
            display: inline-block;
        }

.popup .lficon {
    float: left;
    width: 41px;
    height: 34px;
    background: url(/Content/themes/images/allSortIcon.png) -8px -79px no-repeat;
}

.popup .text-box {
    float: left;
    margin-left: 8px;
    display: inline;
    width: 195px;
    overflow: hidden;
}

    .popup .text-box h2 {
        color: #333;
        font-size: 16px;
        margin-bottom: 30px;
        overflow: hidden;
        margin-top: 5px;
    }


/*公共按钮*/
.red {
    color: #f00;
}

.black {
    color: #333;
}

.green {
    color: #35bc73;
}

input.green-btn {
    background: #35bc73;
    color: #fff;
    font: 14px 'Microsoft YaHei';
    padding: 5px 15px;
    _border: none;
    display: inline-block;
    border: 1px solid #35bc73;
}

    input.green-btn:hover {
        background: #34b36e;
    }

input.white-btn {
    background: #fff;
    color: #666;
    font: 14px 'Microsoft YaHei';
    padding: 5px 15px;
    _border: none;
    display: inline-block;
    border: 1px solid #ccc;
}

    input.white-btn:hover {
        background: #f7f7f7;
    }

a.green-btn {
    background: #35bc73;
    color: #fff;
    font: 14px 'Microsoft YaHei';
    padding: 5px 15px;
    display: inline-block;
}

    a.green-btn:hover {
        background: #34b36e;
    }

input.white-btn .gotop {
    background: #fff;
    color: #666;
    font-size: 14px;
    padding: 5px 15px;
    display: inline-block;
    border: 1px solid #ccc;
}

    input.white-btn .gotop:hover {
        background: #f7f7f7;
    }

a.white-btn {
    background: #fff;
    color: #666;
    font-size: 14px;
    padding: 5px 15px;
    display: inline-block;
    border: 1px solid #ccc;
}

/*zmm2015-4-3*/

/*页面导航*/
.main-nav {
    height: 35px;
    line-height: 35px;
    border-bottom: 2px solid #35bc73;
}

    .main-nav a {
        display: inline-block;
        float: left;
        height: 21px;
        padding: 7px 15px;
        background: #eee;
        font: 14px 'Microsoft YaHei';
        color: #333;
        margin-right: 8px;
        border-radius: 2px 2px 0px 0px;
        cursor: pointer;
        line-height: 21px;
    }

        .main-nav a.curr {
            color: #fff;
            background: #35bc73;
            border: none;
        }

.bordiv {
    border: 1px solid #dcdcdc;
    border-top: none;
    padding-bottom: 23px;
    background: #fff;
}

/*返回顶部和客服*/
.helpnav {
    width: 42px;
    height: 84px;
    position: fixed;
    left: 50%;
    bottom: 5px;
    margin-left: 650px;
    font: 12px 'Microsoft YaHei';
    z-index: 1000;
    _position: absolute;
    _bottom: auto;
    overflow: hidden;
    *zoom: 1;
}

    .helpnav ul li a {
        width: 42px;
        height: 42px;
        overflow: hidden;
        display: block;
        cursor: pointer;
    }

        .helpnav ul li a#gotop {
            background: url(/Content/themes/images/fabu_icon1.png) -959px -82px no-repeat;
        }

        .helpnav ul li a#service {
            background: url(/Content/themes/images/fabu_icon1.png) -959px -123px no-repeat;
            display: none;
        }



div.info-null {
    width: 700px;
    padding: 50px 0;
    border-top: 1px solid #ccc;
    text-align: center;
    color: #999;
    font-size: 14px;
    background: #fafafa;
}





/*公共按钮集合*/
input.green-w90-btn {
    width: 90px;
    height: 30px;
    background-color: #33b36d;
    color: #fff;
    border-radius: 3px;
}

    input.green-w90-btn:hover {
        background-color: #4ec282;
    }

    input.green-w90-btn:active {
        background-color: #30a866;
    }

input.green-w80-btn {
    width: 80px;
    height: 32px;
    background-color: #33b36d;
    color: #fff;
    border-radius: 3px;
    margin-right: 30px;
}

    input.green-w80-btn:hover {
        background-color: #4ec282;
    }

    input.green-w80-btn:active {
        background-color: #30a866;
    }




a.green-w90-btn {
    width: 90px;
    height: 20px;
    padding: 5px;
    background-color: #33b36d;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    line-height: 30px;
    font: 12px 'Microsoft YaHei';
}

    a.green-w90-btn:hover {
        background-color: #4ec282;
    }

    a.green-w90-btn:active {
        background-color: #30a866;
    }

a.green-w110-btn {
    width: 110px;
    height: 20px;
    padding: 5px;
    background-color: #33b36d;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    font: 12px 'Microsoft YaHei';
}

    a.green-w110-btn:hover {
        background-color: #4ec282;
    }

    a.green-w110-btn:active {
        background-color: #30a866;
    }

input.green-w60-btn {
    width: 60px;
    height: 25px;
    background-color: #33b36d;
    color: #fff;
    border-radius: 3px;
}

    input.green-w60-btn:hover {
        background-color: #4ec282;
    }

    input.green-w60-btn:active {
        background-color: #30a866;
    }

a.green-w60-btn {
    width: 60px;
    height: 18px;
    padding: 3px 0;
    color: #fff;
    background-color: #33b36d;
    line-height: 18px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
}

    a.green-w60-btn:hover {
        background-color: #4ec282;
    }

    a.green-w60-btn:active {
        background-color: #30a866;
    }



input.green-w50-btn {
    width: 50px;
    height: 25px;
    background-color: #33b36d;
    color: #fff;
    border-radius: 3px;
}

    input.green-w50-btn:hover {
        background-color: #4ec282;
    }

    input.green-w50-btn:active {
        background-color: #30a866;
    }



input.b-green-w100-btn {
    width: 100px;
    height: 33px;
    border: 1px solid #33b36d;
    color: #33b36d;
    border-radius: 3px;
    background-color: #fff;
}

    input.b-green-w100-btn:hover {
        background-color: #f9f9f9;
    }

    input.b-green-w100-btn:active {
        background-color: #f5f5f5;
    }

input.blue-w60-btn {
    width: 60px;
    height: 25px;
    background-color: #4d93eb;
    color: #fff;
    border-radius: 3px;
}

    input.blue-w60-btn:hover {
        background-color: #71a9f0;
    }

    input.blue-w60-btn:active {
        background-color: #397bcf;
    }


input.white-w50-btn {
    width: 50px;
    height: 25px;
    background-color: #fff;
    color: #333;
    border-radius: 3px;
    border: 1px solid #ccc;
}

    input.white-w50-btn:hover {
        background-color: #f9f9f9;
    }

    input.white-w50-btn:active {
        background-color: #f5f5f5;
    }

input.white-w80-btn {
    width: 80px;
    height: 33px;
    background-color: #c0c0c0;
    color: white;
    border-radius: 3px;
    border: 0px solid #ccc;
}

    input.white-w80-btn:hover {
        background-color: #888;
    }

    input.white-w80-btn:active {
        background-color: #f5f5f5;
    }


input.b-blue-w45-btn {
    width: 45px;
    height: 25px;
    background-color: #fff;
    color: #105eb5;
    border-radius: 3px;
    border: 1px solid #105eb5;
}

    input.b-blue-w45-btn:hover {
        background-color: #f9f9f9;
    }

    input.b-blue-w45-btn:active {
        background-color: #f5f5f5;
    }

a.b-blue-w45-btn {
    width: 43px;
    height: 23px;
    background-color: #fff;
    color: #105eb5;
    border-radius: 3px;
    border: 1px solid #105eb5;
    display: inline-block;
    padding: 0;
    text-align: center;
    line-height: 25px;
}

    a.b-blue-w45-btn:hover {
        background-color: #f9f9f9;
    }

    a.b-blue-w45-btn:active {
        background-color: #f5f5f5;
    }


input.b-gray-w60-btn {
    width: 60px;
    height: 33px;
    background-color: #fff;
    color: #666;
    border-radius: 3px;
    border: 1px solid #ccc;
    display: inline-block;
    padding: 0;
    text-align: center;
    line-height: 25px;
}

    input.b-gray-w60-btn:hover {
        background-color: #f9f9f9;
    }

    input.b-gray-w60-btn:active {
        background-color: #f5f5f5;
    }


input.b-blue-w70-btn {
    width: 70px;
    height: 24px;
    background-color: #fff;
    color: #105eb5;
    border-radius: 3px;
    border: 1px solid #105eb5;
}

    input.b-blue-w70-btn:hover {
        background-color: #f9f9f9;
    }

    input.b-blue-w70-btn:active {
        background-color: #f5f5f5;
    }


/*公共图标*/

.fail-tb {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(/Content/themes/images/allSortIcon.png) -15px -82px no-repeat;
}







/*导航字体的大小*/
.dh {
    margin: 10px 0 0 15px;
}

    .dh a {
        cursor: pointer;
        color: #222222;
    }

/*容器的样式*/
.container {
    width: 1340px;
    background-color: #fff;
    margin: 10px auto;
    border: 1px solid #dcdcdc;
    padding: 15px;
    padding: 35px 15px 60px;
    min-height: 650px;
}

.titile {
    margin-left: 700px;
}

.loading {
    position: fixed;
    margin: 0 auto;
    top: 40%;
    left: 50%;
    z-index: 3000;
}



.processbar-container {
    border: 0;
    width: 200px;
    height: 20px;
}

.processbar {
    border: 0;
    width: 150px;
    height: 6px;
    background-color: #ccc;
    margin-top: 5px;
    float: left;
}

.processbar-run {
    border: 0;
    height: 6px;
    line-height: 6px;
    width: 100px;
    margin: 0;
}

.process-lable {
    margin-left: 3px;
    font-size: 12px;
    float: left;
    height: 20px;
    line-height: 20px;
}

/*.loading {
    position: fixed;
    margin: 0 auto;
    top: 60%;
    left: 45%;
    background-color: #E6E6E6 ;
    border-radius: 5px;
    height: 50px;
    padding: 25px 0;
    text-align: center;
    width: 200px;
    z-index: 9999;
}*/

/*遮罩层*/
.cover-div {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    opacity: 0.1;
    -moz-opacity: 0.1;
    filter: alpha(opacity=1);
    background-color: black;
}

/*溢出的字...处理*/
.updatecsssubstring {
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 160px;
    display: inline-block;
}

/*溢出的字...处理*/
.updatecsssubstring200 {
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 200px;
    display: inline-block;
}
/*溢出的字...处理*/
.updatecsssubstring300 {
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 300px;
    display: inline-block;
}
/*溢出的字...处理*/
.updatecsssubstring80 {
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 80px;
    display: inline-block;
}

.updatecsssubstring600 {
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 600px;
    display: inline-block;
}

/*快速创建一个按钮*/
.greenbtn {
    background-color: #35bc73;
    border: 0;
    border-radius: 3px;
    color: white;
}

    .greenbtn:hover {
        background-color: #34b36e;
    }

    .greenbtn:active {
        background-color: #35bc73;
    }
