*,
:after,
:before {
    border: 0 solid #e5e7eb;
    box-sizing: border-box;
}

button,
input,
optgroup,
select,
textarea {
    font-feature-settings: inherit;
    color: inherit;
    font-family: inherit;
    font-size: 100%;
    font-variation-settings: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

.inews.section {
    padding-bottom: 60px;
}

/* -------------------- 容器 -------------------- */
.site_container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

@media (min-width: 968px) {
    .site_container {
        padding-left: 0;
        padding-right: 0;
        width: 92vw;
    }
}

@media (min-width: 1940px) {
    .site_container {
        width: 1760px;
    }
}


/* -------------------- 列表容器 -------------------- */
.home_news__lists {
    margin-bottom: 20px;
    margin-top: 20px;
}

@media (min-width: 968px) {
    .home_news__lists {
        margin-bottom: 2.8rem;
        margin-top: 2.8rem;
    }
}

/* -------------------- 网格布局 -------------------- */
.home_news__lists>ul {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 668px) {
    .home_news__lists>ul {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 968px) {
    .home_news__lists>ul {
        gap: 1.6rem;
    }
}

/* -------------------- 列表项 -------------------- */
.home_news__lists>ul>li {
    position: relative;
}

/* -------------------- 卡片链接 -------------------- */
.home_news__lists>ul>li>a {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition-duration: 1s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
}

@media (min-width: 968px) {
    .home_news__lists>ul>li>a {
        border-radius: 0.8rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}

/* -------------------- 图片容器 -------------------- */
.home_news__lists>ul>li>a .img {
    overflow: hidden;
}

/* 图片 */
.home_news__lists>ul>li>a .img img {
    aspect-ratio: 41 / 24;
    background-color: #e7e7e7;
    object-fit: cover;
    transition-duration: 1s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: block;
}

/* -------------------- 文本内容 -------------------- */
.home_news__lists>ul>li>a .txt {
    background-color: #ffffff;
    flex: 1 1 0%;
    padding: 20px;
}

@media (min-width: 968px) {
    .home_news__lists>ul>li>a .txt {
        padding: 1.6rem;
    }
}

/* 时间 */
.home_news__lists>ul>li>a .txt time {
    color: #999999;
    font-size: 12px;
    line-height: 1.5;
}

@media (min-width: 968px) {
    .home_news__lists>ul>li>a .txt time {
        font-size: 0.64rem;
    }
}

/* 标题 */
.home_news__lists>ul>li>a .txt .t {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    height: 3em;
    margin-top: 10px;
    margin-bottom: 1em;
    transition-duration: 0.5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 968px) {
    .home_news__lists>ul>li>a .txt .t {
        -webkit-line-clamp: 3;
        font-size: 0.8rem;
        height: 4.5em;
        margin-top: 0.6rem;
        margin-bottom: 2em;
        padding-bottom: 1px;
    }
}

/* 查看详情行 */
.home_news__lists>ul>li>a .txt .info {
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition-duration: 0.5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.home_news__lists>ul>li>a .txt .info span {
    font-size: 12px;
}

.home_news__lists>ul>li>a .txt .info .iconfont-arrow01 {
    width: 30px;
    height: 10px;
    background: url(../images/jtgray.png) no-repeat right center;
    background-size: 20px 11px;
    display: inline-block;
    padding-right: 30px;
}

.home_news__lists>ul>li>a:hover .txt .info .iconfont-arrow01 {
    background: url(../images/jtorange.png) no-repeat right center;
    background-size: 20px 11px;
}

@media (min-width: 968px) {
    .home_news__lists>ul>li>a .txt .info span {
        font-size: 0.64rem;
    }
}

.home_news__lists>ul>li>a .txt .info i {
    font-size: 14px;
}

@media (min-width: 968px) {
    .home_news__lists>ul>li>a .txt .info i {
        font-size: 0.72rem;
    }
}

/* -------------------- 悬停效果（仅大屏） -------------------- */
@media (min-width: 968px) {
    .home_news__lists>ul>li>a:hover {
        transform: translateY(-0.8rem);
    }

    .home_news__lists>ul>li>a:hover .img img {
        transform: scale(1.05);
    }

    .home_news__lists>ul>li>a:hover .txt .t,
    .home_news__lists>ul>li>a:hover .txt .info {
        color: rgba(230, 0, 18, 1);
        /* 品牌主色，可根据需要修改 */
    }
}

.inews img {
    display: block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* -------------------- 响应式字体基准 -------------------- */
@media (min-width: 668px) and (max-width: 1919px) {
    html {
        font-size: 19.5px;
        font-size: calc(8.13099px + 0.87859vw);
    }
}

@media (min-width: 1920px) {
    html {
        font-size: 25px;
    }
}

/* 小屏设备使用固定字体 */
@media (max-width: 667px) {
    html {
        font-size: 14px;
    }
}

/* -------------------- 基础容器 -------------------- */
.container--full {
    padding-left: 100px;
    padding-right: 100px
}

@media (max-width: 1440px) {
    .container--full {
        padding-left: 50px;
        padding-right: 50px
    }

    .container--small {
        max-width: 970px
    }
}

@media (max-width: 640px) {
    .container--full {
        padding-left: 20px;
        padding-right: 20px
    }
}

/* -------------------- 标题区域 -------------------- */
.index-brand .subtitle {
    font-size: 2rem;
    line-height: 45px;
    font-weight: bold;
    color: #202020;
    margin-bottom: 20px;
    text-align: center;
}

.index-brand p {
    font-size: 16px;
    margin-bottom: 45px;
    text-align: center;
}

.index-brand .clients__logo--white {
    color: #fff;
}

/* -------------------- 品牌客户模块 -------------------- */
.so-widget-clients-page-style-d75171398898-9030 .section {
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 0;
}

.so-widget-clients-page-style-d75171398898-9030 .with-gradient {
    background: linear-gradient(to bottom, #fff 0%, #fff 520px, #ffffff 520px, #ffffff 100%);
    padding-bottom: 130px;
}

/* -------------------- 品牌列表网格 -------------------- */
.so-widget-clients-page-style-d75171398898-9030 .clients__list {
    display: flex;
    flex-wrap: wrap;
    opacity: 1 !important;
}

/* -------------------- 单个品牌卡片 -------------------- */
.so-widget-clients-page-style-d75171398898-9030 .clients__item {
    align-items: center;
    background-color: #fff;
    border: 1px solid #E2E2E7;
    display: flex;
    flex-direction: column;
    height: 260px;
    justify-content: space-between;
    margin: -1px 0 0 -1px;
    overflow: hidden;
    padding: 20px;
    position: relative;
    width: 16.666%;
    text-decoration: none;
}

.so-widget-clients-page-style-d75171398898-9030 .clients__item img {
    flex: 0 0 auto;
    width: auto;
    max-width: 8rem;
    max-height: 4rem;
}

/* -------------------- 悬停背景 -------------------- */
.so-widget-clients-page-style-d75171398898-9030 .clients__bg {
    background-color: #e16130;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 500ms ease-in-out;
    transform: translateY(100%);
}

/* -------------------- 案例研究箭头图标 -------------------- */
.so-widget-clients-page-style-d75171398898-9030 .clients__case-study {
    align-items: center;
    align-self: flex-end;
    color: #fff;
    display: flex;
    font-size: .6875rem;
    line-height: 1;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.so-widget-clients-page-style-d75171398898-9030 .clients__case-study span {
    transition: transform 300ms 350ms;
    transform: translateX(100%);
}

.so-widget-clients-page-style-d75171398898-9030 .clients__case-study svg {
    margin-left: 8px;
    position: relative;
    opacity: 0;
    transition: all 0.3s;
}

.so-widget-clients-page-style-d75171398898-9030 .clients__case-study svg .svg-circle {
    fill: #fff;
    transition: fill 300ms 150ms;
}

.so-widget-clients-page-style-d75171398898-9030 .clients__case-study svg .svg-arrow {
    transition: fill 300ms 150ms;
    fill: #fff;
}

/* -------------------- 品牌信息区域 -------------------- */
.so-widget-clients-page-style-d75171398898-9030 .clients__info {
    position: relative;
    text-align: center;
    width: 100%;
}

.so-widget-clients-page-style-d75171398898-9030 .clients__logo {
    transition-duration: 300ms;
    transition-property: height, opacity;
    vertical-align: top;
}

.so-widget-clients-page-style-d75171398898-9030 .clients__logoWrap {
    margin-bottom: 13px;
    margin-top: 13px;
    position: relative;
    /* padding-left: 30px;
    padding-right: 30px; */
}

.so-widget-clients-page-style-d75171398898-9030 .clients__logo--white {
    left: 0;
    max-height: 35px;
    opacity: 0;
    position: absolute;
    margin: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* -------------------- 行业标签 -------------------- */
.so-widget-clients-page-style-d75171398898-9030 .clients__industry {
    align-self: flex-start;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    color: #5b5b5b;
    font-size: 14px;
    font-weight: normal;
    padding: 7px 10px;
    position: relative;
    margin: 0 auto;
    transition: all 0.3s;
}

/* ========================================
   悬停效果
   ======================================== */

/* 显示箭头图标 */
.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover svg {
    opacity: 1;
}

/* 背景滑入 */
.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__bg {
    transform: translateY(0);
}

/* Logo切换 - 彩色Logo消失 */
.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__logo {
    opacity: 0;
}

.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__logoWrap {
    height: 35px;
}

.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__logo--color {
    height: 0 !important;
}

/* Logo切换 - 白色Logo出现 */
.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__logo--white {
    opacity: 1;
}

/* 箭头动画 */
.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__case-study span {
    transform: translateX(0);
}

.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__case-study svg {
    position: relative;
}

.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__case-study svg .svg-circle {
    fill: #fff;
}

.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__case-study svg .svg-arrow {
    fill: #96c800;
}

/* 行业标签悬停变白 */
.so-widget-clients-page-style-d75171398898-9030 a.clients__item:hover .clients__industry {
    border-color: #fff;
    color: #fff;
}

/* ========================================
   响应式适配
   ======================================== */

@media (max-width: 1440px) {
    .so-widget-clients-page-style-d75171398898-9030 .with-gradient {
        background: linear-gradient(to bottom, #fff 0%, #fff 440px, #ffffff 440px, #ffffff 100%);
        padding-bottom: 100px;
    }

    .so-widget-clients-page-style-d75171398898-9030 .clients__item {
        height: 220px;
    }
}

@media (max-width: 1250px) {
    .so-widget-clients-page-style-d75171398898-9030 .clients__item {
        width: 20%;
        /* 一行5个 */
    }
}

@media (max-width: 1100px) {
    .so-widget-clients-page-style-d75171398898-9030 .clients__item {
        width: 25%;
        /* 一行4个 */
    }
}

@media (max-width: 960px) {
    .so-widget-clients-page-style-d75171398898-9030 .with-gradient {
        padding-bottom: 55px;
    }
}

@media (max-width: 860px) {
    .so-widget-clients-page-style-d75171398898-9030 .clients__item {
        width: 33.333%;
        /* 一行3个 */
    }
}

@media (max-width: 767px) {
    .so-widget-clients-page-style-d75171398898-9030 .with-gradient {
        background: #f8f8f8;
    }
}

@media (max-width: 640px) {
    .so-widget-clients-page-style-d75171398898-9030 .clients__item {
        width: 50%;
        /* 一行2个 */
    }
}

@media (max-width: 420px) {
    .so-widget-clients-page-style-d75171398898-9030 .clients__item {
        height: 170px;
        padding: 15px;
    }

    .so-widget-clients-page-style-d75171398898-9030 .clients__logoWrap {
        margin-bottom: 10px;
        margin-top: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.footer_middle__message {
    margin-top: 30px;
}

.footer_middle__message .messagetitle {
    font-size: 22px;
    font-weight: 500;
    color: #e16130;
    margin-bottom: 10px;
}

@media (min-width:968px) {
    .footer_middle__message {
        flex: 1 1 0%;
        /* max-width: 33.6rem */
    }
}

.footer_middle__message .wpcf7 form .wpcf7-response-output {
    border-width: 1px;
    margin: 20px 0 0;
    padding: 1em;
    text-align: center
}

@media (min-width:968px) {
    .footer_middle__message .wpcf7 form .wpcf7-response-output {
        font-size: .56rem;
        margin-top: .8rem
    }
}

.footer_middle__message .wpcf7-not-valid-tip {
    --tw-translate-y: -50%;
    line-height: 1.5;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    z-index: 2
}

@media (min-width:968px) {
    .footer_middle__message .wpcf7-not-valid-tip {
        font-size: .48rem
    }
}

.footer_middle__message .wpcf7-form.submitting .wpcf7-submit {
    --tw-bg-opacity: 1 !important;
    --tw-text-opacity: 1 !important;
    background-color: rgb(212 212 212/var(--tw-bg-opacity, 1)) !important;
    color: rgb(107 114 128/var(--tw-text-opacity, 1)) !important;
    cursor: not-allowed !important;
    pointer-events: none
}

.footer_middle__message .form>ul {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width:968px) {
    .footer_middle__message .form>ul {
        -moz-column-gap: 1.2rem;
        column-gap: 1.2rem;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        row-gap: 1.2rem
    }

    .footer_middle__message .form>ul .item {
        grid-column: span 2/span 2
    }
}

.footer_middle__message .form>ul .item .txt {
    --tw-text-opacity: 1;
    color: rgb(102 102 102/var(--tw-text-opacity, 1));
    line-height: 1.5
}

@media (min-width:968px) {
    .footer_middle__message .form>ul .item .txt {
        font-size: .64rem
    }

    .footer_middle__message .form>ul .item_half {
        grid-column: span 3/span 3
    }

    .footer_middle__message .form>ul .item_full {
        grid-column: span 6/span 6
    }
}

.footer_middle__message .form>ul input[type=email],
.footer_middle__message .form>ul input[type=tel],
.footer_middle__message .form>ul input[type=text] {
    --tw-text-opacity: 1;
    background-color: transparent;
    border-bottom-width: 1px;
    border-color: hsla(0, 0%, 100%, .1);
    border-radius: 0;
    color: rgb(255 255 255/var(--tw-text-opacity, 1));
    display: block;
    font-size: 14px;
    line-height: 1;
    outline: 2px solid transparent;
    outline-offset: 2px;
    padding: 15px 0;
    width: 100%
}

.footer_middle__message .form>ul input[type=email]::-moz-placeholder,
.footer_middle__message .form>ul input[type=tel]::-moz-placeholder,
.footer_middle__message .form>ul input[type=text]::-moz-placeholder {
    color: hsla(0, 0%, 100%, .5)
}

.footer_middle__message .form>ul input[type=email]::placeholder,
.footer_middle__message .form>ul input[type=tel]::placeholder,
.footer_middle__message .form>ul input[type=text]::placeholder {
    color: hsla(0, 0%, 100%, .5)
}

@media (min-width:968px) {

    .footer_middle__message .form>ul input[type=email],
    .footer_middle__message .form>ul input[type=tel],
    .footer_middle__message .form>ul input[type=text] {
        font-size: .6rem;
        padding-bottom: .6rem;
        padding-top: .6rem
    }
}

.footer_middle__message .form>ul .country-select.inside input,
.footer_middle__message .form>ul .country-select.inside input[type=text] {
    padding-left: 52px
}

.footer_middle__message .form>ul .intl-tel-input {
    width: 100%
}

.footer_middle__message .form>ul .intl-tel-input input[type=tel] {
    padding-left: 50px
}

.footer_middle__message .form>ul textarea {
    --tw-text-opacity: 1;
    background-color: transparent;
    border-bottom-width: 1px;
    border-color: hsla(0, 0%, 100%, .1);
    border-radius: 0;
    color: rgb(255 255 255/var(--tw-text-opacity, 1));
    display: block;
    font-size: 14px;
    height: 6em;
    line-height: 1.5;
    outline: 2px solid transparent;
    outline-offset: 2px;
    padding: 15px 0;
    width: 100%
}

.footer_middle__message .form>ul textarea::-moz-placeholder {
    color: hsla(0, 0%, 100%, .5)
}

.footer_middle__message .form>ul textarea::placeholder {
    color: hsla(0, 0%, 100%, .5)
}

@media (min-width:968px) {
    .footer_middle__message .form>ul textarea {
        font-size: .6rem;
        padding-bottom: .6rem;
        padding-top: .6rem
    }
}

.footer_middle__message .form>ul .submit {
    margin-top: 20px
}

@media (min-width:968px) {
    .footer_middle__message .form>ul .submit {
        margin-top: 0
    }
}

.footer_middle__message .form>ul .submit .wpcf7-submit {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    align-items: center;
    background-color: #e16130;
    border-radius: 9999px;
    cursor: pointer;
    display: inline-flex;
    gap: 5px;
    height: 30px;
    justify-content: center;
    min-width: 100px;
    padding-left: 10px;
    padding-right: 10px;
    transition-duration: .5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.footer_middle__message .form>ul .submit .wpcf7-submit:hover {
    opacity: .8;
}

@media (min-width:968px) {
    .footer_middle__message .form>ul .submit .wpcf7-submit {
        gap: .4rem;
        height: 1.76rem;
        min-width: 6rem;
        padding-left: .8rem;
        padding-right: .8rem
    }
}

.footer_middle__message .form>ul .submit .wpcf7-spinner {
    display: none
}


/*menu-nav*/

.sub_full__inner {
    --tw-border-opacity: 1;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity, 1));
    border-color: rgb(221 221 221/var(--tw-border-opacity, 1));
    border-top-width: 1px;
    display: flex;
}

.sub_full__info {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245/var(--tw-bg-opacity, 1));
    display: flex;
    flex-direction: column;
    padding: 2rem 4.166666666666667vw 2rem 50px;
    width: 26%;
    text-align: left;
}

@media (min-width:1681px) {
    .sub_full__info {
        padding-bottom: 3.2rem;
        padding-top: 3.2rem
    }
}

.sub_full__info .info_title {
    font-size: .88rem;
    font-weight: 500;
    line-height: 1.25
}

.sub_full__info .info_des {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    --tw-text-opacity: 1;
    color: rgb(102 102 102/var(--tw-text-opacity, 1));
    display: -webkit-box;
    font-size: .64rem;
    height: 9.75em;
    line-height: 1.625;
    margin-bottom: 1.2rem;
    margin-top: 1.2rem;
    overflow: hidden
}


.sub_full__list {
    --tw-border-opacity: 1;
    border-color: rgb(221 221 221/var(--tw-border-opacity, 1));
    border-right-width: 1px;
    flex: 1 1 0%;
    padding: 2rem 5.208333333333333vw
}

@media (min-width:1681px) {
    .sub_full__list {
        padding: 3.2rem 6.770833333333333vw
    }
}

.sub_full__list>ul {
    display: flex;
    flex-direction: column
}

.sub_full__list>ul>li a {
    --tw-border-opacity: 1;
    --tw-text-opacity: 1;
    align-items: center;
    border-bottom-width: 1px;
    border-color: rgb(238 238 238/var(--tw-border-opacity, 1));
    color: rgb(102 102 102/var(--tw-text-opacity, 1));
    display: flex;
    font-size: .72rem;
    font-weight: 500;
    gap: .8rem;
    justify-content: space-between;
    padding-bottom: 1.2rem;
    padding-top: 1.2rem;
    transition-duration: .5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

/* .sub_full__list>ul>li a:after {
    content: "\ea02";
    flex-shrink: 0;
    font-family: iconfont;
    font-size: .4rem;
    transition-duration: .5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
} */

.sub_full__list>ul>li a:hover {
    --tw-text-opacity: 1;
    color: #e16130
}

.sub_full__list>ul>li a:hover:after {
    animation: toRightFromLeft .35s ease-in-out
}

.sub_full__list.sub_full__area>ul>li.active a {
    --tw-text-opacity: 1;
    color: #e16130
}

.sub_full__list.sub_full__area>ul>li.active a:after {
    animation: toRightFromLeft .35s ease-in-out
}



.sub_full__other {
    display: flex;
    gap: 1.6rem;
    padding: 2rem 50px 2rem 4.166666666666667vw;
    width: 44%
}

@media (min-width:1681px) {
    .sub_full__other {
        padding-bottom: 3.2rem;
        padding-left: 5.208333333333333vw;
        padding-top: 3.2rem
    }
}

.sub_full__other>li {
    flex: 1 1 0%
}

.sub_full__other>li a {
    display: flex;
    flex-direction: column;
    gap: 1.2rem
}

.sub_full__other>li a .img {
    --tw-bg-opacity: 1;
    /* aspect-ratio: 33/22; */
    background-color: rgb(245 245 245/var(--tw-bg-opacity, 1));
    border-radius: 20px;
    width: 100%;
}

.sub_full__other>li a .img img {
    width: 100%;
    border-radius: 20px;
}

.sub_full__other>li a .title {
    align-items: center;
    display: flex;
    gap: 1.2rem;
    justify-content: space-between
}

.sub_full__other>li a .title span {
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity, 1));
    font-size: .88rem;
    font-weight: 500;
    line-height: 1.25;
    transition-duration: .5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.sub_full__other>li a .title i {
    --tw-rotate: -45deg;
    --tw-text-opacity: 1;
    color: rgb(102 102 102/var(--tw-text-opacity, 1));
    display: inline-block;
    flex-shrink: 0;
    font-size: .56rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition-duration: .5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.sub_full__other>li a:hover span {
    --tw-text-opacity: 1;
    color: rgba(var(--maincolor), var(--tw-text-opacity, 1))
}

.sub_full__other>li a:hover i {
    --tw-rotate: 0deg;
    --tw-text-opacity: 1;
    color: rgba(var(--maincolor), var(--tw-text-opacity, 1));
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.sub_full__other .sub_full__area--imgs {
    padding-right: 2rem;
    width: 100%
}

.sub_full__other .sub_full__area--imgs .imgs {
    display: none
}

.sub_full__other .sub_full__area--imgs .imgs ul {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.sub_full__other .sub_full__area--imgs .imgs ul li a {
    --tw-bg-opacity: 1;
    aspect-ratio: 2/1;
    background-color: rgb(0 0 0/var(--tw-bg-opacity, 1));
    border-radius: var(--rounedNormal);
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%
}

.sub_full__other .sub_full__area--imgs .imgs ul li a span {
    --tw-text-opacity: 1;
    align-items: center;
    color: rgb(255 255 255/var(--tw-text-opacity, 1));
    display: flex;
    font-size: .96rem;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    left: 0;
    line-height: 1.25;
    padding: .8rem;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 1
}

.sub_full__other .sub_full__area--imgs .imgs ul li a .bg {
    background-position: 50%;
    background-size: cover;
    display: block;
    height: 100%;
    opacity: .5;
    transition-duration: 1s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    width: 100%
}

.sub_full__other .sub_full__area--imgs .imgs ul li a:hover .bg {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.sub_full .sub_full_nav_col2 .sub_full__list>ul {
    -moz-column-gap: 3.125vw;
    column-gap: 3.125vw;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.sub_full .sub_full_nav_col2 .sub_full__other {
    padding-left: 2.6041666666666665vw;
    width: 23%
}

@media (min-width:1681px) {
    .sub_full .sub_full_nav_col2 .sub_full__other {
        padding-left: 2.6041666666666665vw
    }
}

.common_more_arrow {
    align-items: center;
    border-radius: 0;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    min-width: 120px;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    transition-duration: .5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    border: 1px solid #d3d3d3;
    border-radius: 5px;
}

@media (min-width:968px) {
    .common_more_arrow {
        height: 2.24rem;
        min-width: 6.8rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem
    }
}

.common_more_arrow span {
    --tw-border-opacity: 1;
    --tw-text-opacity: 1;
    border-color: rgb(221 221 221/var(--tw-border-opacity, 1));
    border-right-width: 1px;
    color: rgb(50 50 50/var(--tw-text-opacity, 1));
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
    transition-duration: .5s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    white-space: nowrap;
    z-index: 2
}

.common_more_arrow:hover {
    border: 1px solid #e16130;
    background: #e16130;
}

.common_more_arrow:hover span,
.common_more_arrow:hover i {
    color: #fff;
}

@media (min-width:968px) {
    .common_more_arrow span {
        font-size: .56rem;
        margin-right: .8rem;
        padding-right: .8rem
    }
}

.common_more_arrow i {
    color: #999;
}

@media (min-width:968px) {
    .common_more_arrow i {
        font-size: .48rem
    }
}