@import url(./layout.css);

input,
textarea,
button,
select {
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* ==========================================================================
   common part
========================================================================== */
.pic {
    overflow: hidden;
    position: relative;
    height: auto;
    /*margin: 35px 0;*/
}

.bgimg {
    width: 100%;
}

.upimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.pic:hover .upimg {
    transform: scale(1.05);
}

/* 没有放大效果 */
.upimg2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* 居中对齐 */
.upimg3 {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
}

.pic:hover .upimg3 {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* 缩小放大 */
.upimg4 {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate(-50%, -50%) scale(0.93);
    transform: translate(-50%, -50%) scale(0.93);
    transition: all .5s;
}

.pic:hover .upimg4 {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

/* 背景模式 */
.upimg5 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.pic:hover .upimg5 {
    transform: scale(1.05);
}

.container img {
    max-width: 100%;
}




/* ==========================================================================
   part01
========================================================================== */
.part01 {
    background: url(../images/part01.png) no-repeat;
    background-size: cover;
    padding: 1.5rem 0;
}

.home_en {
    color: rgba(232, 115, 41, 1);
    font-size: var(--font26);
    font-weight: 300;
    margin-bottom: .1rem;
}

.home_cn {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font36);
    font-weight: 700;
    align-items: center;
}

.home_cn img {
    width: .42rem;
    margin-left: .3rem;
}


.homePro_list {
    margin: 1.5rem 0 0;
    gap: 1.1rem .42rem;
}

.homePro_list>li {
    width: calc(33.33% - .28rem);
}

.homePro_box {
    position: relative;
    min-height: 3rem;
    border-radius: .2rem;
    backdrop-filter: blur(.25rem);
    background: linear-gradient(45.00deg, rgba(53, 104, 206, 0.05) 0.054%, rgba(0, 0, 0, 0) 78.227%);
    border: 0px solid transparent;
    background-clip: padding-box;
    align-items: center;
    padding: .2rem 0;
    height: 100%
}

.homePro_box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: .2rem;
    padding: 1px 0px 1px .05rem;
    background: linear-gradient(to right, rgba(232, 115, 41, 1), rgba(232, 115, 41, 0) 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.homePro_area {
    padding-left: .9rem;
}

.homePro_name {
    color: rgba(232, 115, 41, 1);
    font-size: var(--font24);
    font-weight: 700;
    margin-bottom: .2rem;
}

.homePro_name a {
    color: rgba(232, 115, 41, 1);
}

.homePro_series>li {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 400;
    line-height: 1.75;
}

.homePro_series>li a {
    color: rgba(255, 255, 255, 1);
}

.homePro_img {
    position: absolute;
    right: .4rem;
    bottom: .25rem;
    z-index: 1;
    width: 52%;
}

.homePro_img2 img,
.homePro_img img {
    width: 100%;
    transition: transform 0.35s ease;
}

.homePro_img2:hover img,
.homePro_img:hover img {
    transform: translateY(-2px);
    transform: scale(1.05);
}

.homePro_list>li:nth-child(4),
.homePro_list>li:nth-child(5) {
    width: calc(50% - .24rem);
}

.homePro_list>li:nth-child(4) .homePro_img {
    bottom: 0;
    width: 55%;
}

.homePro_list>li:nth-child(5) .homePro_img {
    bottom: 0;
    width: 60%;
}

.accessory {
    margin: 1.1rem 0 0;
}

.accessory .homePro_box {
    gap: .4rem;
}

.homePro_module {
    justify-content: space-between;
}

.homePro_module:nth-child(1) {
    width: calc(60% - .2rem);
}

.homePro_module:nth-child(2) {
    width: calc(40% - .2rem);
}

.accessory .homePro_name {
    margin: .3rem 0 .2rem;
}

.accessory .homePro_img2 {
    width: 13.6979vw;
}

@media only screen and (max-width: 1280px) {
    .homePro_area {
        padding-left: .6rem;
    }
}

@media only screen and (max-width: 768px) {
    .homePro_box {
        padding: .4rem 0;
        min-height: auto;
    }

    .homePro_img {
        right: 0;
    }
}

@media only screen and (max-width: 500px) {
    .homePro_list>li {
        width: 100% !important;
    }

    .homePro_box {
        min-height: 150px;
    }

    .homePro_img {
        width: 40%;
        bottom: 0;
    }

    .accessory .homePro_img2 {
        width: 100px;
    }

    .homePro_module {
        width: 100% !important;
    }

    .homePro_series>li {
        font-size: 12px;
    }
}










/* ==========================================================================
   part02
========================================================================== */
.part02 {
    background: url(../images/part02.png) no-repeat bottom center;
    background-size: cover;
    padding: 1.5rem 0;
}

.part02_flex {
    justify-content: space-between;
    align-items: center;
}

.homeIndustry_msg {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font16);
    font-weight: 400;
    line-height: 1.75;
    max-width: 9.58rem;
}

.homeIndustry_tab {
    margin: .8rem 0 .2rem;
    gap: .2rem .56rem;
    align-items: center;
}

.homeIndustry_tab li {
    color: rgba(154, 154, 154, 1);
    font-size: var(--font18);
    font-weight: 400;
    cursor: pointer;
}

.homeIndustry_tab li.selected {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font24);
    font-weight: 700;
    padding: .14rem .36rem;
    border-radius: 100px;
    background: rgba(232, 115, 41, 1);
}

.homeIndustry_item {
    display: none;
}

.homeIndustry_flex {
    justify-content: space-between;
}

.homeIndustry_left {
    width: 75%;
}

.homeIndustry_left {
    animation: floatVertical 2.5s ease-in-out infinite;
    display: inline-block;
    will-change: transform;
}

.homeIndustry_left:hover {
    animation-play-state: paused;
}

@keyframes floatVertical {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.homeIndustry_right {
    width: calc(25% - .5rem);
}

.homeIndustry_img {
    position: relative;
}

.homeIndustry_img img {
    width: 100%;
}

.homeIndustry_btn {
    position: absolute;
    color: rgba(232, 115, 41, 1);
    font-size: var(--font18);
    font-weight: 400;
    border-radius: 100px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    padding: .08rem .22rem;
    transition: all .3s;
    cursor: pointer;
}

.homeIndustry_btn:hover {
    background: rgba(232, 115, 41, 1);
    color: #fff;
}

.homeIndustry_btn.on {
    background: rgba(232, 115, 41, 1);
    color: #fff;
}

.homeIndustry_swiper {
    display: none;
}

.homeIndustry_series {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font24);
    font-weight: 700;
    text-align: center;
    margin: .4rem 0 .2rem;
}

.homeIndustry_more {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 400;
    padding: .08rem .3rem;
    border-radius: 100px;
    background: rgba(232, 115, 41, 1);
}

.homeIndustry_more:hover {
    color: #fff;
}

.homeIndustry_next,
.homeIndustry_prev {
    position: absolute;
    bottom: .62rem;
    color: #fff;
    font-size: var(--font24);
    cursor: pointer;
    z-index: 1;
}

.homeIndustry_next {
    right: 0;
}

.homeIndustry_prev {
    left: 0;
}

@media only screen and (max-width: 920px) {
    .homeIndustry_msg {
        max-width: 100%;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 500px) {
    .homeIndustry_left {
        width: 100%;
    }

    .homeIndustry_right {
        width: 100%;
    }

    .homeIndustry_box .pic {
        max-width: 50%;
        margin: 0 auto;
    }

    .homeIndustry_btn {
        /* position: static; */
        --font18: 12px;
        padding: 3px 10px;
    }

    .homeIndustry_btn_list {
        gap: 10px;
    }

    .homeIndustry_next,
    .homeIndustry_prev {
        --font24: 18px;
    }

    .homeIndustry_tab {
        margin: .4rem 0 .2rem;
        gap: .2rem 0;
        justify-content: space-between;
    }

    .homeIndustry_tab li {
        --font18: 12px;
    }

    .homeIndustry_tab li.selected {
        --font24: 12px;
        padding: 1px 5px;
    }
}








/* ==========================================================================
   part03
========================================================================== */
.part03 {
    padding: 1.5rem 0;
    background: url(../images/part03.png) no-repeat;
    background-size: cover;
    min-height: 8.26rem;
}

.homeAbout_flex {
    gap: .4rem .85rem;
}

.homeAbout_left {
    width: 4.11rem;
}

.homeAbout_info {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font16);
    font-weight: 400;
    line-height: 1.75;
    margin: .3rem 0 1.2rem;
}

.homeAbout_link {
    color: rgba(232, 115, 41, 1);
    font-size: var(--font16);
    font-weight: 400;
}

.homeAbout_link .lb-arrow-right-long {
    margin-left: .1rem;
    transition: all .35s;
}

.homeAbout_link:hover .lb-arrow-right-long {
    margin-left: .2rem;
}

.homeAbout_circle {
    background: url(../images/circle03.png) no-repeat;
    background-size: 100% 100%;
}

.homeAbout_circle {
    width: 4.54rem;
    height: 4.54rem;
}

.homeAbout_circle .mySwiper2 {
    height: 100%;
}

.homeAbout_box {
    height: 100%;
    flex-direction: column;
}

.homeAbout_year {
    color: rgba(232, 115, 41, 1);
    font-size: 1.18rem;
    line-height: 1;
    font-weight: 400;
}

.homeAbout_abb {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font36);
    font-weight: 700;
    margin-top: .25rem;
    width: 75%;
    text-align: center;
}

