.index>.index-swiper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.index .index-swiper .swiper-wrapper .swiper-slide {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.index .index-swiper .swiper-wrapper .swiper-slide::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 1;

}

.index .index-swiper .swiper-wrapper .swiper-slide .swiper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index .index-swiper .swiper-wrapper .swiper-slide .swiper-slide-content {
    max-width: var(--root-max-width);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.index .index-swiper .swiper-wrapper .swiper-slide-content h2 {
    --width: 700;
    --font-size: 72;
    /* max-width: calc(var(--width) * var(--px)); */
    color: #fff;
    font-size: calc(var(--font-size) * var(--px));
    font-weight: bold;
    line-height: calc(84 * var(--px));
    /* word-spacing: -16px; */
}

.index .index-swiper .swiper-wrapper .swiper-slide-content .learn-more {
    --width: 250;
    --height: 70;
    --font-size: 16;
    width: calc(var(--width) * var(--px));
    height: calc(var(--height) * var(--px));
    color: var(--root-color);
    font-size: calc(var(--font-size) * var(--px));
    background-color: #fff;
    text-align: center;
    line-height: 70px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    border: 1px solid #fff;
}

.index .index-swiper .swiper-wrapper .swiper-slide-content .play-video {
    color: #fff;
    margin-top: calc(50 * var(--px));
    display: flex;
    align-items: center;
}

.index .index-swiper .swiper-wrapper .swiper-slide-content .play-video .img {
    width: calc(50 * var(--px));
    height: calc(50 * var(--px));
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}

.index .index-swiper .swiper-wrapper .swiper-slide-content .play-video .img img {
    height: calc(16 * var(--px));
    transition: all .3s ease;
}

.index .index-swiper .swiper-wrapper .swiper-slide-content .play-video:hover .img img {
    transform: scale(1.2);
}

.index .index-swiper .swiper-wrapper .swiper-slide-content .learn-more:hover {
    border-color: var(--root-color);
}

.index .index-swiper .swiper-wrapper .swiper-slide-content .learn-more:hover img {
    translate: 10% 0;
}

.index .index-swiper .swiper-wrapper .swiper-slide-content .learn-more img {
    width: calc(22 * var(--px));
    height: auto;
    margin-left: 8px;
    transition: all .3s ease;
}

.index .index-swiper .swiper-horizontal>.swiper-pagination-bullets,
.index .index-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    --right: 60;
    width: max-content;
    display: flex;
    flex-direction: column;
    right: calc(var(--right) * var(--px));
    top: 50%;
    left: inherit;
    gap: calc(14 * var(--px)) 0;

}

.index .index-swiper .swiper-pagination-bullet {
    --width: 10;
    --height: 20;
    width: calc(var(--width) * var(--px));
    height: calc(var(--height) * var(--px));
    border-radius: 4px;
    background-color: rgba(255, 255, 255, .3);
    opacity: 1;
}

.index .index-swiper .swiper-pagination-bullet-active {
    --height: 50;
    height: calc(var(--height) * var(--px));
    background-color: #fff;
    transition: height .3s linear;
}

.index>.layer {
    text-align: center;
    font-size: 16px;
}

.index>.layer>header {
    max-width: var(--root-max-width);
    margin: auto;
}

.index>.layer>header section {
    --font-size: 24;
    --pt: 150;
    --pb: 50;
    font-size: calc(var(--font-size) * var(--px));
    font-weight: bold;
    padding: calc(var(--pt) * var(--px)) 0 calc(var(--pb) * var(--px));
    display: flex;
    justify-content: center;
    align-items: center;
}

.index>.layer>header section::before {
    content: '';
    display: block;
    width: calc(10 * var(--px));
    height: calc(10 * var(--px));
    background-color: var(--root-color);
    border-radius: 50%;
    margin-right: calc(12 * var(--px));
}

.index>.layer>header>h3 {
    max-width: var(--root-max-width);
    width: 100%;
    font-size: calc(56 * var(--px));
    line-height: calc(64 * var(--px));
    font-weight: bold;
    margin: auto;
}

.index>.layer>main {
    max-width: var(--root-max-width);
    margin: auto;
}

