﻿/*通用类*/
* {
    margin: 0;
    padding: 0;
}

body {
    min-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
    background: #fff;
    text-align: justify;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

h1, h2, h3 {
    font-weight: 500;
}

img {
    border: none;
}

a {
    cursor: pointer;
    color: #666;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #f60;
}

ul {
    list-style-type: none;
}

em {
    font-style: normal;
}

.lt {
    float: left;
}

.rt {
    float: right;
}

input.sub, label {
    border: none;
    cursor: pointer;
}

input, textarea {
    font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
    outline: none;
}

table {
    border-collapse: collapse;
}

table td, table th {
    padding: 0;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #999;
}

input::-moz-placeholder, textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999;
}

input:-moz-placeholder, textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999;
}

input[type='button'], input[type='text'], input[type='search'], input[type='submit'], input[type='reset'], input[type='date'], input[type='time'], input[type='number'] {
    -webkit-appearance: none;
}

div.clear {
    font: 0px Arial;
    line-height: 0;
    height: 0;
    overflow: hidden;
    clear: both;
}

/* 布局工具类 */
.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}

.line5 {
    font-size: 1px;
    height: 5px;
    width: 100%;
    clear: both;
}

.line10 {
    font-size: 1px;
    height: 10px;
    width: 100%;
    clear: both;
}

.line20 {
    font-size: 1px;
    height: 20px;
    width: 100%;
    clear: both;
}

/*wrapin 主体容器宽度*/
.wrapin {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    position: fixed;
    z-index: 100;
    width: 100%;
    left: 0;
    top: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: white;
}

.header .logo {
    float: left;
    display: block;
}

.header .logo img {
    display: block;
    height: 60px;
}

.navs {
    float: right;
}

.navs .par {
    float: left;
    position: relative;
    margin: 0 30px;
    line-height: 60px;
    font-size: 18px;
    color: #333333;
}

.navs .par.hover i {
    display: block;
    width: 24px;
    height: 4px;
    background: #2881FC;
    border-radius: 2px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.navs .al {
    float: left;
    position: relative;
    z-index: 100;
    transition: all 0.2s;
    cursor: pointer;
}

.navs .dw {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    padding-top: 20px;
    width: 120px;
    overflow: hidden;
    z-index: 100;
    display: none;
}

.navs ul {
    background: #FFF;
    padding: 0 20px;
    border-radius: 6px;
    text-align: center;
    position: relative;
}

.navs li {
    font-size: 16px;
    height: 47px;
    line-height: 47px;
    border-bottom: 0.5px solid #e6e6e6;
    position: relative;
}

.navs li a {
    color: #333;
}

.navs li a:hover {
    color: #2881FC;
}

.navs li:last-child {
    border: 0;
}

.navs .par2 {
    padding-right: 20px;
}

.navs .par2 .arrow {
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.navs .down {
    float: left;
    position: relative;
    z-index: 100;
    transition: all 0.2s;
    cursor: pointer;
}

.navs .app {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    padding-top: 20px;
    width: 220px;
    z-index: 100;
    display: none;
}

.navs .down .logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    overflow: hidden;
}

.navs .down .qrcode {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    display: none;
    z-index: 10;
    background: #FFF;
    box-shadow: 0px 0px 21px 0px rgba(119, 122, 132, 0.26);
    border-radius: 6px;
    padding: 5px 5px 5px 5px;
}

.navs .down .qrcode::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px; /* 将箭头放在容器右边 */
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid white;
    transform: translate(-50%, -75%);
}

.navs .down li:hover div.qrcode {
    display: block;
}

.banner {
    height: 100vh;
    position: relative;
    background: url(../images/banner.jpg) no-repeat center center;
    background-size: cover;
}

