@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);
}

/* 背景模式 */
.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 {
    padding: .9rem 0;
}

.home_heading {
    align-items: center;
    justify-content: space-between;
}

.home_title {
    color: rgba(50, 50, 50, 1);
    font-size: var(--font48);
    font-weight: 700;
}

.home_info {
    color: rgba(120, 120, 120, 1);
    font-size: var(--font24);
    font-weight: 500;
}

.home_more {
    width: 1.8rem;
    height: .5rem;
    border-radius: 50px;
    background: rgba(236, 104, 23, 1);
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 400;
    transition: all .35s;
}

.home_more i {
    margin: .03rem 0 0 .2rem;
    transition: all .35s;
}

.home_more:hover {
    color: #fff;
    box-shadow: 0 0 10px rgba(236, 104, 23, .8);
}

.home_more:hover i {
    transform: translateX(.1rem);
}




.homeApply_list {
    gap: .28rem;
    margin: .4rem 0 0;
}

.homeApply_list li {
    width: calc(25% - .21rem);
}

.homeApply_box .pic {
    border-radius: .08rem;
}

.homeApply_cover {
    position: absolute;
    left: 0;
    top: 40%;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.homeApply_box:hover .homeApply_cover {
    top: 0;
}

.homeApply_top {
    margin-top: 50%;
    flex-direction: column;
    align-items: center;
}

.homeApply_img {
    width: .6rem;
}

.homeApply_title {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font28);
    font-weight: 400;
}

.homeApply_bottom {
    padding: 0 .3rem;
    margin: .3rem 0 0;
}

.homeApply_model {
    gap: .2rem;
}

.homeApply_h5 {
    position: relative;
    width: calc(50% - .1rem);
    padding: .1rem 0 .1rem .2rem;
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.homeApply_h5::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
    width: .09rem;
    height: .09rem;
    background: rgba(238, 118, 23, 1);
}

@media only screen and (min-width:2560px) {
    .homeApply_top {
        margin-top: 60%;
    }
}

@media only screen and (max-width: 1600px) {
    .homeApply_top {
        margin-top: 40%;
    }

    .homeApply_cover {
        top: 45%;
    }
}

@media only screen and (max-width: 500px) {
    .homeApply_list li {
        width: calc(50% - .14rem);
    }

    .homeApply_box:hover .homeApply_cover {
        top: 45%;
    }

    .home_more {
        font-size: 12px;
    }
}















/* ==========================================================================
   part02
========================================================================== */
.part02 {
    background: url(../images/part02.jpg) no-repeat;
    background-size: cover;
    min-height: 8rem;
    padding: 1.4rem 0;
    overflow: hidden;
}

.title_img {
    position: relative;
    display: inline-block;
}

.title_img::before {
    content: "";
    position: absolute;
    right: -0.7rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/logo_ico.png) no-repeat;
    background-size: .58rem auto;
    width: .58rem;
    height: .46rem;
}

.homeAbout_flex {
    justify-content: space-between;
    align-items: center
}

.homeAbout_left {
    width: 46%;
}

.homeAbout_right {
    width: calc(54% - 2.4rem);
    position: relative;
    z-index: 1;
}

.homeAbout_right::before {
    content: "";
    position: absolute;
    left: -1.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 8rem;
    background: url(../images/circle02.png) no-repeat;
    background-size: 100% auto;
    z-index: -1;
}

.homeAbout_info {
    margin: .45rem 0;
    color: rgba(120, 120, 120, 1);
    font-size: var(--font18);
    font-weight: 400;
    line-height: 2;
}

.homeNum_box {
    align-items: center;
}

.home_num {
    width: 2.8rem;
    line-height: 1;
}

