@import url(./layout.css);

/* ==========================================================================
   common part
========================================================================== */
.pic {
    overflow: hidden;
    position: relative;
    height: auto;
}

.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);
}

.container img {
    max-width: 100%;
}




/* ==========================================================================
   part01
========================================================================== */
.home_head {
    padding: .9rem 0;
}

.home_title {
    position: relative;
    line-height: 1;
    color: rgb(51, 51, 51);
    font-size: .48rem;
    font-weight: 400;
    margin-bottom: .45rem;
}

.home_title::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.45rem;
    width: 2.2rem;
    height: 1px;
    background: rgb(243, 149, 0);
}




.home_video {
    height: 4.62rem;
    position: relative;
    border-radius: .08rem;
    overflow: hidden;
}

.home_video::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/home01.png) no-repeat;
    background-size: 100% 100%;
    border-radius: .08rem;
    overflow: hidden;
}

.video_auto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px 1px 0 0;
    border-radius: .08rem;
}

.home_about {
    position: relative;
}

.homeAbout_main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}


.homeAbout_lr {
    justify-content: space-between;
}

.homeAbout_left {
    width: 36%;
    padding: 1rem 0 0 1rem;
}

.homeAbout_right {
    width: 50%;
}

.homeAbout_img {
    padding-right: .25rem;
    animation: mymove 4s linear infinite;
}

@keyframes mymove {
    0% {
        transform: translate(0px, 0px);
    }

    25% {
        transform: translate(0px, -0.1rem);
    }

    50% {
        transform: translate(0px, 0);
    }

    75% {
        transform: translate(0px, .1rem);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.homeAbout_intro {
    color: rgb(255, 255, 255);
    font-size: .18rem;
    font-weight: 400;
    line-height: 175%;
    margin-bottom: .55rem;
    height: calc(.18rem * 10.5);
    overflow-y: auto;
}

.homeAbout_intro::-webkit-scrollbar { 
    width: 6px;
    background-color: transparent;
}

.homeAbout_intro::-webkit-scrollbar-track {
    display: none;
}

.homeAbout_intro::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(1, 91, 171);
}

.homeAbout_btn {
    width: 2.12rem;
    height: .66rem;
    border-radius: 44px;
    background: rgb(255, 255, 255);
    color: rgb(243, 149, 0);
    font-size: .2rem;
    font-weight: 400;
    transition: all .3s;
}

.homeAbout_btn img {
    margin-right: .2rem;
}

.homeAbout_btn:hover {
    box-shadow: 0px 0px 8px #fff;
}


@media only screen and (max-width: 1536px) {
    .homeAbout_left {
        width: 40%;
        padding: .8rem 0 0 .8rem;
    }
}

@media only screen and (max-width: 1200px) {
    .homeAbout_intro {
        font-size: 12px;
        line-height: 1.5;
        height: calc(12px * 9);
    }
}

@media only screen and (max-width: 768px) {
    .homeAbout_left {
        width: 40%;
        padding: .5rem 0 0 .5rem;
    }
}

@media only screen and (max-width: 500px) {
    .homeAbout_left {
        width: 100%;
        padding: 20px;
    }

    .homeAbout_right {
        width: 100%;
    }

    .home_video {
        height: 400px;
    }

    .video_auto {
        padding: 0;
        height: 100%;
    }

    .home_video::before {
        background: linear-gradient(90.00deg, rgba(243, 149, 0, 0.9), rgba(243, 149, 0, 0.75) 51.166%, rgba(6, 41, 73, 0.75) 100%);
    }

    .homeAbout_btn img {
        width: 14px;
    }

    .homeAbout_img {
        padding-right: 0;
    }

    .home_head {
        padding: 30px;
    }
}











/* ==========================================================================
   part02
========================================================================== */
.part02 {
    background: url(../images/home02.png) no-repeat;
    background-size: cover;
    padding: 0 0 1.15rem;
}

.part02 .home_head {
    position: relative;
}

.part02 .home_head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180.00deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.homePro_list {
    margin: 0 0 0 -0.5rem;
}

.homePro_list li {
    width: calc(25% - .5rem);
    margin: 0 0 0 .5rem;
}

.homePro_box {
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.05);
    background: rgb(255, 255, 255);
    padding: .75rem 0;
    height: 100%;
    transition: all .3s;
}

