*{
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
*, :after, :before {
    box-sizing: border-box;
}
body, html {
    width: 100%;
    height: 100%;
}
html{
    font-size: 625%;
}
body{
    font-size: 12px;
    font-size: 0.12rem;
    color: rgba(0,0,0,.65);
    --theme-color01: #0168b7;
    --theme-color02: #ff9600;
}
div,button,h1,h2,h3,h4,h5,h6,ul,li{
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
}
ul,li{
    list-style: none;
}
a,a:hover,a:active,a:visited,a:link,a:focus{
    outline:none;
    background: none;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
}
em{
    font-style: normal;
}

/********** input ***********/
input{
    text-indent: 0;
    background: transparent;
    border: none;
    resize:none;
    outline:none;  /*清除选中效果的默认蓝色边框 */
    -webkit-appearance:none;  /*清除浏览器默认的样式 */
    line-height: normal;   /*光标问题*/
}
input::-webkit-input-placeholder{
    color: #ccc;
    font-size: 0.26rem;
}
input::-moz-placeholder{
    color: #ccc;
    font-size: 0.26rem;
}
input::-ms-input-placeholder{
    color: #ccc;
    font-size: 0.26rem;
}

/****************** 菜单导航 menu-modal-wrapper *******************/
.menu-modal-wrapper{
    display: none;
}
.menu-modal-wrapper.active{
    display: block;
}
.menu-modal-mask, .menu-modal{
    position: fixed;
    top: 0;
    z-index: 999;
}
.menu-modal-mask{
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.28);
}
.menu-modal {
    right: 0;
    bottom: 0;
    width: 5.25rem;
    background: #fff;
    box-shadow: 0 -3px 10px 0 rgba(0,0,0,.1);
    -webkit-animation: slideInLeft .2s cubic-bezier(.645,.045,.355,1);
    animation: slideInLeft .2s cubic-bezier(.645,.045,.355,1);
}
@keyframes slideInLeft{
    from{right: -5.25rem;}
    to{right: 0;}
}
@-ms-keyframes slideInLeft{
    from{right: -5.25rem;}
    to{right: 0;}
}
.menu-modal-header {
    width: 100%;
    font-size: 0.24rem;
    height: 1.31rem;
    padding: 0 0.5rem;
    border-bottom: 1px solid #f4f4f5;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
}
.menu-modal-header .title-box{
    flex: 1;
}
.menu-modal-header .title-box p{
    font-size: 0.36rem;
    color: var(--theme-color01);
    font-weight: bold;
}
.menu-modal-header .title-box p.en{
    font-size: 0.3rem;
    color: #000;
    font-weight: normal;
}
.menu-modal-header .menu-close{
    flex: none;
    height: 1.3rem;
    width: 0.5rem;
    display: flex;
    align-items: center;
}
.menu-modal-header .menu-close img{
    width: 100%;
}
.menu-modal-body {
    position: absolute;
    top: 1.3rem;
    bottom: 0;
    width: 100%;
    overflow: auto;
    padding: 0.2rem 0;
}
.menu-modal-body .nav-list .item{
    width: 100%;
    height: 0.95rem;
    border-bottom: 1px solid #f4f4f5;
}
.menu-modal-body .nav-list .item.active{
    background: #f8f8f8;
}
.menu-modal-body .nav-list .item .link-box{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}
.menu-modal-body .nav-list .item .name{
    font-size: 0.3rem;
    color: #1d1d26;
}
.menu-modal-body .nav-list .item.active .name{
    color: #c8a973;
}

/****************** main-head *******************/
.main-head{
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 200;
    width: 100%;
    height: 0.88rem;
    background-color: var(--theme-color01);
    overflow: hidden;
    max-width: 750px;
    margin: 0 auto;
}
.main-head .pic-box{
    display: inline-flex;
    /*width: 100%;*/
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    padding: 0.15rem 0 0.1rem;
    padding-left: 0.2rem;
}
.main-head .pic-box img{
    height: 100%;
}
.main-head .menu-box{
    display: block;
    width: 0.54rem;
    height: 0.54rem;
    position: absolute;
    right: 0.2rem;
    top: 0.17rem;
}
.main-head .menu-box img{
    width: 100%;
}
/****************** main-body *******************/
.main-body{
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    background-color: #f5f5f5;
    padding-top: 0.88rem;
}