.banner .wp {
    width: 1360px;
    /*height: 560px;*/
    position: absolute;
    top: 60px;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .wp .vdo-box {
    padding: 4px 4px;
    background: rgba(6, 11, 37, 1);
    border-radius: 40px;
    overflow: hidden;
    height: 636px;
    width: 272px;
}

.banner .wp .vdo-box .vdo {
    border-radius: 40px;
    overflow: hidden;

}

.banner .wp .app-info {
    width: 814px;
    height: 513px;
    margin-top: 72px;
    color: rgba(255, 255, 255, 1);
}

.banner .wp .app-info .title {
    width: 813px;
    font-size: 46px;
    font-family: SourceHanSansCN-Bold;
    font-weight: 700;
    text-align: left;
    line-height: 46px;
    margin-left: 1px;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.banner .wp .app-info .item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.banner .wp .app-info .dot {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.banner .wp .app-info .desc {
    font-size: 18px;
    font-family: MicrosoftYaHei;
    line-height: 18px;
    white-space: nowrap;
    overflow-wrap: break-word;
    margin-left: 20px;
}

.banner .wp .app-info .download {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 173px;
    height: 33px;
    margin-top: 20px;
}

.banner .wp .app-info .download-title, .download-subtitle {
    font-size: 12px;
    font-family: MicrosoftYaHei;
    line-height: 24px;
    white-space: nowrap;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
}

.banner .wp .app-info .download-title {
    width: 108px;
}

.banner .wp .app-info .download-subtitle {
    width: 172px;
    margin-top: 8px;
}

.banner .wp .app-info .icon-box {
    width: 140px;
    height: 140px;
    margin-top: 100px;
    background-color: rgba(255, 255, 255, 1);
}


.banner .info {
    color: #fff;
    width: 280px;
    float: left;
    padding-top: 200px;
}

.banner .info1 {
    float: left;
    margin-left: 30px;
    margin-right: 100px;
}

.banner .info2 {
    float: left;
    margin-left: 30px;
}

.banner ul {
    width: 130px;
    text-align: center;
}

.banner .code {
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 5px;
    margin: 30px 0 20px 0;
}

@-webkit-keyframes mouseAni {
    from {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 6px);
        -webkit-transform: translate(0, 6px);
    }

    to {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }
}

@keyframes mouseAni {
    from {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 6px);
        -webkit-transform: translate(0, 6px);
    }

    to {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }
}

.banner .jt {
    width: 18px;
    height: 18px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear; /*循环播放*/
    -webkit-animation-name: mouseAni;
    animation-name: mouseAni;
}

.banner .jt1 {
    margin-left: -475px;
}

.banner .jt2 {
    margin-left: 210px;
}

.ba_item {
    height: 80px;
    padding: 10px;
    background: #212020;
    border-radius: 5px;
}

.ba_item .code2 {
    display: block;
    float: left;
    width: 80px;
    height: 80px;
    border-radius: 5px;
}

.ba_item dl {
    float: right;
    width: 170px;
    padding-top: 7px;
}

.ba_item dt {
    height: 38px;
}

.ba_item dd {
    line-height: 42px;
    font-size: 14px;
}

.banner .bt {
    padding-top: 80px;
}

.banner .bt dd {
    font-size: 18px;
    line-height: 2;
}

/*标签*/
.banner .stat {
    height: 140px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}

.banner .stat .group {
    background-color: rgba(255, 255, 255, 0.76);
    border-radius: 10px;
    width: 1400px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.banner .stat .text-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80px;
}

.banner .stat .text-wrapper {
    width: 177px;
    height: 43px;
    overflow-wrap: break-word;
    font-size: 0;
    font-family: DINAlternate-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 56px;
}

.banner .stat .big {
    color: rgba(255, 132, 1, 1);
    font-size: 56px;
    line-height: 56px;
}

.banner .stat .small {
    color: rgba(255, 132, 1, 1);
    font-size: 18px;
    line-height: 56px;
}

.banner .stat .label {
    font-size: 16px;
    font-family: MicrosoftYaHei;
    line-height: 16px;
    margin-top: 23px;
    color: rgba(0, 0, 0, 1);
}

.banner .stat .divider {
    width: 1px;
    height: 80px;
    border: 1px solid rgba(187, 194, 213, 1);
}

/*轮播图*/
.ba_slider {
    height: 900px;
}

.ba_slider .swiper-pagination {
    bottom: 30px !important;
}

.ba_slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    margin: 0 15px !important;
}

.ba_slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.ba_slider .wp {
    width: 1480px;
    margin: 0 auto;
    color: #fff;
    height: 900px;
    position: relative;
}

.ba_slider dl {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    overflow: hidden; /* 隐藏溢出文本 */
    white-space: nowrap; /* 保持文本在一行 */
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end); /* 去掉光标动画 */
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

.ba_slider dt {
    font-size: 46px;
    font-weight: bold;
    line-height: 90px;
}

.ba_slider dd {
    font-size: 24px;
    line-height: 34px;
    color: #bbb;
}

