#box_1 .ani-content {

    padding-top: 24px;
}

.search {
    width: var(--base-width);
    height: 92px;
    border-radius: 75px;
    box-shadow: 2px 3px 8px 2px rgba(171, 171, 171, 0.25);
    background-color: #fff;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 32px 0 44px;
    margin-bottom: 24px;
}

.search input {
    width: calc(100% - 42px);
    height: 40px;
    border: 0;
    outline: 0;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color);
    padding-right: 12px;
}

.search img {

    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: transform .2s;
}

.search img:hover {
    transform: scale(1.1);
}

.cont {
    width: var(--base-width);

    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.menu {
    width: 264px;
    background-color: #fff;
    padding: 24px 16px 24px 42px;
    text-align: left;
    flex-shrink: 0;
}

.menu .menu-item {
    margin-bottom: 40px;
}

.menu .menu-title {
    font-weight: bold;
    font-size: 16px;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
}

.menu .menu-title span {
    width: 100%;
    display: inline-block;
}

.menu .menu-title::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;

    left: -14px;
    width: 4px;
    height: 12px;
    background-color: #A4C9FF;
    transform: translateY(-50%);
}

.menu .menu-cont {
    display: flex;
    flex-direction: column;
}

.menu .menu-cont .menu-q {
    font-weight: 400;
    font-size: 16px;
    color: #5F5F5F;
    margin-bottom: 22px;
    cursor: pointer;
}

.menu .menu-cont .menu-q:last-child {
    margin-bottom: 0;
}

.menu .menu-cont .menu-q:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.article {

    width: 800px;
    min-height: 1120px;
}

.article .articel-title {
    width: 100%;
    height: 54px;
    background-color: var(--primary-color);
    text-align: left;
    line-height: 54px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    padding-left: 14px;

}

.article .articel-content {
    background-color: #fff;
    height: calc(100% - 54px);
    padding: 30px;
    text-align: left;

    font-size: 16px;
}