:root {
    --contentPadding: 60px;
}

@media screen and (max-width: 1440px) {
    :root {
        --contentPadding: 40px;
    }
}

@media screen and (max-width: 1000px) {
    :root {
        --contentPadding: 30px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --contentPadding: 30px;
    }
}

.newsList {
    --gap: 40px;
}

@media screen and (max-width: 1000px) {
    .newsList {
        --gap: 20px;
    }
}

.newsList .listBox {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}

.newsList .listBox .item {
    width: calc((100% - var(--gap) * 2) / 3);
    background: #FFF;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
    .newsList .listBox .item {
        width: calc((100% - (var(--gap))) / 2);
    }
}

@media screen and (max-width: 767px) {
    .newsList .listBox .item {
        width: 100%;
    }
}

.newsList .listBox .item:hover .info {
    background: #F39627;
    transition: all 0.3s ease;
}

.newsList .listBox .item:hover .info::after {
    background: #FFF;
}

.newsList .listBox .item:hover .title {
    color: #FFF;
}

.newsList .listBox .item:hover .description {
    color: #FFF;
    opacity: 0.6;
}

.newsList .pic {
    position: relative;
    isolation: isolate;
    border-bottom: 6px solid #F39627;
}

.newsList time {
    width: 175px;
    padding: 4px 10px 10px;
    text-align: center;
    position: absolute;
    display: block;
    line-height: 1;
    left: 0;
    top: 0;
    color: #FFF;
    background: #F39627;
}

.newsList .info {
    padding: 50px 30px 30px;
    background: #F8F8F9;
    position: relative;
}

@media screen and (max-width: 1000px) {
    .newsList .info {
        padding: 60px 30px 40px;
    }
}

.newsList .info .title {
    color: #06111F;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-size: 1.75rem;
}

@media screen and (max-width: 1000px) {
    .newsList .info .title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .newsList .info .title {
        font-size: 1.25rem;
    }
}

.newsList .info .description {
    color: #333;
    font-size: 1.125rem;
    position: relative;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
    .newsList .info .description {
        font-size: 1rem;
    }
}

.newsDetail .container {
    max-width: 1040px;
}