@media only screen and (max-width: 920px) {
    .homeAbout_year {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 500px) {
    .homeAbout_left {
        width: 100%;
    }

    .homeAbout_right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}










/* ==========================================================================
   part04
========================================================================== */
.part04 {
    padding: 1.5rem 0;
    background: url(../images/part04.png) no-repeat;
    background-size: cover;
    min-height: 8.26rem;
}

.homeNum_list {
    gap: .45rem;
    margin: 1rem 0 .25rem;
}

.homeNum_list li {
    width: calc(20% - .36rem);
}

.homeNum_box {
    border-radius: .13rem;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: .4rem .2rem;
    backdrop-filter: blur(.1rem);
    flex-direction: column;
    height: 100%;
}

.home_number {
    color: #E87329;
    font-size: .96rem;
    line-height: 1;
}

.homeNum_intro {
    font-size: var(--font24);
    color: #fff;
    margin-top: .2rem;
}

.homeNum_remind {
    color: rgba(232, 115, 41, 1);
    font-size: var(--font16);
    font-weight: 400;
}


@media only screen and (max-width: 768px) {
    .home_number {
        font-size: .7rem;
    }
}

@media only screen and (max-width: 500px) {
    .homeNum_list li {
        width: calc(50% - .225rem);
    }

    .homeNum_list li:last-child {
        width: 100%;
    }
}








/* ==========================================================================
   part05
========================================================================== */
.part05 {
    padding: 1.5rem 0;
    background: url(../images/part05.png) no-repeat;
    background-size: cover;
    min-height: 8.45rem;
}

.part05_wrapper {
    padding: 0 0 0 1.2rem;
}

.homeNews_flex {
    gap: .4rem .8rem;
}

.homeNews_left {
    width: 3.5rem;
}

.homeNews_right {
    width: calc(100% - 4.3rem);
}

.homeNews_h6 {
    color: #FF5E00;
    font-size: var(--font16);
    font-weight: 400;
    margin: .3rem 0 .1rem;
}

.homeNews_info {
    color: #fff;
    font-size: var(--font16);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.homeNews_date {
    color: rgba(232, 115, 41, 1);
    font-size: var(--font16);
    font-weight: 400;
    margin-bottom: .1rem;
}

.homeNews_msg {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.homeNews_swiper .swiper-slide {
    width: 5.28rem;
    margin-right: .45rem;
}

.homeNews_area {
    margin-top: .3rem;
}

.homeNews_box .pic {
    border-radius: .16rem;
}

.homeNews_page {
    position: relative;
    width: calc(100% - 1.2rem);
    margin-top: .2rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 0 .2rem;
}

.homeNews_page img {
    max-width: .4rem;
    cursor: pointer;
}

.homeNews_page .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: rgba(232, 115, 41, 1);
    height: .1rem;
    top: -0.045rem;
    border-radius: 30px;
}

.homeNews_page .swiper-pagination-progressbar {
    height: 1px;
    background: rgba(255, 255, 255, .27);
}

@media only screen and (max-width: 960px) {
    .part05_wrapper {
        padding: 0 0 0 20px;
    }

    .homeNews_page {
        width: calc(100% - 20px);
    }
}

@media only screen and (max-width: 500px) {
    .part05_wrapper {
        padding: 0 20px;
    }

    .homeNews_info {
        margin-bottom: 20px;
    }

    .homeNews_left {
        width: 100%;
    }

    .homeNews_right {
        width: 100%;
    }

    .homeNews_swiper .swiper-slide {
        width: 100%;
    }

    .homeNews_page {
        width: 100%;
    }
}










/* ==========================================================================
   footer
   ========================================================================== */
footer a {
    color: inherit;
}

footer a:hover {
    /*text-decoration: underline;*/
    color: #fff;
}

.foot_main {
    padding: .8rem 0;
    background: url(../images/footBg.png) no-repeat;
    background-size: cover;
}



.foot01 {
    padding-bottom: .6rem;
}

.foot01_left {
    padding-right: 2.15rem;
}

.foot01_right {
    flex: 1;
}

.foot_logo {
    width: 2.33rem;
    margin-bottom: .25rem;
}

.foot_h4 {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font36);
    font-weight: 700;
}

.foot_h6 {
    color: rgba(227, 109, 44, 1);
    font-size: var(--font16);
    font-weight: 300;
    margin-top: .1rem;
}

.foot_nav {
    justify-content: space-between;
}

.fn_list {
    flex-direction: column;
    max-height: 2.8rem;
    gap: .1rem .35rem;
}

.foot_nav .fn_col:first-child .fn_list {
    min-width: 3.2rem;
}

.fn_h3 {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 600;
    margin-bottom: .1rem;
}

.fn_h4 {
    color: rgba(255, 255, 255, .9);
    font-size: var(--font16);
    font-weight: 400;
}

.fn_sub_list {
    margin-top: .05rem;
}

.fn_sub_list>li {
    color: rgba(255, 255, 255, .8);
    font-size: var(--font14);
    line-height: 1.6;
    font-weight: 300;
}


.foot02 {
    padding: .4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footAddress_list {
    justify-content: space-between;
    align-items: center;
}

.footAddress_list li:first-child .footAddress_box {
    padding: .25rem .45rem;
    border-radius: .13rem;
    background: rgba(232, 115, 41, 1);
    max-width: 3.9rem;
}

.footAddress_img {
    width: .39rem;
    flex-shrink: 0;
    margin-right: .25rem;
}

.footAddress_area {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font16);
    font-weight: 400;
    line-height: 2;
}

.foot02_flex {
    justify-content: space-between;
    align-items: center;
    margin-top: .2rem;
}

.foot_office {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font16);
    font-weight: 400;
}

