
section {
    overflow: hidden;
}

section.banner {
    width: 100%;
    height: calc(56.25vw + 5rem);
    background-color: #797b82;
    position: relative;
    overflow: hidden;
}

.banner-edit-ctn{
    display: none;
    padding: .5em 1em;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 300;
}

.wfEditorMode .banner-edit-ctn{
    display: block;
}

body.wfEditorMode .banner-edit-ctn a.wfEditorMode{
    display: inline-block;
    position: static;
    float: none;
    margin-top: auto;
}


.banner-swiper {
    position: absolute;
    z-index: 215;
    left: 0;
    top: calc((100vh - 56.25vw) / 2);
    bottom: auto;
    width: 100%;
    height: 100%;
    margin: 0;
}
.banner-swiper .shutter-img a .txt{
    width: 50rem;
    line-height: calc(38rem / 16);
    color: #fff;
    font-size: calc(26rem / 16);
    position: absolute;
    bottom: calc(200rem / 16);
    left: 8rem;
    font-weight: bold;
    z-index: 220;
}
.banner-swiper .shutter-img a .txt::before{
    content: '“';
    position: absolute;
    left: -3rem;
    font-size: calc(80rem / 16);
}
.banner-swiper .shutter-img a .txt::after{
    content: '”';
    position: absolute;
    bottom: -3.5rem;
    left: 0;
    font-size: calc(80rem / 16);
}
@media (max-width: 750px) {

    .banner-swiper {
        position: relative;
    }

}

.banner-swiper .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ie .banner-video {
    position: absolute;
    background-color: #08185c;
}
.width-longer  section.banner{
    height: calc(100vh);
}
/*.width-longer .banner-swiper{
    width: 100% !important;
    height: 100% !important;
}*/

.width-longer .shutter-img a > img{
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    /*transform: translateY(-55%);*/
}

/* .height-longer section.banner{
    height: calc(100vh);
}

.height-longer .shutter-img a > img{
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}
.height-longer .banner-swiper{
    width: 100% !important;
    height: 100% !important;
} */


.ie.width-longer .banner-video {
    top: calc((100vh - 56.25vw) / 2);
    right: 0;
    width: 100vw;
    height: 56.25vw;
}

.ie.height-longer .banner-video {
    top: 0;
    right: calc((100vw - 177.78vh) / 2);
    width: 177.78vh;
    height: 100vh;
}

.banner-left {
    z-index: 250;
    height: 100%;
    padding-top: calc(80rem / 16);
    width: calc(320rem / 16 + 16.67vw);
    background: url("../images/banner_left_back.png") center/cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: .4s cubic-bezier(.7, 0, .3, 1);
    color: #fff;
}

.banner-left .company-intro {
    padding: 4.167vw calc(5.208vw - 20px);
}

.banner-left .intro-title {
    font-size: calc(0.417vw + 16px);
    margin-bottom: 1em;
    opacity: 0;
}

.animated .banner-left .intro-title {
    animation: fadeIn .5s .8s forwards;
}

.banner-left .intro-desc {
    opacity: 0;
    font-size: calc(0.208vw + 12px);
    line-height: 1.875em;
    text-align: justify;
}

.animated .banner-left .intro-desc {
    animation: fadeIn08 .5s 1s forwards;
}

.btn-fold {
    background-color: #f26521;
    z-index: 295;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
    transition: .4s cubic-bezier(.7, 0, .3, 1);
}

.btn-fold:hover {
    background-color: #f5844d;
}

.banner-left.expanded + .btn-fold {
    transform: translateY(100%);
}

.animated .btn-fold {
    animation: fadeIn .5s 1.8s forwards;
}


.menu-active .banner-left .btn-fold,
.banner-left.folded .btn-fold {
    right: -50px;
}

.btn-fold::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transform: rotate(180deg);
    transition: .4s cubic-bezier(.7, 0, .3, 1);
    background: url("../images/icon_arr_right.svg") center/contain no-repeat;
}

.menu-active .banner-left .btn-fold::after,
.banner-left.folded .btn-fold::after {
    transform: none;
}

.menu-active .banner-left,
.banner-left.folded {
    opacity: 0;
    transition: .4s cubic-bezier(.7, 0, .3, 1);
    transform: translateX(-100%);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@keyframes fadeIn08 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: .8;
    }
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }
    100% {
        transform: none;
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        transform: none;
        opacity: 1;
    }
}

