* {
    padding: 0;
    margin: 0
}

a {
    color: #5d5d5e;
    transition: all 0.3s ease-in-out 0s;
}

a:hover {
    color: #3e6ed4;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
}

&::-webkit-scrollbar {
    display: none;
}

.css3 {
    /*transition: all 0.3s ease-in-out 0s;*/



    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    -webkit-transition-duration: 1000ms;
    transition-duration: 1000ms;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.33, 0.98);
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.33, 0.98);
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms
}

.css3.animated {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


.rotate {
    transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    /* IE 9 */
    -moz-transform: rotate(7deg);
    /* Firefox */
    -webkit-transform: rotate(7deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(7deg);
    /* Opera */
}

body {}

.wrapper {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.gb-header,
.gb-nav {
    height: 76px;
    z-index: 8;
}

.gb-nav {
    background: rgba(255, 255, 255, 0.25);
    z-index: 99999;
}

.gb-nav,
.gb-header {
    top: -86px;
    /*css3*/

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
}

.gb-nav.show,
.gb-header.show {
    top: 0;
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    /* margin-top: -87px; */
}

.gb-nav.show {
    background: rgba(0, 0, 0, 0.7);
}

.gh {
    float: right;
    height: 34px;
    width: 34px;
    margin-right: 30px;
    margin-top: 25px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    cursor: pointer;
}

.gh.selected {
    transform: rotate(90deg);
}

.gh a {
    background-color: #000;
    display: block;
    height: 4px;
    margin-top: -2px;
    position: relative;
    top: 50%;
    transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    width: 100%;
}

.gh:hover a:before {
    transform: translateY(-2px) rotate(0deg);
    -webkit-transform: translateY(-2px) rotate(0deg);
    -ms-transform: translateY(-2px) rotate(0deg);
}

.gh:hover a:after {
    transform: translateY(2px) rotate(0deg);
    -webkit-transform: translateY(2px) rotate(0deg);
    -ms-transform: translateY(2px) rotate(0deg);
}

.gh.selected:hover a:before {
    transform: translateY(0px) rotate(-55deg);
    -webkit-transform: translateY(0px) rotate(-55deg);
    -ms-transform: translateY(0px) rotate(-55deg);
}

.gh.selected:hover a:after {
    transform: translateY(0px) rotate(55deg);
    -webkit-transform: translateY(0px) rotate(55deg);
    -ms-transform: translateY(0px) rotate(55deg);
}

.gh a:after,
.gh a:before {
    background-color: #000;
    content: "";
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    width: 100%;
}

.gh a:after {
    top: 10px;
}

.gh a:before {
    top: -10px;
}

.gh.selected a:after,
.gh.selected a:before {
    top: 0;
}

.gh.selected a:before {
    transform: translateY(0px) rotate(-45deg);
    -webkit-transform: translateY(0px) rotate(-45deg);
    -ms-transform: translateY(0px) rotate(-45deg);
}

.gh.selected a:after {
    transform: translateY(0px) rotate(45deg);
    -webkit-transform: translateY(0px) rotate(45deg);
    -ms-transform: translateY(0px) rotate(45deg);
}

.gh.selected a {
    background-color: transparent !important;
}

.gb-nav.show .gh a,
.gb-nav.show .gh a:after,
.gb-nav.show .gh a:before {
    background-color: #fff;
}

.header .logo,
.gb-nav .logo {
    float: left;
    display: inline;
}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header .logo img {
    width: 144px;
    height: 22px;
}

.gb-nav {
    display: flex;
    justify-content: space-between;
}

.gb-nav .logo {
    position: relative;
}

.gb-nav .logo img {
    position: absolute;
    left: 243px;
    top: 0;
    width: 144px;
    height: 22px;
    margin-top: 29px;
}

.gb-nav .logo img.img2 {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
}

.gb-nav.show .logo img.img2 {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
}

.header .nav {
    float: left;
    display: inline;
}

.header .nav li {
    float: left;
    display: inline;
    margin-left: 60px;
    font-size: 14px;
}

.header .nav li a {
    display: block;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    text-decoration: none;
}

.header .nav li a .sousuo {
    width: 16px;
    height: 16px;
    background: transparent;
    vertical-align: top;
}

.header .nav li a .phone {
    width: 24px;
    height: 24px;
    background: transparent;
}

.header .nav li span {
    display: block;
    /*css3*/
    color: white;

    transition: all 0.3s ease-in-out 0s;
}

.header .nav li span.s2 {
    color: #ffb642;
    font-weight: bold;
}

.header .nav li a:hover .s1,
.header .nav li.selected a .s1 {
    margin-top: -24px;
}

.section {
    position: relative;
}

.page1 {
    background: url() no-repeat center;
    background-size: cover !important;
    height: 886px;
}

.header_bg {
    background: url(../information/5717.png) no-repeat center;
    background-size: cover !important;
    height: 3.1771rem;
    position: relative;
}

.van-tabs__line {
    background-color: #0086CD !important;
}

.header_InformationCenter {
    position: absolute;
    top: 1.3333rem;
    left: 50%;
    transform: translateX(-50%);
}

.header_InformationCenter .InformationCenter {
    font-weight: 700;
    font-size: .2917rem;
    text-align: center;
    color: #fff;
}

.header_InformationCenter .service {
    font-weight: 700;
    font-size: .1146rem;
    text-align: center;
    color: #fff;
    margin-top: .1042rem;
    margin-bottom: .4792rem;
}

.arrow {
    width: .4531rem;
    height: .4531rem;
    position: absolute;
    left: 50%;
    margin-left: -0.2292rem;
    /* bottom: 110px; */
    cursor: pointer;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.arrow table {
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
    top: 5px;
}

.arrow table img {
    /* width: 70%;
	height: 70%; */
    width: .2917rem;
    height: .2917rem;
    /* margin-top: -3px;
    margin-left: 2px; */
}

.arrow:before,
.arrow:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    pointer-events: none
}

.arrow:before {
    width: .4583rem;
    height: .4583rem;
    border: .0052rem solid #fff;
    -moz-transition: all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -o-transition: all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-transition: all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

.arrow:after {
    width: .4479rem;
    height: .4479rem;
    border: .0104rem solid #fff;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0;
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    -moz-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1)
}

.arrow:hover:before {
    opacity: 0;
    -moz-transform: scale(1.5, 1.5);
    -ms-transform: scale(1.5, 1.5);
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
    -moz-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.arrow:hover:after {
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
}

.information_container {
    width: 2.3229rem;
}

.information_container img {
    width: 2.3229rem;
    height: 1.7292rem;
}

.information_container p {
    font-weight: 400;
    font-size: .0833rem;
    color: #000;
    margin-top: .125rem;
    margin-bottom: .0521rem;
}

.information_container div {
    font-weight: 500;
    font-size: .0938rem;
    color: #000;
    line-height: .1563rem;
}

.showbg {
    background: rgba(0, 0, 0, 0.7);
}

.information_flex {
    display: flex;
    flex-wrap: wrap;
    row-gap: .1563rem;
    column-gap: .2656rem;
    width: 7.5rem;
    margin: .2604rem auto;
}

.mobile_Information {
    display: none;
}

.green_bg {
    background-image: url(../information/5750@2x.png);
    background-size: 100% 100%;
    display: none;
    text-align: center;
    padding: .4rem 0;
}

.green_bg :first-child {
    font-size: .3733rem;
    color: #fff;
}

.green_bg :last-child {
    font-size: .2133rem;
    color: #fff;
    margin-top: .1333rem;
}

.mobile_footer {
    display: none;
}

.footer_records1 {
    color: #999999ff;
    font-size: .2133rem;
    font-weight: 400;
    margin: 0 15px 5px .4rem;
}

.footer_records2 {
    color: #999999ff;
    font-size: .2133rem;
    font-weight: 400;
    margin: 0 15px .5333rem .4rem;
    height: .8533rem;
}

.mobile_information {
    display: flex;
    flex-wrap: wrap;
    gap: .2917rem;
    width: 7.6042rem;
    margin: 0.2083rem auto;
}
.footer_pd_bg {
	width: 100%;
	height: 300px;
	background-image: url(../image/153@2x.png);
	background-size: cover;
	position: absolute;
	bottom: calc(100% * -1%);
	/* background-color: #ffffff; */
    display: block;
}
.van-tabs__wrap {
    margin: 0 auto;
    width: 3.125rem;
}

@media screen and (max-width: 375px) {
    .green_bg {
        display: block;
    }

    .header_bg {
        display: none;
    }

    .mobile_Information {
        display: block;
    }

    .mobile_footer {
        display: block;
    }

    .information_flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        row-gap: .5333rem;
        margin-bottom: .8rem;
    }

    .information_container {
        width: 9.2rem;
        margin: 0 auto;
    }

    .information_container img {
        width: 9.2rem;
        height: 6.6267rem;
    }

    .information_container p {
        color: #000000ff;
        font-size: .32rem;
        font-weight: 400;
        margin-bottom: .16rem;
    }

    .information_container div {
        color: #000000ff;
        font-size: .4rem;
        font-weight: 400;
        line-height: .5333rem;
    }

    .van-tabs__wrap {
        border-bottom: .0133rem solid #EDEDED !important;
        padding-bottom: .4rem;
        margin-bottom: .4rem;
    }
    .mobile_information {
        display: flex;
        flex-wrap: wrap;
        gap: .2917rem;
        width: 100%;
        margin: 0.2083rem auto;
    }
    .footer_pd_bg{
        display: none;
    }
}

@media screen and (max-width: 414px) {
    .green_bg {
        display: block;
    }

    .header_bg {
        display: none;
    }

    .mobile_Information {
        display: block;
    }

    .information_flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        row-gap: .5333rem;
    }

    .mobile_footer {
        display: block;
    }

    .information_container {
        width: 9.2rem;
        margin: 0 auto;
    }

    .information_container img {
        width: 9.2rem;
        height: 6.6267rem;
    }

    .information_container p {
        color: #000000ff;
        font-size: .32rem;
        font-weight: 400;
        margin-bottom: .16rem;
    }

    .information_container div {
        color: #000000ff;
        font-size: .4rem;
        font-weight: 400;
        line-height: .5333rem;
    }

    .van-tabs__wrap {
        border-bottom: .0133rem solid #EDEDED !important;
        padding-bottom: .4rem;
        margin-bottom: .4rem;
    }
    .mobile_information {
        display: flex;
        flex-wrap: wrap;
        gap: .2917rem;
        width: 100%;
        margin: 0.2083rem auto;
    }
    .footer_pd_bg{
        display: none;
    }
}
@media screen and (max-width: 500px) {
    .green_bg {
        display: block;
    }

    .header_bg {
        display: none;
    }

    .mobile_Information {
        display: block;
    }

    .information_flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        row-gap: .5333rem;
    }

    .mobile_footer {
        display: block;
    }

    .information_container {
        width: 9.2rem;
        margin: 0 auto;
    }

    .information_container img {
        width: 9.2rem;
        height: 6.6267rem;
    }

    .information_container p {
        color: #000000ff;
        font-size: .32rem;
        font-weight: 400;
        margin-bottom: .16rem;
    }

    .information_container div {
        color: #000000ff;
        font-size: .4rem;
        font-weight: 400;
        line-height: .5333rem;
    }

    .van-tabs__wrap {
        border-bottom: .0133rem solid #EDEDED !important;
        padding-bottom: .4rem;
        margin-bottom: .4rem;
        width: 100%;
    }
    .mobile_information {
        display: flex;
        flex-wrap: wrap;
        gap: .2917rem;
        width: 100%;
        margin: 0.2083rem auto;
    }
    .footer_pd_bg{
        display: none;
    }
}
.hrader_page111 {
    padding: .4rem .4rem .4rem .4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.header-img {
    width: 2.5333rem;
    height: .3867rem;
}

.header_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_title img {
    width: .6133rem;
    height: .6133rem;
}

