@import url(./layout.css);

.fancybox-placeholder {
    background-color: #fff !important;
}

.content i {
    font-style: italic;
}

/* ==========================================================================
   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%;
}









/* ==========================================================================
   Home page
========================================================================== */
.home_title {
    color: rgb(0, 134, 209);
    font-size: .36rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.home_title.line_center {
    display: block;
    text-align: center;
}

.home_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: .8rem;
    height: 1px;
    background: rgb(116, 196, 197);
}

.home_title.line_center::before {
    left: 50%;
    transform: translateX(-50%);
}

.secondary {
    color: rgb(194, 222, 222) !important;
}

.home_subheading {
    font-size: .28rem;
    color: rgb(0, 164, 156);
}

.home_subheading h3 {
    font-weight: 600;
}

.red {
    color: red !important;
}




/* ==========================================================================
   part01
========================================================================== */
.part01 {
    padding: 1.4rem 0;
}

.home_about {
    justify-content: space-between;
}

.homeAbout_left {
    width: 5.4rem;
}

.homeAbout_right {
    width: calc(100% - 6.2rem);
}

.homeAbout_video {
    height: 100%;
}

.video_auto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homeAbout_info {
    color: rgb(51, 51, 51);
    font-size: .16rem;
    line-height: 200%;
    margin-bottom: .5rem;
}

.homeAbout_main .home_subheading {
    margin: .6rem 0 .3rem;
}


.homeMore_btn {
    border-radius: 60px;
    background: rgb(0, 134, 209);
    width: 1.4rem;
    height: .48rem;
    color: rgb(255, 255, 255);
    font-size: .14rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    border: none;
}

.homeMore_btn:hover {
    color: #fff;
}

.homeMore_btn:before {
    content: '';
    display: block;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 50%);
    background-size: 210% 100%;
    background-position: right bottom;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 50px;
    transition: all .8s;
    -webkit-transition: all .8s;
}

.homeMore_btn:hover:before {
    background-position: left bottom;
}


@media only screen and (max-width: 920px) {
    .homeAbout_info {
        font-size: 12px;
    }

    .homeMore_btn {
        font-size: 12px;
        width: 120px;
        height: 28px;
    }
}

@media only screen and (max-width: 768px) {
    .homeAbout_left {
        width: 34%;
    }

    .homeAbout_right {
        width: 60%;
    }
}

@media only screen and (max-width: 500px) {
    .homeAbout_left {
        width: 100%;
    }

    .homeAbout_right {
        width: 100%;
        margin-top: 20px;
    }

    .part01 {
        padding: 30px 0;
    }
}











/* ==========================================================================
   part02
========================================================================== */
.homeService1 {
    background: url(../images/home02.png) no-repeat;
    background-size: cover;
    height: 5.6rem;
    padding: 1.2rem 0 0;
}

.home_service {
    justify-content: space-between;
    margin: .2rem 0 0;
}

.homeService_info {
    color: rgb(51, 51, 51);
    font-size: .16rem;
    font-weight: 400;
    line-height: 200%;
}

.homeService_left {
    padding: .6rem 0 0;
}

.homeService_right {
    width: 9.5rem;
}

.homeService2 {
    margin: -1.4rem 0 0;
    padding: 0 0 1.6rem 0;
}

.homeService_list {
    margin: 0 0 0 -0.65rem;
}

.homeService_list li {
    margin: 0 0 0 .65rem;
    width: calc(25% - .65rem);
}

.homeService_box {
    position: relative;
    height: 100%;
}

.homeService_top {
    padding: .3rem;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(7, 76, 114, 0.2);
    background: rgb(255, 255, 255);
}

.homeService_img {
    padding: .3rem 0;
    border-bottom: 1px solid rgb(224, 240, 248);
}

.homeService_img img {
    width: .76rem;
}

.homeService_title {
    margin: .3rem 0;
    color: rgb(0, 0, 0);
    font-size: .18rem;
    font-weight: 500;
    text-align: center;
    height: calc(.18rem * 3);
}




.homeService_bottom {
    padding: .2rem .3rem;
    border-radius: .04rem;
    box-shadow: 0px 0px 10px 0px rgba(7, 76, 114, 0.2);
    background: rgb(0, 134, 209);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all .4s;
}

.homeService_name {
    color: rgb(255, 255, 255);
    font-size: .18rem;
    font-weight: 500;
    text-align: center;
    padding-bottom: .2rem;
    border-bottom: 1px solid rgb(104, 177, 214);
    margin-bottom: .2rem;
}