.sig-icon-ctn {
    opacity: 0;
    animation: fadeIn .5s 1.5s forwards;
}

.banner-left {
    opacity: 0;
    animation: fadeIn .5s .5s cubic-bezier(0, .7, .3, 1) forwards;
}

.banner-left .expand-ctn {
    height: 0;
    width: 100%;
    overflow: hidden;
    z-index: 260;

    transition: cubic-bezier(0, .7, .3, 1) .4s;

    position: absolute;
    left: 0;
    top: 0;
}

.expanded .top {
    background-color: #1f2c64;
}

.expanded .expand-ctn {
    height: 100%;
    background-color: #1f2c64;
}

section.business {
    width: 100%;
    height: 100vh;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.business-swiper {
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 215;
}


.business-swiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-list {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 260;
    background: rgba(0, 0, 0, .3);
    color: #fff;

    display: flex;
    align-items: stretch;
}

.business-col {
    width: calc(100% / 3);
    flex: 0 0 auto;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, .3);

    position: relative;
    top: 0;
    left: 0;
    padding-left: calc(7.292vw - 40px);
    padding-right: calc(7.292vw - 40px);
}

.business-col::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    left: 0;
    bottom: 0;
    z-index: 220;
    background: linear-gradient(to bottom, rgba(242, 101, 33, 0), rgba(242, 101, 33, .4));
    opacity: 0;
    visibility: visible;
    transition: .3s;
}

.business-col.active::after {
    opacity: 1;
    visibility: visible;
}

.business-col:last-of-type {
    border-right: none;
}

.business-col .icon-ctn {
    width: calc(80rem / 16);
    height: calc(80rem / 16);
    position: relative;
}

.business-col .icon-ctn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../images/business_circle.svg") center/contain no-repeat;
    z-index: 280;
    transition: cubic-bezier(0, .7, .3, 1) .5s;
}

.business-col.active .icon-ctn::after {
    transform: rotate(720deg)
}

.business-col .icon-ctn img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    height: auto;
    margin: auto;
    z-index: 285;
}

.business-col .title,
.business-col .line,
.business-col .desc,
.business-col .btn-link {
    position: relative;
    z-index: 295;
    text-align: center;
}

.business-col .title {
    font-weight: lighter;
    font-size: calc(38rem / 16);
    margin-top: calc(24rem / 16);
    margin-bottom: calc(20rem / 16);

    transform: none;
    transition: cubic-bezier(0, .7, .3, 1) .3s;
}

@media (max-width: 750px) {
    .business-col .title {
        font-weight: normal;
    }
}

.business-col .line {
    background-color: #f26521;
    height: 2px;
    width: 0;
    margin-bottom: 0;
    transition: cubic-bezier(0, .7, .3, 1) .3s;
}


.business-col.active .line {
    width: calc(60rem / 16);
    margin-bottom: calc(24rem / 16);
}

.business-col .desc {
    font-weight: lighter;
    font-size: calc(20rem / 16);
    line-height: calc(36rem / 16);
    height: 0;
    overflow: hidden;
    transition: cubic-bezier(0, .7, .3, 1) .3s;
}

@media (max-width: 750px) {
    .business-col .desc {
        font-weight: normal;
    }
}

.business-col.active .desc {
    margin-bottom: calc(36rem / 16);

    height: calc(108rem / 16);
}

.business-col .btn-link-ctn{
    height: 0;
    transition: cubic-bezier(0, .7, .3, 1) .3s;
    overflow: hidden;
}

.business-col .btn-link {
    width: calc(60rem / 16);
    height: calc(60rem / 16);
    border-radius: 50%;
    background: url("../images/icon_arr_right.svg") #f26521 center/calc(19rem / 16) auto no-repeat;
    display: block;
}

.business-col.active .btn-link-ctn {
    height: calc(60rem / 16);
}

.scroll-hint {
    z-index: 245;
    background-color: rgba(0, 185, 242, .8);
    color: #fff;
    font-weight: bold;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: absolute;
    /*
    320 at 1920
    0vw at 960
    960x = 320
    x= 0.02833rem;
    */
    right: calc(320rem / 16 + 33.33vw - 320px - 160px);
    width: 160px;
    bottom: 0;
    height: 50px;
    cursor: pointer;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;

    transition: .6s 2.4s;
    transform: translateY(100%);
}

