.boxLeft{
    /* flex: 1; */
    width: 310px;
}

/* 选中状态（字母高亮） */
.item.active2 {
    color: #000;
    cursor: pointer;
    /* border-color: #00000033; */
}

/* All 按钮 */
.item.active{
    background: #2265D5;
    color: #fff;
    border-color: #2265D5;
}

.item .disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f5f5f5;
}

.pb18{
    padding-bottom: 18px;
}

.subject-panel {
    width: 320px;
    padding: 22px 18px 26px 18px;
    background: #FCFCFC;

    border: 1px solid #0000001a;
}

.subject-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.checkbox {
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box
}

/* 选中状态 */
.checkbox.checked {
    background: #1677ff;
    border-color: #1677ff;

}

.checkbox.checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 3px;
    height: 9px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.border1{
    border: 1px solid #0000001a;
}

.flexColumn{
    flex-direction: column;
}

.signBtn{
    width: 128px;
    height: 50px;
    line-height: 50px;
    /* margin-top: 10px; */
    cursor: pointer;
    background: #FFFFFF;
    border: 1px solid #2265D5;
    color: #2265D5;
    border-radius: 5px;
    text-align: center;
}

.signBtn:hover{
    color: #2265D5;
}
.submitBtn:hover{
    color: #2265D5 !important;
}
.submitBtn {
    /*color: #fff;*/
    background-color: #E6F0FF;

}

/* menu */
.journal-menu {
    align-self: baseline;
    width: 100%;
    font-size: 14px;
    color: #333;
}

.menu-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.menu-list,
.menu-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.menu-item {
    padding: 10px 0px;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

.menu-item a {
    color: inherit;
    text-decoration: none;
}

.menu-item a:hover {
    color: inherit;
    text-decoration: none;
}

.menu-item:hover {
    color: #2265D5;
}

.menu-item.active {
    color: #2265D5;
    font-weight: 500;
}

.menu-item.disabled {
    color: #999;
    cursor: default;
}

.menu-children {
    padding-left: 18px;
    display: none;
    font-size: 16px;
}

.menu-item.open + .menu-children {
    display: block;
    padding-left: 18px;
}

.arrow {
    display: inline-block;
    width: 12px;
    margin-right: 4px;
}

.menuIcon180{
    transform: rotate(180deg);
}
.menuIcon{
    transform: rotate(0deg) !important;
}

.triangle{
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #333;
}

.triangle90{
    transform: rotate(90deg);
}