.newsDetail .pic {
    margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {
    .newsDetail .pic {
        margin-bottom: 10px;
    }
}

.newsDetail time {
    text-align: center;
    font-size: 1.3125rem;
    position: relative;
    display: block;
    margin-bottom: 40px;
}

@media screen and (max-width: 1000px) {
    .newsDetail time {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .newsDetail time {
        font-size: 1.125rem;
    }
}

.newsDetail time::before {
    content: "Date";
    color: #F39627;
    font-weight: bold;
    margin-right: 10px;
}

.newsDetail .title {
    line-height: 1;
    text-align: center;
    font-weight: bold;
    font-size: 2.625rem;
    margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
    .newsDetail .title {
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .newsDetail .title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 575px) {
    .newsDetail .title {
        font-size: 1.25rem;
    }
}

.newsDetail .editor {
    font-size: 1.125rem;
    margin-bottom: 10%;
}

.newsDetail .editor ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.newsDetail .editor ul li {
    list-style: disc;
}

.newsDetail .editor a {
    color: #f39627;
}

@media screen and (max-width: 767px) {
    .newsDetail .editor {
        font-size: 1rem;
        margin-bottom: 50px;
    }
}

.changePage {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.changePage .arrows {
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1;
    font-weight: 500;
    padding: 0 30px;
    color: #8D969C;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
    .changePage .arrows {
        padding: 0 20px;
    }
}

.changePage .arrows.next::after {
    content: "";
    -webkit-mask: url("../images/icon/icon_arrow.svg") center no-repeat;
    mask: url("../images/icon/icon_arrow.svg") center no-repeat;
    -webkit-mask-position: right;
    mask-position: right;
    -webkit-mask-size: cover;
    mask-size: cover;
    background: #8D969C;
    width: 11px;
    height: 11px;
    display: block;
    flex-shrink: 0;
    margin: 0 0 0 10px;
    transform: scaleX(-1) translateY(-1px);
    transition: all 0.3s ease;
}

.changePage .arrows.prev::after {
    content: "";
    -webkit-mask: url("../images/icon/icon_arrow.svg") center no-repeat;
    mask: url("../images/icon/icon_arrow.svg") center no-repeat;
    -webkit-mask-position: right;
    mask-position: right;
    -webkit-mask-size: cover;
    mask-size: cover;
    background: #8D969C;
    width: 11px;
    height: 11px;
    display: block;
    flex-shrink: 0;
    margin: 0 0 0 10px;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
    .changePage .arrows::after {
        width: 40px;
        height: 5px;
    }
}

.changePage .arrows.prev {
    border-right: #8D969C 1px solid;
}

.changePage .arrows.prev::after {
    order: -1;
    margin: 0 10px 0 0;
}

.changePage .arrows:hover {
    color: #F39627;
}

.changePage .arrows:hover::after {
    background: #F39627;
}

.subMenu {
    position: relative;
    isolation: isolate;
    background: #FFF;
}

@media screen and (min-width: 1001px) {
    .subMenu .container {
        padding: 0;
        position: relative;
    }

    .subMenu .container::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 6px;
        display: block;
        background: #DCDCDE;
        z-index: -1;
    }

    .subMenu ul {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .subMenu ul li {
        position: relative;
    }

    .subMenu ul li+li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 20px;
        bottom: 20px;
        width: 1px;
        display: block;
        background: #DDDDDD;
        z-index: -1;
    }

    .subMenu ul a {
        display: flex;
        font-size: 1.25rem;
        background: transparent;
        border: none;
        padding: 10px 40px;
        color: #8D969C;
        position: relative;
        align-items: center;
        font-weight: bold;
        transition: all 0.5s ease;
        cursor: pointer;
    }

    .subMenu ul a::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background-color: #F39627;
        transition: all 0.5s ease;
    }

    .subMenu ul a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 1px;
        height: 0;
        width: 100%;
        background-color: #F39627;
        transition: all 0.4s ease;
        z-index: -1;
    }

    .subMenu ul a:hover {
        color: #FFF;
        transition-delay: 0.5s;
    }

    .subMenu ul a:hover::before {
        width: 100%;
    }

    .subMenu ul a:hover::after {
        height: 100%;
        transition-delay: 0.4s;
        color: aliceblue;
    }

    .subMenu ul li.active a {
        color: #FFF;
        font-weight: bold;
    }

    .subMenu ul li.active a::before {
        width: 100%;
    }

    .subMenu ul li.active a::after {
        height: 100%;
        transition-delay: 0.4s;
        color: aliceblue;
    }
}

@media screen and (max-width: 767px) {
    .subMenu {
        display: none;
    }
}

.subMenu button {
    display: none;
    width: 100%;
    background: #F39627;
    color: #FFF;
    text-align: center;
    padding: 15px;
}

@media screen and (max-width: 1000px) {
    .subMenu button {
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    .subMenu ul {
        border-left: #F39627 1px solid;
        border-right: #F39627 1px solid;
        display: none;
    }

    .subMenu li {
        border-bottom: #F39627 1px solid;
    }

    .subMenu li a {
        display: block;
        padding: 15px;
        text-align: center;
    }
}

.exhibitionList {
    --gap: 40px;
}

.exhibitionList .info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}

.exhibitionList .info .select {
    padding: 0;
    margin: 0 0 0 10px;
}

.exhibitionList .info .select::before {
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(0);
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #F39627 transparent transparent transparent;
}

.exhibitionList .info .select select {
    padding-left: 0;
    color: #666666;
    font-size: 1rem;
    border: none;
    padding: 5px 50px 5px 15px;
    border: #E5E5E5 1px solid;
}

.exhibitionList .listBox {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}

.exhibitionList .listBox a {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 767px) {
    .exhibitionList .listBox a {
        flex-direction: column;
    }
}

.exhibitionList .listBox .item {
    width: calc((100% - (var(--gap))) / 2);
    background: #FFF;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
    .exhibitionList .listBox .item {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .exhibitionList .listBox .item {
        width: 100%;
    }
}

.exhibitionList .listBox .item:hover .title {
    color: #F39627;
}

.exhibitionList .listBox .item:hover .pic {
    border-color: #F39627;
    box-shadow: 0 0 30px 0px rgba(247, 155, 63, 0.5);
}

@media screen and (min-width: 768px) {
    .exhibitionList .listBox .content {
        width: 60%;
        padding-left: 20px;
    }
}

.exhibitionList .listBox .content .title {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
    .exhibitionList .listBox .content .title {
        font-size: 1.25rem;
    }
}

.exhibitionList .listBox .content .description {
    color: #333333;
    font-size: 1.125rem;
}

@media screen and (max-width: 1000px) {
    .exhibitionList .listBox .content .description {
        font-size: 1rem;
    }
}

.exhibitionList .listBox .pic {
    width: 40%;
    position: relative;
    isolation: isolate;
    border: #DCDCDE 1px solid;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .exhibitionList .listBox .pic {
        width: 100%;
        margin-bottom: 20px;
    }
}

.exhibitionDetail .container {
    display: flex;
    gap: 80px;
}

@media screen and (max-width: 1000px) {
    .exhibitionDetail .container {
        gap: 30px;
    }
}

@media screen and (max-width: 767px) {
    .exhibitionDetail .container {
        flex-direction: column;
    }
}

.exhibitionDetail .side {
    width: 30%;
    max-width: 420px;
}

@media screen and (max-width: 767px) {
    .exhibitionDetail .side {
        width: 50%;
        order: 3;
        margin: 0 auto;
    }
}

@media screen and (max-width: 575px) {
    .exhibitionDetail .side {
        width: 100%;
    }
}

.exhibitionDetail .side .pic {
    position: relative;
    isolation: isolate;
    border: #DCDCDE 1px solid;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .exhibitionDetail .content {
        width: 70%;
    }
}