.animated .scroll-hint {
    transform: none;
}

.scroll-hint > * {
    position: relative;
    z-index: 255;
}

.scroll-hint::after {
    z-index: 250;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f5844d;
    transform: translateY(-101%);
    transition: cubic-bezier(0, .7, .3, 1) .3s;
}

.scroll-hint:hover::after {
    transform: none;
}

.scroll-icon {
    width: 13px;
    height: 34px;
    position: relative;
}

.scroll-icon .mouse {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 18px;
    background: url("../images/icon_mouse.svg") center/contain no-repeat;
}

@keyframes scrollArrMove {
    0% {
        transform: translateY(-6px);
        opacity: 0;
    }
    25% {
        transform: none;
        opacity: 1;
    }
    100% {
        transform: translateY(16px);
        opacity: 0;
    }
}

.scroll-icon .arr{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 20px;
    width: 7px;
    height: 4px;
    background: url("../images/icon_angle_down_white.svg") center/contain no-repeat;
    animation: scrollArrMove 1.5s linear forwards infinite;
    opacity: 0;
}

.scroll-icon .arr:nth-child(2) {
    animation-delay: .5s;
}

.scroll-icon .arr:nth-child(3) {
    animation-delay: 1s;
}

section.intro {
    /*

    340 at 1920
    30 at 960

    310 = 960k
    k = 32.2917vw
    */
    position: relative;
    overflow: hidden;
    background-color: #fff;
}


section.intro .part1 {
    /*
    120 at 1920
    30 at 960
    90 = 960k
    */
    padding: calc(110vw / 19.2) calc(320rem / 16 + 33.33vw - 320px + 9.375vw - 60px) calc(164vw / 19.2) calc(32.2917vw - 280px);
}

section.intro .line1,
.news-title .line1 {
    font-weight: bold;
    font-size: calc(18rem / 16);
    line-height: calc(22rem / 16);

    opacity: 0;
}

.animated .line1 {
    animation: fadeInUp .6s cubic-bezier(.7, 0, .3, 1) forwards;
}

section.intro .line2,
.news-title .line2 {
    font-size: calc(38rem / 16);
    line-height: calc(56rem / 16);
    font-weight: lighter;
    margin-left: -0.05em;
    opacity: 0;
}

@media (max-width: 750px) {
    section.intro .line2,
    .news-title .line2 {
        font-weight: normal;
    }
}

.news-title {
    margin-bottom: calc(24rem / 16);
}

.animated .line2 {
    animation: fadeInUp .6s .2s cubic-bezier(.7, 0, .3, 1) forwards;
    font-weight: lighter;
}
@media (max-width: 750px) {
    .animated .line2 {
        font-weight: normal;
    }
}

section.intro .line3 {
    font-size: calc(16rem / 16);
    line-height: calc(30rem / 16);
    opacity: 0;
}

.animated .line3 {
    animation: fadeInUp .6s .4s cubic-bezier(.7, 0, .3, 1) forwards;
}

section.intro .btn-ctn {
    opacity: 0;
    margin-top: calc(72vw / 19.2);
}

.animated .btn-ctn {
    animation: fadeInUp .6s .6s cubic-bezier(.7, 0, .3, 1) forwards;
}

.intro-back-ctn {
    width: calc(320rem / 16 + 33.33vw - 320px);
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    transform: translateX(100%);
    transition: .6s .2s cubic-bezier(0, .7, .3, 1);
}

.intro-back-ctn .intro-back,
.intro-back-ctn .intro-back img {
    width: 100%;
    height: 100%;
    object-position: top center;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s cubic-bezier(0, .7, .3, 1);
}

.intro-back-ctn.animated {
    transform: none;
}

section.intro .part2 {
    height: calc(320rem / 16);
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    z-index: 260;
}

section.intro .data-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /*
    45 at 1920
    30 at 960
    960x = 15
    */
    padding-left: calc(1.5625vw + 15px);
    padding-right: calc(1.5625vw + 15px);
}

section.intro .part2-1 {
    width: calc(100% - (320rem / 16 + 33.33vw - 320px) - 320rem / 16);
    background: #dbdbdb;
    color: #08185c;
    padding-left: calc(32.2917vw - 280px);

    opacity: 0;
}