/****************** banner *******************/
.banner-box{
    width: 100%;
}
.banner-box img{
    width: 100%;
}

/***************** 模块标题 module-title *******************/
.module-title{
    width: 100%;
    text-align: center;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}
.module-title h2{
    font-size: 0.36rem;
    color: #000;
}
.module-title h2 span{
    color: var(--theme-color01);
    font-weight: bold;
}
.module-title h2 span i{
    display: inline-block;
    width: 0.3rem;
    height: 3px;
    background-color: var(--theme-color01);
    position: relative;
    top: -0.06rem;
}
.module-title p{
    font-size: 0.26rem;
    color: #999;
    margin-top: 0.1rem;
}

/***************** 咨询按钮 zixu-box *******************/
.zixu-box{
    width: 100%;
    padding: 0 0.3rem;
}
.zixu-box .btn-box{
    width: 100%;
    height: 1rem;
    display: flex;
    border: 1px solid var(--theme-color02);
    border-radius: 0.5rem;
    position: relative;
    /* z-index: 8; */
}
.zixu-box .btn-box .left{
    flex: none;
    width: 3.9rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    /* position: relative; */
}
.zixu-box .btn-box .left span{
    font-size: 0.36rem;
    color: var(--theme-color02);
}
.zixu-box .btn-box .btn img{
    flex: none;
    margin-right: 0.1rem;
    display: inline-block;
    width: 0.62rem;
}
.zixu-box .btn-box .right{
    flex: 1;
    width: 0;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 0.34rem;
    color: #FFFFFF;
    background-color: var(--theme-color02);
    border-radius: 0.5rem;
    text-align: center;
    /* border: 1px solid var(--theme-color01); */
}
.zixu-box .btn-box .btn.right img{
    margin-right: 0.2rem;
}

/********** bus-analyse ***********/
.bus-analyse{
    width: 100%;
    padding-top: 0.25rem;
    padding-bottom: 0.45rem;
}
.bus-analyse .list{
    width: 100%;
    padding: 0 0.3rem;
}
.bus-analyse .list .item{
    width: 100%;
    margin-bottom: 0.15rem;
    background-color: #fff;
    border-radius: 6px;
    padding: 0.2rem 0 0.2rem 0.2rem;
}
.bus-analyse .list .item .line-box{
    display: flex;
    width: 100%;
}
.bus-analyse .list .item .pic-box{
    flex: none;
    margin-right: 0.45rem;
    width: 2.3rem;
}
.bus-analyse .list .item .pic-box.border{
    border: 1px solid #78aed9;
}
.bus-analyse .list .item .pic-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bus-analyse .list .item .text-box{
    flex: 1;
    width: 0;
}
.bus-analyse .list .item .text-box .title{
    font-size: 0.28rem;
    color: var(--theme-color01);
    margin-bottom: 0.2rem;
    font-weight: 900;
    font-family: 黑体;
}
.bus-analyse .list .item .text-box .line{
    width: 0.3rem;
    height: 3px;
    background-color: var(--theme-color01);
    margin-bottom: 0.22rem;
}
.bus-analyse .list .item .text-box .descrip{
    width: 100%;
    padding-right: 0.26rem;
    font-size: 0.24rem;
    color: #656565;
    line-height: 0.36rem;
}

/********** lv-intro ***********/
.lv-intro{
    width: 100%;
    background-color: #fff;
    padding: 0 0.3rem;
    padding-top: 0.25rem;
    padding-bottom: 0.3rem;
}
.lv-intro .text-box{
    width: 100%;
    margin-bottom: 0.3rem;
}
.lv-intro .text-box p{
    width: 100%;
    font-size: 0.28rem;
    color: #656565;
    line-height: 1.6;
    text-indent: 2em;
}
.lv-intro .text-box p span{
    color: var(--theme-color01);
}
.lv-intro .photo-container{
    width: 100%;
    padding-bottom: 0.8rem;
}
.lv-intro .photo-wrap{
    /* width: 100%; */
    height: 3.48rem;
    /* overflow: hidden; */
}
.lv-intro .photo-slide{
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    position: relative;
}
.lv-intro .photo-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lv-intro .photo-slide p{
    width: 100%;
    height: 0.44rem;
    background-color: rgba(1, 104, 183, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.3rem;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}
.photo-pagination .swiper-pagination-bullet{
    margin: 0 6px !important;
}
.photo-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
}

