insurance-query.scss 3.11 KB

.cell-group {
    margin-bottom: 1rem /* 12/12 */;
    div{
        font-size: 1rem /* 12/12 */;
        color: #4c4948;
    }

    .w1 {
        min-width: 9.166667rem /* 110/12 */;
        text-align: center;
    }

    .w2 {
        min-width: 6.25rem /* 75/12 */;
        text-align: center;
    }

    .table-header {
        width: 64.166667rem /* 770/12 */;
        height: 2.5rem /* 30/12 */;
        border-top-left-radius: .666667rem /* 8/12 */;
        border-top-right-radius: .666667rem /* 8/12 */;
        background-color: #f2f2f2;
        display: flex;
        align-items: center;

        .normal-header {
            width: 58.833333rem /* 706/12 */;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;

            .title {
                font-size: 1rem /* 12/12 */;
                font-weight: bold;
                color: #575453;
            }

            .guide {
                transition: all 0.5s;
                cursor: pointer;
                width: 1rem /* 12/12 */;
                height: .666667rem /* 8/12 */ ;
                background: url("~@/assets/images/insurance-query/triangle-down.png") no-repeat center center;
                background-size: 100% 100%;
            }

            .rotate180 {
                transform: rotate(180deg);
                transition: all 0.5s;
            }
        }
    }

    .table-content {
        width: 64.166667rem /* 770/12 */;
        height: auto;
        display: inline-block;
        border-bottom-left-radius: .666667rem /* 8/12 */;
        border-bottom-right-radius: .666667rem /* 8/12 */;
        border-left: solid .083333rem /* 1/12 */ #f2f2f2;
        border-right: solid .083333rem /* 1/12 */ #f2f2f2;
        border-bottom: solid .083333rem /* 1/12 */ #f2f2f2;
        padding: 0 2.583333rem /* 31/12 */;
        max-height: 41.666667rem /* 500/12 */;
        transition: max-height ease-out 0.3s !important;
        overflow: hidden;

        .data-line {
            height: 4.416667rem /* 53/12 */;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;

            .cell1 {
                width: 29.166667rem /* 350/12 */;
                display: flex;
                justify-content: space-between;
                margin: auto;
            }

            .separator-v {
                height: 2.5rem /* 30/12 */;
                width: .166667rem /* 2/12 */;
                background-color: #f2f2f2;
                margin: 0 .916667rem /* 11/12 */;
            }
        }

        .label span {
            color: #f05a23;
            margin-left: .583333rem /* 7/12 */;
            cursor: pointer;
            text-decoration: underline;
        }

        .separator-h {
            width: 58.833333rem /* 706/12 */;
            height: .083333rem /* 1/12 */;
            background-color: #f2f2f2;
        }
    }
    .orange {
        background-color: #f05a23 !important;
        div {
            color: #ffffff;
        }
    }

    .hide {
        max-height: 0;
        border-bottom:none;
    }

}