﻿body {
    padding: 0;
    margin: 0;
    overflow: auto;
    /* width:100vw;
    height:100vh;*/
}
/*/////////////////////20211130新增头部//////////////////////////*/
.app_header_box {
    /*background-image: url(../img/app_hearder_bg.png);*/
    color: #fff;
    position: relative;
    height: 140px;
    background-position: top;
}

    .app_header_box:not(.hasImg):before {
        box-sizing: content-box;
        width: 100%;
        height: 140px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        display: block;
        content: '';
        background-color: #5E6EC8
    }

    .app_header_box:not(.hasImg):after {
        box-sizing: content-box;
        width: 100%;
        height: 140px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        display: block;
        content: '';
        background: linear-gradient(131deg, transparent 60%, #4F5CA6 0);
    }

    .app_header_box > .search_box {
        width: calc(100% - 60px);
        height: 30px;
        background: #fff;
        border-radius: 50px;
        position: relative;
        left: 30px;
        top: 40px;
        z-index: 3;
    }

        .app_header_box > .search_box input {
            height: 30px;
            width: calc(100% - 50px);
            box-sizing: border-box;
            padding: 0 15px;
            border: none;
            margin-left: 15px;
        }

        .app_header_box > .search_box i {
            position: absolute;
            right: 15px;
            top: 5px;
            color: #4f5ca6;
        }
/*/////////////////////20211130新增内容//////////////////////////*/
.app_container {
    /*background-image: url(../../Customer/img/cgBg.png);
    background-repeat: no-repeat;
    background-size: 100%;*/
    position: absolute;
    width: 100%;
    z-index: 10;
    height: calc(100% - 60px);
    background-position: left 0 top -30px;
    overflow: hidden;
    top: 60px;
}

    .app_container .app_content_box {
        position: absolute;
        width: 100%;
        z-index: 10;
        height: calc(100% - 120px);
        top: 80px;
        overflow: auto;
        padding-bottom: 90px;
        box-sizing: border-box;
    }

        .app_container .app_content_box.nofoot {
            /* height: calc(100% - 60px);*/
            height: calc(100% - 35px);
            padding-bottom: 140px;
        }

.app_content_box > div > h1 {
    padding: 15px;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    color: #404352;
}

    .app_content_box > div > h1 > font {
        display: block;
    }

    .app_content_box > div > h1 > span {
        font-size: 12px;
        font-weight: 500;
        margin-right: 15px;
    }

        .app_content_box > div > h1 > span b {
            color: red;
            font-size: 16px;
            padding: 0 5px;
        }

    .app_content_box > div > h1 > button {
        border: none;
        padding: 5px 20px;
        border-radius: 4px;
        position: absolute;
    }

        .app_content_box > div > h1 > button.blue {
            background: #2196F3;
            color: #fff;
        }

        .app_content_box > div > h1 > button.orange {
            background: #ff7600;
            color: #fff;
        }

    .app_content_box > div > h1 > i {
        position: absolute;
        right: 20px;
        top: 20px;
        color: #5e6ec8;
    }

.app_header_box > h1 {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 18px;
    padding: 0;
    margin: 0;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.app_header_box > h8 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 5px;
    padding: 30px 20px;
    display: block;
    position: relative;
    z-index: 3;
}

.app_header_box > .left {
    position: absolute;
    top: 10px;
    left: 15px;
    color: #fff;
    font-size: 18px;
    z-index: 10;
}

.app_header_box > .right {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 18px;
    z-index: 10;
}

.app_xq_container {
    position: absolute;
    width: 100%;
    z-index: 99;
    height: calc(100vh - 50px);
    overflow: hidden;
    top: 50px;
}

    .app_xq_container .app_content_box {
        position: absolute;
        width: 100%;
        z-index: 99;
        height: calc(100vh - 100px);
        overflow: auto;
        background: #fff;
        border-radius: 15px 15px 0 0;
    }


/*/////////////////////波浪样式//////////////////////////*/
.bl_box {
    position: absolute;
    z-index: 99;
    top: -8px;
    left: 0;
}

    .bl_box .bl100 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        width: calc(100vw + 30vw);
        height: auto;
    }

    .bl_box .bl70 {
        position: absolute;
        top: 8px;
        left: -40vw;
        z-index: 2;
        width: calc(100vw + 15vw);
        height: auto;
    }

    .bl_box .bl30 {
        position: absolute;
        top: 14px;
        left: -80vw;
        z-index: 1;
        width: calc(100vw + 40vw);
        height: auto;
    }
