﻿
.dropzone {
    /* min-height: 200px; */
    border: 1px solid rgba(0, 0, 0, 0.3);
    background: white;
    /* line-height: 200px; */
    padding: 20px 20px;
    text-align: left;
    border-radius: 6px;
}

/* 侧边栏样式 */
.sidebar {
    width: 200px;
    background-color: #f1f1f1;
    float: left;
    height: 100vh;
}

/* 高亮当前选项卡 */
.nav-sidebar li.active a {
    background-color: #dcdcdc;
}

/* 内容区域样式 */
.content {
    margin-left: 200px;
}

/* 弹窗背景遮罩样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
}

/* 弹窗内容样式 */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    /* max-height: 600px; */
    display: none;
    z-index: 10000;
    border-radius: 6px;
}

/* 弹窗按钮样式 */
.modal-button {
    display: block;
    margin-bottom: 10px;
}


@media screen and (max-width: 991px) {
    .modal {
        width: 90%;
        max-height: calc(100vh - 20px);
    }

    .it_comp_heading_wrapper h3 {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .it_comp_pricng_wrapper {
        height: calc(100vh - 80px);
        overflow: auto;
    }
}

@media (max-width: 767px) {
    .modal {
        width: 90%;
        max-height: calc(100vh - 20px);
    }

    .it_comp_heading_wrapper h3 {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .it_comp_pricng_wrapper {
        height: calc(100vh - 80px);
        overflow: auto;
    }
}

@media (max-width: 480px) {
    .modal {
        width: 90%;
        max-height: calc(100vh - 20px);
    }

    .it_comp_heading_wrapper h3 {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .it_comp_pricng_wrapper {
        height: calc(100vh - 80px);
        overflow: auto;
    }
}

