body {
    font-family: li-regular, Microsoft YaHei, SF Pro SC, SF Pro Display, PingFang SC, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

/*header*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .05);
    z-index: 100;
}

.header-container {
    position: relative;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    background-color: #fff;
}

.logo {
    padding: 0 40px;
}

.logo path {
    fill: #000;
}

.nav {
    position: absolute;
    display: flex;
    width: 100%;
    flex: 1;
    justify-content: center;
    line-height: 50px;
    text-align: center;
}

.navi_list {
    display: flex;
}

.navi_list>li {
    margin: 0 10px;
}

/*main block*/

/*section products-home*/

.products-home {
    background-color: #fff;
    padding-top: 30px;
}

.scene-inner {
    position: relative;
    overflow: hidden;
    height: 67vw;
    max-height: 720px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    flex: 1;
}

.products-home__one {
    max-height: 1100px;
    background-image: url(/assets/img/M-L9.jpg);
    height: 1100px;
    margin-bottom: 10px;
    height: 70vw;
    max-height: 1100px;
}

.products-home__second {
    background-image: url(/assets/img/PC-L7.jpg);
    margin-right: 10px;
}

.products-home__third {
    background-image: url(/assets/img/PC-L8.jpg);
}



.content-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    color: #fff;
    font-size: 2rem;
    text-align: center
}

h1,
h2 {
    font-size: 3.5rem;
}

.button-link_more {
    border: 3px solid;
    border-radius: 100px;
    padding: 5px 15px;
    font-size: 1.2rem;
    margin-top: 30px;
}

.products-home__two {
    display: flex;
    width: 100%;

}

/*footer*/

.footer {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
}

.footer-colum {
    display: flex;
    justify-content: center;
}

.wuksD5 {
    border: none;
    position: relative;
    left: 50%;
}

/*L9*/
.product-configlist {
    display: flex;
    padding-top: 1.5rem;
    justify-content: center;
}

.product-configlist-item {
    position: relative;
    padding: 1.5rem;
}

.product-configlist-title {
    margin-bottom: -1rem;
    font-size: 1rem;
    line-height: 24px;
    text-align: left;
}

.product-configlist-value {
    font-size: 3rem;
}

.product-configlist-value span {
    font-size: 2rem;
    line-height: 1;
}

.product-configlist-item::after {
    position: absolute;
    top: 2rem;
    right: 0;
    width: 1px;
    height: 3rem;
    background-color: hsla(0, 0%, 100%, .5);
    content: "";
}

/*elements*/
.animated {
    opacity: 0;
    transform: translateY(20px);
}

.animated.animated_show {
    opacity: 1;
    transition: all 1.5s;
    transform: translateY(0%);
}

.element {
    height: 10px;
    position: absolute;
    bottom: 50px;
    left: 50%;
}

i {
    border: solid #fff;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    position: absolute;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.arrow {
    top: 0px;
    -webkit-animation: top .6s infinite;
    /*! -webkit-animation-direction: alternate; */
    -webkit-animation-delay: 1.2s;
    /*! animation: top .6s infinite; */
    /*! animation-direction: alternate; */
    animation-delay: 1.2s;
}

@keyframes top {
    0% {
        top: 0px;
    }

    25% {
        top: 3px;
    }

    50% {
        top: 6px;
    }

    75% {
        top: 9px;
    }

    100% {
        top: 12px
    }
}