html {
    scroll-behavior: smooth
}
body {
    background: #ffffff;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none
}

a {
    text-decoration: none;
    transition: all .3s ease-out 0s
}

a:hover {
    text-decoration: none
}

button {
    transition: all .3s ease-out 0s
}

@media (max-width: 767px) {
    .container {
        padding: 0;
    }
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: #2f80ed;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    transition: all .3s ease-out 0s
}

.scroll-top:hover {
    color: #fff;
    background: rgba(47, 128, 237, .8)
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 99999
}

.preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center
}

.preloader .loader .spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none
}

.preloader .loader .spinner .spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    animation: spinner-linspin 1568.2353ms linear infinite
}

.preloader .loader .spinner .spinner-container .spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spinner-easespin 5332ms cubic-bezier(.4, 0, .2, 1) infinite both
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    right: 50%
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    left: 50%
}

.preloader .loader .spinner-circle {
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    border-color: #2f80ed #2f80ed #e9e9e9;
    border-radius: 50%;
    border-width: 6px
}

.preloader .loader .spinner-left .spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: #e9e9e9;
    animation: spinner-left-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both
}

.preloader .loader .spinner-right .spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: #e9e9e9;
    animation: right-spin 1333ms cubic-bezier(.4, 0, .2, 1) infinite both
}

@keyframes spinner-linspin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-easespin {
    12.5% {
        transform: rotate(135deg);
    }
    25% {
        transform: rotate(270deg);
    }
    37.5% {
        transform: rotate(405deg);
    }
    50% {
        transform: rotate(540deg);
    }
    62.5% {
        transform: rotate(675deg);
    }
    75% {
        transform: rotate(810deg);
    }
    87.5% {
        transform: rotate(945deg);
    }
    to {
        transform: rotate(1080deg);
    }
}

@keyframes spinner-left-spin {
    0% {
        transform: rotate(130deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    to {
        transform: rotate(130deg);
    }
}

@keyframes right-spin {
    0% {
        transform: rotate(-130deg);
    }
    50% {
        transform: rotate(5deg);
    }
    to {
        transform: rotate(-130deg);
    }
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
    color: #323450;
    margin-bottom: 0;
    font-family: "Fira Sans", sans-serif
}

h1, .h1 {
    font-size: 80px;
    letter-spacing: .7px
}

h2, .h2 {
    font-size: 60px;
    letter-spacing: .7px
}

h3, .h3 {
    font-size: 40px;
    letter-spacing: .4px
}

h4, .h4 {
    font-size: 30px;
    letter-spacing: .35px
}

h5, .h5 {
    font-size: 24px
}

h6, .h6 {
    font-size: 20px
}

.font-weight-bold {
    font-weight: 700
}

.font-weight-semi-bold {
    font-weight: 600
}

.font-weight-medium {
    font-weight: 500
}

.font-weight-regular {
    font-weight: 400
}

.font-weight-light {
    font-weight: 300
}

.body-font-size {
    font-size: 16px
}

.font-size-sm {
    font-size: 14px
}

.font-size-xs {
    font-size: 12px
}

.caption-font-size {
    font-size: 14px
}

p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0
}

.button {
    height: 44px;
    font-size: 18px;
    font-weight: 500;
    box-sizing: border-box;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #2f80ed;
    color: #fff;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
    padding: 0 25px;
    overflow: hidden
}

.button i {
    padding-left: 20px
}

.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    padding: 50%;
    border-radius: 50%;
    margin: auto;
    background: rgba(0, 0, 0, .1);
    z-index: -1;
    transition: all .4s linear;
    transform: translate3d(-50%, -50%, 0) scale(0)
}

.button:hover {
    color: #fff
}

.button:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5)
}

.button.border-button {
    background: transparent;
    color: #2f80ed;
    border-color: #2f80ed
}

.button.border-button::before {
    background: rgba(47, 128, 237, .16)
}

.button-lg {
    height: 64px
}

.button-sm {
    height: 34px;
    font-size: 16px;
    font-weight: 400
}

.header {
    background: #f2f2f2;
}

.margin-left-60{
    margin-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header.header-6 .header-action {
        position: absolute;
        right: 60px
    }
    .margin-left-60{
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .header.header-6 .header-action {
        position: absolute;
        right: 60px
    }
}

.header.header-6 .header-action a {
    font-size: 16px;
    color: #333;
    white-space: pre;
}

.header.header-6 .navbar {
    padding: 20px 0;
    border-radius: 0;
    position: relative;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header.header-6 .navbar {
        padding: 17px 0
    }
}

@media (max-width: 767px) {
    .header.header-6 .navbar {
        padding: 17px 0
    }
}

.header.header-6 .navbar-brand {
    padding: 0
}

.header.header-6 .navbar-brand img {
    max-width: 275px
}

@media (max-width: 767px) {
    .header.header-6 .navbar-brand img {
        max-width: 175px;
    }
    .feature-style-5 .single-feature{
        padding: 25px 40px;
    }
}
.header.header-6 .navbar-toggler {
    padding: 0
}

.header.header-6 .navbar-toggler:focus {
    outline: none;
    box-shadow: none
}

.header.header-6 .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #323450;
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all .3s ease-out 0s
}

.header.header-6 .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px
}

.header.header-6 .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0
}

.header.header-6 .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header.header-6 .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .1);
        padding: 5px 12px
    }
}

@media (max-width: 767px) {
    .header.header-6 .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0 15px 20px 0 rgba(50, 52, 80, .1);
        padding: 5px 12px
    }
}

.header.header-6 .navbar-nav .nav-item {
    position: relative
}

.header.header-6 .navbar-nav .nav-item a {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    transition: all .3s ease-out 0s;
    padding: 7px 15px;
    margin: 0 3px;
    position: relative;
    display: inline-block;
    z-index: 1;
    border: 1px solid transparent;
}
.header.header-6 .navbar-nav .nav-item a.active{
    border-bottom: 2px solid #f67590;
}
.lang{
    width: 80px;
    height: 30px;
    line-height: 30px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}