.animated .part2-1 {
    animation: fadeInUp .6s .2s cubic-bezier(0, .7, .3, 1) forwards;
}

section.intro .data-cell .icon {
    height: calc(44rem / 16);
    margin-bottom: calc(16rem / 16);
    opacity: 0;
}

section.intro .data-cell .icon img {
    display: block;
    height: 100%;
    width: auto;
}

section.intro .data-cell .text {
    height: calc(72rem / 16);
    display: flex;
    align-items: flex-end;
    margin-bottom: calc(8rem / 16);
    opacity: 0;
}

section.intro .data-cell .value {
    font-size: calc(58rem / 16);
    font-weight: bold;
    line-height: 1em;
}

section.intro .data-cell .unit {
    font-size: calc(18rem / 16);
    line-height: 1em;
    margin-bottom: .4em;
    margin-left: .5em;
}

section.intro .data-cell .desc {
    font-size: calc(16rem / 16);
    line-height: calc(24rem / 16);
    height: calc(48rem / 16);
    opacity: 0;
    max-width: 100%;
}

.animated .data-cell .icon,
.animated .data-cell .text,
.animated .data-cell .desc {
    animation: fadeInUp .6s cubic-bezier(0, .7, .3, 1) forwards;
}

.animated .part2-1 .icon {
    animation-delay: .7s;
}

.animated .part2-1 .text {
    animation-delay: .8s;
}

.animated .part2-1 .desc {
    animation-delay: .9s;
}

.animated .part2-2 .icon {
    animation-delay: 1s;
}

.animated .part2-2 .text {
    animation-delay: 1.1s;
}

.animated .part2-2 .desc {
    animation-delay: 1.2s;
}

.animated .part2-3 .icon {
    animation-delay: 1.3s;
}

.animated .part2-3 .text {
    animation-delay: 1.4s;
}

.animated .part2-3 .desc {
    animation-delay: 1.5s;
}

section.intro .part2-2 {
    width: calc(320rem / 16);
    background-color: #f5844d;
    color: #fff;
    opacity: 0;
}

.animated .part2-2 {
    animation: fadeInUp .6s .4s cubic-bezier(0, .7, .3, 1) forwards;
}

section.intro .part2-3 {
    width: calc(320rem / 16);
    background-color: rgba(8, 24, 92, .8);
    color: #fff;
    opacity: 0;
}

.animated .part2-3 {
    animation: fadeInUp .6s .6s cubic-bezier(0, .7, .3, 1) forwards;
}

section.news {
    background: url("../images/news_back_origin1.jpg") #fff center/cover no-repeat;
/*     padding-top: calc(8.333vw - 20px);
    padding-bottom: 8.333vw; */
    padding-top: calc(6.333vw - 20px);
    padding-bottom: 6.333vw;
}

.news-title {
    padding-left: calc(50% - (37.500vw + 540px) / 2);
    padding-right: calc(50% - (37.500vw + 540px) / 2);
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    margin-bottom: calc(50rem / 16);
}




.news-title1 { padding-left: calc(50% - (40vw + 540px) / 2); padding-right: calc(50% - (40vw + 540px) / 2); }

.news-title .btn-more {
    opacity: 0;
}

.animated .news-title .btn-more {
    animation: fadeInUp .5s .7s forwards;
}

.news-main {
    width: calc(37.500vw + 540px);
    margin: calc(40vw / 19.2) auto 0;
    display: flex;
    align-items: stretch;
}


.news-main1 { width: calc(30vw + 540px);  }



