.filter {
    margin: 24px 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
}

.filter::-webkit-scrollbar {
    display: none;
}

.filter ul {
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-width: max-content;
    flex-wrap: nowrap;
}

.filter ul::after {
    content: "";
    border-bottom: 1px solid #FBB03B;
    display: block;
    width: 100%;
    margin-left: -2px;
}

.filter ul li {
    cursor: pointer;
    color: #FBB03B;
    white-space: nowrap;
    background: url(/images/frame/bg_border_filter.svg), url(/images/frame/bg_filter_left.svg), url(/images/frame/bg_filter_right.svg);
    background-position: right top, left center, right center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    position: relative;
    padding: 12px 24px;
}

.filter ul li::before {
    content: "";
    background-color: #FBB03B;
    width: calc(100% - 16px);
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}

.filter ul li::after {
    content: "";
    border-bottom: 1px solid #FBB03B;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.filter ul li.active::after {
    display: none;
}

.imgBoxBorder {
    background: url(/images/frame/bg_border_bevel_right_left.svg), url(/images/frame/bg_border_img_right_left.svg), url(/images/frame/bg_border_bevel_left_right.svg), url(/images/frame/bg_border_img_left_right.svg);
    background-position: right calc(100% - 8px), left top, right 8px, left bottom;
    background-repeat: no-repeat;
    padding: 28px 0;
    position: relative;
}

.imgBoxBorder::before,
.imgBoxBorder::after {
    content: "";
    background-color: #4D4D4D;
    width: calc(100% - 56px);
    height: 1px;
    position: absolute;
    right: 16px;
}

.imgBoxBorder::before {
    top: 8px;
}

.imgBoxBorder::after {
    bottom: 8px;
}

.textBorder {
    background: url(/images/frame/bg_border_bevel_right_left.svg), url(/images/frame/bg_border_img_right_left.svg);
    background-position: 36px 8px, right top;
    background-repeat: no-repeat;
    padding-top: 28px;
    position: relative;
}

.textBorder::before {
    content: "";
    background-color: #4D4D4D;
    width: calc(100% - 92px);
    height: 1px;
    position: absolute;
    top: 8px;
    right: 40px;
}

.iconList ul li {
    border-right: 5px solid;
    padding: 8px 16px 8px 0;
}

.iconList ul li:not(:last-child) {
    margin-bottom: 16px;
}

.iconList ul li:nth-child(odd) {
    border-color: #C1272D;
}

.iconList ul li:nth-child(even) {
    border-color: #F7931E;
}

.iconList ul li a {
    width: calc(100% - 36px);
}

.iconList .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: -40px;
}

.iconList .title::before {
    content: "";
    width: 36px;
    height: 36px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}

.iconList .title h3 {
    width: calc(100% - 40px);
}

.iconList ul li:nth-child(odd) .title::before {
    background-image: url(/images/frame/icon_list_odd.svg);
}

.iconList ul li:nth-child(even) .title::before {
    background-image: url(/images/frame/icon_list_even.svg);
}

.iconList .content {
    padding-left: 36px;
}

.pagging {
    margin-top: 40px;
}

.pagging ul,
.pagging ul .pageIndex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagging ul li {
    width: 20px;
    padding: 4px 8px;
    margin: 4px;
    cursor: pointer;
}

.pagging ul li img {
    width: 100%;
    display: block;
    filter: invert(1);
}

.pagging .outer.first img,
.pagging .inner.previous img {
    transform: scaleX(-1);
}

.pagging ul li:hover,
.pagging ul li.active,
.pagging ul li:hover img,
.pagging ul li.active img {
    color: #4D4D4D;
    filter: invert(0.28);
}

@media screen and (min-width: 1024px) {}