.homeService_desc {
    color: rgb(255, 255, 255);
    font-size: .16rem;
    line-height: 1.6;
    overflow: auto;
    max-height: calc(.16rem * 9.6);
}

.homeService_desc::-webkit-scrollbar {
    width: 4px;
    background-color: transparent;
}

.homeService_desc::-webkit-scrollbar-track {
    display: none;
}

.homeService_desc::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #fff;
}

.homeService_desc p {
    position: relative;
    padding-left: .24rem;
}

.homeService_desc p::before {
    content: "";
    position: absolute;
    left: .1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.homeService_desc a {
    color: #fff;
    display: inline-block;
}

.homeService_desc a:hover {
    text-decoration: underline;
}

.homeService_area {
    position: relative;
    height: 100%;
}

.homeService_icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: .26rem;
}

.homeService_box:hover .homeService_bottom {
    transform: scale(1);
}

.homeService_box:hover .homeService_top {
    opacity: 0;
}

@media only screen and (max-width: 1280px) {
    .homeService_list {
        margin: 0 0 0 -0.45rem;
    }

    .homeService_list li {
        margin: 0 0 0 .45rem;
        width: calc(25% - .45rem);
    }

    .homeService_right {
        width: 9rem;
    }
}

@media only screen and (max-width: 920px) {
    .homeService_right {
        width: 60%;
    }

    .homeService_info {
        font-size: 12px;
    }

    .homeService2 {
        margin: -40px 0 0;
    }
}