/*/////////////////////20211130新增logo//////////////////////////*/
.ls {
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 58px;
    background-image: url('../img/shadow.png');
    background-repeat: no-repeat;
    background-size: 100% 50px;
    z-index: 20;
    text-align: center;
    line-height: 50px;
}

.app_wxlogo {
    /* position: absolute;
    bottom: 35px;
    left: calc((100% - 95px) / 2);*/
}

.ls.nofoot {
    bottom: 0px !important;
}
/*/////////////////////20211130新增底部//////////////////////////*/
.app_footer {
    width: 100%;
    height: 60px;
    background: white;
    position: fixed;
    bottom: 0;
    z-index: 99;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px -1px 15px rgba(0,0,0,.1);
}

    .app_footer > ul {
        list-style-type: none;
        display: flex;
        padding: 0;
        margin: 10px 0 0 0;
    }

        .app_footer > ul li {
            flex: 1;
            text-align: center;
        }

            .app_footer > ul li a {
                text-decoration: none;
                display: block;
                color: #919191;
            }

                .app_footer > ul li a i {
                }

                .app_footer > ul li a font {
                    display: block;
                    font-size: 12px;
                    margin-top: 2px;
                    letter-spacing: 1px;
                }

            .app_footer > ul li.active, .app_footer > ul li:hover {
            }

                .app_footer > ul li.active a, .app_footer > ul li:hover a {
                    color: #5e6ec8;
                }

                    .app_footer > ul li.active a i, .app_footer > ul li:hover a i {
                    }

                    .app_footer > ul li.active a font, .app_footer > ul li:hover a font {
                    }

            .app_footer > ul li.ts {
                flex: unset;
                position: relative;
                z-index: 99;
                width: 50px;
                height: 50px;
                background: #5e6ec8;
                border-radius: 50px;
                top: -20px;
                line-height: 50px;
                border: 7px solid #fff;
                /*box-shadow: 0px -20px 20px rgba(0,0,0,.03);*/
            }

                .app_footer > ul li.ts a {
                    color: #fff;
                    font-size: 18px;
                }

                    .app_footer > ul li.ts a i {
                        font-size: 24px;
                    }

                    .app_footer > ul li.ts a font {
                    }


/*/////////////////////20211203新增右侧划入模块//////////////////////////*/
.module_container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #00000078;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    display: none;
}

    .module_container > .right_box {
        width: 300px;
        height: 100vh;
        background: #4b579b;
        position: absolute;
        top: 0;
        right: -300px;
        transition: all .2s;
        -moz-transition: all .2s;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        z-index: 999
    }

.right_box > i.fa-remove {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    color: #fff;
}

.right_box > h1 {
    padding: 10px;
    font-size: 24px;
    margin-top: 20px;
    text-align: right;
    color: #fff;
    letter-spacing: 1px;
}

.sx_box {
}

    .sx_box font {
        display: block;
        padding: 0 10px;
        font-size: 10px;
        color: #9aa5ef;
    }

    .sx_box input {
        width: calc(100% - 20px);
        margin-left: 10px;
        border: 0;
        background: inherit;
        border-bottom: 1px solid #7e8acf;
        margin-bottom: 15px;
        height: 30px;
        color: #fff;
        font-size: 14px;
        border-radius: 0;
        padding: 0;
    }

    .sx_box button {
        width: calc(100% - 24px);
        margin-left: 10px;
        margin-top: 50px;
        height: 39px;
        border-radius: 50px;
        border: none;
        background: #2dbecf;
        color: #fff;
        box-shadow: 0 0 15px rgba(0,0,0,.2)
    }


/*  各系统引用样式名称
    大仪共享：DYGX（仪器开放：yqkf）
    实验教学：SYJX（实验教学：Teacher）
    安全准入：AQZR
    安全检查：AQJC
    低值易耗：DZYH
    危化品：WHP
    仪器借用：YQJY（仪器设备：YQSB）
    实验室开放：SYSKF
*/

/*start:大仪共享：DYGX*/
.DYGX h1 > i {
    color: #1D90EC !important;
}

.DYGX .app_header_box:before {
    background-color: #1D90EC !important;
}

.DYGX .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #0C7CD0 0) !important;
}

.DYGX .app_footer > ul li.ts {
    background-color: #0C7CD0 !important;
}

.DYGX .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #1D90EC !important;
}
/*end:大仪共享：DYGX*/
/*start:仪器开放：yqkf*/
.yqkf h1 > i {
    color: #1D90EC !important;
}

.yqkf .app_header_box:before {
    background-color: #1D90EC !important;
}

