
body{
    padding: 0;
    margin: 0;
    font-size: 14px;
}
a:hover{
    text-decoration: none;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.nowrap {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ellipsis{
    max-width: 100%;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* 欢迎页面 */
.guide-main{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.guide-header{
    padding: 50px 15px;
}
.guide-header img{
    width: 110px;
}
.guide-content{
    padding: 60px 30px;
    color: white;
    box-sizing: border-box;
}
.guide-content h3{
    font-size: 50px;
}
.guide-content h4{
    font-size: 34px;
    font-weight: 300;
    padding-top: 10px;
}
.guide-content > p{
    margin-top: 50px;
}
.guide-content > p > a{
    display: inline-block;
    line-height: 50px;
    width: 240px;
    color: white;
    border:solid 1px white;
    font-size: 16px;
    text-align: center;
    border-radius: 25px;
}
.guide-footer{
    display: flex;
    justify-content: space-evenly;
    padding: 0 0 50px;
}
.guide-footer-item{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .2);
    border:solid 1px #979797;
    width: 160px;
    height: 80px;
    border-radius: 12px;
    margin-right: 20px;
}

.guide-footer-item:last-child{
    margin: 0;
}

.guide-footer-item > img{
    vertical-align: top;
}

/* header */
.logo{
    padding: 30px 0;
}
.logo a{
    display: inline-block;
}
.logo img{
    height: 50px;
}
.nav{
    display: none;
}
.nav,
.nav-mobile{
    padding: 30px 0;
    text-align: right;
    line-height: 50px;
    font-size: 16px;
}
.nav-mobile a,
.nav span,
.nav a{
    margin-left: 40px;
    color: #000;
}
.nav a.active,
.nav a:hover{
    position: relative;
    color: #00A7EA;
}
.nav a:hover::after,
.nav a.active::after{
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 3px;
    background: #00A7EA;
    content: " ";
}
.navImg {
    width: 26px;
    height: 26px;
    vertical-align: middle;
}

/* 移动端导航 */
/*.nav-mobile-lay{*/
/*    display: none;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    z-index: 99;*/
/*}*/
/*.nav-mobile-lay.show{*/
/*    display: block;*/
/*}*/
/*.nav-mobile-back{*/
/*    background: rgba(0, 0, 0, .5);*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    opacity: 0;*/
/*    transform: all .3s;*/
/*}*/
/*.nav-mobile-back.show{*/
/*    opacity: 1;*/
/*}*/
/*.nav-mobile-ul{*/
/*    position: absolute;*/
/*    background: white;*/
/*    right: -50vw;*/
/*    width: 50vw;*/
/*    height: 100vh;*/
/*    transition: all .3s;*/
/*    padding-top: 100px;*/
/*}*/
/*.nav-mobile-ul.show{*/
/*    right: 0;*/
/*}*/
/*.nav-mobile-ul li{*/
/*    text-align: center;*/
/*    line-height: 50px;*/
/*    font-size: 16px;*/
/*    border-bottom: solid 1px #DEDEDE;*/
/*}*/
/*.nav-mobile-ul li:last-child{*/
/*    border-bottom: none;*/
/*}*/
/*.nav-mobile-ul li a{*/
/*    color: #000;*/
/*}*/
/*.nav-mobile-ul li a.active{*/
/*    color: #00A7EA;*/
/*}*/
/*.nav-mobile-remove{*/
/*    position: absolute;*/
/*    right: 20px;*/
/*    top: 40px;*/
/*    font-size: 20px;*/
/*}*/
/* 移动端导航 */
.nav-mobile-lay{
    width: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 99;
    transition: top .4s;
}
.nav-mobile-lay.show{
    top: 0;
}
.nav-mobile-ul{
    transition: all .3s;
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgba(0, 0, 0, .8);
}
.nav-mobile-ul li{
    text-align: center;
    line-height: 60px;
    font-size: 20px;
}
.nav-mobile-ul li a{
    color: white;
}
.nav-mobile-ul li a.active{
    color: #00A7EA;
}
.nav-mobile-remove{
    position: absolute;
    right: 20px;
    top: 40px;
    font-size: 20px;
    color: white;
}

/* 首页轮播图 */
.banner{
    overflow: hidden;
    background: #eee;
    position: relative;
}
.banner-swiper-item{
    padding-top: 29%;
    background-position: center;
    background-size: cover;
    position: relative;
}
.banner-swiper-page{
    width: 100%;
    position: absolute;
    bottom: 8px;
    left: 0;
}
.swiper-pagination-bullet {
    width:30px;
    border-radius: 4px;
    background-color: #fff;
    height: 4px;
    margin: 0 5px;
    opacity: .5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}

/* 首页标题 */
.index-title{
    text-align: center;
    font-size: 28px;
    padding: 40px 0;
}
.index-title b{
    padding-bottom: 10px;
    border-bottom: solid 3px #000;
    text-align: center;
}

/* 首页 - 推荐 */
.index-recommended{
    padding-bottom: 20px;
}
.index-recommended-content{
    display: block;
    margin-bottom: 30px;
    height: 260px;
    position: relative;
    background-position: center;
    background-size: cover;
}
.index-recommended-behind{
    height: 230px;
}
.index-recommended-href{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.index-recommended-main{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 57, 116, 0.4);
    padding: 15px 20px;
    box-sizing: border-box;
    color: white;
}
.index-recommended-title{
    font-size: 16px;
    font-weight: bold;
}
.index-recommended-submit{
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    padding-top: 4px;
}

/* 首页广告 */
.ad-content{
    width: 100%;
    vertical-align: top;
}

/* 首页 - 新闻与活动 */
.index-new-more{
    text-align: center;
    padding: 10px 0 60px;
}
.index-new-item{
    margin-bottom: 30px;
}
.index-new-cover{
    position: relative;
    width: 100%;
    padding-top: 62%;
    background-position: center;
    background-size: cover;
}
.index-new-tips{
    position: absolute;
    top: 0;
    left: 0;
    background: #00A7EA;
    width: 70px;
    height: 30px;
    line-height: 30px;
    color: white;
    text-align: center;
}
.index-new-content{
    background: #F7F7F7;
    border:solid 1px #DEDEDE;
    padding: 30px 20px 40px;
}
.index-new-title{
    font-size: 16px;
    font-weight: bold;
    line-height: 36px;
    margin-bottom: 10px;
}
.index-new-submit{
    display: flex;
    flex-direction: column;
    min-height: 60px;
    justify-content: center;
}
.index-new-address,
.index-new-time{
    line-height: 30px;
    font-weight: 300;
}
.index-new-address img,
.index-new-time img{
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-bottom: 3px;
    margin-right: 8px;
}
.index-new-info{
    margin-top: 15px;
    text-align: justify;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 30px;
    height: 90px;
}
.index-new-more a{
    line-height: 40px;
    width: 150px;
    display: inline-block;
    text-align: center;
    background: #F7F7F7;
    border:solid 1px #DEDEDE;
    margin: 0 10px;
    font-size: 14px;
    color: #000;
}
.index-new-more a:hover{
    background: #00A7EA;
    color: white;
}

/* 服务 */
.service-class{
    padding: 60px 0;
    overflow: hidden;
}
.service-class-title{
    position: relative;
    padding-bottom: 70px;
    text-align: center;
    font-size: 28px;
}
.service-class-title::after{
    position: absolute;
    bottom: 60px;
    left: 50%;
    width: 60px;
    height: 3px;
    content: " ";
    background: #000;
    border-radius: 1px;
    margin-left: -30px;
}
.service-class-item{
    text-align: center;
}
.service-class-item > img{
    width: 80px;
    height: 80px;
}
.service-class-item > h4{
    font-size: 20px;
    margin-top: 20px;
}
.service-banners{
    padding-bottom: 60px;
}
.service-banners-item{
    width: 100%;
    padding-top: 50%;
    position: relative;
    background-size: cover;
    background-position: center;
}
.service-banners-content{
    position: absolute;
    top: 0;
    left: 5%;
    height: 100%;
    text-align: center;
    width: 90%;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.service-banners-content h3{
    font-size: 22px;
}
.service-banners-content p{
    font-size: 14px;
    margin-top: 10px;
    font-weight: normal;
}

/* 新闻、活动 */
.news-content{
    padding: 45px 0;
}
.news-item{
    padding: 15px 0;
}
.news-item-href{
    background: #F8F8F8;
    display: block;
    color: #000;
}
.news-cover{
    width: 100%;
    padding-top: 56%;
    background-position: center;
    background-size: cover;
}
.news-main{
    padding: 20px;
}
.news-title{
    font-size: 16px;
    line-height: 30px;
    height: 60px;
}
.news-time{
    margin-top: 20px;
    line-height: 30px;
    color: #ABABAB;
}
.news-item-href:hover .news-title{
    color: #00A7EA;
}
.news-pages{
    padding: 30px 0 60px;
    text-align: center;
}
.news-pages a{
    width: 30px;
    height: 30px;
    line-height: 28px;
    color: #000;
    display: inline-block;
    border:solid 1px #DEDEDE;
    background-color: white;
    border-radius: 3px;
    box-sizing: border-box;
    margin: 0 5px;
    font-size: 14px;
}
.news-pages a:hover,
.news-pages a.active{
    color: #00A7EA;
    border-color: #00A7EA;
}
.news-pages-icon{
    background-position: center;
    background-size: 6px;
    vertical-align: top;
    background-position: center;
    background-repeat: no-repeat;
}
.news-pages-icon.back{
    background-image: url(../img/back_icon.png);
}
.news-pages-icon.next{
    background-image: url(../img/next_icon.png);
}
.news-pages-icon.back:hover,
.news-pages-icon.back.active{
    background-image: url(../img/back_show_icon.png);
}
.news-pages-icon.next:hover,
.news-pages-icon.next.active{
    background-image: url(../img/next_show_icon.png);
}

/* 公共样式背景 */
.ce-img {
    position: relative;
}

.ce-img>span {
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.public-title {
    position: relative;
    padding-bottom: 40px;
    display: inline-block;
    font-size: 28px;
}

.public-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 30px;
    background-color: #000;
    width: 50%;
    height: 3px;
}

.secondCont {
    margin: 50px 0;
}
.secondCont .recruit{
    font-size: 16px;
}
.about-banner {
    padding-top: 37%;
}

.about-title {
    position: absolute;
    left: 0;
    top: 24%;
    width: 100%;
    z-index: 8;
    color: #fff;
}

.about-title-name {
    font-size: 38px;
    margin-bottom: 10px;
}

.about-title-tips {
    opacity: .9;
    font-size: 16px;
}

/* 二级页面 - 站内搜索 */
.searchList {
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.searchList-null{
    line-height: 40px;
    color: gray;
    font-size: 14px;
}

.searchList-name {
    font-size: 22px;
    font-weight: 500;
}

.searchList-text {
    font-size: 14px;
    margin: 10px 0 25px;
}

.searchList-text span {
    color: #00aaf0;
}

.searchList-time {
    font-size: 14px;
    color: #A8A8A8;
}

.paging {
    text-align: center;
    margin-top: 60px;
}

.paging-pagination li a {
    margin: 0 5px;
    border-radius: 2px;
    border-color: #DEDEDE;
    color: #000000;
}

.paging-pagination>.active>a, .paging-pagination>.active>a:focus, .pagination>.active>a:hover, .paging-pagination>.active>span, .pagination>.active>span:focus, .paging-pagination>.active>span:hover,
.paging-pagination li:hover a {
    color: #00A7EA;
    border-color: #00A7EA;
    background-color: transparent;
}

.paging-pagination li span {
    font-size: 12px;
}

/* 二级页面 - 关于我们 */
.aboutCont {
    padding: 40px 0 60px;
}

.aboutList {
    position: relative;
    padding-left: 80px;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 120px;
}

.aboutList a {
    color: #000;
}

.aboutList::after,
.aboutList::before {
    position: absolute;
    content: '';
}

.aboutList::after {
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #A8A8A8;
}

.aboutList::before {
    left: 11px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #A8A8A8;
}

.aboutList-time {
    width: 200px;
    font-size: 24px;
    font-weight: 600;
}

.aboutList-cont {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-left: 240px;
    box-sizing: border-box;
}

.aboutList-name {
    font-size: 24px;
    font-weight: 600;
}

.aboutList-text {
    font-size: 16px;
    margin-top: 10px;
}

.aboutList:hover a {
    color: #00aaf0;
}

.aboutList:hover::after {
    background-color: #00aaf0;
}

/* 二级页面 - 公司简介 */
.briefCont {
    margin-bottom: 60px;
}

.briefCont-title {
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 40px;
    position: relative;
}

.briefCont-title::after {
    content: '';
    position: absolute;
    left: 47%;
    bottom: 0;
    background-color: #000;
    width: 6%;
    height: 2px;
}

.briefTop {
    font-size: 16px;
}

.briefTop p {
    margin-bottom: 30px;
    line-height: 28px;
}

.briefTop img {
    max-width: 100%;
    margin: 20px 0;
}

.briefCont-list {
    overflow: hidden;
}

.briefCont-list li {
    width: 20%;
    float: left;
    text-align: center;
}

.briefCont-list-img {
    width: 50%;
    padding-top: 50%;
    margin: 0 auto;
}

.briefCont-list-name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.briefCont-text {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
}

/* 二级页面 - 企业招聘 */
.recruitList {
    margin-bottom: 20px;
}

.recruitList-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.recruitList-text {
    line-height: 24px;
    font-size: 15px;
}

.recruitList-text span {
    display: block;
    margin: 15px 0;
}

/* 二级页面 - 联系我们 */
.contact {
    padding-top: 40px;
    padding-bottom: 0;
}

.contact-title {
    font-weight: 600;
    font-size: 16px;
    padding: 0 20px 20px 0;
}

.contact-img {
    width: 100%;
}

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

.contact-list li {
    margin-bottom: 15px;
    line-height: 24px;
    font-size: 16px;
    padding-left: 30px;
    position: relative;
    min-height: 24px;
}

.contact-list li img {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
}

.topNav {
    border-top: 1px solid #DEDEDE;
    border-bottom: 1px solid #DEDEDE;
}

.topNav-list {
    display: flex;
    padding: 15px 0;
    box-sizing: border-box;
}

.topNav-list li {
    padding-right: 30px;
    font-size: 16px;
}

.topNav-list li:first-child {
    position: relative;
    font-weight: 600;
    padding-right: 60px;
}

.topNav-list li:first-child::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: 0;
    background-color: #979797;
    opacity: .4;
    width: 1px;
    height: 100%;
}
.topNav-list li:last-child{
    padding-right: 0;
}
.topNav-list li a {
    color: #000;
}

.topNav-list li a:hover,
.topNav-list li.active a {
    color: #00AAF0 ;
}


.news-details {
    padding: 0;
    box-sizing: border-box;
}

.news-details .news-details-title {
    font-size: 22px;
    font-weight: 600;
}

.news-details-time {
    margin: 15px 0 50px;
    color: #A8A8A8;
}

.news-details-cont {
    word-break: break-all;
    line-height: 22px;
    font-size: 16px;
}

.news-details-cont p {
    margin: 20px 0;
}

.news-details-cont img {
    max-width: 100%;
}

.news-details-cont-center {
    text-align: center;
}

.news-details-cont-center span {
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 20px;
}

.news-details-cont-center p {
    color: #ABABAB;
}

.news-details-return {
    text-align: center;
    width: 100%;
    margin-top: 50px;
}

.news-details-return a {
    display: inline-block;
    border: 1px solid #DEDEDE;
    color: #000000;
    line-height: 28px;
    padding: 0 30px;
    background-color: #f1f1f1;
    cursor: pointer;
}

/* footer */
.footer{
    background-color: #353535;
    color: white;
    background-image: url(../img/footer_banner.png);
    background-position: top center;
    background-size: cover;
    padding: 10px 0;
}
.footer-tool{
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-tool a{
    font-size: 16px;
    color: #fff;
}
.footer-search-form{
    display: flex;
}
.footer-search-input{
    height: 36px;
    border-radius: 4px;
    border: none;
    padding: 0;
    color: #000;
    width: 0;
    transition: all .5s;
    box-sizing: border-box;
}
.footer-search-input.show{
    width: 200px;
    padding: 0 15px;
}
.footer-tool-search{
    height: 36px;
    line-height: 36px;
    vertical-align: top;
    padding: 0;
    margin: 0;
    border: none;
    margin-left: 10px;
    background-color: transparent;
}
.footer-tool-search > img{
    width: 28px;
    height: 28px;
    margin-top: 4px;
    vertical-align: top;
}
.footer-nav{
    border-top: solid 1px #979797;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-top: 20px;
    min-height: 180px;
}
.footer-nav-ul{
    width: 33.33%;
    text-align: left;
    margin-bottom: 30px;
}
.footer-nav-title{
    font-size: 16px;
    line-height: 30px;
}
.footer-nav-href{
    line-height: 30px;
}
.footer-nav-href a{
    color: #E3E3E3;
}
.footer-nav-href a:hover{
    color: white;
}
.footer-wechat{
    padding: 20px 0;
    text-align: center;
}
.footer-wechat-lay{
    position: relative;
    display: inline-block;
}
.footer-wechat-code{
    position: absolute;
    bottom: 38px;
    left: 50%;
    margin-left: -70px;
    width: 140px;
    height: 140px;
    display: none;
    padding: 10px;
}
.footer-wechat-code.show{
    display: block;
}
.footer-wechat-code img{
    width: 100%;
    height: 100%;
}
.footer-wechat-btn{
    width: 38px;
    height: 38px;
}

.footer-copyright{
    border-top: solid 1px #979797;
    padding: 20px 0;
    text-align: center;
    color: #A5A5A5;
}
.footer-copyright p{
    margin: 0 0 10px;
}
.footer-copyright p > span{
    margin-right: 15px;
}
.footer-copyright p > span:last-child{
    margin-right: 0;
}
.footer-copyright a{
    color: #A5A5A5;
}
.footer-copyright a:hover{
    color: white;
}

.footer-copyright-hr{
    display: none;
}

/* 返回顶部 */
.sroll-up{
    position: fixed;
    right: 0px;
    bottom: 100px;
    display: none;
}
.sroll-up-icon{
    width: 42px;
    height: 42px;
    vertical-align: top;
}

/* app下载 */
.app-header-center{
    text-align: center;
}
.app-header{
    background: linear-gradient(to top left, #F6F5FA, #F6F5FA, #FFFFFF, #FFFFFF);
    padding: 50px 0;
}
.app-header-logo{
    display: inline-block;
    width: 140px;
    height: 140px;
    margin-bottom: 40px;
    background-position: center;
    background-size: cover;
}
.app-header-text{
    padding: 30px 0 50px 0;
    font-size: 16px;
    text-align: justify;
    color: #323C55;
    line-height: 30px;
    margin: 0;
}
.app-header-href{
    background: #01A7EB;
    color: white;
    line-height: 50px;
    width: 150px;
    display: inline-block;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
}
.app-header-href:hover{
    color: white;
}
.app-header-slogan{
    width: 340px;
    height: 138px;
    background-position: center;
    background-size: cover;
}
.app-header-phones{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}
.app-header-phone{
    width: 140px;
}
.app-header-phone:first-child{
    margin-top: 150px;
    margin-right: 30px;
}
.app-header-phone:last-child{
    margin-bottom: 150px;
}
.app-container-flex{
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.app-container-column{
    flex-direction: column-reverse;
}
.app-container-cover{
    background-position: center;
    background-size: cover;
    width: 100%;
    padding-top: 100%;
}
.app-container-text{
    box-sizing: border-box;
    padding: 0 15px 50px;
    box-sizing: border-box;
}
.app-phone-title{
    font-size: 40px;
    font-weight: 400;
    color: #2E3A59;
    line-height: 46px;
}
.app-phone-text{
    font-size: 16px;
    color: #8C8C8C;
    line-height: 30px;
    text-align: justify;
}

.app-enterprise{
    background: linear-gradient(to top, #FFFFFF, #F6F5FA, #F6F5FA);
    padding: 50px 0;
}
.app-enterprise-text{
    font-weight: bold;
    color: #2E3A59;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
}
.app-enterprise-name{
    padding-top: 30px;
    padding-bottom: 50px;
    text-align: right;
    color: #8C8C8C;
    font-size: 14px;
}
.app-enterprise-logo{
    width: 200px;
    height: 100px;
    border:solid 1px #D9D9D9;
    background-image: url(../img/app_enterprise_logo.png);
    background-position: center;
    background-size: 130px;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: none;
}
.app-enterprise-block{
    text-align: center;
}
.app-enterprise-img{
    position: relative;
    width: 70%;
    padding-top: 70%;
    display: inline-block;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
}
.app-enterprise-icon{
    position: absolute;
    bottom: -10%;
    left: -10%;
    border-radius: 50%;
    width: 45%;
    height: 45%;
    background: #00A6E9 url(../img/app_enterprise_icon.png) center no-repeat;
    background-size: 70%;
    border:solid 2px white;
    box-sizing: border-box;
}
.app-footer{
    position: relative;
    background: linear-gradient(to top, #ECF8FF, #CAEAFD);
    padding-top: 100%;
}
.app-footer-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(../img/app_footer_back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.app-footer-content h4{
    font-weight: 600;
    color: #2E3A59;
    font-size: 40px;
    margin: 0;
}
.app-footer-content p{
    padding: 20px 0 30px;
    font-size: 16px;
    color: #336A99;
    margin: 0;
}
.app-footer-content a{
    background: #01A7EB;
    width: 150px;
    line-height: 50px;
    text-align: center;
    border-radius: 10px;
    color: white;
    font-size: 18px;
}
/* app下载 */
.app-dow-container{
    padding-bottom: 40px;
    background-image: url(../img/app_dow_back_01.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 160px 160px;
}
.dow-header{
    padding: 100px 0 80px 0;
    text-align: center;
    background-image: url(../img/app_dow_back_00.png);
    background-size: 128px;
    background-repeat: no-repeat;
    background-position: 90% 70%;
}
.dow-header h4{
    font-size: 40px;
    line-height: 90px;
    color: #2E3A59;
}
.dow-header p{
    font-size: 16px;
    color: #383838;
}
.dow-href{
    margin: 0 0 30px;
    background: linear-gradient(to bottom, #EEF9FF, #F3FBFE, #FCFDFF);
    padding: 60px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.dow-href a{
    display: block;
}
.dow-href a:hover{
    color: #2197EB;
}
.dow-app-angle{
    position: absolute;
    width: 78px;
    height: 78px;
    display: inline-block;
    background-position: center;
    background-size: cover;
    top: 0;
    right: 0;
    z-index: 2;
}
.dow-app-icon{
    display: inline-block;
    width: 168px;
    height: 168px;
    background-size: cover;
    background-position: center;
}
.dow-href-p{
    margin-top: 50px;
}
.dow-href-p > span{
    display: inline-block;
    line-height: 41px;
    border:solid 2px #2197EB;
    border-radius: 15px;
    width: 180px;
}
.dow-href-code{
    opacity: 0;
    transition: all .3s;
    position:absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #EEF9FF, #F3FBFE, #FCFDFF);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.dow-href-code img{
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
}
.dow-href-code p{
    color: #000000;
    font-size: 18px;
    line-height: 50px;
}
.dow-href a:hover > div.dow-href-code{
    opacity: 1;
}
.dow-back{
    text-align: center;
    padding: 100px 0;
}
.dow-back a{
    background: #F7F7F7;
    border:solid 1px #DEDEDE;
    line-height: 40px;
    width: 200px;
    display: inline-block;
}
/* app协议 */
.app-agreement{
    border-top: solid 1px #DEDEDE;
    padding: 80px 0;
    color: #000;
}
.app-agreement-title{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 30px;
}
.app-agreement-upd{
    text-align: right;
    padding-bottom: 30px;
}
.app-agreement-upd p{
    margin: 0;
    line-height: 20px;
    font-weight: bold;
}
.app-agreement-content{
    line-height: 24px;
    text-align: justify;
}
/* 智荟园区 */
.park-content{
    padding: 80px 0;
    overflow: hidden;
}
.park-flex{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.park-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px;
    box-sizing: border-box;
}
.park-header{
    text-align: center;
    padding-bottom: 26px;
}
.park-icon{
    width: 58px;
    height: 58px;
    background-size: cover;
    display: inline-block;
}
.park-title{
    font-size: 22px;
    font-weight: 500;
    color: #333333;
    text-align: center;
}
.park-text{
    font-size: 16px;
    line-height: 24px;
    color: #707070;
    text-align: justify;
}
.park-href{
    padding-top: 26px;
    text-align: center;
}
.park-href a{
    display: inline-block;
    color: #17B3FE;
    border:solid 1px #17B3FE;
    width: 100px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

/* 768px */
@media (min-width: 768px) {
    /* 公共样式背景 */
    .public-title {
        padding-bottom: 15px;
    }
    
    .public-title::after {
        bottom: 5px;
    }
    .secondCont {
        margin: 80px 0;
    }
    /* 二级轮播图 */
    .about-banner {
        padding-top: 27%;
    }
    .about-title {
        top: 38%;
    }
    /* 二级标题 */
    .topNav-list{
        padding: 15px 140px;
    }
    /* 服务 */
    .service-class{
        padding: 84px 0;
    }
    /* 欢迎页 */
    .guide-header{
        padding: 50px 0;
    }
    .guide-content{
        padding: 30px 100px;
    }
    .guide-footer{
        justify-content: start;
        padding: 0 100px 100px;
    }
    .guide-footer-item{
        width: 180px;
        margin-right: 30px;
    }
    /* 导航 */
    .nav{
        display: block;
        position: relative;
    }
    .nav a,
    .nav span{
        margin-left: 20px;
    }
    .nav a:first-child{
        margin-left: 0;
    }
    .nav-mobile{
        display: none;
    }
    .nav-ul{
        position: absolute;
        right: 0;
        top: 100%;
        z-index: 9;
        background-color: white;
        width: 150px;
    }
    .nav-ul li{
        text-align: center;
    }
    .nav-ul li> a{
        display: block;
    }
    .nav-ul li> a::after{
        display: none;
    }
    /* 首页标题 */
    .index-title{
        padding: 100px 0 50px;
    }
    /* 轮播图 */
    .banner-swiper-item{
        padding-top: 29%;
        background-position: center;
        background-size: cover;
        position: relative;
    }
    .banner-swiper-page{
        width: 100%;
        position: absolute;
        bottom: 20px;
        left: 0;
    }
    .swiper-pagination-bullet {
        width:80px;
        border-radius: 4px;
        background-color: #fff;
        height: 5px;
        margin: 0 12px;
        opacity: .5;
    }
    .swiper-pagination-bullet-active {
        opacity: 1;
    }
    /* 首页推荐 */
    .index-recommended{
        padding-bottom: 70px;
    }
    .index-recommended-content{
        height: 220px;
    }
    .index-recommended-behind{
        height: 150px;
    }
    .index-recommended-main{
        padding: 10px 15px;
    }
    /* 首页新闻资讯 */
    .news-content{
        padding: 60px 0;
    }
    .index-new-content{
        padding: 30px 25px 40px;
    }
    .index-new-item{
        /*margin: 0;*/
    }
    .index-new-submit{
        min-height: 50px;
        max-height: 50px;
    }
    .index-new-address, .index-new-time{
        line-height: 25px;
    }
    .index-new-info{
        line-height: 25px;
        height: 75px;
    }
    .index-new-more{
        padding: 20px 0 70px;
    }
    .index-new-more a{
        line-height: 40px;
        width: 200px;
        display: inline-block;
        text-align: center;
        background: #F7F7F7;
        border:solid 1px #DEDEDE;
        margin: 0 30px;
        font-size: 14px;
        color: #000;
    }
    /* 新闻活动 */
    .news-item{
        padding: 30px 15px;
    }
    /* 公司简介 */
    .briefCont-list-name {
        font-size: 18px;
        font-weight: 500;
        margin-top: 20px;
    }
    /* 服务 */
    .service-class-title{
        position: relative;
        padding-bottom: 100px;
        text-align: center;
        font-size: 28px;
    }
    .service-class-title::after{
        position: absolute;
        bottom: 90px;
        left: 50%;
        width: 60px;
        height: 3px;
        content: " ";
        background: #000;
        border-radius: 1px;
        margin-left: -30px;
    }
    .service-banners-item{
        padding-top: 28%;
    }
    .service-banners-content{
        left: calc(50% - 375px);
        width: 750px;
    }
    .service-banners-content h3{
        font-size: 40px;
    }
    .service-banners-content p{
        font-size: 14px;
        margin-top: 30px;
    }
    /* 二级页面导航栏 */
    .topNav-list li{
        padding-right: 60px;
    }
    .topNav-list li:first-child{
        padding-right: 100px;
    }
    .topNav-list li:first-child::after{
        right: 50px;
    }
    /* 联系 */
    .contact {
        padding-top: 0;
        padding-bottom: 80px;
    }
    
    .contact-title {
        font-weight: 600;
        font-size: 16px;
        padding: 0 20px 20px 30px;
    }
    /* 底部导航栏 */
    .footer-nav-ul{
        width: 14.28%;
        text-align: left;
        margin-bottom: 0;
    }
    .footer-wechat{
        text-align: right;
    }
    .footer-wechat-code{
        bottom: -10px;
        left: 100%;
        margin-left: -178px;
    }
    .footer-copyright p,
    .footer-copyright-hr{
        display: inline-block;
    }
    .footer-copyright p span:last-child{
        margin-right: 15px;
    }
    /* app */
    .app-header-center{
        text-align: left;
    }
    .app-header-logo{
        margin-bottom: 80px;
    }
    .app-header-text{
        padding: 30px 0;
    }
    .app-header-phone{
         width: 180px;
    }
    .app-container-flex{
        padding: 100px 0;
        flex-direction: row;
    }
    .app-container-cover{
        width: 50%;
        padding-top: 50%;
    }
    .app-container-text{
        width: calc(100% - 50%);
    }
    .app-container-flex:nth-child(odd) > .app-container-text{
        padding: 0 10px 0 0;
    }
    .app-container-flex:nth-child(even) > .app-container-text{
        padding: 0 0 0 10px;
    }
    .app-enterprise{
        padding: 150px 0;
    }
    .app-enterprise-text{
        padding-top: 50px;
    }
    .app-enterprise-name{
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .app-enterprise-logo{
        display: block;
    }
    .app-enterprise-block{
        text-align: right;
    }
    .app-footer{
        padding-top: 60%;
    }
    .app-footer-content{
        background-size: cover;
    }
    .app-footer-content h4{
        font-size: 50px;
    }
    /* app下载 */
    .dow-href{
        margin: 0 30px;
    }
    /* 智荟园区 */
    .park-flex{
        margin: 0 -35px;
    }
    .park-item{
        width: 50%;
    }
    .park-header{
        text-align: left;
    }
    .park-title{
        text-align: left;
    }
    .park-href{
        text-align: left;
    }
}

/* 992px */
@media (min-width: 992px) {
    .nav a,
    .nav span{
        margin-left: 40px;
    }
    /* 欢迎页 */
    .guide-footer-item{
        width: 200px;
        margin-right: 50px;
    }
    /* 首页标题 */
    .index-title{
        text-align: center;
        font-size: 28px;
        padding: 100px 30px 80px;
    }
    /* 首页 - 推荐 */
    .index-recommended-behind{
        height: 200px;
    }
    /* 首页 - 新闻与活动 */
    .index-new-more{
        padding: 30px 0 100px;
    }
    /* 服务 */
    .service-banners-content{
        left: calc(50% - 450px);
        width: 900px;
    }
    .service-banners-content p{
        font-size: 16px;
    }
    .news-details {
        padding: 0 100px;
        box-sizing: border-box;
    }
    /* app */
    .app-header-phones{
        justify-content: flex-end;
        padding-top: 100px;
    }
    .app-container-flex:nth-child(odd) > .app-container-text{
        padding: 0 100px 0 0;
    }
    .app-container-flex:nth-child(even) > .app-container-text{
        padding: 0 0 0 100px;
    }
    .app-enterprise-text{
        padding-top: 100px;
    }
}

/* 1200px */
@media (min-width: 1200) {
    /* 首页 - 推荐 */
    .index-recommended-behind{
        height: 230px;
    }
    /* 服务 */
    .service-banners-content{
        left: calc(50% - 585px);
        width: 1170px;
    }
}