.ba_slider .photo {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.htab_outer.after {
    background: #eee;
}

.h_tabs {
    width: 1360px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 80px 0 50px 0;
}

.h_tabs2 {
    background: #f3f3f3;
}

.h_tabs .handle {
    text-align: center;
    padding-bottom: 40px;
}

.h_tabs .btn {
    display: inline-block;
    width: 220px;
    height: 80px;
    line-height: 80px;
    border-radius: 40px;
    margin: 0 20px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
}

.h_tabs .hover {
    color: #ffffff;
    background: #2881FC;
}

.ht_con {
    width: 1400px;
    display: none;
}

.show {
    display: block;
}

.ht_item {
    float: left;
    display: block;
    width: 426px;
    margin: 0 40px 0 0;
}

.ht_item .photo {
    display: block;
    width: 100%;
    height: 330px;
    position: relative;
    overflow: hidden;
    border-radius: 50px 10px 50px 10px;
    transition: all 0.3s;
    background: #f3f3f3;
}

.ht_item .photo .co {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -60px;
}

.ht_item .intro {
    position: absolute;
    right: 0;
    width: 260px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ht_item .t1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 2.2;
}

.ht_item .w {
    padding-left: 35px;
    background: url(../images/wx2.png) no-repeat left center;
    background-size: auto 30px;
}

.ht_item .s1 {
    font-size: 12px;
    line-height: 1.6;
}

.ht_item .s2 {
    font-size: 12px;
    line-height: 1.6;
    color: #1a6cec;
}

.ht_item .flg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all 0.3s;
}

.ht_item .photo:hover .flg {
    opacity: 1;
    transition: all 0.3s;
}

.ht_item .photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ht_item .photo:hover dl {
    top: 66px;
    transition: all 0.3s;
}

.ht_item dl {
    width: 160px;
    position: absolute;
    top: -236px;
    left: 50%;
    margin-left: -80px;
    z-index: 20;
    transition: all 0.3s;
}

.ht_item dt img {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 8px;
}

.ht_item dd {
    line-height: 3;
    text-align: center;
    color: #fff;
}

.ht_item .bt {
    width: 380px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    bottom: -100px;
    left: 50%;
    margin-left: -190px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
    z-index: 20;
}

.ht_item:hover .bt {
    bottom: 0;
}

.ht_item .sin {
    display: inline-block;
    padding-left: 40px;
    background: url(../images/wx2.png) no-repeat left center;
}

.ht_item .name {
    font-size: 18px;
    line-height: 80px;
    height: 80px;
    text-align: center;
}

.ht_item .nm {
    display: inline-block;
    max-width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer {
    color: #E5E6FF;
    background: linear-gradient(to right, #625AFC, #4476F9);
}

.footer .waves {
    position: relative;
    width: 100%;
    height: 80px;
    margin-bottom: -7px;
    min-height: 50px;
    max-height: 100px;
    transform: scaleY(-1);
}

.footer .parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.footer .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.footer .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.footer .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.footer .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 240px;
    }

    h1 {
        font-size: 24px;
    }
}

.footer .wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.ft_left {
    width: 540px;
}

.ft_title {
    height: 44px;
    line-height: 44px;
    font-size: 18px;
    font-weight: bold;
}

.ft_left .tel {
    height: 80px;
    margin-top: 56px;
    padding-left: 75px;
    background: url(../images/ft_tel.png) no-repeat left center;
}

.ft_left .tel dt {
    font-size: 34px;
    color: #fff;
    font-weight: bold;
    line-height: 50px;
}


.ft_left .tel dd {
    line-height: 16px;
}

.ft_ct {
    width: 580px;
    float: left;
}

.ft_ct li {
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
    padding-left: 30px;
}

.ft_ct .l1 {
    background: url(../images/fc_l1.png) no-repeat left center;
}

.ft_ct .l2 {
    background: url(../images/fc_l2.png) no-repeat left center;
}

.ft_ct .l3 {
    background: url(../images/fc_l3.png) no-repeat left center;
}


