:root{
    --size-16:calc(14px   .1vw);
    --size-18:calc(14px   .2vw);
    --size-22:calc(14px   .41vw);
    --size-24:calc(14px   .52vw);
    --size-26:calc(14px   .625vw);
    --size-36:calc(14px   1.14vw);
    --size-40: calc(14px   1.35vw);
    --size-60: calc(14px   2.39vw);
}

body {
    /* padding-top: 100px; */
    padding-top: 66px;
    transition: all .25s ease-in-out;
}
*{
    box-sizing: border-box;
}
body.hidden {
    overflow: hidden;
}

/*scroll*/
::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

::-webkit-scrollbar-button:vertical {
    display: none
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #082da5;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #082da5;
}

::-webkit-scrollbar-thumb:vertical:active {
    background-color: #082da5;
}

.bd_weixin_popup,
.bsbox {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/* common */
.clear::before,
.clear::after {
    content: "";
    display: block;
    clear: both;
}

.img-con img {
    max-width: 100%;
}


/*
*******************
header
*******************
*/
/* logo */
header {
    background-color: #fff;
    top: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    position: fixed;
    transition: all .4s ease;
}


header .logo img {
    transform: scale(.88);
}

/* header.fixed .logo img {
    transform: scale(.88);
} */

/* header.fixed .header-nav .header-nav-item {
    line-height: 80px;
} */

header .logo img {
    transition: all .3s ease;
    height: 49px;
}

header .s-container {
    height: 100%;
    width: 100%;
    padding: 0 1.5625vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}



@media (max-width: 1600px) {
    header .logo img {
        height: 40px;
    }

}

@media (max-width: 1024px) {
    header .logo img {
        max-height: 35px;
        transform: scale(.88);
    }

    header .s-container {
        padding-right: 70px;
    }

    header.fixed .logo img {
        transform: scale(.88)!important;
    }
}

/* nav */
.header-nav {
    padding: 0;
}

.header-nav * {
    font-size: 18px;
}

.header-nav-bar {
    display: none;
}

.header-nav .header-nav-item {
    position: relative;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    margin: 0 1.8vw;
    /* line-height: 100px; */
    line-height: 66px;
}

.header-nav .header-nav-item:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;


    background-image: linear-gradient(90deg, #082da5, #2396c7);

    background-image: -webkit-gradient(linear, 0% 100%, 92% 100%, from(#082da5), to(#2395c7));

    height: 5px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    pointer-events: none;
    display: none;
}

.header-nav .header-nav-item:hover::after,
.header-nav .layui-this:after {
    width: 100%;
}

.header-nav .header-nav-item .down-list {
    width: 505px;

    height: 295px;
    background: #f5f4f2;

    text-align: center;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate3d(-25%, 0, 0);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;

    transition: all .2s ease;

    display: flex;
}


.down-list .left-con,
.down-list .right-con{
    text-align: left;
}


 .down-list .left-con{
    width: 200px;
    padding-top: 14px;
    position: relative;
}
.down-list .left-con::before{
    content: "";
    display:inline-block;
    width:0;
    position: absolute;
    height:0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #f5f4f2;


    top: -15px;
    left: 50%;
    transform: translatex(-50%);


}


.header-nav .down-list .left-con a,
.header-nav .down-list .right-con a{
    padding-left: 25px;
}

.header-nav .down-list .right-con{
    width: calc(100% - 200px);
    text-align: left;
    background-color: #fff;
    padding-top: 14px;
}
.header-nav .down-list .right-con a{
    color: #666;
}

.header-nav .down-list .right-con .right-item{
    display: none;
}

.header-nav .down-list .right-con .right-item:first-child{
    display: block;
}

.header-nav .header-nav-item .down-list a {

    line-height: 40px;
    position: relative;
    font-size: 16px;
}

.header-nav .header-nav-item .down-list a:hover,
.header-nav .header-nav-item .down-list a.cur{
    background-color: #fff;
    color: #0e62ec;
}


.header-nav .header-nav-item .down-list a:last-child::after {
    display: none;
}




@media (min-width: 1024px) {
    .header-nav .header-nav-item:hover .down-list {
        opacity: 1;
        visibility: visible;
    }
}





.header-nav .header-nav-item a {
    padding: 0;
    transition: all .3s ease;
    display: block;
}

.header-nav .header-nav-item a:hover,
.header-nav .header-nav-item a.cur{
    color: #0e62ec;
}


.header-nav .header-nav-item a {
    color: #333;
}

.header-nav .header-nav-item {
    position: relative;
}

.header-nav .header-nav-item .btn-show {
    position: absolute;
    right: 0;
    ;
    top: 0;
    ;
    width: 40%;
    text-align: right;
    padding-right: 1rem;
    display: none;
    cursor: pointer;
}




@media (max-width: 1600px) {
    /* .header-nav .header-nav-item {
        line-height: 80px;
    } */

    .header-nav * {
        font-size: 16px;
    }


    header.fixed .header-nav .header-nav-item {
        line-height: 70px;
    }
}

@media (max-width: 1220px) {
    .header-nav .header-nav-item {
        margin-left: 1vw;
        margin-right: 1vw;
    }

}

@media (max-width: 1024px) {
    .header-nav .header-nav-item:after {
        display: none;
    }

    .header-nav .header-nav-item .btn-show {
        display: block;
    }

    .header-nav .header-nav-item .down-list {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: translate3d(0, 0, 0);
        width: 100%;
        text-align: left;
        box-shadow: none;
        margin-left: .8rem;
        display: none;
        transition: none;
    }

    .header-nav .header-nav-item .down-list a {
        line-height: 50px;
    }
}


@media (max-width: 480px) {
    .header-nav * {
        font-size: 16px;
    }

}

/* icon-bar */
.header .navbar-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -7px;

    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 999;
    display: none;
}

.header .navbar-toggle .icon-bar {
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.header .navbar-toggle .icon-bar .icon-bar {
    margin-top: 4px;

}

.header .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #393d49;
}

.header .header-nav-wrap {
    transition: all .64s ease;

}

@media (max-width: 1024px) {
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        height: 60px;
    }

    body{
        padding-top: 60px;
    }

    .header .navbar-toggle {
        display: block;
    }

    .header .header-nav-wrap {
        position: fixed;
        left: 100%;
        top: 0;
        bottom: 0;
        background-color: #fff;
        top: 60px;
        width: 0;
        width: 100%;
        height: 100%;
        overflow: auto;

        /* -webkit-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out; */

    }

    .header .header-nav .header-nav-item {
        display: block;
        padding-left: 1rem;
        padding-right: 1rem;
        line-height: 50px !important;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        box-sizing: border-box;
    }

    .header .header-nav .header-nav-item:first-child {
        margin-top: .5rem;
    }

    .header .header-nav .layui-this:after {
        display: none;
    }

    .header.in .header-nav-wrap {
        left: 0;
    }

    .header.in .icon-bar:nth-child(2) {
        width: 0;
    }

    .header.in .icon-bar:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-top: 8px;

    }

    .header.in .icon-bar:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin-top: -8px;
    }
}