/********** coopera-modal ***********/
.coopera-modal{
    width: 100%;
    padding-top: 0.25rem;
    /*padding-bottom: 0.75rem;*/
    padding-bottom: 0.55rem;
}
.coopera-modal .text-box{
    width: 100%;
    margin-bottom: 0.3rem;
    padding: 0 0.3rem;
}
.coopera-modal .text-box p{
    width: 100%;
    font-size: 0.28rem;
    color: #656565;
    line-height: 1.6;
    text-indent: 2em;
}
.coopera-modal .text-box p span{
    color: var(--theme-color01);
}
.coopera-modal .pic-box{
    width: 100%;
    background-color: var(--theme-color01);
    margin-bottom: 0.35rem;
}
.coopera-modal .pic-box img{
    width: 100%;
}

/********** incubate-flow ***********/
.incubate-flow{
    width: 100%;
    background-color: #fff;
    padding-top: 0.25rem;
    /*padding-bottom: 0.55rem;*/
    /*border-bottom: 0.1rem solid #ECECEC;*/
}
.incubate-flow .content{
    width: 100%;
    position: relative;
    padding-top: 0.4rem;
}
.incubate-flow .content .pic-flow{
    width: 100%;
}
.incubate-flow .content .pic-flow img{
    width: 100%;
}
.incubate-flow .content .pic-phone{
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0.6rem;
}
.incubate-flow .content .pic-phone img{
    width: 2.9rem;
}

/********** city-jl ***********/
.city-jl{
    width: 100%;
    padding-top: 0.35rem;
    border-top: 0.1rem solid #ECECEC;
    background-color: #fff;
}
.city-jl .module-title{
    padding-bottom: 1.5rem;
}
.city-jl .con-wrap{
    width: 100%;
    height: 4rem;
    background-color: #0168b7;
    position: relative;
}
.city-jl .cityjl-container{
    height: 5rem;
    position: absolute;
    bottom: 0.1rem;
    left: 0.2rem;
    right: 0.2rem;

}
.city-jl .cityjl-wrap{
    width: 100%;
    height: 4.3rem;
    display: flex;
}
.city-jl .cityjl-slide{
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    display: flex;
}
.city-jl .cityjl-slide .pic-wrap{
    flex: none;
    width: 3.1rem;
    height: 100%;
    overflow: hidden;
    font-size: 0;
    position: relative;
}
.city-jl .cityjl-slide .pic-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.city-jl .cityjl-slide .pic-wrap .text-box{
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    padding: 0.2rem 0;
    padding-left: 0.3rem;
    font-size: 0.24rem;
    color: #fff;
    line-height: 1.4;
    position: absolute;
    left: 0;
    bottom: 0;
}
.city-jl .cityjl-slide .msg-box{
    flex: 1;
    padding: 0 0.15rem;
    padding-left: 0.2rem;
}
.city-jl .cityjl-slide .msg-box .name-box{
    width: 100%;
    /* height: 0.54rem; */
    display: flex;
    /* align-items: center; */
    margin-bottom: 0.1rem;
}
.city-jl .cityjl-slide .msg-box .name-box .name{
    flex: 1;
    font-size: 0.34rem;
    font-weight: 600;
    color: #000;
}
.city-jl .cityjl-slide .msg-box .name-box .year{
    flex: none;
    height: 0.42rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f39800;
    padding: 0 0.15rem;
    font-size: 0.22rem;
    color: #fff;
    border-radius: 20px;
}
.city-jl .cityjl-slide .msg-box p{
    font-size: 0.24rem;
    color: #000;
    line-height: 0.35rem;
}
.city-jl .cityjl-slide .msg-box p.descrip{
    overflow: hidden;
    margin-top: 0.15rem;
}
.swiper-pagination-bullet-active{
    background: #fff;
}

