﻿.content  {
    background-color: #f5f5f5;
    padding-top: 1rem;
    padding-bottom: 7rem;
}

.interface-details {
    box-sizing: border-box;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.left {
    width: 16rem;
    background-color: #FFF;
}

.active-list {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow: hidden;
    margin-bottom: -0.5rem;
    position: relative;
}

.active-list::after {
    content: '';
    position: absolute;
    bottom:0.5rem;
    left: 0rem;
    right: 0rem;
    height: 0.0625rem;
    background-color: #E7E7E7;
}

.active-list-item {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.active-list-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
}

.active-list-item-desc {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.interface-list {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.interface-list-item {
    display: flex;
    position: relative;
    flex-direction: column;
    font-weight: 500;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    height: 3rem;
    overflow: hidden;
}

.interface-list-item.auto {
    height: auto;
    overflow-y: auto;
}

.interface-list-item.auto .arrow  {
    transform: rotate(180deg);
}

.interface-list-item.auto .inner-section-list-panel {
    height: auto;
}

.interface-list-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3rem;
    cursor: pointer;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}


.interface-list-item-title::before {
    content: '';
    position: absolute;
    left: 0rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.125rem;
    height: 0.875rem;
    background-color: transparent;
}

.interface-list-item.auto .interface-list-item-title{
    color:#266FE8 ;
}

.interface-list-item.auto .interface-list-item-title::before {
    background-color: #266FE8;
}

.interface-list-item-title-title {
    flex: 0 0 12.5rem;
}



.inner-section-list-panel {
    height: 0rem;
    transition: all 0.3s ease-in;
}



.inner-section-list-panel-item {
    height: 3rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.inner-section-list-panel-item + .inner-section-list-panel-item {
    margin-top: 6px;
}

.inner-section-list-panel-item:hover {
    background-color: #ECF2FE;
}

.inner-section-list-panel-item.active{
    background-color: #ECF2FE;
}

.arrow {
    width: 1rem;
    height: 1rem;
    transition: all 0.3s;
    transform: rotate(0deg);
}



.right {
    width: 58rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #FFF;
    padding: 1.25rem;
}