.lang_a{
    width: 40px;
    text-align: center;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    float: left;
}
.lang_b{
    width: 40px;
    text-align: center;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    float: left;
}
.lang a.active{
    background: #d92028;
    color: #fff !important;
}
.banner-box{
    width: 100%;
    height: auto;
}
.banner-box img{
    width: 100%;
    height: auto;
}
.swiper-pagination-bullet-active{
    background: #d92028;
}
.about-section .row{
    --bs-gutter-x: auto;
}
.about-bg{

}
.single-about{
    padding: 60px 60px;
    border-radius: 30px;
    margin-bottom: 50px;
    box-shadow: 0 0 25px rgba(0, 47, 167, .35);
    text-align: center;
    transition: all .3s ease-out 0s;
    margin-left: 20px;
    margin-right: 20px;
    background: #fff;
}
.icon2 img{
    width: 52px;
    height: 52px;
}
.icon2{
    margin-bottom: 25px;
}
.single-about .content h5{
    font-size:32px;
    color: #333333;
    margin-bottom: 10px;
}
.single-about .content p{
    color: #666666;
}
.about-left{
    padding: 0 25px;
}
.about-left h2{
    color: #000;
    font-size: 42px;
}
.about-right{
    padding: 0 25px;
}
.about-right h3{
    font-size: 32px;
    color: #000;
}
.about-con{
    font-size: 24px;
    color: #000;
    line-height: 1.2;
}
.about-con p{
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 25px;
}
.about-button{
    background: #d92028;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    padding: 0 20px;
    display: block;
    width: auto;
}
.about-button:hover{
    color: #fff;
}
.xinwen-bg{
    background: #f67590;
    padding: 30px 45px;
}
.section-title{
    color: #fff;
    font-size: 30px;
}
.section-title h3{
    color: #fff;
}
.section-title1{
    color: #000;
    font-size: 30px;
    font-weight: bold;
}
.xinwen_a{
    padding-right: 40px;
}
.xinwen_a img{
    width: 100%;
    height: auto;
}
.xinwen_b{
    padding-top: 30px;
}
.xinwen_b h3{
    color: #fff;
    font-size: 24px;
    padding-right: 190px;
}
.xinwen_b p{
    padding-top: 30px;
    color: #fff;
    font-size: 18px;
}
.xinwen_c{
    padding-top: 15px;
}
.xinwen_c h3{
    color: #fff;
    font-size: 24px;
    padding-right: 150px;
}
.xinwen_c p{
    padding-top: 30px;
    color: #fff;
    font-size: 18px;
}
.xinwen_d{
    padding-left: 40px;
}
.xinwen_d img{
    width: 100%;
    height: auto;
}
.yizhang-bg{
    background: #d92028;
    padding: 25px 125px;
    margin-top: 1px;
}
.yizhang_a{

}
.yizhang_a p{
    font-size: 16px;
    color: #fff;
}
.yizhang_b{
    padding-left: 30px;
}
.yizhang_b img{
    width: 144px;
    border-radius: 50%;
}
.fuli-item{
    padding: 15px;
    text-align: center;
}
.fuli-item div{
    width: 100%;
    height:150px;
    line-height: 150px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background: #f67590;
}
.zige-bg{
    padding: 50px 80px;
    background: #f67590;
}
.zige{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-bottom: 50px;
}
.zige_a{
    width: 75%;
    height: auto;
    overflow: hidden;
    float: left;
}
.zige_a h3{
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    padding-bottom: 15px;
}
.zige_a p{
    font-size: 16px;
    color: #fff;
    line-height: 2;
}
.zige_b{
    width: 25%;
    height: auto;
    overflow: hidden;
    float: left;
}
.zige_b-a{
    display: inline-block;
    padding-top: 180px;
    text-align: center;
}
.zige_b-a1{
    width: 100px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background: #fff;
    font-size: 14px;
    color: #f67590;
    margin: 10px auto;
    display: inline-block;
}
.zige_b-a2{
    width: 100%;
    font-size: 18px;
    color: #fff;
    text-align: center;
    display: inline-block;
}
.geren_bg{
    background: url('../images/logobg.png') no-repeat center center;
    background-size: 100%;
    padding: 0 180px;
}
.biaodan{
    width: 100%;
    height: auto;
    padding-bottom: 1px;
}
.biaodan_a{
    font-size: 40px;
    font-weight: bold;
    color: #000;
    position: relative;
}
.biaodan_a span{
    font-size: 20px;
    color: #000;
    position: absolute;
    top: 10px;
    left: -40px;
}
.biaodan_b{
    font-size: 20px;
    font-weight: bold;
    color: #000;
    padding: 10px 0 5px 0;
}
.biaodan_c{
    font-size: 18px;
    color: #000;
    padding-bottom: 10px;
}
.biaodan_d{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.biaodan_group{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-bottom: 30px;
}
.biaodan_label1{
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 18px;
    color: #000;
    line-height: 34px;
}
.biaodan_input1{
    width: calc( 100% - 24px );
    border: 2px solid #000;
    padding: 0 10px;
    font-size: 16px;
    color: #000;
    line-height: 34px;
    background: none;
}
.biaodan_input2{
    width: calc( 48% - 24px );
    border: 2px solid #000;
    padding: 0 10px;
    font-size: 16px;
    color: #000;
    line-height: 34px;
    background: none;
}
.biaodan_left{
    width: 48%;
    height: auto;
    overflow: hidden;
    float: left;
}
.biaodan_right{
    width: 48%;
    height: auto;
    overflow: hidden;
    float: right;
}
.biaodan_btn_box{
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    padding-top: 20px;
}
.biaodan_btn1{
    padding: 10px 25px;
    border-radius: 40px;
    display: inline-block;
    background: #c3b06e;
    font-size: 17px;
    color: #fff;
    font-weight: bold;
    margin: 0 10px;
}
.biaodan_btn2{
    padding: 10px 45px;
    border-radius: 40px;
    display: inline-block;
    background: #5aba63;
    font-size: 17px;
    color: #fff;
    font-weight: bold;
    margin: 0 10px;
}
.biaodan_btn_box a:hover{
    color: #fff;
}
.yinsi_bg{
    padding: 60px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
}
.yinsi_bg p{
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
}
.lianxi_bg{
    padding: 30px 180px;
}
.lianxi_a{
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.lianxi_b{
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
}
.lianxi_c{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 50px;
    margin: 0;
}
.lianxi_c1{
    font-size: 16px;
    color: #000;
    font-weight: bold;
    padding-bottom: 20px;
}
.lianxi_c2{
    font-size: 16px;
    color: #000;
}
.lianxi_c2 span{
    font-weight: bold;
}
.wenzhang_bg{
    padding: 20px 180px;
    color: #000;
    font-size: 16px;
    line-height: 1.8;
}
.wenzhang_bg p{
    color: #000;
    font-size: 16px;
    line-height: 1.8;
}
.wenzhang_bg img{
    max-width: 100% !important;
    height:auto !important;
}
@media (max-width: 767px) {
    .icon2 img{
        width: 32px;
        height: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header.header-6 .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 20px;
        color: #323450
    }
}

@media (max-width: 767px) {
    .header.header-6 .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 20px;
        color: #323450
    }
}

.header.header-6 .navbar-nav .nav-item a:hover, .header.header-6 .navbar-nav .nav-item a.active {
    /*color: #2f80ed;*/
    /*border-color: #2f80ed*/
}

.header.header-6 .navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header.header-6 .navbar-nav .nav-item:hover .sub-menu {
        top: 0
    }
}

@media (max-width: 767px) {
    .header.header-6 .navbar-nav .nav-item:hover .sub-menu {
        top: 0
    }
}

.header.header-6 .navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header.header-6 .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible
    }
}

@media (max-width: 767px) {
    .header.header-6 .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible
    }
}

.header.header-6 .navbar-nav .nav-item .sub-menu li {
    display: block
}

.header.header-6 .navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #000
}

.header.header-6 .navbar-nav .nav-item .sub-menu li a.active, .header.header-6 .navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 25px;
    color: #2f80ed
}

.header.header-6 .navbar-nav .sub-nav-toggler {
    display: none
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header.header-6 .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #000;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px
    }
}

@media (max-width: 767px) {
    .header.header-6 .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #000;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px
    }
}

.header.header-6 .navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(-45deg);
    position: relative;
    top: -5px
}

.hero-section-wrapper-5 {
    background: #fff;
    position: relative
}

.hero-section-wrapper-5 .header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: transparent
}