.index>.layer.company>header {
    --animate-duration: 1.5s;
}

.index>.layer.company>main {
    max-width: 100%;
    --animate-duration: 1.5s;
}

.index .company>main .company-info {
    background-color: #fff;
    margin-top: calc(120 * var(--px));
}

.index .company>main .company-info .company-info-content {
    max-width: var(--root-max-width);
    margin: auto;
    padding: 0 calc(40 * var(--px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 calc(40 * var(--px));
    position: relative;
    z-index: 1;
}

.index .company>main .company-info .company-info-item {
    height: calc(310 * var(--px));
    color: var(--root-color);
    border-radius: 12px;
    transition: background-image 0.5s ease;
    position: relative;
}

.index .company>main .company-info .company-info-item::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(28deg, var(--root-color), #f18e6c, #fad7cc, #fff 50% 70%, #fbe3da, #f9cdbe);
    opacity: 0;
    transition: all .4s ease .1s;
    z-index: -1;
}

.index .company>main .company-info .company-info-item:hover::after {
    opacity: 1;
}

.index .company>main .company-info-item section {
    font-size: calc(18 * var(--px));
    font-weight: bold;
    padding-top: calc(60 * var(--px));
    display: flex;
    justify-content: center;
    align-items: center;
}

.index .company>main .company-info-item section::before {
    content: '';
    display: block;
    width: calc(8 * var(--px));
    height: calc(8 * var(--px));
    background-color: var(--root-color);
    border-radius: 50%;
    margin-right: calc(12 * var(--px));
}

.index .company>main .company-info-item h4 {
    font-size: calc(100 * var(--px));
    font-weight: bold;
    padding-top: calc(75 * var(--px));
}

.index .company>main .company-info .company-info-item:hover .border-1,
.index .company>main .company-info .company-info-item:hover .border-2 {
    width: 0;
    height: 0;
    opacity: 0;
}

.index .company>main .company-info .company-info-item>.border-1,
.index .company>main .company-info .company-info-item>.border-2 {
    position: absolute;
    width: 100%;
    height: 5%;
    left: 50%;
    translate: -50% 0;
    transform-origin: 0 center;
    border-right: 1px solid var(--root-color);
    border-left: 1px solid var(--root-color);
    transition: height .2s ease,
        width .3s ease .2s,
        opacity .1s linear .3s;
}

.index .company>main .company-info .company-info-item>.border-1 {
    top: 0;
    border-top: 1px solid var(--root-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.index .company>main .company-info .company-info-item>.border-2 {
    bottom: 0;
    border-bottom: 1px solid var(--root-color);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.index .company .earth {
    background-image: linear-gradient(to bottom, #fff 50%, #f3f6f8 50%);
}

.index .company .earth .earth-content {
    max-width: var(--root-max-width);
    margin: auto;
    padding: 100px 0;
    background: url(/themes/basic/skin/images/earth-bg.png) no-repeat;
    background-position: center center;
}

.index .company .earth-img {
    width: calc(500* var(--px));
    height: calc(500* var(--px));
    border-radius: 50%;
    margin: auto;
    position: relative;
}

.index .company .earth img {
    width: 100%;
    height: 100%;
}

.index .company .earth-img img.gridding {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1.2);
    transform-origin: center center;
    animation: rotate 60s linear infinite;
    border-radius: 50%;
    box-shadow: 1px 5px 20px #eee;
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.index .company .industry {
    padding-bottom: calc(160 * var(--px));
    background-color: #f3f6f8;
    position: relative;
}

.index .company .industry .industry-title {
    max-width: var(--root-max-width);
    width: 100%;
    font-size: calc(80 * var(--px));
    font-weight: bold;
    text-align: left;
    color: transparent;
    background-image: linear-gradient(to right, #ea5421, #fcab58);
    background-clip: text;
    -webkit-background-clip: text;
    position: absolute;
    left: 50%;
    right: 0;
    top: 32%;
    translate: -50% -50%;
    z-index: 1;
}

.index .company .industry .industry-title .p1 {
    padding-left: 11.75%;
}

.index .company .industry .industry-title .p3 {
    padding-left: 30.6%;
}

.index .company .industry .industry-content {
    max-width: var(--root-max-width);
    min-height: calc(1055 * var(--px));
    margin: auto;
    display: flex;
    text-align: left;
}

.index .company .industry .industry-content .content {
    font-size: calc(16 * var(--px));
    color: #666;
    flex: 1 1 0;
    align-self: flex-end;
    margin-bottom: calc(220 * var(--px));
}

.index .company .industry .industry-content .content .learn-more {
    max-width: 100%;
    width: calc(250* var(--px));
    height: calc(70* var(--px));
    color: #fff;
    font-size: calc(16 * var(--px));
    margin-top: calc(62* var(--px));
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--root-color);
    text-decoration: none;
}

.index .company .industry .industry-content .content .learn-more .img {
    --width: 22;
    width: calc(var(--width) * var(--px));
    overflow: hidden;
    margin-left: 12px;
}

.index .company .industry .industry-content .content .learn-more .img img {
    width: 100%;
    translate: -100% 0;
    filter: drop-shadow(calc(var(--width) * var(--px)) 0 0 #fff);
}

.index .company .industry .industry-content .content p {
    padding-bottom: calc(12 * var(--px));
}

.index .company .industry .industry-content .img img {
    width: 100%;
}

.index .company .industry .industry-content .flex-1 {
    flex: 0 1 33%;
    align-self: flex-end;
}

.index .company .industry .industry-content .flex-2 {
    flex: 0 1 11.5%;
    align-self: flex-start;
}

.index .company .industry .industry-content .flex-3 {
    flex: 0 1 30.6%;
    align-self: flex-end;
    margin-bottom: calc(220 * var(--px));
}

.index .esg>header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.index .esg>main .esg-content {
    max-width: var(--root-max-width);
    margin: auto;
    display: flex;
    background-color: #eeeeee;
}

.index .esg>main .esg-content .tabs {
    flex: 0 1 calc(520 * var(--px));
    /* flex: 0 1 auto; */
    display: flex;
    flex-direction: column;
}

.index .esg>main .esg-content .tabs .tab-item {
    flex: 1 1 0;
    font-size: calc(18 * var(--px));
    background-color: #f3f6f8;
    border-bottom: 1px solid #dcdee0;
    padding: 0 calc(35 * var(--px));
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all .3s ease;
}

.index .esg>main .esg-content .tabs .tab-item .tab-item-content {
    text-align: left;
    display: flex;
    padding: calc(60 * var(--px)) 0;
}

.index .esg-content .tabs .tab-item .tab-item-content .icon {
    --height: 54;
    height: calc(var(--height) * var(--px));
    flex: 0 1 auto;
    overflow: hidden;
}

.index .esg-content .tabs .tab-item .tab-item-content .icon img {
    height: 100%;
}

.index .esg>main .esg-content .tabs .tab-item:hover .icon img {
    filter: drop-shadow(0px calc(var(--height) * var(--px)) 0px var(--root-color));
    translate: 0 -100%;
}

.index .esg-content .tabs .tab-item .tab-item-content section {
    flex: 1 1 0;
    padding-left: calc(35 * var(--px));
}

.index .esg-content .tabs .tab-item .tab-item-content section h4 {
    color: var(--root-color);
    font-size: calc(40 * var(--px));
    font-weight: bold;
    padding-bottom: calc(25 * var(--px));
}
.index .esg-content .tabs .tab-item .tab-item-content section h4 span {
    font-size: calc(18 * var(--px));
    font-weight: normal;
    color: #000;
}

.index .esg>main .esg-content .tabs .tab-item:nth-last-of-type(1) {
    border-bottom: none;
}

.index .esg>main .esg-content>.swiper {
    /* flex: 0 1 calc(1080 * var(--px)); */
    flex: 1 0 0;
}

.index .esg>main .esg-content>.swiper .swiper-slide {
    position: relative;
}

.index .esg>main .esg-content>.swiper .swiper-slide img {
    width: 100%;
}

.index .esg>main .esg-content>.swiper .swiper-slide>section {
    /* width: calc(720 * var(--px)); */
    width: 65%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: calc(56 * var(--px)) calc(20 * var(--px)) calc(56 * var(--px)) calc(60 * var(--px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: linear-gradient(to right, #f17636, #ea5421);
}

.index .esg>main .esg-content>.swiper .swiper-slide>section h3 {
    font-size: calc(42 * var(--px));
    max-width: calc(480 * var(--px));
    text-align: left;
    font-weight: bold;
    color: #fff;
    padding-bottom: calc(40 * var(--px));
}

.index .esg>main .esg-content>.swiper .swiper-slide>section .more {
    max-width: 100%;
    width: calc(250 * var(--px));
    height: calc(70 * var(--px));
    color: var(--root-color);
    font-size: calc(16 * var(--px));
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    text-decoration: none;
}

.index .esg>main .esg-content>.swiper .swiper-slide>section .more img {
    width: calc(22 * var(--px));
    margin-left: calc(12 * var(--px));
}

/* solutions */
.index .solution {
    --animate-duration: 1.5s;
    overflow: hidden;
}

.index .solution>header {
    width: var(--root-max-width);
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.index .solution .solution-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.index .solution .solution-title .solution-title-num {
    color: #fff;
    font-size: calc(18 * var(--px));
    border-radius: 4px;
    width: max-content;
    line-height: calc(36 * var(--px));
    text-align: center;
    background-color: var(--root-color);
    padding: 0 calc(10 * var(--px));
}

.index .solution .solution-title>.swiper {
    max-width: 100%;
    width: 40%;
    min-height: calc(200 * var(--px));
    height: calc(200 * var(--px));
    margin: calc(12 * var(--px)) 0 0;
}

.index .solution .solution-title>.swiper .swiper-slide {
    height: 100%;
}

.index .solution .solution-title>.swiper .swiper-slide>h3 {
    height: 100%;
    font-size: calc(56 * var(--px));
    line-height: calc(64 * var(--px));
    font-weight: bold;
    text-align: left;
    background-color: #fff;
}

.index>.layer.solution>main {
    max-width: 100%;
    background-image: linear-gradient(to right, #f17636, #ea5421);
    margin-top: calc(20 * var(--px));
}

.index>.layer.solution>main .solution-content {
    max-width: var(--root-max-width);
    height: calc(530 * var(--px));
    margin: auto;
    display: flex;
    position: relative;
}

.index>.layer.solution>main .solution-content .solution-left {
    max-width: 100%;
    color: #fff;
    font-size: calc(18 * var(--px));
    line-height: calc(28 * var(--px));
    text-align: left;
    flex: 0 1 calc(480 * var(--px));
    padding-top: calc(50 * var(--px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.index>.layer.solution>main .solution-content .solution-left .more {
    max-width: 100%;
    color: var(--root-color);
    text-align: center;
    text-decoration: none;
    font-size: calc(18 * var(--px));
    padding: calc(40 * var(--px)) calc(20 * var(--px));
    background-color: #fff;
    margin-top: calc(20 * var(--px));
}

.index>.layer.solution>main .solution-content .solution-left .more img {
    width: calc(22 * var(--px));
}

.index>.layer.solution>main .solution-content .solution-right {
    height: 100%;
    /* position: absolute;
    right: calc((100vw - var(--root-max-width)) / 2 * -1);
    bottom: 0;
    z-index: 1; */
    flex: 1 1 0;
    margin-right: calc((100vw - var(--root-max-width)) / 2 * -1);
    position: relative;
}

.index>.layer.solution>main .solution-content .solution-right img {
    /* max-width: 100%;
    height: 140%;
    translate: 5% -40%; */
    /* max-width: 100%; */
    /* height: 100%; */
    width: 100%;
    translate: 0 -40%;
}

.index>.layer.solution>main .solution-content .solution-right .tip-text {
    text-decoration: none;
    font-size: calc(24 * var(--px));
    font-weight: bold;
    position: absolute;
    z-index: 2;
}

.index>.layer.solution>main .solution-content .solution-right .tip-text:nth-of-type(1) {
    /* top: calc(-130 * var(--px));
    left: calc(320 * var(--px)); */
    top: -23%;
    left: 25%;
}

.index>.layer.solution>main .solution-content .solution-right .tip-text:nth-of-type(2) {
    top: calc(-130 * var(--px));
    right: calc(370 * var(--px));
    top: -23%;
    right: 29%;
}

.index>.layer.solution>main .solution-content .solution-right .tip-text .content {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 999px;
    position: relative;
    padding: calc(12 * var(--px));
}

.index>.layer.solution>main .solution-content .solution-right .tip-text.active .content {
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 0 0 calc(12 * var(--px)) var(--root-color);
}

.index>.layer.solution>main .solution-content .solution-right .tip-text .content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: calc(10 * var(--px)) solid transparent;
    border-top: calc(16 * var(--px)) solid;
    border-top-color: rgba(255, 255, 255, .9);
    translate: -50% 100%;
}

.index>.layer.solution>main .solution-content .solution-right .tip-text .circle {
    width: calc(12 * var(--px));
    height: calc(12 * var(--px));
    border-radius: 50%;
    background-color: var(--root-color);
    position: relative;
    margin: calc(36 * var(--px)) auto 0;
}

.index>.layer.solution>main .solution-content .solution-right .tip-text .circle::before {
    content: '';
    width: calc(30 * var(--px));
    height: calc(30 * var(--px));
    border-radius: 50%;
    background-color: rgba(229, 132, 103, .7);
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
}

.index>.layer.solution>main .solution-content .solution-right .tip-text .circle::after {
    content: '';
    width: calc(46 * var(--px));
    height: calc(46 * var(--px));
    border-radius: 50%;
    background-color: rgba(229, 132, 103, .3);
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
}

.index>.layer.solution>main .solution-content .solution-right .tip-text .content section {
    padding: calc(24 * var(--px));
    border-radius: 999px;
    background-color: #fff;
    box-shadow: 0 0 calc(12 * var(--px)) var(--root-color);
}

.index>.layer.solution>main .solution-content .solution-right .tip-text.active .content section {
    color: #fff;
    background-image: linear-gradient(to right, #eb5723, #f4833f);
    box-shadow: none;
}

/* 首页新闻 */
.index .news {
    --animate-duration: 1.5s;
}
.index .news header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.index .news header h3 {
    margin: 0;
    width: max-content;
    text-align: justify;
}

.index>.layer.news>main {
    max-width: 100%;
}

.index .news-list {
    max-width: var(--root-max-width);
    min-height: calc(480 * var(--px));
    text-align: left;
    padding: calc(80 * var(--px)) 0;
}

.index .news-list .new {
    min-height: calc(520 * var(--px));
    background-color: #f3f6f8;
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
}

.swiper-slide:hover::before {
    opacity: 1;
}

.index .news-list .new:hover {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.index .news-list .new:hover .content {
    margin-top: -10%;
    z-index: 1;
    position: relative;
    background-color: #fff;
    background: url(/themes/basic/skin/images/new-bg.png) no-repeat;
    background-position: right bottom;
}

.index .news-list .new>.content {
    flex: 1 0 0;
    font-size: calc(16 * var(--px));
    display: flex;
    flex-direction: column;
    padding: calc(40 * var(--px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s ease;
}

.index .news-list .new>.img {
    flex: 0 0 auto;
    width: 100%;
    display: block;
    margin: auto;
    overflow: hidden;
}

.index .news-list .new>.img img {
    width: 100%;
    aspect-ratio: 506 / 239;
    object-fit: cover;
    transform-origin: center center;
}

.index .news-list .new>.content .time {
    color: #666;
    padding-bottom: calc(20 * var(--px));
}

.index .news-list .new>.content h4 {
    font-size: calc(24 * var(--px));
    line-height: calc(32 * var(--px));
    font-weight: bold;
    margin-bottom: calc(20 * var(--px));
}

.index .news-list .new>.content .more {
    font-size: calc(18 * var(--px));
    color: #000;
    text-decoration-color: #616364;
}

.index .news-list .new>.content .more img {
    width: calc(22 * var(--px));
}

.index .news-list .swiper-pagination-bullet {
    width: calc(20 * var(--px));
    height: calc(10 * var(--px));
    border-radius: 4px;
}

.index .news-list .swiper-pagination-bullet-active {
    width: calc(50 * var(--px));
    background-color: var(--root-color);
    transition: width .3s linear;
}

.index .work {
    --animate-duration: 1.5s;
}

.index .work>main {
    min-height: calc(625 * var(--px));
    height: calc(625 * var(--px));
    max-width: 100%;
    background-image: linear-gradient(to bottom, #fff 65%, #f3f6f8 35%);
}

.index .work>main .work-content {
    max-width: calc(((100vw - var(--root-max-width)) / 2) + var(--root-max-width));
    height: 100%;
    margin-top: calc(120* var(--px));
    display: flex;
    justify-content: space-between;
}

.work>main .work-content .work-content-left {
    /* flex: 0 1 65%; */
    flex: 1 1 0;
    background: url(/themes/basic/skin/images/banner_3.png) no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work>main .work-content .work-content-left::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    backdrop-filter: blur(20px);
    z-index: -1;
}

.work>main .work-content .work-content-left .work-content-left-content {
    text-align: left;
    padding-left: calc((100vw - 1600px) / 2);
}

.work>main .work-content .work-content-left .work-content-left-content section {
    color: var(--root-color);
    font-size: calc(72 * var(--px));
}

.work>main .work-content .work-content-left .work-content-left-content h2 {
    font-weight: bold;
}

.work>main .work-content .work-content-left .work-content-left-content .contact-us {
    width: calc(250 * var(--px));
    height: calc(70 * var(--px));
    color: #fff;
    font-size: calc(16 * var(--px));
    margin-top: calc(62 * var(--px));
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--root-color);
    text-decoration: none;
}

.work>main .work-content .work-content-left .work-content-left-content .contact-us img {
    width: calc(22 * var(--px));
}

.work>main .work-content .work-content-right {
    /* flex: 0 1 35%; */
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
}

.work>main .work-content .work-content-right .top {
    flex: 1 1 auto;
    color: #fff;
    text-align: left;
    padding: calc(80* var(--px)) calc(20 * var(--px)) 0 calc(70* var(--px));
    background-color: #ee662c;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all .3s ease;
}

.work>main .work-content .work-content-right .top section {
    font-size: calc(18 * var(--px));
}

.work>main .work-content .work-content-right .top section h4 {
    font-size: calc(42 * var(--px));
    padding-bottom: calc(27 * var(--px));
}

.work>main .work-content .work-content-right .top section p {
    padding-bottom: calc(15 * var(--px));
}

.work>main .work-content .work-content-right .top .icon {
    width: calc(150 * var(--px));
    height: calc(150 * var(--px));
    background-color: #ee774e;
    margin-right: calc(-20 * var(--px));
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: absolute;
    right: 0;
    bottom: 0; */
}

.work>main .work-content .work-content-right .top .icon img {
    height: calc(100 * var(--px));
}

.work>main .work-content .work-content-right .bottom {
    color: #fff;
    flex: 0 1 30%;
    text-align: left;
    padding: calc(80* var(--px)) calc(20* var(--px)) 0 calc(70* var(--px));
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: #393636;
    overflow: hidden;
    transition: all .3s ease;
}

.work>main .work-content .work-content-right .bottom .icon {
    width: calc(150* var(--px));
    height: calc(150* var(--px));
    margin-right: calc(-20 * var(--px));
    background-color: #555252;
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.work>main .work-content .work-content-right .bottom section {
    font-size: calc(18 * var(--px));
}

.work>main .work-content .work-content-right .bottom section h4 {
    font-size: calc(42 * var(--px));
    padding-bottom: calc(27 * var(--px));
}

.work>main .work-content .work-content-right .bottom section p {
    padding-bottom: calc(15 * var(--px));
    display: none;
}

.work>main .work-content .work-content-right .bottom .icon img {
    width: calc(80 * var(--px));
}

@media screen and (max-width: 1600px) {
    .work>main .work-content .work-content-left .work-content-left-content {
        padding-left: 2.5vw;
    }

    .index .work>main {
        height: calc(550 * var(--px));
        min-height: calc(550 * var(--px));
    }
    .index>.layer.solution>main .solution-content .solution-right .tip-text:nth-of-type(1) {
        left: 21%;
    }
    .index>.layer.solution>main .solution-content .solution-right .tip-text:nth-of-type(2) {
        right: 25%;
    }
}

@media screen and (max-width: 768px) {
    .index .index-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
        display: none !important;
    }

    .index .company>main .company-info .company-info-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 0;
    }

    .index .company>main .company-info .company-info-item {
        width: 100%;
    }
    .index .work>main {
        min-height: auto;
        height: auto;
    }

    .index .work>main .work-content {
        flex-wrap: wrap;
    }

    .index .work>main .work-content .work-content-left,
    .index .work>main .work-content .work-content-right {
        flex: 0 1 100%;
    }

    .work>main .work-content .work-content-left {
        padding: calc(100 * var(--px)) 0;
    }

    /* .index>.layer.solution>main .solution-content {
        flex-wrap: wrap;
        gap: 20px 0;
        padding-bottom: 20px;
    }

    .index>.layer.solution>main .solution-content .solution-right {
        flex: 1 1 100%;
    }

    .index>.layer.solution>main .solution-content .solution-right img {
        width: 100%;
        translate: 0 0;
    } */
    .index>.layer.solution>main .solution-content {
        height: auto;
        flex-wrap: wrap;
    }

    .index>.layer.solution>main .solution-content .solution-left {
        flex: 0 1 100%;
    }

    .index>.layer.solution>main .solution-content .solution-left .more {
        width: calc(325 * var(--px));
        padding: calc(30 * var(--px)) calc(20 * var(--px));
    }

    .index>.layer.solution>main .solution-content .solution-right {
        position: static;
        right: 0;
        width: 100%;
        flex: 0 0 auto;
        width: 100vw;
        margin-left: calc((100vw - var(--root-max-width)) / 2 * -1);
        background-color: #fff;
    }

    .index>.layer.solution>main .solution-content .solution-right img {
        max-width: none;
        height: auto;
        translate: 0 0;
    }

    .index>.layer.solution>main .solution-content .solution-right .tip-text:nth-of-type(1) {
        /* top: calc(490 * var(--px)); */
        /* left: calc(290 * var(--px)); */
        top: 47%;
        left: 16%;
    }

    .index>.layer.solution>main .solution-content .solution-right .tip-text:nth-of-type(2) {
        /* top: calc(470 * var(--px)); */
        /* right: calc(380* var(--px)); */
        top: 44%;
        right: 26%;
    }
}

@media screen and (max-width: 525px) {
    .index .esg>main .esg-content {
        flex-direction: column;
    }

    .index .esg>main .esg-content>.swiper {
        flex: 0 0 100%;
        max-width: 100%;
        height: 100%;
    }

    .index .company .industry .industry-content {
        --gap: calc(10 * var(--px));
        min-height: calc(890 * var(--px));
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .index .company .industry .industry-title {
        font-size: calc(54 * var(--px));
    }

    .index .company .industry .industry-content .flex-1 {
        flex: 0 1 calc(65% - var(--gap));
        align-self: flex-start;
    }

    .index .company .industry .industry-content .flex-2 {
        flex: 0 1 35%;
    }

    .index .company .industry .industry-content .content {
        flex: 0 1 calc(40% - var(--gap));
        margin-bottom: 0;
    }

    .index .company .industry .industry-content .content .learn-more {
        width: calc(200 * var(--px));
        height: calc(60 * var(--px));
        margin-top: calc(20 * var(--px));
    }

    .index .company .industry .industry-content .flex-3 {
        flex: 0 1 60%;
        margin-bottom: 0;
    }

    .index>.layer.solution>main .solution-content .solution-left .more {
        margin-top: 20px;
        width: 35%;
        padding: calc(30 * var(--px)) calc(20 * var(--px));
    }

    .index .esg>main .esg-content>.swiper .swiper-slide>section .more {
        width: calc(200 * var(--px));
        height: calc(60 * var(--px));
    }

    .index .esg>main .esg-content>.swiper .swiper-slide>section {
        padding: calc(32* var(--px)) calc(20* var(--px)) calc(32* var(--px)) calc(60* var(--px));
        ;
    }

    .index .esg>main .esg-content>.swiper .swiper-slide>section h3 {
        font-size: calc(32 * var(--px));
    }

    .index .news-list .new {
        min-height: calc(620 * var(--px));
    }
}