/* header-right */
.header-right {
    /* position: absolute; */
    right: 30px;
    top: 0;
    height: 40px;
    display: flex;
    align-items: center;
}

.header-right .phone {
    font-size: 18px;
    background:  no-repeat left center;
    padding-left: 28px;
}

.btn-search {
    display: inline-block;
    width: 18px;
    height: 18px;
    background:  no-repeat center;
    margin-left: 2.34vw;
    background-size: 16px 16px;
}


@media (max-width: 1200px) {


    .btn-search {
        margin-left: 1.2vw;
    }

    .header-right .phone {
        font-size: 16px;
        padding-left: 20px;
    }
}


@media (max-width: 1180px) {
    .header-right .phone {
        display: none;
    }
}

@media (max-width: 1024px) {

    .header-right {
        right: 64px;
    }
}



/* map */
.amap-copyright {
    visibility: hidden !important;
}

.amap-logo {
    display: none !important;
}

.container {
    width: 81.25vw !important;
    max-width: 1560px;
    /* max-width: 1248px;
    width: 65vw!important;; */
}




@media (max-width: 1300px) {

    footer .container,
    .container {
        width: 90% !important;
    }
}





.container {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.com-title {
    text-align: center;
    /* margin-bottom: 60px; */
    margin-bottom: var(--size-60);

}

.com-title h2 {
    /* font-size: 36px; */
    font-size: 28px;

    font-size: calc(14px   .72vw);
    font-weight: bold;
    color: #010101;
    line-height: 1.2;
}

.com-title p {
    font-size: var(--size-18);
    margin-top: 1vw;
    line-height: 1;
    color: #666;
}


@media (max-width: 768px) {
    .com-title p {
        font-size: 14px;
    }

    .com-title h2{
        line-height: 1.4;
    }
}

/* more */
.btn-more {
    color: #fff;
    display: inline-block;
    border: 1px solid #fff;
    background-color: #fff;
    padding-left: 5.15vw;
    padding-right: 5.15vw;
    line-height: 46px;
    text-align: left;
    position: relative;
    cursor: pointer;
    font-size: var(--size-18);
    transition: all .35s ease;
    color: #000;
    
border-radius: 0px 33px 33px 33px;
}


.btn-more:hover{
    transform: translatey(-5px);
}
.btn-more .layui-icon{
    font-weight: bold;
    margin-left: 10px;

}


/* cblue */

.btn-more.c-blue {
    background-color: #3f8ae1;
    color: #fff;
}

.btn-more.c-blue:hover span,
.btn-more.c-blue:hover .layui-icon {
    color: #fff;
}

.btn-more .hide-phone{
    font-weight: normal;
    margin-left: .6vw;
    opacity: 0;
    height: 20px;
    line-height: 20px;
    width: 0;
    transition: all .4s ease;
    overflow: hidden;
    position: relative;
    z-index: 9;
    overflow: hidden;
    display: inline-block;
    font-size: 16px;

}
 .btn-more:hover .hide-phone{
    opacity: 1;
    width: 103px;
}


@media (max-width: 1600px) {
    .btn-more {
        font-size: 14px;
    }

}

@media (max-width: 768px) {
    .btn-more .layui-icon {
        margin-left: .5rem;
    }

    .btn-more {
        line-height: 40px;
    }
}

/* footer */
footer {
    background-color: #000;
    padding-top: 30px;
}


/* footer .container{
    border: 1px solid red;    
} */

.f-top {
    display: flex;
    justify-content: space-between;
}
footer .left {
    border-right: 1px solid rgba(255, 255, 255, .1);
    width: calc(100% - 15.625vw);
    display: flex;
    justify-content: space-between;
    padding-right: 4.8vw;
}

footer,
footer a {
    color: #9c9fae;
    transition: all .4s ease;
    font-size: 14px;
}

footer a:hover {
    color: #fff;
}


footer .f-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 18px;
}