@keyframes fadeInLeftNudge {
    0% {
        opacity: 0;
        transform: translateX(10vw);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInRightNudge {
    0% {
        opacity: 0;
        transform: translateX(-10vw);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

.news-main > .left {
    width: calc(50% - 1.5vw);
    opacity: 0;
}

.news-main .right {
    width: calc(50% - 1.5vw);
    flex: 0 0 auto;
    margin-left: 3vw;
}

.animated .headline {
    animation: fadeInRightNudge .8s .4s cubic-bezier(0, .5, .5, 1) forwards;
}

.animated.right .news-cell {
    animation: fadeInLeftNudge .8s cubic-bezier(0, .5, .5, 1) forwards;
}

.animated.right .news-cell:nth-child(1) {
    animation-delay: .3s;
}

.animated.right .news-cell:nth-child(2) {
    animation-delay: .38s;
}

.animated.right .news-cell:nth-child(3) {
    animation-delay: .48s;
}

.animated.right .news-cell:nth-child(4) {
    animation-delay: .6s;
}

.animated.right .news-cell:nth-child(5) {
    animation-delay: .74s;
}

.news-main .right a {
    display: block;
    font-weight: lighter;
}
@media (max-width: 750px) {
    .news-main .right a {
        font-weight: normal;
    }
}

.news-main a.wfEditorMode{
    display: none;
}


.news-cell {
    background: #fff;
    margin-bottom: 20px;
    padding: calc(20rem / 16) calc(24rem / 16);
    position: relative;
    /*overflow: hidden;*/
    opacity: 0;

    display: flex;
    flex-wrap: wrap;
}

body.wfEditorMode .news-main a.wfEditorMode{
    position: absolute;
    margin-top: 0;
    left: 0;
    top: -1.3em;
}


.news-cell::before {
    content: "";
    left: calc(10rem / 16);
    top: calc(15rem / 16);
    width: 2px;
    height: calc(100% - 30rem / 16);
    position: absolute;
    background-color: #d8d8d8;
}

.news-cell, .headline {
    transition: box-shadow .3s cubic-bezier(0, .7, .3, 1);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.news-cell, .headline {
    box-shadow: 0 10px 10px rgba(0, 0, 0, .5);
}

.news-cell:hover::before {
    background-color: #f26521;
}

.news-cell .link-more {
    font-size: 12px;
    font-weight: normal;
    text-align: right;
}


.news-cell .date {
    line-height: 1em;
    width: 50%;
    text-align: left;
    position: relative;
    z-index: 260;
    color: #f26521;
}

.news-cell:hover .date{
    color: #f26521;
}

.news-cell .title {
    font-weight: normal;
    line-height: calc(20rem / 16);
    font-size: calc(15rem / 16);
    height: calc(40rem / 16);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: calc(8rem / 16);
    position: relative;
    z-index: 260;
    width: 100%;
}

.news-cell:last-of-type {
    margin-bottom: 0;
}

.headline {
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.headline .swiper-container{
}

.headline .cover {
    flex: 0 0 auto;
    height: 0;
    padding-bottom: 45%;
    position: relative;
}


.headline img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.headline .swiper-slide{
    display: flex;
    flex-direction: column;
}

.headline .info {
    display: flex;
    align-items: stretch;
    height: auto;

    flex: 1 0 auto;
}

.headline .left {
    width: calc(160rem / 16);
    flex: 0 0 auto;
    border-right: 1px solid #d9d9d9;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.headline .line1 {
    font-weight: bold;
    height: calc(32rem / 16);
    width: calc(60rem / 16);
    font-size: calc(24rem / 16);
    position: relative;
}

.headline .line1 .month,
.headline .line1 .split,
.headline .line1 .date {
    line-height: calc(24rem / 16);
    height: calc(24rem / 16);
    position: absolute;
}

.headline .line1 .month {
    width: 100%;
    text-align: left;
    left: 0;
    top: 0;
}

.headline .line1 .split {
    width: 1em;
    text-align: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.headline .line1 .date {
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: right;
}

.headline .line2 {
    font-weight: bold;
    font-size: calc(38rem / 16);
}

.headline .right {
    width: calc(100% - 160rem / 16);
    flex: 0 0 auto;
    margin-left: 0;
    padding: calc(28rem / 16) calc(36rem / 16);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    position: relative;
}

.headline .title {
    width: 100%;
    font-size: calc(15rem / 16);
    line-height: calc(22em / 16);
    margin-bottom: calc(8rem / 16);
    /*height: calc(32rem / 16);*/
    /*font-weight: lighter;*/

    /*display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;*/
    position: relative;
    z-index: 260;
}

.headline .desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #6f6f6f;

    line-height: calc(24rem / 16);
    height: calc(48rem / 16);
    position: relative;
    z-index: 260;
    margin-bottom: calc(8rem / 16);
}

/*.news-cell::after,
.headline .right::after {
    content: "";
    width: calc(240rem / 16);
    height: calc(240rem / 16);
    background: url("../images/icon_arr_right_blue.svg") center/contain no-repeat;
    position: absolute;
    right: 0;
    bottom: calc(-80rem / 16);

    z-index: 230;
    opacity: 0;
    will-change: transform, opacity;
    pointer-events: none;
    transition: cubic-bezier(0, .6, .4, 1) .3s;
    transform: translateX(-25%);
}

.news-cell:hover::after,
.headline:hover .right::after {
    opacity: .05;
    transform: none;
}*/

/*.news-cell:hover > *,
.headline:hover > *,
.headline:hover .desc {
    color: #1f2c64;
}*/

.headline .info:hover {
    cursor: pointer;
    color: #f26521;
}

.news-cell:hover { background: #08185c; color: #fff; cursor: pointer; }

.news-main .link-more {
    width: 50%;
    color: #999;
    cursor: pointer;
}

.news-main .link-more::after {
    display: inline-block;
    content: "";
    width: 12.6px;
    height: 12.6px;
    vertical-align: middle;
    margin-left: 6px;
    margin-top: -3px;
    background: url("../images/icon_arr_right_gray.svg") center/contain no-repeat;
    transition: margin-left .3s;
}

.headline .info:hover .link-more,
.headline .info:hover .desc,
.news-cell:hover .link-more {
    color: #f26521;
}

.headline .info:hover .link-more::after,
.news-cell:hover .link-more::after {
    margin-left: 10px;
    background-image: url("../images/icon_arr_right_orange.svg");
}

.headline .switch-dot {
    width: 95px;
    height: 28px;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    margin: 0 auto;
    bottom: 14px;
    z-index: 265;
    cursor: pointer;
}
.banner .btn-vid-play{
    width: calc(150vw / 7.5);
    height: calc(150vw / 7.5);
    z-index: 250;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url("../images/btn_play.svg") center/contain no-repeat;
    display: none;
}

.wx .banner .btn-vid-play{
    display: block;
}


.news-main .right{
    position: relative;
}

.news-right-swiper{
    position: relative;
    width: 100%;
    margin: -40px -30px;
    padding: 40px 30px;
    box-sizing: content-box;
}

.right-ind-ctn{
    position: absolute;
    top: 0;
    right: 30px;
    display: flex;
}

.right-ind-ctn .right-ind-item{
    line-height: 32px;
    min-width: 32px;
    font-size: 16px;
    background-color: #666;
    color: #fff;
    text-align: center;
}

.right-ind-ctn .btn-next:hover,
.right-ind-ctn .btn-prev:hover{
    cursor: pointer;
    background-color: #f5844d;
}

.right-ind-ctn .swiper-button-disabled,
.right-ind-ctn .swiper-button-disabled:hover{
    pointer-events: none;
    opacity: .5;
    background-color:#666;
}

.right-ind-ctn .page{
    margin-left: 5px;
    padding-left: 1em;
    padding-right: 1em;
}

.right-ind-ctn .btn-next{
    border-left: 1px solid #999;
}

@media (max-width: 1360px) {
    .scroll-hint {
        /*width: calc(320rem / 16 + 33.33vw - 320px);*/
        /*right: 0;*/
    }

    .intro-back-ctn {
        height: calc(100% - calc(320rem / 16));
    }

    section.intro .part2-3 {
        width: calc(320rem / 16 + 33.33vw - 320px);
        background-color: rgba(8, 24, 92, 1);
    }
}

@media (max-width: 1280px) {

    section.intro .part1 {
        padding-top: calc(60rem / 16);
        padding-bottom: calc(60rem / 16);
    }

    .footer-world {
        width: calc(90vw / 7.5);
        right: calc(-5vw / 7.5);
        bottom: calc(-8vw / 7.5);
    }

    .business-col.active .desc{
        height: calc(144rem / 16);
    }

}

@media (max-width: 960px) {

    section.banner {
        height: auto;
    }

    .banner{
        background-color: #666;
    }

    .banner-swiper {
        top: 0;
        bottom: auto;
        width: 100vw;
        height: 100vh;
        position: relative;
    }

    /*.pad-width-longer .banner-swiper {
        top: calc((100vh - 100vw / 3 * 4) / 2);
        bottom: auto;
        width: 100vw;
        height: calc(100vw / 3 * 4);
    }

    .pad-height-longer .banner-swiper {
        top: 0;
        bottom: 0;
        width: calc(100vh / 4 * 3);
        height: 100vh;
        left: calc((100vw - 100vh / 4 * 3) / 2);
    }*/

    .banner-video{
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        object-fit: contain;
    }

    .banner-left .company-intro {
        padding: 40px 30px;
    }


    .scroll-hint {
        width: calc(100% - (320rem / 16 + 16.67vw));
        height: 220px;
        justify-content: center;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 100%);
        background-color: transparent;
        right: 0;

        flex-direction: column;
        align-items: center;
    }

    .scroll-hint.once-hidden {
        transition: .3s;
    }

    .scroll-hint.hidden {
        opacity: 0;
    }

    .scroll-hint::after {
        display: none;
    }

    .scroll-hint .text {
        margin-bottom: calc(24vw / 7.5);
    }

    .business-col{
        padding-left: 30px;
        padding-right: 30px;
    }

    section.intro .part2 {
        height: 33.333vw;
    }

    .intro-back-ctn {
        width: calc(100% / 3)
    }

    section.intro .part1 {
        width: calc(200% / 3);
        padding: 50px 30px;
    }

    section.intro .part2-1,
    section.intro .part2-2,
    section.intro .part2-3 {
        padding: 30px;
        width: calc(100% / 3);
    }

    section.intro .line3 {
        font-size: 14px;
    }

    .news-title {
        padding-left: calc(1.333vw + 17.2px);
        padding-right: calc(1.333vw + 17.2px);
    }

    .news-main {
        width: 100%;
        padding-left: calc(1.333vw + 17.2px);
        padding-right: calc(1.333vw + 17.2px);
    }

/*     .news-main .headline {
        width: calc(100% - (240rem / 16 + 240vw / 19.2) - 20px);
    } */

    .news-main .right {
        margin-left: 20px;
    }


    .headline_pag { top: calc((12.25vw + 270px) * 0.5625 - 6rem); }
    .headline_pag:after { width: calc(220rem / 16); margin-left: calc(-110rem / 16); }


    .headline .cover{
        height: calc(45vw * .45);
        padding-bottom: 0;
    }
}

@media (max-width: 750px) {


    .banner-swiper,
    .pad-width-longer .banner-swiper,
    .pad-height-longer .banner-swiper{
        top: 0;
        left: 0;
        bottom: 0;
        height: 100vh;
        width: 100vw;
    }



    .banner-swiper .shutter-img a .txt{
        bottom: 10rem;
        left: 6rem;
        font-size: 1rem;
    }
    .banner-swiper .shutter-img a .txt::before {
        top: -16px;
        left: -16px;
        font-size: 3rem;
    }
    .banner-swiper .shutter-img a .txt::after {
        bottom: 20px;
        font-size: 3rem;
    }
    .banner-left .company-intro {
        padding: 15px 15px;
    }

    .banner-left .intro-desc{
        line-height: 1.57em;

    }

    .banner-left .top {
        height: calc(100vw / 7.5);
        padding-left: calc(55vw / 7.5);
    }

    .sig-title {
        display: none;
    }

    .banner-left.expanded .expand-ctn {
        height: calc(1240vw / 7.5 - 100vw / 7.5);
    }

    .banner-left .bottom {
        height: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        padding-bottom: 0;
        transition: cubic-bezier(0, .7, .3, 1) .4s;
    }

    .banner-left.expanded .bottom {
        visibility: visible;
    }

    .scroll-hint {
        pointer-events: none;
        width: 100%;
        display: none;
        height: calc(220vw / 7.5);
    }

    .business-list{
        display: block;
    }

    .business-col{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        height: calc(100% / 4);
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
    }

    .business-col::after{
        width: 50%;
        height: 100%;
        left: auto;
        right: 0;
        background: linear-gradient(to right, rgba(242, 101, 33, 0), rgba(242, 101, 33, .4));
    }

    .business-col.active{
        height: calc(100% / 2);
    }

    .business-col .title{
        margin-top: calc(18rem / 16);
        margin-bottom: calc(16rem / 16);
    }
    .business-col.active .desc{
        margin-bottom: calc(24rem / 16);
    }

    .news-title {
        padding-left: 20px;
        padding-right: 20px;
        align-items: flex-end;
    }

    .news-main {
        padding-left: 20px;
        padding-right: 20px;
    }

    section.intro .part2-1,
    section.intro .part2-2,
    section.intro .part2-3 {
        padding: calc(50vw / 7.5);
        width: calc(100% / 3);
    }

    /* section.banner {
        height: calc(56.25vw + 5rem);
    } */


    .banner-left {
        position: absolute;
        background-image: none;
        background-color: rgba(8, 24, 92, .8);
        width: 100%;
        height: auto;
        padding-top: calc(80rem / 16);
    }
    .shutter{
        top: 5rem;
    }

    .btn-fold{
        bottom: auto;
        width: calc(72rem / 16);
        height: calc(72rem / 16);
        top: calc(80rem / 16);
    }

    .banner-left .line.cn {
        font-size: calc(64vw / 7.5);
        line-height: 1.1em;
    }

    .banner-left .line.en {
        font-size: calc(27vw / 7.5);
        line-height: 1.1em;
    }

    .sig-icon-ctn {
        line-height: calc(54vw / 7.5);
    }

    section.intro .part1 {
        width: 100%;
        padding: calc(90vw / 7.5) calc(40vw / 7.5);
    }

    section.intro .line2 {
        margin-bottom: calc(36vw / 7.5);
    }

    .intro-back-ctn {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
    }

    .intro-back-ctn .intro-back,
    .intro-back-ctn .intro-back img {
        width: 100%;
        position: relative;
        height: auto;
        display: block;
    }

    section.intro .part2 {
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }

    section.intro .part2-1, section.intro .part2-2, section.intro .part2-3 {
        height: 50vw;
        padding: calc(36vw / 7.5);
    }

    section.intro .part2-1 {
        width: 100%;
        flex: 0 0 auto;
    }

    section.intro .part2-2, section.intro .part2-3 {
        width: 50%;
        flex: 0 0 auto;
    }

    section.intro .data-cell .text {
        height: auto;
    }

    section.intro .data-cell .value {
        font-size: calc(4.267vw + 16px);
    }

    section.intro .data-cell .desc {
        height: calc(72rem / 16);
    }


    section.news {
        padding: calc(100vw / 7.5) 0 calc(110vw / 7.5);
    }

    section.news .news-title,
    section.news .news-main {
        padding-left: calc(40vw / 7.5);
        padding-right: calc(40vw / 7.5);
    }

    .news-main {
        display: block;
    }

    .news-main .headline {
        width: 100%;
        margin-right: 0;
    }

    .headline .cover {
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
    }

    .headline .info {
        height: auto;
    }

    .news-main .headline .left {
        width: calc(160vw / 7.5);
    }

    .news-main .headline .right {
        width: calc(100% - 160vw / 7.5);
        margin-left: 0;
    }

    .headline .title {
        font-size: calc(36vw / 7.5);
        margin-bottom: .5em;
    }

    .headline .desc {
        margin-bottom: calc(12vw / 7.5);
    }

    .news-main > .right {
        width: 100%;
        margin-left: 0;
        margin-top: calc(140vw / 7.5);
    }

    .news-cell {
        margin-bottom: calc(20vw / 7.5);
    }

    section.news .news-title {
        margin-bottom: calc(60vw / 7.5);
    }

    section.intro .line2, .news-title .line2 {
        font-size: calc(5.867vw + 14px);
        line-height: 1em;
        margin-top: .25em;
    }

    .btn-more {
        height: calc(90vw / 7.5);
        border-radius: calc(45vw / 7.5);
        padding-left: calc(70vw / 7.5);
        padding-right: calc(64vw / 7.5);
    }

    .right-ind-ctn .right-ind-item{
        line-height: calc(64vw / 7.5);
        min-width: calc(64vw / 7.5);
        font-size: calc(32vw / 7.5);
    }

    .right-ind-ctn .page{
        margin-left: calc(10vw / 7.5);
    }

    .right-ind-ctn .btn-next{
        border-left: 1px solid #293478;
    }

    .news-right-swiper{
        position: relative;
        width: 100%;
        margin: calc(-80vw / 7.5) calc(-60vw / 7.5);
        padding: calc(80vw / 7.5) calc(60vw / 7.5);
        box-sizing: content-box;
    }

    .right-ind-ctn{
        right: calc(60vw / 7.5);
    }
}

.news-maincon { margin-top: calc(-20rem / 16); }



@media (max-width: 640px) {
    section.banner .banner-swiper{
        top: calc((100vh - 2778vw / 1284 * 100) / 2);
    }
}
