: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;
    }
}
:root {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}
.pic {
    line-height: 0;
}
.indexMore {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0.7;
    color: #fff;
    border: transparent 1px solid;
    z-index: 9;
    max-width: 190px;
    height: 50px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    padding: 0 15px;
    background: linear-gradient(to right, rgb(3, 73, 177) 0%, rgb(0, 151, 253) 100%);
    transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
    .indexMore {
        font-size: 13px;
        max-width: 160px;
        height: 40px;
    }
}
.indexMore::before {
    content: '';
    position: absolute;
    width: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: #f39627;
    z-index: -1;
    transition: all 0.3s ease;
}
.indexMore:hover {
    color: #fff;
}
.indexMore:hover::before {
    width: 100%;
    left: 0;
}
.unitTitle {
    color: #000;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0 0 30px;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 40px;
    padding-bottom: 40px;
    position: relative;
}
@media screen and (max-width: 1440px) {
    .unitTitle {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 1000px) {
    .unitTitle {
        font-size: 1.25rem;
    }
}
@media screen and (max-width: 767px) {
    .unitTitle {
        margin: 0 0 20px;
    }
}
.unitTitle::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #f39627;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.banner {
    margin-bottom: 3%;
    position: relative;
    margin-bottom: 30px;
}
.banner .info {
    font-size: 16px;
    line-height: 1.2 !important;
    padding: 30px;
    border-bottom: #ccc 1px solid;
    background: #eee;
}
@media screen and (min-width: 1400px) {
    .banner .info {
        font-size: 48px;
    }
}
@media screen and (min-width: 1000px) {
    .banner .info {
        font-size: 36px;
        position: absolute;
        padding: 20px 10px 20px 80px;
        top: 10%;
        max-width: 700px;
        border-radius: 0 15px 15px 0;
        background: rgba(255, 255, 255, 0.6);
    }
}
.banner .slick-arrow {
    position: absolute;
    display: none !important;
}
.banner .slick-slide > div {
    line-height: 0;
}
.banner .slick-dots {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
}
@media screen and (max-width: 1000px) {
    .banner .slick-dots {
        display: none !important;
    }
}
.banner .slick-dots button {
    background: #fff;
    opacity: 0.7;
    color: transparent;
    width: 13px;
    height: 13px;
    padding: 0;
    border-radius: 50%;
}
.banner .slick-dots li {
    margin: 12px 0;
}
@media screen and (max-width: 1000px) {
    .banner .slick-dots li {
        margin: 3px 0;
    }
}
.banner .slick-dots .slick-active button {
    opacity: 1;
    background: #f39627;
}
.productsBox {
    margin-bottom: 3%;
}
.productsBox .container {
    max-width: 1440px;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .productsBox .container {
        display: flex;
        align-items: center;
    }
    .productsBox .container .infoBox {
        width: 53%;
    }
    .productsBox .container .picBox {
        width: 47%;
        position: relative;
    }
}
@media screen and (max-width: 767px) {
    .productsBox .container .picBox {
        width: 80%;
        margin: 0 auto;
        position: relative;
    }
}
.productsBox .container .infoBox, .productsBox .container .picBox {
    margin-bottom: 20px;
    padding-bottom:40px;
}
.productsBox .content {
    position: relative;
}
@media screen and (min-width: 768px) {
    .productsBox .content {
        display: flex;
        align-items: center;
    }
}
.productsBox .controlBox {
    display: flex;
    gap: 12px;
}
@media screen and (max-width: 1000px) {
    .productsBox .controlBox {
        justify-content: center;
    }
}
@media screen and (min-width: 768px) {
    .productsBox .controlBox {
        position: absolute;
        right: var(--contentPadding);
        bottom: 3%;
    }
}
.productsBox .slick-arrow {
    width: 40px;
    height: 35px;
    border-radius: 5px;
    transition: all 0.3s ease;
    padding: 0;
    position: absolute;
    background: #EFEFEF;
    bottom: 10px;
    right: calc(50% + 5px);
}
.productsBox .slick-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    -webkit-mask: url('../images/icon/icon_arrow.svg') center no-repeat;
    mask: url('../images/icon/icon_arrow.svg') center no-repeat;
    background: #777;
    width: 15px;
    height: 15px;
    margin: 10px auto;
}
.productsBox .slick-arrow.slick-next {
    right: auto;
    left: calc(50% + 5px);
}
.productsBox .slick-arrow.slick-next::before {
    transform: scaleX(-1);
}
@media screen and (max-width: 1000px) {
    .productsBox .pic {
        margin: 0 auto;
        margin-bottom: 20px;
    }
}
.productsBox .info .title {
    color: #000;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
    .productsBox .info .title {
        font-size: 4.375rem;
    }
}
@media screen and (max-width: 1000px) {
    .productsBox .info .title {
        font-size: 3.125rem;
    }
}
@media screen and (max-width: 767px) {
    .productsBox .info .title {
        font-size: 1.875rem;
    }
}
.productsBox .info .description {
    max-width: 550px;
    color: #333333;
    line-height: 1.6;
}
@media screen and (min-width: 1001px) {
    .productsBox .info .description {
        font-size: 22px;
    }
}
.productsBox .pic {
    margin-bottom: 30px;
}
.productsBox .pic img {
    filter: drop-shadow(15px 10px 8px rgba(0, 0, 0, 0.25));
}
.industriesBox {
    display: flex;
}
@media screen and (max-width: 767px) {
    .industriesBox {
        flex-direction: column;
    }
}
.industriesBox .side {
    flex: 1 1 33.3333333333%;
    position: relative;
    isolation: isolate;
}
@media screen and (max-width: 1000px) {
    .industriesBox .side {
        flex: 1 1 60%;
    }
}
.industriesBox .side::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
    .industriesBox .side .pic {
        position: absolute;
        inset: 0;
    }
    .industriesBox .side .pic img {
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.industriesBox .side .info {
    max-width: 480px;
    width: 100%;
    color: #fff;
    z-index: 2;
    position: relative;
    padding: 60px 20px;
}
@media screen and (max-width: 1000px) {
    .industriesBox .side .info {
        max-width: none;
    }
}
@media screen and (min-width: 768px) {
    .industriesBox .side .info {
        top: 50%;
        left: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        padding: 0 20px;
    }
}
.industriesBox .side .info .title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
    .industriesBox .side .info .title {
        font-size: 1.875rem;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 767px) {
    .industriesBox .side .info .title {
        font-size: 1.5rem;
    }
}
.industriesBox .side .info .description {
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 20%;
    line-height: 1.75;
}
@media screen and (max-width: 1000px) {
    .industriesBox .side .info .description {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}
.industriesBox .side .info .more {
    max-width: 230px;
    padding: 0 20px 0 40px;
    height: 60px;
    display: flex;
    align-items: center;
    background: #f39627;
    color: #fff;
    -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
    transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
    .industriesBox .side .info .more {
        max-width: 180px;
        padding: 0 40px 0 20px;
        height: 50px;
    }
}
.industriesBox .side .info .more:hover {
    background: #000;
}
.industriesBox .listBox {
    flex: 1 1 66.6666666667%;
    display: flex;
    flex-wrap: wrap;
}
.industriesBox .item {
    width: 50%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.industriesBox .item a {
    display: block;
    height: 100%;
}
.industriesBox .item a::after {
    content: '';
    position: absolute;
    width: 10%;
    aspect-ratio: 124/177;
    display: block;
    -webkit-mask: url('../images/icon/icon_arrow.svg') center no-repeat;
    mask: url('../images/icon/icon_arrow.svg') center no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background: #fff;
    opacity: 0.3;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 99;
}
.industriesBox .item a::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}
.industriesBox .item a:hover img {
    transform: scale(1.1);
}
.industriesBox .item .pic {
    height: 100%;
}
.industriesBox .item .pic img {
    transition: all 0.3s ease;
    -o-object-fit: cover;
    object-fit: cover;
}
.industriesBox .item .info {
    position: absolute;
    color: #fff;
    z-index: 2;
    top: 50%;
    left: 50%;
    padding: 0 20px;
    transform: translate(-50%, -50%);
}
.industriesBox .item .info .title {
    font-size: 2.25rem;
    font-weight: 700;
}
@media screen and (max-width: 1000px) {
    .industriesBox .item .info .title {
        font-size: 1.875rem;
    }
}
@media screen and (max-width: 767px) {
    .industriesBox .item .info .title {
        font-size: 1.5rem;
    }
}
.industriesBox .item:nth-child(1) {
    grid-area: B;
}
.industriesBox .item:nth-child(1) a::before {
    background: rgba(119, 53, 63, 0.5);
}
.industriesBox .item:nth-child(2) {
    grid-area: C;
}
.industriesBox .item:nth-child(2) a::before {
    background: rgba(45, 47, 145, 0.5);
}
.industriesBox .item:nth-child(3) {
    grid-area: D;
}
.industriesBox .item:nth-child(3) a::before {
    background: rgba(75, 44, 27, 0.5);
}
.industriesBox .item:nth-child(4) {
    grid-area: E;
}
.industriesBox .item:nth-child(4) a::before {
    background: rgba(0, 51, 102, 0.5);
}
.countBox {
    background-size: cover;
    background-attachment: fixed;
    margin: 0 0 10px;
    padding: 3.3% var(--contentPadding);
}
@media screen and (max-width: 767px) {
    .countBox {
        padding: 40px 20px;
    }
}
@media screen and (max-width: 575px) {
    .countBox {
        background-attachment: unset;
    }
}
.countBox .listBox {
    max-width: 1680px;
    margin: 0 auto;
    color: #000;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 20px;
    justify-content: space-around;
    line-height: 1;
}
@media screen and (max-width: 1000px) {
    .countBox .listBox {
        line-height: 1.4;
    }
}
@media screen and (max-width: 575px) {
    .countBox .listBox {
        flex-direction: column;
        gap: 20px;
    }
}
.countBox .item {
    min-width: 145px;
}
.countBox .count2 span::after {
    content: '+';
}
.countBox .count3 span::after {
    content: '%';
}
.countBox span {
    color: #f39627;
    font-size: 6.25rem;
    font-weight: 600;
}
@media screen and (max-width: 1000px) {
    .countBox span {
        font-size: 5rem;
    }
}
@media screen and (max-width: 767px) {
    .countBox span {
        font-size: 3.75rem;
        line-height: 1;
    }
}
.countBox .title {
    color: #000;
    font-size: 1.25rem;
    font-weight: 400;
}
@media screen and (max-width: 1000px) {
    .countBox .title {
        font-size: 1rem;
    }
}
.serviceBox {
    --gap: 40px;
    overflow: hidden;
    margin-bottom: var(--gap);
}
@media screen and (max-width: 1000px) {
    .serviceBox {
        --gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .serviceBox {
        --gap: 10px;
    }
}
.serviceBox .container {
    max-width: 1440px;
    margin: 0 auto;
}
.serviceBox .slick-arrow {
    width: 124px;
    aspect-ratio: 124/177;
    padding: 0;
    top: 0;
    left: 0;
    position: fixed;
    background: none;
    z-index: 3;
}
@media screen and (max-width: 1000px) {
    .serviceBox .slick-arrow {
        width: 50px;
    }
}
.serviceBox .slick-arrow button {
    position: absolute;
    inset: 0;
    background: none;
    border: none;
    transform-origin: center;
    transform: scale(0) translate(-50%, -50%);
    transition: all 0.5s ease;
}
.serviceBox .slick-arrow button::before {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    -webkit-mask: url('../images/icon/icon_arrow.svg') center no-repeat;
    mask: url('../images/icon/icon_arrow.svg') center no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background: #fff;
    opacity: 0.6;
}
.serviceBox .slick-arrow.next button::before {
    transform: scaleX(-1);
}
.serviceBox .slick-arrow.active button {
    transform: scale(1) translate(-50%, -50%);
}
.serviceBox .listBox {
    display: flex;
    margin: 0 calc(var(--gap) / 2 * -1);
}
.serviceBox .item {
    width: 50%;
    padding: 0 calc(var(--gap) / 2);
}
@media screen and (max-width: 767px) {
    .serviceBox .listBox {
        width: 100% !important;
        flex-direction: column;
        gap: 20px;
        transform: none !important;
    }
    .serviceBox .item {
        float: none;
        width: 100% !important;
    }
}
.serviceBox .item a {
    display: block;
    position: relative;
    isolation: isolate;
}
.serviceBox .item a .pic {
    background: #aaa;
    transition: all 0.3s ease;
}
.serviceBox .item a .pic img {
    mix-blend-mode: multiply;
}
.serviceBox .item a .info {
    width: 100%;
    position: absolute;
    z-index: 2;
    color: #fff;
    letter-spacing: -1px;
    max-width: 520px;
    padding: 0 20px;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
.serviceBox .item a .info .title {
    font-size: 5.625rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
}
@media screen and (max-width: 1440px) {
    .serviceBox .item a .info .title {
        font-size: 5rem;
    }
}
@media screen and (max-width: 1000px) {
    .serviceBox .item a .info .title {
        font-size: 4.375rem;
    }
}
@media screen and (max-width: 767px) {
    .serviceBox .item a .info .title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 575px) {
    .serviceBox .item a .info .title {
        font-size: 1.875rem;
    }
}
.serviceBox .item a .info .description {
    font-size: 1.5rem;
    line-height: 1.75;
    font-weight: 300;
}
@media screen and (max-width: 1000px) {
    .serviceBox .item a .info .description {
        font-size: 1.125rem;
    }
}
@media screen and (max-width: 767px) {
    .serviceBox .item a .info .description {
        line-height: 1.4;
        font-size: 1rem;
    }
}
.serviceBox .item a:hover .pic {
    background: #f39627;
}
.aboutBox {
    position: relative;
    isolation: isolate;
    margin-bottom: 40px;
    padding: 5% 5% 20%;
}
@media screen and (max-width: 1000px) {
    .aboutBox {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767px) {
    .aboutBox {
        margin-bottom: 10px;
    }
}
.aboutBox .pic {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.aboutBox .pic img {
    -o-object-fit: cover;
    object-fit: cover;
}
.aboutBox .info {
    background: #fff;
    margin: 0 0 0 auto;
    max-width: 850px;
    padding: 2% 2.6% 5%;
    position: relative;
}
@media screen and (max-width: 1000px) {
    .aboutBox .info {
        padding: 30px 30px 60px;
    }
}
.aboutBox .info .title {
    font-size: 4rem;
}
@media screen and (max-width: 1000px) {
    .aboutBox .info .title {
        font-size: 3.125rem;
    }
}
@media screen and (max-width: 767px) {
    .aboutBox .info .title {
        font-size: 2.25rem;
    }
}
.aboutBox .info .description {
    font-size: 1.125rem;
    line-height: 1.65;
}
@media screen and (max-width: 1000px) {
    .aboutBox .info .description {
        font-size: 1rem;
    }
}
.aboutBox .info .more {
    width: 100%;
    max-width: 250px;
    padding: 0 20px 0 40px;
    height: 60px;
    display: flex;
    align-items: center;
    background: #f39627;
    color: #fff;
    -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(50%);
    transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
    .aboutBox .info .more {
        max-width: 180px;
        padding: 0 40px 0 20px;
        height: 50px;
    }
}
.aboutBox .info .more:hover {
    background: #000;
} /*# sourceMappingURL=index.css.map */