@media (max-width: 1600px) {
    footer .f-item h3 {
        font-size: 18px;
    }

}

footer .f-item ul {
    line-height: 2.8;
}


footer .right {
    text-align: right;
    width: 15.625vw;
}

footer .right .ewm-wrap {
    text-align: center;
    display: inline-block;
    line-height: 24px;
}

footer .right .ewm-wrap img{
    width: 150px;
}

footer .right .ewm-wrap p {
    margin-top: 5px;
    color: rgba(255, 255, 255, .3);
}

footer .f-bottom {
    margin-top: 22px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);

}

footer .f-bottom .left-txt {
    float: left;
}

footer .f-bottom .right-txt {
    float: right;
    font-size: 0;
}

footer .f-bottom .right-txt a::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 14px;
    background-color: #838696;
    vertical-align: middle;
    margin-right: 10px;
    margin-left: 10px;
}

footer .f-bottom .right-txt a:first-child::before {
    display: none;
}

/* @media (max-width: 1600px) {
    footer .f-item {
        margin-right: 2.4vw;
    }

} */


@media (max-width: 1480px) {

    /* footer .f-item{
        margin-right: 2.6vw;
    } */

    footer .right .ewm-wrap img {
        width: 120px;
        height: 120px;
    }

    footer .f-item ul {
        line-height: 36px;
    }
}

