﻿@charset "utf-8";

:root {
    --main-color: #01A0E2;
    --dark: #333;
    --blue: #01A0E2;
    --white-color: #FFFFFF;
}

img {
    max-width: 100%;
}

@keyframes jumpDown {
    0% {
        opacity: 0;
        transform: translateY(0)
    }

    100% {
        transform: translateY(5px)
    }
}

/* index */
.border_white a {

    border: 1px solid var(--white-color);
}

.border_black a,
.border_grey a {
    border: 1px solid #666;
}

.index_more a {
    display: flex;
    width: 200px;
    height: 60px;
    padding: 20px 14px 20px 24px;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px 0px 8px 8px;
    transition: background-color 0.3s ease-in-out;

}

.border_white a span {
    color: var(--white-color);
}

.border_black a span {
    color: #666;
}

.border_grey a span {
    color: #666;
}

.index_more a span {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.index_more a i {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.border_white a i::before {
    /* background-color: var(--white-color); */
    background-image: url(../images/arrow-right-w.svg);
}

.border_black a i::before {
    /* background-color: #666; */
    background-image: url(../images/arrow_grey.svg);

}

.border_grey a i::before {
    /* background-color: #666; */
    background-image: url(../images/arrow_grey.svg);

}

.index_more a i::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.index_more a i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.index_more a i svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;

}

.border_white a:hover {
    background-color: var(--white-color);
}

.border_black a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.border_grey a:hover {
    background-color: #666;
}

.border_white a:hover span {
    color: var(--blue);
}

.border_black a:hover span {
    color: var(--white-color);
}

.border_grey a:hover span {
    color: var(--white-color);
}

.index_more a:hover i:before {
    opacity: 0;
}

.border_white a:hover i:after {
    background-color: var(--blue);
}

.border_black a:hover i:after {
    background-color: var(--white-color);
}

.border_grey a:hover i:after {
    background-color: var(--white-color);
}

.index_more a:hover i:after {
    width: 100%;
    height: 100%;
}

.index_more a:hover i svg {
    opacity: 1;
}

.border_black a:hover i svg path {
    stroke: var(--main-color);
}

.border_grey a:hover i svg path {
    stroke: #666;
}

@media (max-width:1280px) {

    .index_more a {
        width: 166px;
        height: 60px;
        padding: 20px 10px 20px 16px;
    }
}

@media (max-width:350px) {
    .pro_in_button .list_ span {
        font-size: 16px;
    }
}

/* footer */
footer {
    position: relative;
    padding: 45px 40px 30px 40px;
    width: 100%;
    background: linear-gradient(270deg, #0083CD 0%, #01A0E2 100%);

    overflow: hidden;
    z-index: 1;
}

footer:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/foot_icon.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.foot_line {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.code-realy {

    display: flex;
    flex-direction: column;
    max-width: 100px;
}

.code-realy div {
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-top: 14px;
}

.code-realy img {
    width: 100px;
    height: 100px;
}

.footer-bottom-mean {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-bottom-mean-left {

    display: flex;
    flex-direction: column;
}

.footer-bottom-mean-left img {
    width: 200px;
    height: 50px;
    margin-bottom: 50px;
}

.footer-bottom-mean-right {
    flex: 1;
    display: flex;
    padding-left: 30px;
}

.footer-left-title {
    padding-bottom: 4px;
    color: rgba(255, 255, 255, 0.50);

    font-size: 16px;
    font-weight: 400;
    line-height: 26px;

}

.footer-left-tel {
    padding-bottom: 16px;
    color: #FFF;
    font-family: Rubik;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
}

.footer-left-tel a {
    display: block;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.footer-left-adress {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.footer-bottom-item:first-child {
    margin-left: auto;
}

.footer-bottom-item {
    margin-left: 120px;
}

.footer-bottom-item div {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

.footer-bottom-item a {
    color: rgba(255, 255, 255, 0.60);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.footer-bottom-item h3 {

    color: #FFF;

    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.footdown-bottom {
    flex: 1;
    padding-right: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.footdown-bottom a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

@media (max-width:1580px) {

    .footer-bottom-item {
        margin-left: 80px;
    }
}

@media (max-width:1440px) {

    .footer-bottom-item {
        margin-left: 80px;
    }
}

@media (max-width:1366px) {

    .footer-bottom-item {
        margin-left: 60px;
    }
}

@media (max-width:1280px) {

    .footer-bottom-item {
        margin-left: 40px;
    }
}

@media (max-width:1200px) {
    .footer-bottom-mean-left {
        width: 25%;
    }

    .footer-bottom-item {
        margin-left: 30px;
    }
}

@media (max-width:991px) {
    .footer-bottom-mean {
        flex-wrap: wrap;
    }

    .footer-bottom-mean-left {
        width: 100%;
    }

    .footer-bottom-mean-right {
        padding-left: 0;
        padding-top: 30px;
        width: 100%;
        flex: inherit;
        justify-content: space-between;
    }

    .footer-bottom-item:first-child {
        margin-left: 0;
    }
}

@media (max-width:767px) {

    footer {
        padding: 30px 16px 30px 16px;
    }

    .footer-bottom-mean-left img {
        width: 160px;
        height: auto;
        margin-bottom: 30px;
    }

    .footer-bottom-mean-right {
        display: none !important;
    }

    .footer-bottom-item {
        margin-left: 0;
    }

    .footer-left-tel {
        padding-bottom: 16px;
        font-size: 22px;
    }

    .foot_line {
        padding-top: 20px;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .footdown-bottom {
        padding-left: 26px;
        padding-right: 0;
    }

    .footer-left-adress {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
    }

    .footdown-bottom {
        font-size: 14px;
        line-height: 26px;
    }
}

/* 内页二级菜单 */
.height84 {
    height: 84px;
}

.page_menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 84px;
    z-index: 9;
}

.page_menu_fixed {
    position: relative;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(8px);
    width: 100%;
    z-index: 99;
}

.page_menu .my-container>div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page_menu_left ul {
    margin-left: -20px;
    margin-right: -20px;
}

.page_menu_left ul li {
    float: left;
    padding: 0 20px;
}

.page_menu_left a {
    position: relative;
    padding: 24px 0;
    display: block;
    color: var(--dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.page_menu_left a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: width .4s;
}

.page_menu_left a:hover,
.page_menu_left .active a {
    color: var(--main-color);
}

.page_menu_left a:hover:before,
.page_menu_left .active a::before {
    width: 100%;
}

.page_menu_right {
    display: flex;
    align-items: center;
}

.page_menu_right a {
    margin-right: 10px;
    line-height: 20px;
}

.page_menu_right a:first-child {
    width: 20px;
    height: 20px;
    background-image: url(../images/page_house.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    font-size: 0;
    /* opacity: 0.2; */
    opacity: 0.8;

}

.page_menu_right a:nth-child(n + 2) {
    padding-right: 18px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    background-image: url(../images/page_jt.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 8px 13px;
    /* opacity: 0.2; */
    opacity: 0.8;

}

.page_menu_right a:nth-child(n + 2):hover {
    color: var(--main-color);
    opacity: 1;
}

.page_menu_right a:last-child {
    margin-right: 0;
    padding-right: 0;
    background-image: none;
}

@media (max-width:767px) {

    .page_menu {
        position: relative;
        top: inherit;
        margin-top: 84px;
    }

    .page_menu .my-container>div:first-child {
        display: block;
        overflow: hidden;
    }

    .page_menu_fixed {
        background-color: var(--white-color);
    }

    .page_menu .page_menu_left {
        width: 100%;
    }

    .page_menu .page_menu_right {
        width: 100%;
        margin-top: 15px;
    }

    .page_menu_left {
        padding-top: 10px;
    }

    .page_menu_left a {
        padding-top: 0;
    }

    .page_menu_right a:nth-child(n+2) {
        padding-right: 20px;
        margin-right: 4px;
    }

    .page_menu_left ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .page_menu_left ul li {
        padding: 10px;
        padding-bottom: 0;
    }

    .page_menu_left a {
        padding: 0 0 12px 0;
    }

}

/* 内页 top */
.back-top {
    position: fixed;
    right: 10px;
    bottom: 5%;
    z-index: 9;
    display: none;
}

.back-top span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    border: 1px solid rgba(255, 255, 255, 0.50);
    cursor: pointer;
}

@media (max-width:767px) {
    .back-top {
        right: 2px;
        bottom: 10px;
    }

}

/* banner */
.page_banner {
    position: relative;
    width: 100%;
    height: 600px;
}

.page_banner .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 320px;
    background: rgba(0, 0, 0, 0.3);
}

.page_banner .t {
    color: var(--white-color);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.page_banner .des {
    padding-top: 10px;
    color: var(--white-color);
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width:767px) {

    .page_banner {
        height: auto;
    }

    .page_mask {
        padding-top: 0;
        display: flex;
        align-items: center;
    }


}

/* 单页公共 */
.page_content {
    overflow: hidden;
}

.page_title .t {
    position: relative;
    padding-left: 20px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.5;
}

.page_title .t::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
}

.page_title .line {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

/* 单页下面联系我们 */
.product_show_last {
    position: relative;
    height: 394px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.product_show_last .mask {
    position: absolute;
    display: flex;
    align-items: center;
    text-align: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
}

.product_show_last .t {
    color: #FFF;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
}

.product_show_last .index_more {
    display: inline-block;
    margin-top: 40px;
}

@media (max-width:767px) {

    .product_show_last {
        height: auto;
    }

    .product_show_last .mask {
        position: relative;
        padding: 80px 0;
    }

}

/*page*/
.paged {
    padding: 30px 0 60px 0;
    text-align: center;
    overflow: hidden;
}

.paged .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paged .pagination li {
    display: inline-block;
}

.paged:after {
    clear: both;
    content: '';
    width: 0px;
    display: block;
    height: 0px;
    visibility: hidden;
}

.paged span,
.paged a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    margin: 0 8px;
    padding: 4px;
    height: 50px;
    width: 50px;
    font-size: 16px;
    font-weight: 400;
}

.paged a:hover,
.paged .active span {
    color: #fff;
    background-color: var(--main-color);
}

.paged ul li:first-child span,
.paged ul li:last-child a,
.paged ul li:first-child a,
.paged ul li:last-child span {
    width: 50px;
    height: 50px;
}

.paged a:hover svg path {
    stroke: var(--white-color);
}

@media (max-width:767px) {
    .paged {
        padding: 30px 0 30px 0;
    }

    .paged span,
    .paged a {
        font-size: 14px;
        padding: 0 5px;
        margin: 0 2px;
        width: 40px;
        height: 40px;
    }

    .paged ul li:first-child span,
    .paged ul li:last-child a,
    .paged ul li:first-child a,
    .paged ul li:last-child span {
        width: 40px;
        height: 40px;
    }

}

/* sercice */
.service_menu {
    padding-top: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.service_menu ul {
    margin-left: -25px;
    margin-right: -25px;
}

.service_menu ul li {
    float: left;
    padding: 0 25px;
}

.service_menu ul li a {
    position: relative;
    display: block;
    padding-bottom: 14px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.service_menu ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--main-color);
    transition: width 0.3s ease-in-out;
}

.service_menu ul li a:hover,
.service_menu ul li.active a {
    color: var(--main-color);
}

.service_menu ul li a:hover::before,
.service_menu ul li.active a::before {
    width: 100%;
}



@media (max-width:767px) {
    .service_menu {
        padding-top: 20px;
    }

    .service_menu ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .service_menu ul li {
        width: 33.33%;
        padding: 0 5px;
        padding-bottom: 15px;
        text-align: center;
    }

    .service_menu ul li a {
        display: inline-block;
        padding-bottom: 10px;
        font-size: 16px;
        font-weight: 500;
    }

    .service_menu ul li a::before {
        height: 2px;
    }

}


/* read more */
.read_more {
    display: flex;
    justify-content: center;
    padding-top: 36px;
    padding-bottom: 60px;
}

.read_more a {
    position: relative;
    padding-top: 34px;
}

.read_more a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-image: url(../images/honor_icon.svg);
    animation: right-swing 1s ease-out alternate infinite;
}

.read_more a span {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

@keyframes right-swing {
    0% {
        transform: translate(-50%, 0);
    }

    100% {
        transform: translate(-50%, 20%);
    }
}