﻿:root {
    --bioo-main: #18b797;
    --bioo-secondary: #1AB394;
    --bioo-blue: #1C84C6;
    --bioo-text-primary: #333333;
    --bioo-text-secondary: #666666;
    --bioo-line: #cccccc;
    --bioo-screen-bg: #F5F5F5;
    --bioo-light-green: #F1FBF9;
    --bioo-top-height: 64px;
    --bioo-content-pt: 12px;
}

.bioo-btn {
    height: 40px;
    font-size: 16px;
    border-radius: 4px;
    border: 0px solid transparent;
}



.bioo-btn[type="normal"] {
    background-color: var(--bioo-main);
    color: #fff;
}

.bioo-btn[type="normal"]:hover {
    opacity: 0.8;
}


.bioo-btn[type="outLine"] {
    border: 1px solid var(--bioo-main);
    background-color: white;
    color: var(--bioo-main);
}

.bioo-btn[type="outLine"]:hover {
    background-color: var(--bioo-main);
    color: white;
}


.bioo-input {
    height: 40px;
    border: 1px solid var(--bioo-line);
    border-radius: 4px;
    font-size: 14px;
}

.bioo-input:focus {
    border-color: var(--bioo-main);
}

.bioo-title {
    font-size: 18px;
    color: var(--bioo-main);
    font-weight: bold;
    margin-top:20px;
}


.div-bg {
    background-color: var(--bioo-screen-bg);
    padding: 10px;
}

.div-top {
    background-color: white;
    height: 60px;
    display: flex;
    align-items: center;
    padding-left:10px;
}

.div-top-icon {
    width: 8px;
    height: 18px;
    background-color: var(--bioo-main);
    border-radius: 10px;
    margin-left: 15px;
    margin-right: 15px;
}

/*日期类型input 扩大点击范围*/
input[type='date'] {
    position: relative;
}

    input[type='date']::-webkit-calendar-picker-indicator {
        position: absolute;
        right: 0;
        padding-left: calc(100% - 40px);
        padding-right: 10px;
    }

input[type='datetime-local'] {
    position: relative;
}

    input[type='datetime-local']::-webkit-calendar-picker-indicator {
        position: absolute;
        right: 0;
        padding-left: calc(100% - 40px);
        padding-right: 10px;
    }



    p,h6,h5,h4,h3,h2,h1{
        padding-bottom:0;
        margin-bottom:0;
    }

/* 自定义滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: rgba(245,245,245,0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(193,193,193,0.8);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #24bb9d;
}

::-webkit-scrollbar-track {
    background-color: rgba(245,245,245,0.2);
    border-radius: 4px;
}
.empty-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popover {
    z-index: 1403 !important;
}

.bio-question-tooltip {
    background-color: white !important;
    color: #333 !important;
    box-shadow: 0 0 5px #18B797;
    display: flex;
    align-items: center;
    justify-content:left;
    margin-bottom: 10px;
}

.mud-tooltip {
    text-align: left;
}
.rightContentBox {
    padding: var( --bioo-content-pt);
}
