.sidebar .menu_account .depth02 {
    display: block;
}
.sidebar .menu_account .slide::after {
    transform: rotate(-45deg);
}
.sidebar .menu_account .slide.active::after {
    transform: rotate(135deg);
}
.sidebar .messageCenter {
    background: #f6f6f6;
    color: var(--theme);
}
.sidebar .messageCenter::before {
    opacity: 1;
}

.header_top,
.header_bottom,
.main {
    min-width: 1200px;
}
.container {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 0.8rem;
    font-size: 1.4rem;
}

.btn_tab {
    border-bottom: 2px solid #f5f5f5;
    margin-bottom: 20px;
    font-size: 12px;
}
.btn_tab button {
    position: relative;
    height: 3.6rem;
    margin-right: 3rem;
}
.btn_tab button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--theme);
    opacity: 0;
}
.btn_tab button.active {
    font-variation-settings: "wght" 600;
    color: var(--theme);
}
.btn_tab button.active::after {
    opacity: 1;
}

.content_tab > div {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.content_tab .active {
    position: static;
    visibility: visible;
    opacity: 1;
}

.sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.sort .buttons {
    display: flex;
}
.sort .buttons button {
    padding: 9px 12px;
    background: #fff;
    color: #666;
    border: 1px solid #dcdfe6;
    font-size: 12px;
}
.sort .buttons .btn_all {
    border-radius: 4px 0 0 4px;
    border-right: none;
}
.sort .buttons .btn_unread {
    border-radius: 0 4px 4px 0;
    border-left: none;
}
.sort .buttons .active {
    background: var(--theme);
    border-color: var(--theme);
    color: #fff;
}
.sort .btn_read {
    color: var(--theme);
}
.data_list .list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}
.data_list .list li:first-child {
    border-top: 1px solid #f5f5f5;
}
.data_list .list .types {
    display: flex;
    align-items: center;
    gap: 10px;
}
.data_list .list .icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}
.data_list .list dt {
    display: flex;
    align-items: center;
    gap: 5px;
}
.data_list .list dt .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--theme);
}
.data_list .list dd {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}
.data_list .list .info {
    text-align: right;
}
.data_list .list .info a {
    color: var(--theme);
}
.data_list .list .date {
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}

.data_list .name {
    display: flex;
    align-items: center;
    gap: 5px;
}
.data_list .name .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--theme);
}
.data_list .controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    color: var(--theme);
}
.data_list .controls button {
    color: var(--theme);
}

.graph {
    position: relative;
}
.graph-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.graph-list .date {
    margin-top: 10px;
}
.graph-list .dot {
    position: relative;
    width: 10px;
    height: 10px;
    margin-top: 12px;
    border: 2px solid var(--theme);
    background: #fff;
    border-radius: 50%;
    z-index: 10;
}
.graph-list dl {
    position: relative;
    padding-bottom: 24px;
}
.graph-list li:not(:last-child) dl::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 17px;
    width: 2px;
    height: 100%;
    background: #e4e7ed;
}
.graph-list dt {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    line-height: 32px;
    background: var(--theme);
    color: #fff;
    border-radius: 8px;
}
.graph-list dt::before {
    content: "";
    position: absolute;
    left: -7px;
    top: calc(50% - 6px);
    border-right: 8px solid var(--theme);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.graph-list dd {
    margin-top: 12px;
    line-height: 2;
}

.paging_wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    margin-top: 1.6rem;
    padding: 1.6rem;
    border-radius: 0.8rem;
    font-size: 1.3rem;
}
.paging_wrap .dropdown {
    position: relative;
    width: 10rem;
    height: 3rem;
}
.paging_wrap .dropdown .placeholder {
    line-height: 3rem;
}
.paging_wrap .dropdown::after {
    top: 0.8rem;
}
.paging_wrap .paging {
    display: flex;
    align-items: center;
}
.paging_wrap .paging ul {
    display: flex;
    margin: 0 0.5rem;
}
.paging_wrap .paging a {
    display: block;
    padding: 0 0.8rem;
}
.paging_wrap .paging .active {
    color: var(--theme);
    font-variation-settings: "wght" 700;
}
.paging_wrap .paging img {
    width: 1.6rem;
}
.paging_wrap .prev img {
    transform: rotate(-0.75turn);
}
.paging_wrap .next img {
    transform: rotate(0.75turn);
}
.paging_wrap .search {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.paging_wrap .search input {
    width: 5rem;
    height: 3rem;
    border: 1px solid #dcdfe6;
    background: #fff;
    border-radius: 0.4rem;
    text-align: center;
}

.notice_pop .pop_frame {
    max-width: 800px;
}
.notice_pop .pop_content {
    height: 500px;
    overflow-y: auto;
}

.read_tool .tooltip-wrap {
    min-width: auto;
}
.read_tool button {
    width: 100%;
    text-align: center;
    color: var(--theme);
    font-size: 14px;
}