@media (max-width: 1300px) {



    /* footer .left{
        justify-content: space-around;
    } */
    footer .right,
    footer .left {
        width: 100%;
        padding: 0;
        border: 0;
    }

    .f-top{
        display: block;
    }

    footer .f-item {
        margin-right: 0;
    }

    footer .right {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(158, 92, 92, 0.1);
        padding-top: 2vw;
        margin-top: 2vw;
    }

    footer .right .ewm-wrap p {
        display: inline-block;
        text-align: left;
        margin-left: 1vw;
    }
}



@media (max-width: 1024px) {
    .f-top {
        display: none;
    }

    footer {
        padding-top: 0;
    }

    footer .f-bottom {
        margin-top: 0;
        border: 0;
    }

    
    footer .f-bottom .left-txt {
        width: 100%;
        float: none;
        text-align: center;
    }
}

@media (max-width: 992px) {
    footer .f-bottom .right-txt {
        display: none;
    }

}

.layer-search {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
}


.layer-search form {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 120px;
    padding: 0 70px;
    z-index: 99999;
    background: #fff;

}

.layer-search form input {
    width: 100%;
    height: 70px;
    line-height: 70px;
    border: 0;
}

.layer-search form .btn-search,
.layer-search form .close {
    position: absolute;
    top: 0;
    width: 70px;
    line-height: 70px;
    height: 70px;
    margin-left: 0;
    border: 0;
}

.layer-search form .btn-search {

    left: 0;
}

.layer-search form .close {
    right: 0;
    text-align: center;
    cursor: pointer;

}

.layer-search form .close i {
    font-size: 24px;
    font-weight: bold;
}


/* right */
.right-fixed {
    position: fixed;
    right: 0;
    bottom: 2rem;
    z-index: 999;
    display: none;
}
.right-fixed a:first-child{
    border-top-left-radius: 5px;
}

.right-fixed a:last-child{
    border-bottom-left-radius: 5px;

}

.right-fixed a:last-child::after{
    display: none;
}


.right-fixed a {
    display: block;
    width: 60px;
    height: 60px;


    cursor: pointer;
    background-color: #fff;
    position: relative;

}

.right-fixed a::after{
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 1px;
    
    background: #e4e4e4;
    left: 50%;
    bottom: 0;
    transform: translatex(-50%);
}

.right-fixed a i {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .5s ease;
}


.right-fixed a.ly i {
    background-image: ;
}

.right-fixed a.phone i {
    background-image: ;
}

.right-fixed a.email i {
    background-image: ;
}

.right-fixed a.top i {
    background-image: ;
}

.right-fixed a:hover {
    background: #3f8ae1;
}

.right-fixed a:hover::after{
    background: #3f8ae1;

}

.right-fixed a.ly:hover i {
    background-image: ;
}

.right-fixed a.phone:hover i {
    background-image: ;
}

.right-fixed a.email:hover i {
    background-image: ;
}

.right-fixed a.top:hover i {
    background-image: ;
}

.right-fixed a .showinfo{
    position: absolute;
    top: 0;
    opacity: 0;
    right: 65px;
    visibility: hidden;
}

.right-fixed a.ly .showinfo{
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, .8);
    background-color: #fff;
    transition: all .5s ease;

}

.right-fixed a.ly .showinfo img{
    width: 100px;
    height: 100px;
}
.right-fixed a.phone .showinfo,
.right-fixed a.email .showinfo{
    line-height: 60px;
    background: #3f8ae1;

    font-size: 16px;
    color: #fff;
    padding: 0 15px;
    border-radius: 5px;
    height: 100%;

    transition: all .5s ease;;
}


.right-fixed a.phone .showinfo p{
    white-space: nowrap;
}


.right-fixed a:hover .showinfo{
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .right-fixed {
        display: none !important;
    }

}




/* f banner */
.sub-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    max-height: 600px;
}

.sub-banner>.container {
    position: absolute;
    left: 50%;
    top: 50%;

    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%,-50%, 0);
    transform: translate3d(-50%,-50%, 0);
    text-align: left;
}


.sub-banner img {
    max-width: 100%;
    width: 100%;
}

.sub-banner .sub-banner-txt h2 {
    font-size: 50px;
    font-size: calc(14px   1.875vw);
}

.sub-banner .sub-banner-txt p {
    text-transform: uppercase;
    font-size: calc(14px   .3125vw);
    margin-top: 1vw;
}