.hero-section-wrapper-5 .header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.hero-section-wrapper-5 .hero-style-5 {
    position: relative;
    z-index: 1;
    padding: 270px 0 140px
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .hero-section-wrapper-5 .hero-style-5 {
        padding: 120px 0 50px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-section-wrapper-5 .hero-style-5 {
        padding: 120px 0 50px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-section-wrapper-5 .hero-style-5 {
        padding: 70px 0 30px
    }
}

@media (max-width: 767px) {
    .hero-section-wrapper-5 .hero-style-5 {
        padding: 50px 0 0
    }
}

.hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper {
    padding: 100px 0
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper {
        padding-bottom: 50px
    }
}

@media (max-width: 767px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper {
        padding-bottom: 50px
    }
}

.hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper h2 {
    margin-bottom: 30px
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper h2 {
        font-size: 55px;
        line-height: 65px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper h2 {
        font-size: 47px;
        line-height: 58px
    }
}

@media (max-width: 767px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper h2 {
        font-size: 40px;
        line-height: 50px
    }
}

@media only screen and (min-width: 575px) and (max-width: 767px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper h2 {
        font-size: 47px;
        line-height: 58px
    }
}

@media only screen and (min-width: 1400px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper p {
        padding-right: 100px
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper p {
        padding-right: 100px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper p {
        padding-right: 30px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper p {
        padding-right: 100px
    }
}

.hero-section-wrapper-5 .hero-style-5 .hero-image {
    margin-bottom: 100px;
    position: relative
}

.hero-section-wrapper-5 .hero-style-5 .hero-image img {
    width: 100%
}

.hero-section-wrapper-5 .hero-style-5 .shapes .shape {
    position: absolute;
    z-index: -1
}

.hero-section-wrapper-5 .hero-style-5 .shapes .shape.shape-1 {
    top: 0;
    right: 0
}

.hero-section-wrapper-5 .hero-style-5 .shapes .shape.shape-2 {
    top: 25%;
    left: 10%
}

.hero-section-wrapper-5 .hero-style-5 .shapes .shape.shape-3 {
    left: 0;
    bottom: 0
}

.feature-style-5 {

}

.feature-style-5 .single-feature {
    padding: 35px 60px;
    border-radius: 30px;
    margin-bottom: 50px;
    box-shadow: 0 0 25px rgba(0, 47, 167, .35);
    text-align: center;
    transition: all .3s ease-out 0s;
    margin-left: 20px;
    margin-right: 20px;
    background: #fff;
}
.icon img{
    width: 72px;
    height: 72px;
}
.in-banner-box{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.in-banner-box img{
    width: 100%;
    height: auto;
}
.in-banner{
    padding: 35px 0;
    background: #f67590;
}
.in-banner_a{
    font-size: 32px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}
.in-banner_b{
    font-size: 18px;
    color: #fff;
    text-align: center;
}
.in-about-box{
    width: 100%;
    height: auto;
}
.in-about-left{
    padding: 50px;
}
.in-about-left img{
    width: 100%;
}
.in-about-right h3{
    font-size: 38px;
    color: #000;
}
.in-about-con h4{
    background: #d92028;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: block;
    width: 80px;
    margin-bottom: 15px;
}
.in-about-con p{
    font-size: 14px;
    color: #333;
}
.in-about2-bg{
    padding: 120px 80px;
    background: #f67590;
}
.in-about2 h3{
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
}
.in-about2 img{
    max-width: 100%;
    height:auto;
}
.in-about2 p{
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}
.tuandui-bg{
    padding: 60px 0;
}
.tuandui_a{
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}
.tuandui_a h3{
    width: 480px;
    height: 125px;
    line-height: 125px;
    text-align: center;
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    background: #d92028;
    margin: 0 auto;
}
.tuandui_b{
    padding: 40px 0;
    text-align: center;
}
.tuandui-item{
    padding: 26px 40px;
    border: 2px solid #000;
    display: inline-block;
    width: 350px;
}
.tuandui-item h4{
    font-size: 18px;
    font-weight: bold;
    color: #000;
    padding-bottom: 10px;
    text-align: left;
}
.tuandui-item h3{
    font-size: 22px;
    color: #000;
    padding-bottom: 8px;
    text-align: left;
}
.tuandui-item p{
    font-size: 18px;
    color: #000;
    text-align: left;
}
.tuandui_c{
    width: 1114px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}
.tuandui_c .tuandui-item{
    width: 350px;
    margin: 0 9px 15px 9px;
}
.in-xinwen-item{
    padding: 15px;
}
.in-xinwen_a{
    width: 100%;
    height: 150px;
    overflow: hidden;
}
.in-xinwen_a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.in-xinwen_b{
    position: relative;
    padding: 25px 30px;
    border: 1px solid #d92028;
}
.in-xinwen_b1{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
    top: -30px;
    left: 50%;
    margin-left: -30px;
    background: #d92028;
    text-align: center;
}
.in-xinwen_b1 span{
    font-size: 12px;
    color: #fff;
    padding: 10px 0 0 0;
    display: block;
}
.in-xinwen_b1 p{
    font-size: 14px;
    color: #fff;
}
.in-xinwen_b2{
    padding: 40px 25px 15px 25px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.in-xinwen_b3{
    font-size: 14px;
    color: #000;
    height: 168px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}
.in-xinwen_b4{
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}
.in-xinwen_b4 a{
    background: #d92028;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: inline-block;
    padding: 0 15px;
}

.pull-left{
    float: left;
}
.pull-right{
    float: right;
}

.line1{
    border-left: 1px solid #005ab4;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 5px;
    bottom: -50px;
    z-index: 10;
}
.line1 img{
    width: 10px;
    height: 10px;
    position: absolute;
    left: -5px;
    bottom: 50px;
}
.ditu-w2{
    width: 145px;
    height: 115px;
}
.ditu-w2 .info{
    width: 105px;
    height: 105px;
}
.pos2{
    left: 450px;
    top: 100px;
}
.line2{
    border-right: 1px solid #005ab4;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: absolute;
    right: 5px;
    bottom: -50px;
    z-index: 10;
}
.line2 img{
    width: 10px;
    height: 10px;
    position: absolute;
    right: -5px;
    bottom: 50px;
}
.ditu1{
    width: 195px;
    height: 189px;
    background: url("../images/ditu1.png") no-repeat center center;
    background-size: 100%;
    position: absolute;
    left: 250px;
    top: 110px;
}
.ditu1 .info{
    width: 116px;
    height: 116px;
    border-radius: 50%;
    float: right;
    padding: 20px 10px;
    margin: 18px;
}
.ditu1 .info h5{
    text-align: center;
    color: #f1bb66;
    padding-bottom: 5px;
}
.ditu1 .info p{
    color: #fff;
    line-height: 24px;
}
.ditu2{
    width: 181px;
    height: 202px;
    background: url("../images/ditu2.png") no-repeat center center;
    background-size: 100%;
    position: absolute;
    left: 730px;
    top: 100px;
}
.ditu2 .info{
    width: 116px;
    height: 116px;
    border-radius: 50%;
    float: right;
    padding: 20px 10px;
    margin: 33px;
}
.ditu2 .info h5{
    text-align: center;
    color: #f1bb66;
    padding-bottom: 5px;
}
.ditu2 .info p{
    color: #fff;
    line-height: 24px;
}
.ditu3{
    width: 521px;
    height: 333px;
    background: url("../images/ditu3.png") no-repeat center center;
    background-size: 100%;
    position: absolute;
    right: 500px;
    top: 120px;
}
.ditu3 .info{
    width: 283px;
    height: 283px;
    border-radius: 50%;
    float: left;
    padding: 20px 80px;
    margin: 33px;
}
.ditu3 .info h5{
    text-align: center;
    color: #f1bb66;
    padding-bottom: 5px;
}
.ditu3 .info p{
    color: #fff;
    line-height: 24px;
}
.ditu4{
    width: 265px;
    height: 364px;
    background: url("../images/ditu4.png") no-repeat center center;
    background-size: 100%;
    position: absolute;
    right: 430px;
    top: 140px;
}
.ditu4 .info{
    width: 215px;
    height: 215px;
    border-radius: 50%;
    float: left;
    padding: 20px 30px;
    margin: 33px;
}
.ditu4 .info h5{
    text-align: center;
    color: #f1bb66;
    padding-bottom: 5px;
}
.ditu4 .info p{
    color: #fff;
    line-height: 24px;
}
.ditu5{
    width: 233px;
    height: 345px;
    background: url("../images/ditu5.png") no-repeat center center;
    background-size: 100%;
    position: absolute;
    right: 235px;
    top: 155px;
}
.ditu5 .info{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    float: left;
    padding: 20px 20px;
    margin: 33px;
}
.ditu5 .info h5{
    text-align: center;
    color: #f1bb66;
    padding-bottom: 5px;
}
.ditu5 .info p{
    color: #fff;
    line-height: 24px;
}
.ditu6{
    width: 334px;
    height: 250px;
    background: url("../images/ditu6.png") no-repeat center center;
    background-size: 100%;
    position: absolute;
    right: 100px;
    top: 305px;
}
.ditu6 .info{
    width: 205px;
    height: 205px;
    border-radius: 50%;
    float: right;
    padding: 20px 30px;
    margin: 33px;
}
.ditu6 .info h5{
    text-align: center;
    color: #f1bb66;
    padding-bottom: 5px;
}
.ditu6 .info p{
    color: #fff;
    line-height: 24px;
}
.ditu7{
    width: 368px;
    height: 329px;
    background: url("../images/ditu7.png") no-repeat center center;
    background-size: 100%;
    position: absolute;
    right: 100px;
    top: 485px;
}
.ditu7 .info{
    width: 205px;
    height: 205px;
    border-radius: 50%;
    float: right;
    padding: 20px 30px;
    margin: 53px 53px 0 0;
}
.ditu7 .info h5{
    text-align: center;
    color: #f1bb66;
    padding-bottom: 5px;
}
.ditu7 .info p{
    color: #fff;
    line-height: 24px;
}
.ditu8{
    width: 305px;
    height: 264px;
    background: url("../images/ditu8.png") no-repeat center center;
    background-size: 100%;
    position: absolute;
    right: 500px;
    top: 485px;
}
.ditu8 .info{
    width: 216px;
    height: 216px;
    border-radius: 50%;
    float: left;
    padding: 20px 30px;
    margin: 23px 0 0 23px;
}
.ditu8 .info h5{
    text-align: center;
    color: #f1bb66;
    padding-bottom: 5px;
}
.ditu8 .info p{
    color: #fff;
    line-height: 24px;
}
.chanpin-nav-box{
    padding-right: 40px;
}
.chanpin-nav-box a{
    width: 100%;
    height: 75px;
    line-height: 75px;
    padding: 0 30px;
    font-size: 20px;
    color: #333333;
    background: #eef1f8;
    border-radius: 5px;
    margin-bottom: 20px;
    display: block;
}
.chanpin-nav-box a.active,.chanpin-nav-box a:hover{
    background: url("../images/icon17.png") no-repeat center center;
    background-size: 100%;
    color: #fff;
}
.chanpin-a{
    width: 100%;
    height: auto;
    padding-bottom: 20px;
}
.chanpin-a img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.chanpin-b{
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    line-height: 24px;
    font-size: 20px;
    color: #333;
    font-weight: bold;
}
.chanpin-c{
    border-left: 5px solid #005ab4;
    height: 28px;
    line-height: 28px;
    font-size: 26px;
    color: #333;
    font-weight: bold;
    padding-left: 15px;
}
.chanpin-d{
    width: 100%;
    height: auto;
    padding: 20px 0;
}
.chanpin-d .col-6{
    float: left;
    margin-bottom: 15px;
}
.chanpin-item{
    height: 70px;
    border: 1px solid #c3d2ff;
    border-radius: 5px;
    padding: 0 18px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin: 0 10px 0 0;
}

.chanpin-item-a{
    width: 33px;
    height: 33px;
    float: left;
    border: 1px dotted #3699ff;
    background: #d6f4ff;
    margin-right: 10px;
}
.chanpin-item-a img{
    width: 100%;
}
.chanpin-item-b{
    width: calc( 100% - 43px );
    font-size: 16px;
    color: #333333;
}
.chanpin-more{
    width: 100%;
    height: auto;
    display:flex;
    align-items:center;
    margin-bottom: 50px;
}
.chanpin-more .more{
    font-size: 18px;
    color: #f1990f;
    line-height: 32px;
}
.chanpin-more .more img{
    display: inline-block;
    border: 1px dotted #3699ff;
    background: #d6f4ff;
    height: 16px;
}
.chanpin-e{
    line-height: 24px;
    font-size: 16px;
    color: #333;
    padding: 15px 0;
}
.chanpin-f{
    width: 100%;
    height: auto;
}
.chanpin-f span{
    display: inline-block;
    width: auto;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    padding: 0 40px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #005ab4;
}
.lianxi{
    background: #fbfcff;
    padding: 1px;
    box-shadow: 0 0 10px rgba(0,47,167,0.35);
    border-radius: 20px;
    margin-bottom: 50px;
}
.lianxi-a{
    position: relative;
    padding-left: 0;
    padding-right: 0;
}
.lianxi-a img{
    width: 100%;
    border-radius: 20px;
}
.lianxi-info{
    width: 100%;
    position: absolute;
    padding:  20px 30px;
    background: rgba(0,0,0,0.3);
    left: 0;
    bottom:0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.lianxi-info h5{
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: bold;
}
.lianxi-info p{
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
.lianxi-info .col-6{
    float: left;
}
.lianxi-b{
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
}
.lianxi-label{
    width: 100%;
    font-size: 20px;
    color: #333;
    line-height: 54px;
    font-weight: bold;
    display: inline-block;
}
.lianxi-label span{
    color: #f00;
}
.lianxi-input{
    width: 100%;
    height: 54px;
    line-height: 54px;
    background: #eef1f8;
    border-radius: 10px;
    padding: 0 15px;
    border: 0;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
.lianxi-textarea{
    width: 100%;
    min-height: 104px;
    line-height: 34px;
    background: #eef1f8;
    border-radius: 10px;
    padding: 0 15px;
    border: 0;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
.lianxi-btn-box{
    text-align: center;
}
.lianxi-btn{
    width: 300px;
    height: 54px;
    line-height: 52px;
    text-align: center;
    background: #005ab4;
    border-radius: 10px;
    cursor: pointer;
    font-size: 26px;
    color: #fff;
    border: 0;
}
.feature-style-5 .single-feature:hover {
    box-shadow: 0 0 25px rgba(0, 47, 167, .35)
}

.feature-style-5 .single-feature .icon {
    color: #2f80ed;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 60px;
    position: relative;
    width: 110px;
    height: 100px;
    z-index: 1
}

.feature-style-5 .single-feature .icon svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.feature-style-5 .single-feature .content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #002fa7;
}
.feature-style-5 .single-feature .content p {
    color: #666666;
    margin-bottom: 25px;
}
.feature-style-5 .single-feature .content .more{
    color: #f1990f;
}
.team-style-4 {
    padding: 100px 0 70px;
    background: #e5e5e5
}

.team-style-4 .single-team {
    text-align: center;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all .3s ease-out 0s
}

.team-style-4 .single-team:hover .image .overlay {
    height: 100%;
    opacity: 1;
    visibility: visible
}

.team-style-4 .single-team .image {
    margin: auto;
    margin-bottom: 25px;
    position: relative
}

.team-style-4 .single-team .image img {
    width: 100%
}

.team-style-4 .single-team .image .overlay {
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(218, 218, 218, 0) 0%, #2f80ed 100%);
    transition: all .3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px
}

.team-style-4 .single-team .image .overlay .socials li a {
    background: #fff;
    color: #2f80ed
}

.team-style-4 .single-team .info h6 {
    font-weight: 600;
    margin-bottom: 10px
}

.team-style-4 .single-team .info p {
    margin-bottom: 20px
}

.pricing-style-4 {
    padding: 100px 0;
    background: #f3f3f3
}

.pricing-style-4 .pricing-active-wrapper {
    position: relative
}

.pricing-style-4 .pricing-active-wrapper .tns-controls {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    bottom: 40px;
    left: -250px
}

.pricing-style-4 .pricing-active-wrapper .tns-controls:focus {
    outline: none
}

@media only screen and (min-width: 768px) and (max-width: 991px),(max-width: 767px) {
    .pricing-style-4 .pricing-active-wrapper .tns-controls {
        left: 0;
        width: 100%;
        justify-content: center;
        bottom: 0
    }
}

.pricing-style-4 .pricing-active-wrapper .tns-controls button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: #323450;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    border: none
}

.pricing-style-4 .pricing-active-wrapper .tns-controls button:hover {
    background: #2f80ed;
    color: #fff
}

.pricing-style-4 .pricing-active .single-pricing {
    background: #fff;
    border-radius: 5px;
    margin: 30px 15px;
    padding: 45px 40px;
    border: 1px solid transparent;
    transition: all .3s ease-out 0s;
    position: relative;
    text-align: center;
    box-shadow: 0 0 30px rgba(218, 211, 211, .42)
}

.pricing-style-4 .pricing-active .single-pricing.active {
    transform: scale(1.15);
    z-index: 9
}

@media only screen and (min-width: 768px) and (max-width: 991px),(max-width: 767px) {
    .pricing-style-4 .pricing-active .single-pricing {
        padding: 40px 25px;
        margin-bottom: 100px
    }
}

.pricing-style-4 .pricing-active .single-pricing h6 {
    color: #585978;
    margin-bottom: 15px
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .pricing-style-4 .pricing-active .single-pricing h6 {
        font-size: 16px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-style-4 .pricing-active .single-pricing h6 {
        font-size: 16px
    }
}

.pricing-style-4 .pricing-active .single-pricing h4 {
    margin-bottom: 20px;
    font-weight: 500
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .pricing-style-4 .pricing-active .single-pricing h4 {
        font-size: 24px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-style-4 .pricing-active .single-pricing h4 {
        font-size: 24px
    }
}

.pricing-style-4 .pricing-active .single-pricing h3 {
    margin-bottom: 18px;
    color: #2f80ed
}

.pricing-style-4 .pricing-active .single-pricing ul {
    margin-bottom: 30px
}

.pricing-style-4 .pricing-active .single-pricing ul li {
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 12px
}

.about-style-4 {
    position: relative;
    z-index: 1
}

.about-style-4 .about-content-wrapper ul {
    padding-bottom: 25px
}

.about-style-4 .about-content-wrapper ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px
}

.about-style-4 .about-content-wrapper ul li i {
    width: 16px;
    height: 16px;
    margin-right: 15px;
    margin-top: 4px;
    font-weight: 700
}

.about-style-4 .about-image {
    margin-top: 30px
}

@media only screen and (min-width: 992px) and (max-width: 1199px),(max-width: 767px) {
    .about-style-4 .about-image img {
        width: 100%
    }
}

.gallery-style-4 {
    padding: 100px 0 70px;
    background: #f3f3f3
}

.gallery-style-4 .single-gallery {
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px
}

.gallery-style-4 .single-gallery:hover .overlay {
    opacity: 1;
    visibility: visible
}

.gallery-style-4 .single-gallery:hover .overlay .action {
    transform: translateY(0)
}

.gallery-style-4 .single-gallery .image {
    position: relative;
    overflow: hidden;
    border-radius: 5px
}

.gallery-style-4 .single-gallery .image img {
    width: 100%
}

.gallery-style-4 .single-gallery .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out 0s;
    background: rgba(47, 128, 237, .3)
}

.gallery-style-4 .single-gallery .overlay .action {
    transform: translateY(20px);
    transition: all .3s ease-out 0s
}

.gallery-style-4 .single-gallery .overlay .action a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #323450;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center
}

.gallery-style-4 .single-gallery .info {
    transition: all .3s ease-out 0s;
    background: #fff;
    margin-left: 30px;
    margin-bottom: 15px;
    padding: 30px 20px;
    border-radius: 5px 0 5px 5px;
    margin-top: -70px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1)
}

.gallery-style-4 .single-gallery .info h5 {
    margin-bottom: 15px
}

.testimonial-style-4 {
    padding: 100px 0
}

.testimonial-style-4 .single-testimonial:hover .content-wrapper {
    box-shadow: 0 5px 25px rgba(218, 211, 211, .3)
}

.testimonial-style-4 .single-testimonial .content-wrapper {
    background: #fff;
    border: 1px solid #f5f4f4;
    border-radius: 10px;
    padding: 35px 24px;
    transition: all .3s ease-out 0s;
    text-align: center;
    margin-bottom: 30px
}

.testimonial-style-4 .single-testimonial .content-wrapper .content {
    position: relative;
    z-index: 1
}

.testimonial-style-4 .single-testimonial .content-wrapper .content p {
    font-size: 20px;
    line-height: 30px
}

.testimonial-style-4 .single-testimonial .content-wrapper .content .quote {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -35px;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 120px;
    line-height: 1;
    color: rgba(88, 89, 120, .05);
    z-index: -1
}

.testimonial-style-4 .single-testimonial .content-wrapper .info {
    margin-bottom: 25px
}

.testimonial-style-4 .single-testimonial .content-wrapper .info .image {
    max-width: 48px;
    width: 100%;
    height: 48px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;
    overflow: hidden
}

.testimonial-style-4 .single-testimonial .content-wrapper .info .image img {
    width: 100%
}

.testimonial-style-4 .single-testimonial .content-wrapper .info .text p {
    font-size: 14px
}

.contact-style-3 {
    background: #f3f3f3;
    padding: 100px 0 70px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.contact-style-3 .contact-form-wrapper form .single-input {
    position: relative;
    margin-bottom: 20px
}

.contact-style-3 .contact-form-wrapper form .single-input label {
    display: block;
    width: 100%;
    margin-bottom: 10px
}

.contact-style-3 .contact-form-wrapper form .single-input textarea, .contact-style-3 .contact-form-wrapper form .single-input input {
    background: #fff;
    border-radius: 5px;
    position: relative;
    padding-right: 20px;
    padding-left: 50px;
    width: 100%;
    border: 1px solid transparent;
    box-shadow: 0 5px 25px rgba(218, 211, 211, .3);
    transition: all .3s ease-out 0s
}

.contact-style-3 .contact-form-wrapper form .single-input textarea::placeholder, .contact-style-3 .contact-form-wrapper form .single-input input::placeholder {
    font-weight: 300;
    opacity: 1;
    color: 585978
}

.contact-style-3 .contact-form-wrapper form .single-input textarea:focus, .contact-style-3 .contact-form-wrapper form .single-input input:focus {
    border-color: #2f80ed
}

.contact-style-3 .contact-form-wrapper form .single-input input {
    height: 56px
}

.contact-style-3 .contact-form-wrapper form .single-input textarea {
    padding: 15px 20px;
    padding-left: 50px;
    resize: none
}

.contact-style-3 .contact-form-wrapper form .single-input i {
    position: absolute;
    left: 21px;
    top: 20px
}

.contact-style-3 .contact-form-wrapper form .form-button {
    padding-top: 10px
}

.contact-style-3 .contact-form-wrapper form .form-button button {
    height: 56px;
    border-radius: 5px
}

.contact-style-3 .contact-form-wrapper form .form-button button i {
    padding-left: 0;
    padding-right: 20px
}

@media only screen and (min-width: 1400px) {
    .contact-style-3 .left-wrapper {
        margin-left: 60px
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .contact-style-3 .left-wrapper {
        margin-left: 40px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),(max-width: 767px) {
    .contact-style-3 .left-wrapper {
        margin-top: 50px
    }
}

.contact-style-3 .left-wrapper .single-item {
    padding: 25px 20px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(218, 211, 211, .3);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    transition: all .3s ease-out 0s
}

.contact-style-3 .left-wrapper .single-item:hover {
    box-shadow: 0 5px 25px rgba(47, 128, 237, .3)
}

.contact-style-3 .left-wrapper .single-item .icon {
    max-width: 54px;
    width: 100%;
    height: 54px;
    border-radius: 50%;
    background: #2f80ed;
    color: #fff;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px
}

.footer-style-4 {
    background: #050706;
    padding-top: 60px;
    border-top: 6px solid #f67590;
}
.footer_in{
    padding: 0 100px 0 100px;
}
.footer_a{
    border-right: 2px solid #fff;
}
.footer_group{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-bottom: 15px;
}
.footer_input1{
    border: 1px solid #fff;
    padding: 0 15px;
    height: 38px;
    width: 40%;
    background: none;
    font-size: 16px;
    color: #fff;
}
.footer_input2{
    width: 90%;
    border: 1px solid #fff;
    padding: 0 15px;
    height: 38px;
    background: none;
    font-size: 16px;
    color: #fff;
}
.footer_btn{
    background: #d92028;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: block;
    width: 30%;
}
.footer_btn:hover{
    color: #fff;
}
.footer_lx{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-bottom: 10px;
}
.footer_lx1{
    width: 20px;
    height: auto;
    overflow: hidden;
    float: left;
    margin-right: 10px;
}
.footer_icon{
    width: 100%;
    height: 20px;
    float: left;
}
.footer_lx2{
    width: calc( 100% - 30px);
    height: auto;
    overflow: hidden;
    float: left;
    font-size: 14px;
    color: #fff;
}
.footer_lx2 a{
    color: #fff;
}
.footer_share{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.footer_share img{
    width: 34px;
    height: auto;
    float: left;
    margin-right: 10px;
}
.footer-style-x {
  background: #d04519;
}
.footer-style-4 .widget-wrapper .footer-widget {
    margin-bottom: 50px
}

.footer-style-4 .widget-wrapper .footer-widget .logo {
    margin-bottom: 30px
}

.footer-style-4 .widget-wrapper .footer-widget p.desc {
    margin-bottom: 30px;
    color: #fff;
}

.erweima{
    text-align: center;
}
.erweima .icon3{
    width: 100%;
}
.erweima .icon3 img{
    width: 120px;
}
.erweima .text{
    color: #fff;
    font-size: 18px;
    line-height: 32px;
}

.footer-style-4 .widget-wrapper .footer-widget .socials {
    justify-content: flex-start
}

.footer-style-4 .widget-wrapper .footer-widget .socials li a {
    background: rgba(47, 128, 237, .4);
    margin: 0;
    margin-right: 10px;
    width: 44px;
    height: 44px;
    font-size: 20px
}

.footer-style-4 .widget-wrapper .footer-widget .socials li a:hover {
    background: #2f80ed
}

.footer-style-4 .widget-wrapper .footer-widget h6 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    margin-top: 10px
}

.footer-style-4 .widget-wrapper .footer-widget .links li a {
    font-size: 16px;
    line-height: 32px;
    color: #585978
}

.footer-style-4 .widget-wrapper .footer-widget .links li a:hover {
    color: #2f80ed
}

.footer-style-4 .widget-wrapper .footer-widget .download-app li a {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 5px;
    background: #fff;
    max-width: 200px;
    width: 100%;
    margin-bottom: 12px
}

.footer-style-4 .widget-wrapper .footer-widget .download-app li a .icon {
    font-size: 35px;
    color: #323450;
    margin-right: 12px
}

.footer-style-4 .widget-wrapper .footer-widget .download-app li a .text {
    font-size: 14px;
    font-weight: 500;
    color: #585978
}

.footer-style-4 .widget-wrapper .footer-widget .download-app li a .text b {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: "Fira Sans", sans-serif;
    color: #323450
}

.footer-style-4 .copyright-wrapper {
    border-top: 1px solid rgba(88, 89, 120, .4);
    padding: 20px 0
}

.footer-style-4 .copyright-wrapper p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.footer-style-4 .copyright-wrapper p a {
    color: inherit;
    padding: 0 0 0 25px;
}

.footer-style-4 .copyright-wrapper p a:hover {
    color: #2f80ed
}

.footer-style-4.footer-dark {
    background: #323450
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget p {
    color: #fff
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget h6 {
    color: #fff
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget .socials li a {
    background: rgba(255, 255, 255, .1)
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget .socials li a:hover {
    background: #2f80ed
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget .links li a {
    color: #fff
}

.footer-style-4.footer-dark .widget-wrapper .footer-widget .links li a:hover {
    color: #2f80ed
}

.footer-style-4.footer-dark .copyright-wrapper p {
    color: rgba(255, 255, 255, .8)
}

.img-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center
}

.socials li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2f80ed;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3px 8px
}

input, textarea, button {
    transition: all .3s ease-out 0s
}

input:focus, textarea:focus, button:focus {
    outline: none;
    box-shadow: none
}

.radius-3 {
    border-radius: 3px
}

.radius-10 {
    border-radius: 10px
}

.radius-30 {
    border-radius: 30px
}

.radius-50 {
    border-radius: 50px
}

.radius-full {
    border-radius: 50%
}

.radius-10-0 {
    border-radius: 10px 0
}

.mt-6 {
    margin-top: 6px
}

.mt-5 {
    margin-top: 5px
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

.mt-20 {
    margin-top: 20px
}

.mt-25 {
    margin-top: 25px
}

.mt-30 {
    margin-top: 30px
}

.mt-35 {
    margin-top: 35px
}

.mt-40 {
    margin-top: 40px
}

.mt-45 {
    margin-top: 45px
}

.mt-50 {
    margin-top: 50px
}

.mt-55 {
    margin-top: 55px
}

.mt-60 {
    margin-top: 60px
}

.mt-65 {
    margin-top: 65px
}

.mt-70 {
    margin-top: 70px
}

.mt-75 {
    margin-top: 75px
}

.mt-80 {
    margin-top: 80px
}

.mt-85 {
    margin-top: 85px
}

.mt-90 {
    margin-top: 90px
}

.mt-95 {
    margin-top: 95px
}

.mt-100 {
    margin-top: 100px
}

.mt-105 {
    margin-top: 105px
}

.mt-110 {
    margin-top: 110px
}

.mt-115 {
    margin-top: 115px
}

.mt-120 {
    margin-top: 120px
}

.mt-125 {
    margin-top: 125px
}

.mt-130 {
    margin-top: 130px
}

.mt-135 {
    margin-top: 135px
}

.mt-140 {
    margin-top: 140px
}

.mt-145 {
    margin-top: 145px
}

.mt-150 {
    margin-top: 150px
}

.mt-155 {
    margin-top: 155px
}

.mt-160 {
    margin-top: 160px
}

.mt-165 {
    margin-top: 165px
}

.mt-170 {
    margin-top: 170px
}

.mt-175 {
    margin-top: 175px
}

.mt-180 {
    margin-top: 180px
}

.mt-185 {
    margin-top: 185px
}

.mt-190 {
    margin-top: 190px
}

.mt-195 {
    margin-top: 195px
}

.mt-200 {
    margin-top: 200px
}

.mt-205 {
    margin-top: 205px
}

.mt-210 {
    margin-top: 210px
}

.mt-215 {
    margin-top: 215px
}

.mt-220 {
    margin-top: 220px
}

.mt-225 {
    margin-top: 225px
}

.mb-6 {
    margin-bottom: 6px
}

.mb-5 {
    margin-bottom: 5px
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-25 {
    margin-bottom: 25px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-35 {
    margin-bottom: 35px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-45 {
    margin-bottom: 45px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-55 {
    margin-bottom: 55px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-65 {
    margin-bottom: 65px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-75 {
    margin-bottom: 75px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-85 {
    margin-bottom: 85px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-95 {
    margin-bottom: 95px
}

.mb-100 {
    margin-bottom: 100px
}

.mb-105 {
    margin-bottom: 105px
}

.mb-110 {
    margin-bottom: 110px
}

.mb-115 {
    margin-bottom: 115px
}

.mb-120 {
    margin-bottom: 120px
}

.mb-125 {
    margin-bottom: 125px
}

.mb-130 {
    margin-bottom: 130px
}

.mb-135 {
    margin-bottom: 135px
}

.mb-140 {
    margin-bottom: 140px
}

.mb-145 {
    margin-bottom: 145px
}

.mb-150 {
    margin-bottom: 150px
}

.mb-155 {
    margin-bottom: 155px
}

.mb-160 {
    margin-bottom: 160px
}

.mb-165 {
    margin-bottom: 165px
}

.mb-170 {
    margin-bottom: 170px
}

.mb-175 {
    margin-bottom: 175px
}

.mb-180 {
    margin-bottom: 180px
}

.mb-185 {
    margin-bottom: 185px
}

.mb-190 {
    margin-bottom: 190px
}

.mb-195 {
    margin-bottom: 195px
}

.mb-200 {
    margin-bottom: 200px
}

.mb-205 {
    margin-bottom: 205px
}

.mb-210 {
    margin-bottom: 210px
}

.mb-215 {
    margin-bottom: 215px
}

.mb-220 {
    margin-bottom: 220px
}

.mb-225 {
    margin-bottom: 225px
}

.ml-6 {
    margin-left: 6px
}

.ml-5 {
    margin-left: 5px
}

.ml-10 {
    margin-left: 10px
}

.ml-15 {
    margin-left: 15px
}

.ml-20 {
    margin-left: 20px
}

.ml-25 {
    margin-left: 25px
}

.ml-30 {
    margin-left: 30px
}

.ml-35 {
    margin-left: 35px
}

.ml-40 {
    margin-left: 40px
}

.ml-45 {
    margin-left: 45px
}

.ml-50 {
    margin-left: 50px
}

.ml-55 {
    margin-left: 55px
}

.ml-60 {
    margin-left: 60px
}

.ml-65 {
    margin-left: 65px
}

.ml-70 {
    margin-left: 70px
}

.ml-75 {
    margin-left: 75px
}

.ml-80 {
    margin-left: 80px
}

.ml-85 {
    margin-left: 85px
}

.ml-90 {
    margin-left: 90px
}

.ml-95 {
    margin-left: 95px
}

.ml-100 {
    margin-left: 100px
}

.mr-6 {
    margin-right: 6px
}

.mr-5 {
    margin-right: 5px
}

.mr-10 {
    margin-right: 10px
}

.mr-15 {
    margin-right: 15px
}

.mr-20 {
    margin-right: 20px
}

.mr-25 {
    margin-right: 25px
}

.mr-30 {
    margin-right: 30px
}

.mr-35 {
    margin-right: 35px
}

.mr-40 {
    margin-right: 40px
}

.mr-45 {
    margin-right: 45px
}

.mr-50 {
    margin-right: 50px
}

.mr-55 {
    margin-right: 55px
}

.mr-60 {
    margin-right: 60px
}

.mr-65 {
    margin-right: 65px
}

.mr-70 {
    margin-right: 70px
}

.mr-75 {
    margin-right: 75px
}

.mr-80 {
    margin-right: 80px
}

.mr-85 {
    margin-right: 85px
}

.mr-90 {
    margin-right: 90px
}

.mr-95 {
    margin-right: 95px
}

.mr-100 {
    margin-right: 100px
}

.pt-6 {
    padding-top: 6px
}

.pt-5 {
    padding-top: 5px
}

.pt-10 {
    padding-top: 10px
}

.pt-15 {
    padding-top: 15px
}

.pt-20 {
    padding-top: 20px
}

.pt-25 {
    padding-top: 25px
}

.pt-30 {
    padding-top: 30px
}

.pt-35 {
    padding-top: 35px
}

.pt-40 {
    padding-top: 40px
}

.pt-45 {
    padding-top: 45px
}

.pt-50 {
    padding-top: 50px
}

.pt-55 {
    padding-top: 55px
}

.pt-60 {
    padding-top: 60px
}

.pt-65 {
    padding-top: 65px
}

.pt-70 {
    padding-top: 70px
}

.pt-75 {
    padding-top: 75px
}

.pt-80 {
    padding-top: 80px
}

.pt-85 {
    padding-top: 85px
}

.pt-90 {
    padding-top: 90px
}

.pt-95 {
    padding-top: 95px
}

.pt-100 {
    padding-top: 100px
}

.pt-105 {
    padding-top: 105px
}

.pt-110 {
    padding-top: 110px
}

.pt-115 {
    padding-top: 115px
}

.pt-120 {
    padding-top: 120px
}

.pt-125 {
    padding-top: 125px
}

.pt-130 {
    padding-top: 130px
}

.pt-135 {
    padding-top: 135px
}

.pt-140 {
    padding-top: 140px
}

.pt-145 {
    padding-top: 145px
}

.pt-150 {
    padding-top: 150px
}

.pt-155 {
    padding-top: 155px
}

.pt-160 {
    padding-top: 160px
}

.pt-165 {
    padding-top: 165px
}

.pt-170 {
    padding-top: 170px
}

.pt-175 {
    padding-top: 175px
}

.pt-180 {
    padding-top: 180px
}

.pt-185 {
    padding-top: 185px
}

.pt-190 {
    padding-top: 190px
}

.pt-195 {
    padding-top: 195px
}

.pt-200 {
    padding-top: 200px
}

.pt-205 {
    padding-top: 205px
}

.pt-210 {
    padding-top: 210px
}

.pt-215 {
    padding-top: 215px
}

.pt-220 {
    padding-top: 220px
}

.pt-225 {
    padding-top: 225px
}

.pb-6 {
    padding-bottom: 6px
}

.pb-5 {
    padding-bottom: 5px
}

.pb-10 {
    padding-bottom: 10px
}

.pb-15 {
    padding-bottom: 15px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-25 {
    padding-bottom: 25px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-35 {
    padding-bottom: 35px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-45 {
    padding-bottom: 45px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-55 {
    padding-bottom: 55px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-65 {
    padding-bottom: 65px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-75 {
    padding-bottom: 75px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-85 {
    padding-bottom: 85px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-95 {
    padding-bottom: 95px
}

.pb-100 {
    padding-bottom: 100px
}

.pb-105 {
    padding-bottom: 105px
}

.pb-110 {
    padding-bottom: 110px
}

.pb-115 {
    padding-bottom: 115px
}

.pb-120 {
    padding-bottom: 120px
}

.pb-125 {
    padding-bottom: 125px
}

.pb-130 {
    padding-bottom: 130px
}

.pb-135 {
    padding-bottom: 135px
}

.pb-140 {
    padding-bottom: 140px
}

.pb-145 {
    padding-bottom: 145px
}

.pb-150 {
    padding-bottom: 150px
}

.pb-155 {
    padding-bottom: 155px
}

.pb-160 {
    padding-bottom: 160px
}

.pb-165 {
    padding-bottom: 165px
}

.pb-170 {
    padding-bottom: 170px
}

.pb-175 {
    padding-bottom: 175px
}

.pb-180 {
    padding-bottom: 180px
}

.pb-185 {
    padding-bottom: 185px
}

.pb-190 {
    padding-bottom: 190px
}

.pb-195 {
    padding-bottom: 195px
}

.pb-200 {
    padding-bottom: 200px
}

.pb-205 {
    padding-bottom: 205px
}

.pb-210 {
    padding-bottom: 210px
}

.pb-215 {
    padding-bottom: 215px
}

.pb-220 {
    padding-bottom: 220px
}

.pb-225 {
    padding-bottom: 225px
}

.pl-6 {
    padding-left: 6px
}

.pl-5 {
    padding-left: 5px
}

.pl-10 {
    padding-left: 10px
}

.pl-15 {
    padding-left: 15px
}

.pl-20 {
    padding-left: 20px
}

.pl-25 {
    padding-left: 25px
}

.pl-30 {
    padding-left: 30px
}

.pl-35 {
    padding-left: 35px
}

.pl-40 {
    padding-left: 40px
}

.pl-45 {
    padding-left: 45px
}

.pl-50 {
    padding-left: 50px
}

.pl-55 {
    padding-left: 55px
}

.pl-60 {
    padding-left: 60px
}

.pl-65 {
    padding-left: 65px
}

.pl-70 {
    padding-left: 70px
}

.pl-75 {
    padding-left: 75px
}

.pl-80 {
    padding-left: 80px
}

.pl-85 {
    padding-left: 85px
}

.pl-90 {
    padding-left: 90px
}

.pl-95 {
    padding-left: 95px
}

.pl-100 {
    padding-left: 100px
}

.pr-6 {
    padding-right: 6px
}

.pr-5 {
    padding-right: 5px
}

.pr-10 {
    padding-right: 10px
}

.pr-15 {
    padding-right: 15px
}

.pr-20 {
    padding-right: 20px
}

.pr-25 {
    padding-right: 25px
}

.pr-30 {
    padding-right: 30px
}

.pr-35 {
    padding-right: 35px
}

.pr-40 {
    padding-right: 40px
}

.pr-45 {
    padding-right: 45px
}

.pr-50 {
    padding-right: 50px
}

.pr-55 {
    padding-right: 55px
}

.pr-60 {
    padding-right: 60px
}

.pr-65 {
    padding-right: 65px
}

.pr-70 {
    padding-right: 70px
}

.pr-75 {
    padding-right: 75px
}

.pr-80 {
    padding-right: 80px
}

.pr-85 {
    padding-right: 85px
}

.pr-90 {
    padding-right: 90px
}

.pr-95 {
    padding-right: 95px
}

.pr-100 {
    padding-right: 100px
}
.xinwen-section a{
    color: #fff;
}
@media screen and (max-width:768px){
    .about-left h2{
        font-size: 20px;
    }
    .about-section h3{
        font-size: 16px;
    }
    .about-con p{
        font-size: 14px;
    }
    .section-title{
        font-size: 18px;
        margin-bottom: 10px !important;
    }
    .xinwen_a{
        padding: 0;
    }
    .xinwen_b h3{
        padding: 0;
        font-size: 18px;
    }
    .xinwen_b p{
        font-size: 14px;
    }
    .xinwen_c h3{
        padding: 0;
        font-size: 18px;
    }
    .xinwen_c p{
        font-size: 14px;
        padding-top: 10px;
    }
    .xinwen_d{
        padding: 0;
    }
    .yizhang-bg{
        padding: 25px;
    }
    .yizhang_b{
        padding: 0;
        text-align: center;
    }
    .footer-style-4{
        padding-top: 30px !important;
    }
    .footer_in{
        padding: 0 25px;
    }
    .footer_a{
        border: 0;
    }
    .footer-style-4 .widget-wrapper .footer-widget{
        margin-bottom: 10px;
    }
    .foot_hide{
        display: none;
    }
    .geren_bg{
        padding: 25px;
    }
    .biaodan_a{
        font-size: 20px;
    }
    .biaodan_a span{
        top:0;
        left:-20px;
    }
    .biaodan_b{
        font-size: 18px;
    }
    .biaodan_c{
        font-size: 16px;
    }
    .biaodan_label1{
        font-size: 16px;
    }
    .in-about-section .pt-80{
        padding-top: 10px !important;
    }
    .in-about-section .pb-80{
        padding-bottom: 10px !important;
    }
    .in-about-left{
        padding: 0 25px;
        text-align: center;
    }
    .in-about-left img{
        width: 100px;
    }
    .in-about-right{
        padding: 0 25px;
    }
    .in-about-right h3{
        font-size: 20px;
    }
    .in-about2-bg{
        padding: 25px;
    }
    .in-about2 h3{
        font-size: 20px;
    }
    .in-about2 p{
        font-size: 14px;
    }
    .tuandui_a h3{
        width: 90%;
    }
    .tuandui-item{
        width: 90%;
    }
    .tuandui_b{
        padding: 15px 0;
    }
    .tuandui_c{
        width: 100%;
    }
    .tuandui_c .tuandui-item{
        width: 90%;
        margin: 0 5% 15px 5%;
    }
    .lianxi_bg{
        padding: 25px;
    }
    .lianxi_a{
        font-size: 22px;
    }
    .lianxi_b{
        font-size: 15px;
    }
    .wenzhang_bg{
        padding: 25px;
    }
    .yinsi_bg{
        padding: 25px;
        font-size: 14px;
    }
    .yinsi_bg p{
        font-size: 14px;
    }

    .icon img{
        width: 72px;
        height: 72px;
    }
    .about-bg{
        background-size: 100% auto;
        padding: 0 15px;
    }
    .about-content-wrapper{
        padding: 0;
    }
    .about-section .mt-85{
        margin-top: 25px;
    }
    .single-about{
        padding: 20px 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .copyright-wrapper span{
        width: 100%;
        display: block;
    }
    .lianxi-b {
        padding-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
    .in-about-left{
        width: 100%;
    }
    .in-about-right{
        width: 100%;
    }
    .licheng-info{
        margin: 10px 20px;
        padding: 15px 15px 15px 15px;
    }
    .licheng-info .shijian{
        bottom: -10px;
        font-size: 30px;
    }
    .licheng-shijian{
        width: 80px;
        height: 80px;
        line-height: 80px;
        background-size: auto 100%;
        font-size: 28px;
        margin-left: 20px;
    }
    .licheng-shijian2{
        width: 80px;
        height: 80px;
        line-height: 80px;
        background-size: auto 100%;
        font-size: 28px;
        margin-right: 20px;
    }
    .ditu{
        padding: 15px;
    }
    .ditu img{
        display: none;
    }
    .ditu-in{
        width: 100%;
        height: auto;
        background: #005ab4;
        margin-bottom: 15px;
        border-radius: 10px;
        padding: 15px;
        position: static;
    }
    .ditu-in .info{
        width: 100%;
        height: auto;
        border-radius: 0;
        padding: 0;
        float: inherit;
        margin: 0;
    }
    .ditu-in .info p{
        text-align: left !important;
    }
    .chanpin-nav-box{
        width: 100%;
        padding: 0;
    }
    .chanpin{
        width: 100%;
    }
    .chanpin-d .col-6{
        width: 100%;
    }
    .chanpin-item{
        padding: 10px;
        height: auto;
    }
}



