.feedback {
    color: rgba(232, 115, 41, 1);
    font-size: var(--font20);
    font-weight: 400;
    border: 1px solid rgba(232, 115, 41, 1);
    border-radius: 100px;
    padding: .1rem .5rem;
    transition: all .35s;
}

.feedback img {
    margin-right: .2rem;
}

.feedback:hover {
    color: rgba(232, 115, 41, 1);
    box-shadow: 0 0 10px rgba(227, 109, 44, 1);
    text-decoration: none;
}


.foot03 {
    padding: .4rem 0 0;
}

.foot_contact_list {
    justify-content: space-between;
    align-items: center;
}

.footCon_h5 {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font16);
    font-weight: 300;
    margin-bottom: .1rem;
}

.footCon_h3 {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font24);
    font-weight: 400;
}

.subscribe_input {
    width: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    padding: 8px .15rem;
    color: rgba(255, 255, 255, 1);
    font-size: var(--font14);
    border-radius: .08rem 0px 0px .08rem;
}

.subscribe_input::placeholder {
    color: rgba(255, 255, 255, .8);
}

.subscribe_btn {
    width: .6rem;
    border-radius: 0px .08rem .08rem 0px;
    background: rgba(232, 115, 41, 1);
}


.share_list {
    justify-content: center;
    gap: .15rem;
}