@media (max-width: 1024px) {

    .mininav .right a {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: .5rem;
    }

    /* .mininav {
        line-height: 1.5rem;
    } */

    .mininav .layui-icon {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .mininav {
        position: static;
    }

}


.sub-title {
    font-size: var(--size-40);
    text-align: center;
    margin-bottom: 3.64vw;

}


.sub-intro {
    font-size: var(--size-18);
    color: #666;
    text-align: center;
    padding: 0 9.8vw;
    line-height: 1.8;
    /* margin-top: -45px; */
    margin-top: -2.34vw;
}




@media (max-width: 1024px) {
    .sub-intro {
        padding-left: 0;
        padding-right: 0;
    }
}


@media (max-width: 480px) {

    .sub-intro {
        margin-top: -10px;
        line-height: 1.6;
    }

    .mininav .right a {
        margin-left: .2rem;
    }

    .sub-banner .sub-banner-txt h2 {
        font-size: 20px;
    }

    .sub-banner .sub-banner-txt p {
        font-size: 15px;
    }


}



/* 分页 */
.page-list {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    font-size: 0;
}

.page-list a {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    margin: 0 5px;
    border: 1px solid #d9d9d9;
    transition: all .4s ease;
    vertical-align: middle;
    color: #333;
}

.page-list .btn-prev,
.page-list .btn-next {
    color: #808080;

}

.page-list a:hover,
.page-list a.cur {

    background-color: #3f8ae1;
    color: #fff;
    border-color: #3f8ae1;
}

.page-list a.first,
.page-list a.last {
    width: auto;
    padding: 0 15px;
}

@media (max-width: 480px) {
    .page-list {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .page-list a {
        width: 26px;
        height: 26px;
        line-height: 26px;
        margin-left: 2px;
        margin-right: 2px;
    }

    .page-list a.first,
    .page-list a.last {
        padding: 0 5px;

    }
}



/* r-section */
.r-section {
    height: 17.7vw;
    text-align: center;
    background:  no-repeat center;
    background-size: cover;
    min-height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.r-section h2 {
    font-size: calc(14px   .9375vw);

    color: #000;
}

.r-section p {
    font-size: var(--size-18);
    margin-top: 15px;
    color: #666;

}

.r-section .r-txt {
    text-align: left;
}

.r-section .r-txt .btn-more {
    font-size: var(--size-18);
    padding-left: 35px;
    padding-right: 35px;
    line-height: 56px;
    color: #fff;
    background: #3f8ae1;
    margin-top: 35px;
}
.r-section .r-txt .btn-more i{
    font-weight: bold;
}




@media (max-width: 1440px) {
    .btn-more{
        line-height: 40px;
    }
}

@media (max-width: 640px) {
    .btn-more{
        line-height: 36px;
    }
    
}



/* 分享 */
footer .share-wrap {
    margin-top: 1.8vw;
}

footer .share-wrap .bshare-custom{
    display: flex;
    justify-content: right;
}
footer .share-wrap .bshare-custom a {
    width: 36px;
    height: 36px;
    padding: 0;
    background-color: rgba(156, 159, 174, .2);
    border-radius: 50%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: .52vw;
    margin-bottom: .52vw;
    margin-right: 0;
    display: inline-block;
}

footer .share-wrap .bshare-custom a.bshare-weixin {
    background-image: ;
}

footer .share-wrap .bshare-custom a.bshare-sinaminiblog {
    background-image: ;
}

footer .share-wrap .bshare-custom a.btn-footer3 {
    background-image: ;
}

footer .share-wrap .bshare-custom a.btn-footer4 {
    background-image: ;
}

footer .share-wrap .bshare-custom a.btn-footer5 {
    background-image: ;
}

@media (max-width: 1600px) {
    footer .share-wrap .bshare-custom a {
        width: 32px;
        height: 32px;
    }

}

@media (max-width: 768px) {
    .r-section h2 {
        font-size: 20px;
    }

    .r-section .r-txt .btn-more,
    .r-section p {
        font-size: 14px;
    }

    /* .com-title h2 {
        font-size: 26px;
    } */
}



@media (max-width: 480px) {
    .r-section h2 {
        font-size: 18px;
    }

    .r-section .r-txt {
        padding: 0 .5rem;
    }

    .r-section .r-txt .btn-more {
        padding-left: 14px;
        padding-right: 14px;
        line-height: 46px;
    }
}



/* arrow */
/* .swiper-button-prev,
.swiper-button-next,
.team-section .owl-carousel .owl-nav button.owl-next,
.team-section .owl-carousel .owl-nav button.owl-prev {
    width: 56px;
    height: 56px;
    background-color: #fff;
    border-radius: 50%;

}

.case-section4 .swiper-button-prev,
.case-section4 .swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}

.company-con .swiper-button-prev,
.company-con .swiper-button-next {
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.team-section .owl-carousel .owl-nav button.owl-next,
.team-section .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translatey(calc(-50% - (2.5vw   58px)/2));
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.work-swiper .swiper-button-next,
.work-swiper .swiper-button-prev {
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
} */


/* .team-section .owl-carousel .owl-nav button.owl-prev span,
.team-section .owl-carousel .owl-nav button.owl-next span,
.company-con .swiper-button-prev span,
.company-con .swiper-button-next span {
    display: block;
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    display: block;
    font-size: 0;
} */

/* .case-section4 .swiper-button-next::before,
.case-section4 .swiper-button-prev::before,
.work-swiper .swiper-button-next::before,
.work-swiper .swiper-button-prev::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: -1;
} */



/* left arrow */
/* .company-con .swiper-button-prev span,
.team-section .owl-carousel .owl-nav button.owl-prev span,
.swiper-button-prev::before {
    background:  no-repeat center;
} */



.work-swiper .swiper-button-prev {
    left: 3.125vw;
}

.case-section4 .swiper-button-prev {
    left: 0;
}

/* right arrow */
/* .company-con .swiper-button-next span,
.team-section .owl-carousel .owl-nav button.owl-next span,
.swiper-button-next::before {
    background:  no-repeat center;
} */



.work-swiper .swiper-button-next {
    right: 3.125vw;
}

.case-section4 .swiper-button-next {
    right: 0;
}

/* :hover */
/* .team-section .owl-carousel .owl-nav button.owl-next:hover,
.team-section .owl-carousel .owl-nav button.owl-prev:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #3f8ae1;
} */


/* left hover */
/* .company-con .swiper-button-prev:hover span,
.team-section .owl-carousel .owl-nav button.owl-prev:hover span,
.swiper-button-prev:hover:before {
    background:  no-repeat center;
} */

/* right hover */
/* .company-con .swiper-button-next:hover span,
.team-section .owl-carousel .owl-nav button.owl-next:hover span,
.swiper-button-next:hover:before {
    background:  no-repeat center;
} */

/* .swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
} */

/* 
.company-con .swiper-button-prev.swiper-button-disabled span,
.company-con .swiper-button-next.swiper-button-disabled span,
.work-swiper .swiper-button-next.swiper-button-disabled,
.work-swiper .swiper-button-prev.swiper-button-disabled {
    opacity: .7;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}


.team-section .owl-carousel .owl-nav span,
.swiper-button-next span,
.swiper-button-prev span,
.swiper-button-next::before,
.swiper-button-prev::before {
    transition: all .4s ease;
} */

/* end */



@media (max-width: 768px) {

    .case-section4 .swiper-button-prev,
    .case-section4 .swiper-button-next,
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }


    .case-section4 .swiper-button-next::before,
    .case-section4 .swiper-button-prev::before,
    .swiper-button-prev span,
    .swiper-button-next span {
        background-size: 10px auto !important;

    }
}





.mininav{
    padding: 13px 0;

}
.mininav a{
    font-size: 14px;
    color: #000;
    display: inline-block;
    padding: 7px calc(14px   .52vw);
    line-height: 1;
}
.mininav a:first-child{
    background:  no-repeat center;
    background-size: 100% 100%;

}

.mininav a.cur{
    color: #666;
}


@media (max-width: 480px) {
    .btn-search{
        background-size: 14px 14px;
    }

    .mininav a{
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 12px;
    }
    .mininav a.cur{
        padding-left: 5px;

    }
    
}