.ft_dhs {
    width: 580px;
    float: right;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ft_dhs a {
    font-size: 16px;
    color: #E5E6FF;
}

.ft_dhs a:hover {
    color: #fff;
}


.ft_right {
    float: right;
    width: 580px;
}

.ft_right dl {
    width: 150px;
    text-align: center;
}

.ft_right img {
    display: block;
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.ft_right dd {
    font-size: 12px;
}

.fri_links {
    padding: 50px 0 30px 0;
    line-height: 25px;
}

.fri_links span {
    float: left;
}

.fri_links a {
    float: left;
    margin-left: 15px;
    color: #E5E6FF;
}

.fri_links a:hover {
    color: #fff;
    text-decoration: underline;
}

.ft_copy {
    text-align: center;
    border-top: 1px solid rgba(229, 230, 255, 0.2);
    padding: 40px 0;
    color: #E5E6FF;
}

.ft_copy a {
    color: #E5E6FF;
}

.ft_copy a:hover {
    color: #fff;
}

.det_left {
    float: left;
    width: 930px;
    padding-bottom: 50px;
}

.now_pos {
    height: 65px;
    line-height: 65px;
    color: #999;
}

.now_pos a {
    color: #999;
}

.det_left .title {
    font-size: 30px;
    font-weight: bold;
}

.det_left .tags {
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #efefef;
    clear: both;
    font-size: 16px;
}

.det_left .tags span {
    float: left;
    margin-right: 50px;
}

.det_article {
    padding: 20px 0 0 0;
    font-size: 18px;
}

.det_article p {
    line-height: 1.6;
    padding: 13px 0;
}

.det_article img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
}

.det_right {
    float: right;
    width: 312px;
}

.dr_head {
    height: 86px;
    line-height: 86px;
    position: relative;
}

.dr_head .change {
    position: absolute;
    right: 0;
    top: 0;
    color: #8f8f8f;
    display: inline-block;
    padding-left: 30px;
    background: url(../images/dr_change.png) no-repeat left center;
}

.dr_head .tit {
    font-size: 20px;
    font-weight: bold;
}

.dr_item {
    display: block;
    height: 110px;
}

.dr_item .photo {
    float: left;
    display: block;
    width: 120px;
    height: 80px;
}

.dr_item dl {
    float: right;
    width: 183px;
    position: relative;
    top: -5px;
}

.dr_item dt {
    font-size: 18px;
    line-height: 30px;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    color: #333;
}

.dr_item dd {
    color: #999;
    line-height: 1.8;
}

.dr_list li {
    height: 58px;
    line-height: 58px;
    clear: both;
    font-size: 18px;
}

.dr_list li span {
    display: inline-block;
    max-width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
}

.dr_list em {
    float: left;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 19px 0 0 5px;
    border-radius: 3px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    font-size: 14px;
}

.dr_list .hot {
    background: #ff5a00;
}

.dr_list .new {
    background: #f23f54;
}

.alert_flog {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.rz_win {
    position: fixed;
    z-index: 220;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    display: none;
}

.rz_fm {
    width: 400px;
    padding: 50px 50px 60px 50px;
}

.rz_fm .title {
    height: 74px;
    line-height: 50px;
    font-size: 30px;
    font-weight: bold;
    color: #22223c;
}

.rz_fm .title2 {
    text-align: center;
}

.rz_fm .top_close {
    width: 85px;
    height: 85px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    background: url(../images/close.png) no-repeat center center;
    cursor: pointer;
}

.rz_fm .in {
    position: relative;
    background: #f7f7f7;
    height: 46px;
    margin-bottom: 18px;
    position: relative;
    border-radius: 6px;
    font-size: 16px;
    color: #22223c;
    overflow: hidden;
}

.rz_fm select {
    border: 1px solid #ccc;
    width: 80px;
    height: 32px;
    margin: 8px 12px 0 0;
    float: left;
    outline: none;
    font-size: 16px;
}

.rz_fm .tit {
    position: absolute;
    left: 20px;
    top: 0;
    line-height: 46px;
}

.rz_fm .sels {
    float: right;
    line-height: 46px;
}

.rz_fm .sel {
    float: left;
    padding: 0 20px;
    margin-left: 20px;
    background: url(../images/sel.png) no-repeat left center;
    cursor: pointer;
}

.rz_fm .sel.hover {
    background-image: url(../images/selh.png);
}

.rz_fm .text {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    height: 46px;
    border: 0;
    line-height: 46px;
    text-align: right;
    color: #222;
    font-size: 16px;
    background: none;
}

.rz_fm .tel {
    padding-right: 5px;
}

.rz_fm .xy {
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
    color: #a5a5b5;
    background: url(../images/sel.png) no-repeat left center;
    cursor: pointer;
}

.rz_fm .xy.hover {
    background-image: url(../images/selh.png);
}

.rz_fm .xy a {
    color: #2881FC;
}

.rz_fm .send {
    display: block;
    width: 100%;
    text-align: center;
    height: 46px;
    line-height: 46px;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    background: #2881FC;
}

.rz_fm .city {
    padding-right: 40px;
    background: url(../images/sel2.png) no-repeat right center;
    cursor: pointer;
}

.rz_fm .cds {
    background: #2881FC;
    padding: 10px;
    border-radius: 10px;
    width: 150px;
    color: #fff;
    text-align: center;
}

.rz_fm .cds img {
    display: block;
    width: 150px;
    height: 150px;
}

.rz_fm .cds dt {
    font-size: 18px;
    line-height: 2;
}

.rz_tel {
    clear: both;
    height: 70px;
    line-height: 70px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 18px;
    padding-left: 100px;
    background: #f9faff url(../images/rz_tel.png) no-repeat 68px center;
}

.rz_tel strong {
    padding-left: 10px;
}

.jm_win {
    position: fixed;
    z-index: 220;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    display: none;
    width: 800px;
    overflow: hidden;
}

.mui-poppicker {
    width: 750px;
    left: 50%;
    margin-left: -375px;
}

.jm_left {
    width: 300px;
    height: 480px;
    background: url(../images/jm_left.jpg) no-repeat left center;
    box-sizing: border-box;
    padding: 45px 0 0 50px;
}

.jm_left .tel {
    height: 60px;
    line-height: 60px;
    padding-left: 40px;
    font-size: 18px;
    background: url(../images/jm_tel.png) no-repeat left center;
    color: #fff;
}

.jm_left .rx {
    height: 60px;
    line-height: 60px;
    padding-left: 40px;
    font-size: 18px;
    background: url(../images/jm_rx.png) no-repeat left center;
    color: #fff;
}

.jm_left .code {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin: 0 auto 50px auto;
}

.jm_left .num {
    padding-left: 40px;
    height: 46px;
    border-radius: 10px;
    line-height: 46px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.ab_banner {
    height: 540px;
    background: url(../images/ab_banner.jpg) no-repeat top center;
}

.ab_banner .tit {
    width: 1360px;
    margin: 0 auto;
    padding-top: 60px;
    line-height: 480px;
    font-size: 46px;
    font-weight: bold;
    color: #fff;
}

.ab_map {
    height: 395px;
    background: url(../images/ab_map.jpg) no-repeat top center;
}

.ab_intro {
    width: 1360px;
    margin: 60px auto 80px auto;
    text-align: center;
}

.ab_intro .title {
    font-size: 46px;
    font-weight: bold;
    line-height: 104px;
}

.ab_intro p {
    font-size: 16px;
    line-height: 32px;
}

.ab_tags {
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
}

.ab_tags .item {
    width: 33%;
}

.ab_tags .line {
    height: 160px;
    border-left: 1px solid #ececec;
}

.ab_tags .ico {
    display: block;
    width: 68px;
    height: 68px;
    margin: 0 auto;
}

.ab_tags dt {
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    padding-top: 15px;
    font-size: 20px;
}

.ab_tags dd {
    color: #666;
}

.ab_his {
    background: #ffffff;
}

.ab_his .title {
    line-height: 185px;
    text-align: center;
    font-size: 46px;
    font-weight: bold;
}

.ab_his .wp {
    padding: 0 0 50px 0;
    position: relative;
    width: 1360px;
    margin: 0 auto;
}

.ab_his .line {
    height: 100%;
    position: absolute;
    left: 275px;
    top: 0;
    border-left: 1px solid #c9ccd8;
}

.his_item {
    position: relative;
    padding-top: 15px;
}

.his_item .date1 {
    line-height: 70px;
    text-align: right;
    width: 230px;
    float: left;
    font-size: 18px;
}

.his_item .date2 {
    line-height: 70px;
    width: 230px;
    float: right;
    width: 1020px;
    font-size: 24px;
    font-weight: bold;
}

.his_item .yuan {
    width: 12px;
    height: 12px;
    background: #4d4f5b;
    border-radius: 100%;
    font-size: 1px;
    border: 6px solid #bdbec2;
    position: absolute;
    left: 264px;
    top: 40px;
    z-index: 10;
}

.his_item .yuan:hover {
    background: #445cc6;
    border: 6px solid #bac2e6;
}

.his_item ul {
    float: right;
    width: 1020px;
    line-height: 46px;
    font-size: 18px;
}

.his_item li {
    position: relative;
}

.his_item i {
    width: 12px;
    height: 12px;
    background: #4d4f5b;
    border-radius: 100%;
    font-size: 1px;
    position: absolute;
    left: -71px;
    top: 15px;
    z-index: 10;
}

.his_item i:hover {
    background: #445cc6;
}

.er_win {
    position: fixed;
    z-index: 500;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
}