.exhibitionDetail .content .title {
    line-height: 1;
    font-size: 6.25rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-size: 2.625rem;
}

@media screen and (max-width: 1000px) {
    .exhibitionDetail .content .title {
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .exhibitionDetail .content .title {
        font-size: 1.5rem;
    }
}

.exhibitionDetail .content .description {
    color: #333333;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

@media screen and (max-width: 1000px) {
    .exhibitionDetail .content .description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

.catalogList .unitTitle {
    font-size: 2.625rem;
    font-weight: 700;
    margin: 2% 0 1.5%;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .catalogList .unitTitle {
        font-size: 2rem;
        margin: 0 0 50px;
    }
}

.catalogList .description {
    color: #333333;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 5%;
    font-weight: 300;
    font-size: 1.125rem;
}

@media screen and (max-width: 1000px) {
    .catalogList .description {
        font-size: 1rem;
        margin: 0 0 50px;
    }
}

.catalogList .listBox {
    max-width: 990px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

@media screen and (max-width: 767px) {
    .catalogList .listBox {
        gap: 20px;
    }
}

.catalogList .item {
    width: calc((100% - 70px) / 2);
    --iconWidth: 4px;
}

@media screen and (max-width: 1000px) {
    .catalogList .item {
        --iconWidth: 2px;
    }
}

@media screen and (max-width: 767px) {
    .catalogList .item {
        width: calc((100% - 20px) / 2);
    }
}

.catalogList .item a {
    display: block;
    position: relative;
    isolation: isolate;
}

.catalogList .item a::before {
    content: "";
    position: absolute;
    display: block;
    width: var(--iconWidth);
    height: 80px;
    background: #FFF;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
    .catalogList .item a::before {
        height: 40px;
    }
}

.catalogList .item a::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    border: var(--iconWidth) solid #FFF;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 10px)) rotate(45deg);
    border-top: none;
    border-left: none;
    opacity: 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
    .catalogList .item a::after {
        width: 20px;
        height: 20px;
        transform: translate(-50%, calc(-50% + 8px)) rotate(45deg);
    }
}

@keyframes arrows {
    0% {
        top: 50%;
    }

    50% {
        top: calc(50% + 10px);
    }

    100% {
        top: 50%;
    }
}

.catalogList .item a:hover::before,
.catalogList .item a:hover::after {
    opacity: 1;
    animation: arrows 1s ease-in-out infinite;
}

.catalogList .item a:hover .pic::before,
.catalogList .item a:hover .pic::after {
    opacity: 1;
}

.catalogList .item a:hover .pic img {
    filter: grayscale(100%);
}

.catalogList .item .pic {
    border: #F39627 1px solid;
    margin-bottom: 30px;
    position: relative;
}

.catalogList .item .pic::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    mix-blend-mode: multiply;
    background: #F39627;
    opacity: 0;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.catalogList .item .pic::after {
    content: "";
    position: absolute;
    width: 80%;
    aspect-ratio: 1;
    display: block;
    border-radius: 50%;
    border: var(--iconWidth) solid #FFF;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.catalogList .item .pic img {
    transition: all 0.3s ease;
}

.catalogList .item .title {
    line-height: 1.2;
    text-align: center;
    font-size: 1.75rem;
}

@media screen and (max-width: 767px) {
    .catalogList .item .title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 575px) {
    .catalogList .item .title {
        font-size: 1.25rem;
    }
}

.brochureList .listBox {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
}

.brochureList .listBox .item {
    width: calc((100% - 44px) / 2);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .brochureList .listBox .item {
        width: 100%;
    }
}

.brochureList .listBox .item .pic {
    width: 45%;
}

.brochureList .listBox .item .info {
    width: 55%;
    min-height: 80%;
    position: relative;
    border: #E5E5E5 1px solid;
    background: #FFF;
    display: flex;
    flex-direction: column;
}

.brochureList .listBox .item .title {
    padding: 50px;
    flex-grow: 1;
}

@media screen and (max-width: 1100px) {
    .brochureList .listBox .item .title {
        padding: 20px;
    }
}

.brochureList .listBox .item .download {
    max-width: 220px;
    padding: 18px 20px;
    background: #E6E6E6;
    color: #000;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    position: relative;
    display: block;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    transform: translateY(50%);
}

@media screen and (max-width: 1100px) {
    .brochureList .listBox .item .download {
        padding: 10px 15px;
    }
}

@media screen and (max-width: 767px) {
    .brochureList .listBox .item .download {
        max-width: none;
        margin: 0;
    }
}

.brochureList .listBox .item .download i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #666666;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brochureList .listBox .item .download i::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    -webkit-mask: url("../images/icon/icon_download.svg") no-repeat center;
    mask: url("../images/icon/icon_download.svg") no-repeat center;
    background: #000;
    transition: all 0.3s ease;
}

.brochureList .listBox .item .download:hover {
    color: #FFF;
    background: #0099FF;
}

.brochureList .listBox .item .download:hover i {
    border-color: #FFF;
}

.brochureList .listBox .item .download:hover i::before {
    background: #fff;
}

.videoList .listBox {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.videoList .listBox .item {
    width: calc((100% - 60px) / 2);
    border: #E5E5E5 1px solid;
    background: #FFF;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .videoList .listBox .item {
        width: 100%;
    }
}

.videoList .listBox .item:hover {
    background: #13315F;
    border-color: #F39627;
}

.videoList .listBox .item:hover .pic::before {
    opacity: 1;
}

.videoList .listBox .item:hover .title {
    color: #FFF;
}

.videoList .listBox .item:hover .more::before {
    background: transparent;
    border-color: #0099FF;
}

.videoList .listBox .item .info {
    padding: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media screen and (max-width: 1000px) {
    .videoList .listBox .item .info {
        flex-direction: column;
    }
}

.videoList .listBox .item .title {
    color: #06111F;
    font-size: 1.3125rem;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
    .videoList .listBox .item .title {
        font-size: 1.125rem;
    }
}

.videoList .listBox .item .more {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin: 0 0 0 40px;
    color: #0099FF;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
    .videoList .listBox .item .more {
        margin: 10px 0 0 0;
    }
}

.videoList .listBox .item .more::before {
    content: "";
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    border-radius: 100%;
    display: block;
    order: 3;
    transition: all 0.3s ease;
}

.videoList .listBox .item .more::after {
    content: "";
    -webkit-mask: url("../images/icon/icon_more.svg") center no-repeat;
    mask: url("../images/icon/icon_more.svg") center no-repeat;
    background: #0099FF;
    width: 24px;
    height: 9px;
    display: block;
    order: 2;
    transform: translateX(15px);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.videoList .pic {
    position: relative;
    isolation: isolate;
    border-bottom: 6px solid #018AF0;
}

.videoList .pic::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, 0.2) url("../images/in/video_top.png") center no-repeat;
}

/*# sourceMappingURL=news.css.map */