.yqkf .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #0C7CD0 0) !important;
}

.yqkf .app_footer > ul li.ts {
    background-color: #0C7CD0 !important;
}

.DYGX .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #1D90EC !important;
}
/*end:仪器开放：yqkf*/
/*start:实验教学：SYJX*/
.SYJX h1 > i {
    color: #EAA453 !important;
}

.SYJX .app_header_box:before {
    background-color: #FDB664 !important;
}

.SYJX .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #EAA453 0) !important;
}

.SYJX .app_footer > ul li.ts {
    background-color: #EAA453 !important;
}

.SYJX .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #FDB664 !important;
}
/*end:实验教学：SYJX*/
/*start:实验教学：teacher*/
.teacher h1 > i {
    color: #EAA453 !important;
}

.teacher .app_header_box:before {
    background-color: #FDB664 !important;
}

.teacher .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #EAA453 0) !important;
}

.teacher .app_footer > ul li.ts {
    background-color: #EAA453 !important;
}

.teacher .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #FDB664 !important;
}
/*end:实验教学：SYJX*/
/*start:安全准入：AQZR*/

.AQZR h1 > i {
    color: #B84746 !important;
}

.AQZR .app_header_box:before {
    background-color: #CB5351 !important;
}

.AQZR .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #B84746 0) !important;
}

.AQZR .app_footer > ul li.ts {
    background-color: #B84746 !important;
}

.AQZR .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #CB5351 !important;
}
/*end:安全准入：AQZR*/
/*start:安全检查：AQJC*/

.AQJC h1 > i {
    color: #50AC7E !important;
}

.AQJC .app_header_box:before {
    background-color: #5EBC8C !important;
}

.AQJC .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #54AB7F 0) !important;
}

.AQJC .app_footer > ul li.ts {
    background-color: #54AB7F !important;
}

.AQJC .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #5EBC8C !important;
}
/*end:安全检查：AQJC*/
/*start:低值易耗：DZYH*/

.DZYH h1 > i {
    color: #DC5781 !important;
}

.DZYH .app_header_box:before {
    background-color: #DC5781 !important;
}

.DZYH .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #C64D73 0) !important;
}

.DZYH .app_footer > ul li.ts {
    background-color: #C64D73 !important;
}

.DZYH .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #DC5781 !important;
}
/*end:低值易耗：DZYH*/
/*start:危化品：WHP*/

.WHP h1 > i {
    color: #9A5A9C !important;
}

.WHP .app_header_box:before {
    background-color: #A966AB !important;
}

.WHP .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #9A5A9C 0) !important;
}

.WHP .app_footer > ul li.ts {
    background-color: #9A5A9C !important;
}

.WHP .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #A966AB !important;
}
/*end:危化品：WHP*/
/*start:仪器借用：YQJY*/

.YQJY h1 > i {
    color: #1DA8D8 !important;
}

.YQJY .app_header_box:before {
    background-color: #26B3E3 !important;
}

.YQJY .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #1DA8D8 0) !important;
}

.YQJY .app_footer > ul li.ts {
    background-color: #1DA8D8 !important;
}

.YQJY .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #26B3E3 !important;
}
/*end:仪器借用：YQJY*/
/*start:仪器设备：YQSB*/

.YQSB h1 > i {
    color: #1DA8D8 !important;
}

.YQSB .app_header_box:before {
    background-color: #26B3E3 !important;
}

.YQSB .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #1DA8D8 0) !important;
}

.YQSB .app_footer > ul li.ts {
    background-color: #1DA8D8 !important;
}

.YQSB .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #26B3E3 !important;
}
/*end:仪器设备：YQSB*/
/*start:实验室开放：SYSKF*/

.SYSKF h1 > i {
    color: #ACBF70 !important;
}

.SYSKF .app_header_box:before {
    background-color: #B9CE77 !important;
}