.homePro_name {
    margin-top: .45rem;
    color: rgb(51, 51, 51);
    font-size: .2rem;
    font-weight: 500;
    text-align: center;
}

.homePro_box:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.homePro_img {
    width: .78rem;
    transition: all .8s;
}

.homePro_box:hover .homePro_img {
    transform: rotateY(360deg);
}

@media only screen and (max-width: 768px) {
    .homePro_list li {
        width: calc(50% - .5rem);
        margin: 0 0 .5rem .5rem;
    }
}

@media only screen and (max-width: 500px) {
    .homePro_list {
        margin: 0 0 0 -0.25rem;
    }

    .homePro_list li {
        width: calc(50% - .25rem);
        margin: 0 0 .25rem .25rem;
    }
}











/* ==========================================================================
   part03
========================================================================== */
.part03 {
    padding: .8rem 0;
    background: url(../images/home03.png) no-repeat;
    background-size: cover;
}

.homeContact_list {
    justify-content: space-between;
}

.homeContact_left {
    margin-right: .3rem;
}

.homeContact_img {
    width: .6rem;
}

.homeContact_area h3 {
    color: rgb(255, 255, 255);
    font-size: .24rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 12px;
}

.homeContact_area h4 {
    color: rgb(255, 255, 255);
    font-size: .18rem;
    font-weight: 400;
    line-height: 200%;
}

.homeContact_btn {
    width: 2.54rem;
    height: .66rem;
    border-radius: 44px;
    background: rgb(255, 255, 255);
    color: rgb(243, 149, 0);
    font-size: .2rem;
    font-weight: 400;
    transition: all .3s;
}

.homeContact_btn img {
    margin-right: .2rem;
}

.homeContact_list li:last-child {
    display: flex;
    align-items: center;
}

.homeContact_btn:hover {
    box-shadow: 0px 0px 8px #fff;
}




@media only screen and (max-width: 1200px) {
    .homeContact_btn img {
        width: .26rem;
    }
}

@media only screen and (max-width: 768px) {
    .homeContact_list {
        margin-top: -20px;
    }

    .homeContact_list li {
        width: 50%;
        margin-top: 20px;
    }

    .homeContact_area h3 {
        font-size: 18px;
    }

    .homeContact_area h4 {
        font-size: 14px;
    }
}

@media only screen and (max-width: 500px) {
    .homeContact_list li {
        width: 100%;
    }

    .homeContact_btn {
        font-size: 12px;
    }

    .homeContact_btn img {
        width: 14px;
    }
}












/* ==========================================================================
   footer
   ========================================================================== */


footer a {
    color: #555555;
}

footer a:hover {
    text-decoration: underline;
    color: #555555;
}


.foot_lr {
    padding: .65rem 0;
    border-bottom: 1px solid rgba(181, 196, 203, .2);
    justify-content: space-between;
}

.foot_left {
    width: 3.6rem;
}

.foot_middle {
    width: 45%;
}

.foot_right {
    width: 1.25rem;
}

.foot_slogan {
    color: rgb(243, 149, 0);
    font-size: .18rem;
    font-weight: 700;
    margin-top: .25rem;
}

.foot_nav {
    justify-content: space-between;
}

.fn_title {
    color: rgb(85, 85, 85);
    font-size: .16rem;
    font-weight: 400;
    position: relative;
    padding-bottom: .28rem;
}

.fn_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: .14rem;
    width: .31rem;
    height: 1px;
    background: rgb(243, 149, 0);
}

.fn_list {
    color: rgb(119, 119, 119);
    font-size: .14rem;
    font-weight: 400;
}

.fn_list li:not(:last-of-type) {
    margin-bottom: 5px;
}

.fn_list a {
    color: inherit;
}

.footEwm_name {
    color: rgb(119, 119, 119);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}




.foothd {
    padding: .25rem 0;
    color: rgb(153, 153, 153);
    text-align: center;
    font-size: .14rem;
    text-transform: Uppercase;
}

.foothd a {
    color: inherit;
}

.space {
    display: inline-block;
    width: .88rem;
}




@media only screen and (max-width: 768px) {
    .footer_main {
        display: none;
    }

    .space {
        width: 20px;
    }

    .foothd {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {

    .space {
        width: 5px;
    }

    .foothd .wrapper {
        padding: 0;
    }
}