/********** success-case ***********/
.success-case{
    width: 100%;
    background-color: #fff;
    padding: 0.45rem 0.3rem;
    padding-bottom: 0.4rem;
}
.success-case .play-pic{
    width: 100%;
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
}
.success-case .play-pic img{
    width: 100%;
}
.success-case .case-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.success-case .case-box .item{
    width: 2.2rem;
    height: 1.3rem;
    margin-bottom: 0.2rem;
    position: relative;
}
.success-case .case-box .item::after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
}
.success-case .case-box .item.active::after{
    content: "";
    width: 0;
}
.success-case .case-box .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/********** problem-box ***********/
.problem-box{
    width: 100%;
    padding-bottom: 0.55rem;
    padding-top: 0.35rem;
}
.problem-box .module-title{
    padding-bottom: 0.5rem;
}
.problem-box .content{
    padding: 0 0.3rem;
}
.dialogue-box{
    width: 100%;
    background-color: #0168b7;
    padding: 0.25rem 1px 0.1rem;
    border-radius: 10px;
    margin-bottom: 0.3rem;
}
.dialogue-list{
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 0.65rem 0.25rem 0.6rem;
}
.dialogue-list .item{
    position: relative;
    margin-bottom: 0.35rem;
}
.dialogue-list .item.left{
    padding-left: 1rem;
    margin-bottom: 0.2rem;
}
.dialogue-list .item .pic-box{
    width: 0.8rem;
    position: absolute;
    top: -0.1rem;
}
.dialogue-list .item.left .pic-box{
    left: 0;
}
.dialogue-list .item.right{
    padding-right: 1rem;
}
.dialogue-list .item.right .pic-box{
    right: 0;
}
.dialogue-list .item .pic-box img{
    width: 100%;
}
.dialogue-list .item .text-box{
    position: relative;
}
.dialogue-list .item.right .text-box{
    display: flex;
    justify-content: flex-end;
}
.dialogue-list .item .text-box .txt{
    display: inline-block;
    max-width: 4.9rem;
    background-color: #e4e4e4;
    border-radius: 5px;
    padding: 0.08rem 0.22rem;
    padding-right: 10px;
    line-height: 0.4rem;
    font-size: 0.3rem;
    color: #000;
    position: relative;
}
.dialogue-list .item.left .text-box .txt{
    font-weight: 900;
}
.dialogue-list .item.right .text-box .txt{
    font-size: 0.28rem;
    background-color: #9eea6a;
    padding: 0.12rem 0.3rem;
    padding-right: 0.22rem;
}
.dialogue-list .item.left .text-box .txt::before{
    content: "";
    position: absolute;
    left: -0.28rem;
    top: 0.18rem;
    border: 1px solid #e4e4e4;
    border-width: 0.08rem 0.14rem;
    border-color: transparent #e4e4e4 transparent transparent;
}
.dialogue-list .item.right .text-box .txt::before{
    content: "";
    position: absolute;
    right: -0.28rem;
    top: 0.18rem;
    border: 1px solid #e4e4e4;
    border-width: 0.08rem 0.14rem;
    border-color: transparent transparent transparent #9eea6a;
}
.customer-comment{
    overflow: hidden;

}
.customer-comment .con-wrap{
    position:relative;
}
.customer-comment .con-wrap .bg{
    width: 100vw;
    position: absolute;
    left: 0;
}
.customer-container{
    padding: 1rem 0;
}
.customer-container img{
    height: 70vw;
}
.customer-container .customer-slide{
    text-align: center;
    width: 2rem;
}
.customer-container  .swiper-pagination-bullets{
    bottom: 20px !important;
}