@media only screen and (max-width: 768px) {

    .homeService1 {
        height: auto;
        padding: 40px 0;
    }

    .homeService_top {
        padding: 5px;
    }


    .homeService2 {
        padding: 0 0 20px;
        margin: 20px 0 0;
    }

    .homeService_list li {
        margin: 0 0 .45rem .45rem;
        width: calc(50% - .45rem);
    }

    .homeService_name,
    .homeService_title {
        font-size: 12px;
    }

    .homeService_desc {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {
    .homeService_left {
        width: 100%;
    }

    .homeService_right {
        width: 100%;
        margin-top: 20px;
    }

    .homeService_list {
        margin: 0 0 0 -15px;
    }

    .homeService_list li {
        width: calc(50% - 15px);
        margin: 0 0 15px 15px;
    }

    .homeService_bottom {
        display: none;
    }

    .homeService_img img {
        width: 50px;
    }

    .homeService_box:hover .homeService_top {
        opacity: 1;
    }
}












/* ==========================================================================
   part03
========================================================================== */
.home_num {
    background: url(../images/home03.png) no-repeat;
    background-size: 100% 100%;
    margin-top: .55rem;
}

.homeNum_list li {
    width: 25%;
}

.num_module {
    height: 3rem;
}

.number {
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: .6rem;
    font-weight: 700;
}

.num_unit {
    color: rgb(154, 212, 213);
    font-size: .36rem;
    font-weight: 400;
    margin-left: .1rem;
}

.num_info {
    color: rgb(224, 240, 248);
    font-size: .24rem;
    line-height: 1.2;
}


.homePro {
    justify-content: space-between;
    align-items: flex-end;
    padding: .55rem 0;
}

.homePro_right {
    padding: 0 0 .1rem;
}

.homePro_list {
    margin: 0 0 0 -0.5rem;
}

.homePro_list li {
    margin: 0 0 .5rem .5rem;
    width: calc(50% - .5rem);
}

.homePro_box {
    position: relative;
    height: 100%;
}

.homePro_area {
    width: calc(100% - .75rem);
    min-height: 3.6rem;
    height: 100%;
    background: rgb(247, 250, 252);
    padding: .4rem;
}

.homePro_img {
    position: absolute;
    right: 0;
    bottom: .3rem;
    border-radius: .04rem;
    box-shadow: 0px 0px 18px 0px rgba(14, 77, 112, 0.15);
    background: rgb(255, 255, 255);
    width: 3rem;
}

.homePro_title {
    color: rgb(0, 0, 0);
    font-size: .2rem;
    font-weight: 500;
    margin-bottom: .2rem;
}

.homePro_info {
    color: rgb(51, 51, 51);
    font-size: .14rem;
    line-height: 2;
}

.homePro_info p {
    position: relative;
    padding-left: .24rem;
}

.homePro_info p::before {
    content: "";
    position: absolute;
    left: .1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
}

.home_pro {
    padding: 0 0 1.1rem;
}


@media only screen and (max-width: 1280px) {
    .homePro_info {
        font-size: 12px;
    }

    .homePro_img {
        width: 2.5rem;
    }
}

@media only screen and (max-width: 768px) {
    .homePro_area {
        padding: 20px 10px;
    }

}

@media only screen and (max-width: 500px) {
    .homePro_list li {
        width: 100%;
    }

    .homePro_title {
        font-size: 14px;
    }

    .homePro_right {
        width: 100%;
        margin-top: 20px;
    }

    .number {
        font-size: 28px;
    }

    .num_unit {
        margin-left: 1px;
    }
}

















/* ==========================================================================
   part04
========================================================================== */
.part04 {
    background: url(../images/part04.png) no-repeat;
    background-size: cover;
    padding: 1.1rem 0 1.2rem;
}

.homeNews_list {
    margin: .8rem 0 0 -0.15rem;
}

.homeNews_list li {
    width: calc(25% - .15rem);
    margin: 0 0 .15rem .15rem;
}

.homeNews_box {
    height: 100%;
    padding: .2rem;
    border-radius: 4px;
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 18px 0px rgba(14, 77, 112, 0.15);
    transition: all .2s;
}

.homeNews_bottom {
    border-top: 1px solid rgb(215, 244, 250);
}

.homeNews_date {
    color: rgb(99, 187, 180);
    font-size: 14px;
    padding: .1rem 0;
}

.homeNews_title {
    color: rgb(33, 33, 33);
    font-size: .2rem;
    font-weight: 500;
    margin-bottom: .2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.homeNews_desc {
    margin: .2rem 0;
    color: rgb(102, 102, 102);
    font-size: 14px;
    font-weight: 300;
    line-height: 180%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.homeNews_btn {
    margin-top: .35rem;
}

.homeNews_box:hover {
    background: rgb(0, 134, 209);
}

.homeNews_box:hover .homeNews_date,
.homeNews_box:hover .homeNews_title,
.homeNews_box:hover .homeNews_desc {
    color: #fff;
}

@media only screen and (max-width: 1280px) {
    .homeNews_desc {
        font-size: 12px;
    }

    .homeNews_date {
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {
    .homeNews_list li {
        width: calc(50% - .15rem);
    }

}

@media only screen and (max-width: 500px) {
    .homeNews_list li {
        width: 100%;
    }

    .homeNews_title {
        font-size: 14px;
    }
}








/* ==========================================================================
   part05
========================================================================== */
.part05 {
    padding: .8rem 0 0;
}

.home_leave {
    margin: .2rem 0 0;
    justify-content: space-between;
}

.homeLeave_left {
    padding: .6rem 0 0;
}

.homeLeave_right {
    width: 8.8rem;
}

.send_btn {
    margin-top: .35rem;
    display: inline-block;
}

.send_email {
    width: 2.8rem;
    height: .5rem;
    border-radius: 30px;
    background: rgba(0, 134, 209, 0.08);
    align-items: center;
    position: relative;
}

.send_txt {
    color: rgb(145, 188, 212);
    font-size: .14rem;
    padding: 0 0 0 .25rem;
    transition: all .4s;
}

.send_img {
    position: absolute;
    right: .03rem;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 0px 0px 6px 0px rgba(31, 120, 170, 0.4);
    background: rgb(0, 134, 209);
    width: .45rem;
    height: .45rem;
    transition: all .4s;
}

.send_email:hover .send_img {
    right: 2.32rem;
}

.send_email:hover .send_txt {
    padding: 0 0 0 .6rem;
}

.homeLeave_form {
    border-radius: .08rem;
    box-shadow: 0px 0px 15px 0px rgba(7, 76, 114, 0.15);
    background: rgb(255, 255, 255);
    position: relative;
    z-index: 2;
    padding: .5rem .4rem .6rem;
}

.homeLeave_form::before {
    content: "";
    position: absolute;
    right: 0;
    top: -0.6rem;
    width: 2.4rem;
    height: .6rem;
    border-radius: .5rem 0px 0px 0px;
    background: rgba(116, 196, 197, 0.16);
    z-index: -1;
}

.homeLeave_form::after {
    content: "";
    position: absolute;
    right: -0.8rem;
    bottom: .5rem;
    width: .8rem;
    height: calc(100% - .5rem);
    border-radius: 0px .5rem 0px 0px;
    box-shadow: 0px 0px 18px 0px rgba(14, 77, 112, 0.15);
    background: rgba(0, 134, 209, 0.16);
    z-index: -1;
}

.homeLeave_list {
    margin: 0 0 0 -0.4rem;
}

.homeLeave_list li {
    width: calc(33.33% - .4rem);
    margin: 0 0 0 .4rem;
}

.homeLeave_input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    font-size: .18rem;
    line-height: 2;
    border-bottom: 1px solid rgb(206, 206, 206);
}

.homeLeave_tag {
    font-size: .18rem;
    font-weight: 400;
}

.homeLeave_module {
    margin: .6rem 0 0 -0.4rem;
    justify-content: space-between;
    align-items: flex-end;
}

.homeForm_left {
    width: calc(66.66% - .4rem);
    margin-left: .4rem;
}

.homeForm_left .homeLeave_input {
    margin: .5rem 0 0;
}

@media only screen and (max-width: 920px) {
    .homeLeave_right {
        width: 100%;
        padding: 0 60px 0 0;
        margin: 20px 0;
    }

    .homeLeave_input,
    .homeLeave_tag {
        font-size: 14px;
    }

    .send_txt {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {
    .homeLeave_right {
        padding: 0 20px 0 0;
    }

    .homeLeave_list li {
        width: 100%;
        margin-bottom: 10px;
    }

    .homeForm_left {
        width: 100%;
    }

    .homeForm_right {
        margin: 20px 0 0 20px;
    }

    .homeLeave_module {
        margin: 0 0 0 -0.4rem;
    }

    .send_img img {
        width: 14px;
    }
}













/* ==========================================================================
   footer
   ========================================================================== */
footer {
    background: url(../images/footer.png) no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

footer::before {
    content: "";
    position: absolute;
    border-radius: 0px .85rem 0px 0px;
    background: rgb(233, 246, 246);
    width: 27.0833vw;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.foot_main {
    justify-content: space-between;
    padding: 1.1rem 0;
}

.foot_left {
    width: 2.52rem;
}

.foot_right {
    width: 76%;
    border-top: 1px solid rgb(255, 255, 255);
    margin-top: .2rem;
    padding-top: .4rem;
}

.foot_list {
    justify-content: space-between;
}

.foot_name {
    position: relative;
}

.foot_name::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: .4rem;
    height: 1px;
    background: #fff;
}

.foot_name a {
    color: rgb(255, 255, 255);
    font-size: .2rem;
    font-weight: 500;
}

.foot_name a:hover {
    color: #fff;
}

.foot_column {
    margin-top: .2rem;
}

.foot_column li {
    line-height: 2.1;
    font-size: .14rem;
}

.foot_column a {
    color: rgb(236, 236, 236);
}

.foot_column a:hover {
    color: rgb(236, 236, 236);
    text-decoration: underline;
}

.fc_item:nth-child(2) {
    margin-top: .1rem;
}

.fc_way {
    margin-left: .1rem;
}

.fc_way h6 {
    color: rgb(255, 255, 255);
    font-size: .14rem;
}

.fc_right {
    margin-left: .44rem;
}

.foot_link {
    margin: .75rem 0 .3rem;
}

.foot_link a:not(:last-of-type) {
    margin-right: .25rem;
}

.foot_link .fa {
    background: linear-gradient(270.00deg, rgb(0, 164, 156), rgb(0, 134, 209));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: .18rem;
    font-weight: 400;
}

.foot_link img {
    width: .24rem;
}

.foothd {
    color: rgb(0, 164, 156);
    font-size: .14rem;
    line-height: 1.85;
}

.foothd a {
    color: rgb(0, 164, 156);
}

.space {
    display: block;
}

@media only screen and (max-width: 1680px) {
    .foot_right {
        width: 70%;
    }
}

@media only screen and (max-width: 768px) {

    footer::before,
    .foot_logo,
    .foot_link,
    .foot_right {
        display: none;
    }

    .foot_main {
        padding: 0;
    }

    .foot_left {
        width: 100%;
    }

    .space {
        display: inline-block;
    }

    .foothd {
        font-size: 12px;
        color: #fff;
        text-align: center;
        padding: 10px 0;
    }

    .foothd a {
        color: #fff;
    }
}

@media only screen and (max-width: 500px) {
    .space:nth-child(2) {
        display: block;
    }
}




/* 右下角跳转 */
.hide {
    opacity: 0;
}

.msg_link {
    transition: all .4s;
}

.baiaode {
    position: fixed;
    z-index: 999;
    right: .05rem;
    bottom: .05rem;
}

.baiaode_item {
    margin-bottom: .1rem;
}

.msg_box {
    border-radius: 50%;
    box-shadow: 0px 0px 6px 0px rgba(31, 120, 170, 0.4);
    background: rgb(0, 134, 209);
    width: .45rem;
    height: .45rem;
}

.msg_box img {
    max-width: 100%;
}

.flex_two_img {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .flex_two_img {
        flex-wrap: wrap;
    }

    .baiaode {
        display: none;
    }
}