.SYSKF .app_header_box:after {
    background: linear-gradient(131deg, transparent 60%, #ACBF70 0) !important;
}

.SYSKF .app_footer > ul li.ts {
    background-color: #ACBF70 !important;
}

.SYSKF .app_footer > ul li.active a, .DYGX .app_footer > ul li:hover a {
    color: #B9CE77 !important;
}
/*end:实验室开放：SYSKF*/

.btn_group_container {
    background: #fff;
    border-radius: 15px 15px 0 0;
    position: absolute;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 90px;
    box-shadow: 0px -5px 20px rgba(0,0,0,.2);
    transition: all .2s;
    -moz-transition: all .2s;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
}

    .btn_group_container.show {
        height: 300px;
    }

.btn_more {
    box-sizing: content-box;
    width: 100px;
    height: 5px;
    position: absolute;
    display: block;
    z-index: 12;
    background: #4f5ca6;
    border-radius: 50px;
    top: 5px;
    left: calc((100% - 100px) / 2);
    display: none
}

.btn_group_nav {
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 100%;
    margin-top: 25px;
}

    .btn_group_nav li {
        float: left;
        width: calc(100% / 4);
        text-align: center;
        font-size: 14px;
        margin-bottom: 25px;
    }

        .btn_group_nav li a {
            display: block;
            margin: auto;
            width: 35px;
            height: 35px;
            background: #5e6ec8;
            border-radius: 50px;
            margin-bottom: 5px;
        }

            .btn_group_nav li a svg {
                fill: #fff;
            }

        .btn_group_nav li font {
            font-size: 12px;
            letter-spacing: 1px;
            color: #3b3d48;
        }

/*//////////////////////////20220907/////////////////////////////////*/

.app_header_box.hasImg {
    background: rgba(94,110,200,.8);
    height: 197px;
}

    .app_header_box.hasImg:before {
        box-sizing: content-box;
        width: 100%;
        height: 140px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        display: block;
        content: '';
        background-image: linear-gradient(rgba(76,90,150,1), rgba(94,110,200,0));
    }

    .app_header_box.hasImg.h150 {
        background: rgba(94,110,200,.8);
        height: 147px;
    }

.headbg img {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 200px;
}

.headbg.h150 img {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 150px;
}

.app_header_box.hasImg > h8 {
    font-size: 18px;
    letter-spacing: 2px;
    top: 20px;
    padding: 30px 15px;
}

.app_header_box.hasImg > h7 {
    font-size: 14px;
    letter-spacing: 2px;
    padding: 0 15px;
    position: relative;
    top: -10px;
    font-weight: 600;
}

.app_header_box.hasImg > .lx {
    padding: 0 15px;
    font-size: 14px;
    color: #fff;
    position: relative;
    z-index: 3;
    top: 5px;
}

    .app_header_box.hasImg > .lx i {
        margin-right: 7px;
    }

    .app_header_box.hasImg > .lx span {
        margin-right: 20px;
    }

.app_container.hasImg {
    top: 125px;
}

    .app_container.hasImg.h150 {
        top: 67px;
    }

.flex_btn {
    width: calc(100% - 60px);
    margin-left: calc((100% - (100% - 60px)) / 2) !important;
    box-shadow: 0 0 15px 0px rgba(0,0,0,.3);
    position: fixed !important;
    bottom: 20px;
    font-size: 16px !important;
    letter-spacing: 3px;
    font-weight: bold;
    z-index: 30;
}

/*//////////////////////////20240401  自动隐藏悬浮导航//////////////////////////////*/
.footer_float_auto {
    width: calc(100vw - 30px);
    height: 50px;
    border-radius: 50px;
    background: #6b549b;
    position: fixed;
    bottom: 45px;
    z-index: 999;
    box-shadow: 0px 4px 12px 0 rgba(0,0,0,.2);
    left: 15px;
}

/*///////////////////////////////20240531  新增分段区域///////////////////////////////////////////////*/

hr.fg {
    border-top: 5px solid #f9f9f9 !important;
    margin: 15px auto;
}

.title_box {
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
}

    .title_box h2 {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 2px;
        margin: 0;
        padding: 0;
        color: #2c2d31;
    }

        .title_box h2 img {
            width: 28px;
            vertical-align: middle;
        }

.xq_table {
    width: 100%
}

    .xq_table tr td:first-child {
        width: 98px;
        font-size: 14px;
        line-height: 45px;
        text-align: right;
        padding-right: 15px;
    }

    .xq_table tr td.top {
        vertical-align: top;
    }

    .xq_table tr td:last-child {
    }

        .xq_table tr td:last-child input {
            border: 1px solid #dfdfdf;
            height: 35px;
            width: 100%;
            padding: 0 10px;
            box-sizing: border-box;
            color: #000;
        }

        .xq_table tr td:last-child textarea {
            border: 1px solid #dfdfdf;
            height: auto;
            width: 100%;
            padding: 0 10px;
            box-sizing: border-box;
            color: #000;
            min-height: 70px;
        }

        .xq_table tr td:last-child select {
            font-size: 14px;
            height: 35px;
            width: 100%;
            border: 1px solid #dfdfdf;
        }

    .xq_table .text-danger {
        position: relative;
        top: 3px;
        color: red;
        margin-left: 3px;
    }