/********** invite-box ***********/
.invite-box{
    width: 100%;
    background-color: #fff;
    padding-top: 0.25rem;
}
.invite-box .content{
    width: 100%;
    padding-bottom: 0.7rem;
    background-image: url(../images/invite_bj.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
}
.invite-box .news-box{
    width: 100%;
    padding: 0 0.3rem;
    padding-top: 0.3rem;
}
.invite-box .news-wrap{
    width: 100%;
    background-image: url(../images/invite_left_bj.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    padding: 0.35rem 0.2rem;
}
.invite-box .news-list{
    width: 100%;
}
.invite-box .news-list .news-item{
    display: block;
    width: 100%;
    background-color: #dfecf5;
    font-size: 0.24rem;
    color: #000;
    margin-bottom: 0.2rem;
    padding: 0.15rem 0.2rem;
    padding-left: 0.25rem;
}
.invite-box .news-list .news-item .txt{
    width: 100%;
    line-height: 0.36rem;
    margin-bottom: 0.05rem;
}
.invite-box .news-list .news-item .txt p{
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.invite-box .news-list .news-item .txt p.title{
    font-weight: 900;
}
.invite-box .news-list .news-item .time{
    text-align: right;
}
.invite-box .more-box{
    width: 100%;
    text-align: center;
}
.invite-box .more-box .btn{
    width: 2rem;
    height: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 0.5rem;
    font-size: 0.28rem;
    color: #fff;
}
.invite-box .form-container{
    width: 100%;
    padding: 0 0.15rem;
    position: relative;
    top: -0.1rem;
}
.invite-box .form-wrap{
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
}
.invite-box .form-title{
    width: 100%;
    padding-left: 0.7rem;
    padding-top: 0.7rem;
}
.invite-box .form-title h2{
    font-size: 0.35rem;
    color: var(--theme-color01);
    line-height: 0.5rem;
    font-weight: 900;
}
.invite-box .form-box{
    width: 100%;
    padding-top: 0.6rem;
}
.invite-box .form-box .form-item{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 0.35rem;
    padding-right: 0.26rem;
}
.invite-box .form-box .form-item .name{
    width: 1.9rem;
    flex: none;
    margin-right: 0.25rem;
    text-align: right;
    font-size: 0.3rem;
    color: #000;
    font-weight: bold;
}
.invite-box .form-box .form-item .name::before{
    content: "*";
    font-size: 0.3rem;
    color: var(--theme-color01);
    margin-right: 0.2rem;
    position: relative;
    top: 0.04rem;
    font-weight: bold;
}
.invite-box .form-box .form-item .con{
    width: 0;
    flex: 1;
}
.invite-box .form-box .form-item .con input{
    width: 100%;
    height: 0.58rem;
    border-radius: 6px;
    background-color: #f4f4f4;
    padding-left: 0.25rem;
    font-size: 0.26rem;
    color: #000;
}
.invite-box .form-box .btn-box{
    width: 100%;
    padding: 0.15rem 0.45rem 0.5rem;
}
.invite-box .form-box .btn-box .btn{
    width: 100%;
    height: 0.84rem;
    border-radius: 6px;
    background-color: var(--theme-color01);
    font-size: 0.35rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/********** 轻提示 **********/
.toast-mask{
    position: fixed;
    left: 0;
    right: 0;
    top: 45%;
    z-index: 1000;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}
.toast-mask span{
    display: inline-block;
    max-width: 75%;
    padding: 0.15rem 0.25rem;
    background: hsla(0,0%,7%,.6);
    color: #FFFFFF;
    font-size: 0.3rem;
    border-radius: 4px;
}

/********** news-body **********/
.news-body{
    background-color: #fff;
}
/********** news-wrap **********/
.news-body .news-wrap{
    width: 100%;
    padding: 0 0.2rem;
}
.news-body .news-wrap .news-title{
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
}
.news-body .news-wrap .news-title span{
    flex: none;
    display: inline-flex;
    height: 0.9rem;
    align-items: center;
    border-bottom: 3px solid var(--theme-color01);
    font-size: 0.4rem;
    color: #000;
    margin-right: 0.25rem;
}
.news-body .news-wrap .news-title em{
    flex: none;
    font-size: 0.3rem;
    color: #999;
}
.news-body .news-wrap .list{
    width: 100%;
}
.news-body .news-wrap .item{
    width: 100%;
    border-bottom: 1px solid #ccc;
}
.news-body .news-wrap .item .link-box{
    width: 100%;
    display: block;
    padding: 0.25rem 0;
}
.news-body .news-wrap .item .title{
    width: 100%;
    font-size: 0.32rem;
    color: #000;
    font-weight: 900;
    margin-bottom: 0.15rem;
}
.news-body .news-wrap .item .descrip{
    width: 100%;
    font-size: 0.26rem;
    color: #999;
    line-height: 1.6;
}

/********** list-more-animate ************/
.list-more-animate{
    width: 100%;
    height: 0.7rem;
}
.list-more-animate .loading-box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list-more-animate .loading-box svg{
    width: 0.5rem;
    height: 0.5rem;
}
.list-more-animate .loading-box .text{
    font-size: 0.26rem;
    color: var(--theme-color);
    margin-left: 0.2rem;
}
.list-more-animate .not-more-box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.26rem;
    color: #666;
}

/********** article-box **********/
.article-box{
    width: 100%;
    padding: 0.4rem 0.2rem;
}
.article-box .title-box{
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.2rem;
    margin-bottom: 0.4rem;
}
.article-box .title-box h1{
    width: 100%;
    font-size: 0.4rem;
    color: #000;
    font-weight: 900;
    margin-bottom: 0.2rem;
}
.article-box .title-box p{
    width: 100%;
    font-size: 0.26rem;
    color: #666;
}
.article-box .detail-box{
    width: 100%;
}
.article-box .detail-box p{
    width: 100%;
    font-size: 0.28rem;
    color: #666;
    text-indent: 2em;
    line-height: 1.6;
    margin-bottom: 0.15rem;
}
.article-box .detail-box img{
    max-width: 100%;
}

/********** hot-news **********/
.hot-news{
    width: 100%;
    padding: 0 0.2rem 0.4rem;
}
.hot-news .news-title{
    margin-bottom: 0.3rem;
}
.hot-news .news-title h2{
    width: 100%;
    font-size: 0.4rem;
    color: var(--theme-color01);
    font-weight: 900;
    margin-bottom: 0.2rem;
    text-align: center;
}
.hot-news .hotlist{
    width: 100%;
    margin-bottom: 0.3rem;
}
.hot-news .hotlist .item{
    width: 100%;
    border-bottom: 1px solid #ececec;
}
.hot-news .hotlist .item .line-box{
    width: 100%;
    display: flex;
    padding: 0.3rem 0;
}
.hot-news .hotlist .item .left{
    flex: none;
    width: 2rem;
    height: 1.2rem;
    overflow: hidden;
    margin-right: 0.2rem;
}
.hot-news .hotlist .item .right{
    flex: 1;
    width: 0;
}
.hot-news .hotlist .item .right .title{
    width: 100%;
    font-size: 0.3rem;
    color: #000;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0.2rem;
}
.hot-news .hotlist .item .right .line{
    width: 0.4rem;
    height: 3px;
    background-color: #0068B7;
    margin-bottom: 0.15rem;
}
.hot-news .hotlist .item .right .msg{
    width: 100%;
    font-size: 0.24rem;
    color: #999;
}

@media screen and (min-width:310px) and (max-width:359px) and (orientation:portrait) {
    html { font-size: 266.66% !important; }
}
@media screen and (min-width:360px) and (max-width:374px) and (orientation:portrait) {
    html { font-size: 300% !important; }
}
@media screen and (min-width:375px) and (max-width:383px) and (orientation:portrait) {
    html { font-size: 312.5% !important; }
}
@media screen and (min-width:384px) and (max-width:399px) and (orientation:portrait) {
    html { font-size: 320.3% !important; }
}
@media screen and (min-width:400px) and (max-width:413px) and (orientation:portrait) {
    html { font-size: 341.66% !important; }
}
@media screen and (min-width:414px) and (max-width:431px) and (orientation:portrait){
    html { font-size: 350% !important; }
}
@media screen and (min-width:432px) and (max-width:479px) and (orientation:portrait){
    html { font-size: 375% !important; }
}
@media only screen and (min-width: 480px){
    html { font-size: 375% !important;}
}
@media only screen and (min-width: 750px){
    html { font-size: 625% !important;}
}