.home_num .counter {
    background: linear-gradient(118.04deg, rgba(255, 102, 54, 1), rgba(253, 208, 0, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: .96rem;
    font-weight: 700;
}

.num_unit {
    margin: .1rem 0 0 .05rem;
    color: rgba(255, 102, 54, 1);
    font-size: var(--font24);
    font-weight: 700;
}

.homeNum_list li {
    padding: .25rem 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.homeNum_list li:first-child {
    border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.homeNum_desc {
    color: rgba(120, 120, 120, 1);
    font-size: var(--font18);
    font-weight: 400;
}

.homeNum_list {
    position: relative;
    z-index: 1;
}

.homeNum_list::before {
    content: "";
    position: absolute;
    left: .45rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6rem;
    height: 3.91rem;
    background: url(../images/logo02.png) no-repeat;
    background-size: 100% auto;
    z-index: -1;
}

@media only screen and (max-width: 768px) {
    .homeAbout_right {
        width: calc(54% - 1rem);
    }
}

@media only screen and (max-width: 500px) {
    .homeAbout_left {
        width: 100%;
    }

    .homeAbout_right {
        width: 100%;
        margin: 20px 0 0;
    }
}








/* ==========================================================================
   part03
========================================================================== */
.part03 {
    padding: .9rem 0 1rem;
}

.homeNews_flex {
    margin: .45rem 0 0;
    justify-content: space-between;
    align-items: center;
}

.homeNews_left {
    width: 47%;
}

.homeNews_right {
    width: calc(53% - 1rem);
}

.homeNews_left .pic::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0) 48.707%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.homeNews_cover {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: .4rem .5rem;
    z-index: 1;
}

.homeNews_h6 {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 400;
}

.homeNews_txt {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font24);
    font-weight: 400;
}

.homeNews_more {
    margin: .1rem 0 0;
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 300;
    align-items: center;
}

.homeNews_more img {
    margin-left: .09rem;
}

.homeNews_date {
    padding-left: .36rem;
    color: rgba(120, 120, 120, 1);
    font-size: var(--font16);
    font-weight: 400;
    background: url(../images/icon08.svg) no-repeat;
    background-position: left center;
    background-size: .24rem auto;
}

.homeNews_list li {
    padding: .2rem 0 .3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.homeNews_title {
    color: rgba(50, 50, 50, 1);
    font-size: var(--font18);
    font-weight: 700;
    margin: .1rem 0;
}

.homeNews_msg {
    color: rgba(120, 120, 120, 1);
    font-size: var(--font16);
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.homeNews_box:hover .homeNews_title {
    color: var(--primary);
}

@media only screen and (max-width: 920px) {
    .homeNews_cover {
        padding: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .homeNews_left {
        width: 50%;
    }
}

@media only screen and (max-width: 500px) {
    .homeNews_left {
        width: 100%;
    }

    .homeNews_right {
        width: 100%;
        margin-top: 20px;
    }
}












/* ==========================================================================
   footer
   ========================================================================== */
footer {
    background: rgba(51, 51, 51, 1);
}

footer a {
    color: rgb(255, 255, 255, .9);
}

footer a:hover {
    text-decoration: underline;
}

.foot_logo {
    width: 2.27rem;
}

.foot_list {
    padding: .95rem 0 .6rem;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot_item:nth-child(1) {
    width: 5.4rem;
}

.foot_item:nth-child(2) {
    width: calc(100% - 6.8rem);
}

.foot_nav {
    justify-content: space-between;
}

.foot_contact {
    margin: .5rem 0 0;
    gap: .25rem;
}

.foot_ewm {
    flex-shrink: 0;
}

.foot_ewm img {
    width: 1.2rem;
}

.fc_item {
    color: rgba(255, 255, 255, .6);
    font-size: var(--font14);
    line-height: 2;
    font-weight: 400;
    align-items: flex-start;
}

.fc_item:not(:last-of-type) {
    margin-bottom: .1rem;
}

.fc_img {
    flex-shrink: 0;
    padding-right: .1rem;
    margin-right: .1rem;
    border-right: 1px solid rgba(255, 255, 255, .6);
}

.fc_img img {
    width: .24rem;
}

.foot_h3 {
    font-size: var(--font18);
    font-weight: 700;
    margin-bottom: .1rem;
}

.foot_ul li {
    font-size: var(--font14);
    font-weight: 400;
    line-height: 2.5;
}

.copy_right {
    justify-content: space-between;
    padding: .25rem 0;
    color: rgba(255, 255, 255, 1);
    font-size: var(--font16);
    font-weight: 400;
    line-height: 2.25;
}

@media only screen and (max-width: 768px) {
    .foot_main {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    .foothd .wrapper {
        padding: 0 5px;
    }

    .copy_right {
        justify-content: center;
        line-height: 1.5;
        column-gap: 10px;
    }
}