.share_list:first-child {
    margin-bottom: .14rem;
}

.share_link {
    position: relative;
}

.share_img,
.share_img2 {
    width: .43rem;
}

.share_img2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .35s;
}

.share_link:hover .share_img2 {
    opacity: 1;
}

.share_box {
    position: relative;
}

.share_down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 10px);
    width: 1.3rem;
    height: 1.3rem;
    /* padding: .1rem; */
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

.share_box:hover .share_down {
    opacity: 1;
    visibility: visible;
}

.share_down img {
    width: 100%;
}

.share_down::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    border: 0 solid transparent;
    border-width: 5px 5px 0px;
    border-top-color: #fff;
    left: 50%;
    margin-left: -5px;
    bottom: -5px;
}


.foothd {
    background: rgba(5, 10, 18, 1);
    padding: .2rem 0;
}

.copy_right {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font16);
    font-weight: 400;
}

.space {
    display: inline-block;
    width: .5rem;
}

.space:last-of-type {
    margin-left: auto;
}

@media only screen and (max-width: 1280px) {
    .footAddress_list li:first-child .footAddress_box {
        padding: .25rem;
    }
}

@media only screen and (max-width: 920px) {
    .foot01_left {
        padding-right: 1rem;
    }

    .footAddress_list,
    .foot_contact_list {
        row-gap: 20px;
    }

    .share_img,
    .share_img2 {
        width: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .foot_main {
        display: none;
    }

    .space {
        width: 0;
    }
}

@media only screen and (max-width: 500px) {
    .copy_right {
        justify-content: center;
    }

    .space:last-of-type {
        margin-left: 10px;
    }

    .foothd .wrapper {
        padding: 0;
    }
}

a.autolink,
.foot_nav a {
    display: inline-block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

a.autolink::after,
.foot_nav a::after,
.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(232, 115, 41, 1);
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
}

a.autolink:hover,
.foot_nav a:hover,
.breadcrumb a:hover {
    transform: translateY(-2px);
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);*/

}

a.autolink:hover::after,
.foot_nav a:hover::after,
.breadcrumb a:hover::after {
    width: 100%;
}