/*重置样式*/
/* @font-face {
    font-family: 'HelveticaLt';
    src: url('../font/HelveticaNeueLTPro-Lt.otf');
} */

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
textarea,
p,
th,
td,
em,
button,
blockquote {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
}

html,
body {
    position: relative;
    box-sizing: border-box;
    background: #fff;
    overflow-x: hidden;
    
}
::-webkit-scrollbar {
     display: none; 
     width: 0!important; 
     height: 0!important; 
     -webkit-appearance: none; 
     background: #0000; 
}

*,
*:before,
*:after {
    box-sizing: inherit;
    -webkit-tap-highlight-color: transparent;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th,
ul,
ol {
    padding: 0;
}

img {
    border: 0;
    vertical-align: bottom;
}
a img{
    display: block;
}

em,
b {
    font-style: normal;
    /* font-weight: normal; */
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

i {
    font-style: normal;
}

button,
input,
select,
textarea {
    outline: none;
    border: 0;
    -webkit-appearance: none;
}
/* 清除浮动 */
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}

a {
    color: #333;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    outline: none;
}

a:focus {
    outline: none;
}
/* 隐藏 */
.hide {
    display: none;
}
/* 显示 */
.show {
    display: block;
}
/* 左浮动 */
.float-l {
    float: left;
}
/* 右浮动 */
.float-r {
    float: right;
}
/* 文字居左 */
.text-left {
    text-align: left;
}
/* 文字居右 */
.text-right {
    text-align: right;
}
/* 文字居中 */
.text-center {
    text-align: center;
}

.bg-grey {
    background: #f3f3f3;
}

.color-grey {
    color: #999;
}

/*文本超出显示省略号*/
.text-line1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-line2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-line3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.text-line4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.text-line5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

/* 修改swiper 分页器颜色 */
.swiper-pagination-bullet {
    width: .1rem;
    height: .1rem;
    background-color: rgba(255, 255, 255, .6);
}

.swiper-pagination-bullet-active {
    background-color: #ffffff
}

/* 修改swiper 如果需要前进后退按钮 方块 */
.swiper-button-prev {
    left: .2rem;
    width: .35rem;
    height: .35rem;
    background-color: rgba(0, 0, 0, .3);
    border-radius: .03rem;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #09C383;
}

.swiper-button-prev::after {
    content: "";
    position: absolute;
    width: .12rem;
    height: .12rem;
    border-top: .01rem solid #fff;
    border-right: .01rem solid #fff;
    transform:rotate(225deg);
    margin-left: .05rem;
}

.swiper-button-next {
    right: .2rem;
    width: .35rem;
    height: .35rem;
    background-color: rgba(0, 0, 0, .3);
    border-radius: .03rem;
}

.swiper-button-next::after {
    content: "";
    position: absolute;
    width: .12rem;
    height: .12rem;
    border-top: .01rem solid #fff;
    border-right: .01rem solid #fff;
    transform:rotate(45deg);
    margin-right: .05rem;
}

/* 圆形 */
.swiper-button-prev-radius,
.swiper-button-next-radius {
    width: .54rem;
    height: .54rem;
    background-color: rgba(0, 0, 0, .3);
    border-radius: 50%;
    outline: none;
}
.swiper-button-prev-radius {
    left: 0;
}
.swiper-button-next-radius {
    right: 0;
}
.swiper-button-disabled,
.swiper-button-disabled-wap,
.swiper-button-disabled-pc{
    background-color:rgba(0, 0, 0, .3);
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled{
    opacity: 1;
}

/* 绿色小圆圈分页器 */
.pagination-circle .swiper-pagination-bullet,
.pagination-circle .swiper-pagination-bullet-active{
    width: .14rem;
    height: .14rem;
}
.pagination-circle .swiper-pagination-bullet {
    background: #FFFFFF;
    box-shadow: 0px .03rem .06rem rgba(0, 0, 0, 0.16);
    opacity: 1;
}
.pagination-circle .swiper-pagination-bullet-active {
    background-color: #09C383;
    box-shadow: 0px .03rem .06rem rgba(0, 0, 0, 0.16);
}
/* 使用CSS隐藏元素滚动条 */
.scrollbar-none::-webkit-scrollbar {
    display: none; /* Chrome Safari */
}

.scrollbar-none {
    scrollbar-width: none; /* firefox */
    -ms-overflow-style: none; /* IE 10+ */
    overflow-x: hidden;
    overflow-y: auto;
}
/*滚动条样式*/
.innerbox::-webkit-scrollbar {
    width: .04rem;    
}
.innerbox::-webkit-scrollbar-thumb {
    border-radius: .1rem;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(0,0,0,0);
}
.innerbox::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 0;
    background: rgba(0,0,0,0);

}

/* banner按钮样式 */
.banner .gain a{
    display: inline-block;
    width: 2rem;
    height: 0.5rem;
    line-height: .5rem;
    border-radius: .03rem;
    color: #fff;
}
/* 查看更多 - 按钮样式 */
.more {
    width: 7.5rem;
    padding: .45rem 0;
}
.more a{
    display: block;
    width: 1.6rem;
    height: .56rem;
    line-height: .56rem;
    background: #09C383;
    border: .01rem solid #09C383;
    border-radius: .03rem;
    font-size: .24rem;
    color: #FFFFFF;
    text-align: center;
    margin: 0 auto;
}
/* 标题 */
.main-h2-f, 
.main-h2-4{
    font-size: .36rem;
    font-weight: bold;
    line-height: 1.24rem;
    color: #FFFFFF;
    text-align: center;
}
.main-h2-4{
    color: #444444;
}
/* 全局按钮样式 */
button{
    display: block;
    width: 3.75rem;
    height: .7rem;
    background: #09C383;
    box-shadow: 0px .05rem .2rem rgba(9, 195, 131, 0.2);
    border-radius: .04rem;
    font-size: .26rem;
    color: #FFFFFF;
    margin: .34rem auto;
}
/* 全局图片样式 */
.imgbox img{
    display: block;
    width: 100%;
    
    height: auto;
}

/* 配置视频播放控件 */
.videobox{
    position: relative;
    background-color: #000;
}
/* .videobox video{
    position: relative;
    object-fit: cover;
    object-position: center center;
} */
.videobox:hover .handle{
    display: block;
}
.videobox .handle{
    position: absolute;
    top: 50%;
    left: 50%;
    width: .7rem;
    height: .7rem;
    margin-top: -.35rem;
    margin-left: -.35rem;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
}
.videobox .play{
    background-image: url('../imgs/video/play.png');
}
.videobox .pause{
    background-image: url('../imgs/video/stop.png');
}

/* 首页-免费获取报价方案 */
.freeOffer{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 7.5rem;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
}
.freeOffer .content{
    position: relative;
    top: 50%;
    width: 5.93rem;
    height: 5.57rem;
    background-color: rgba(0, 0, 0, .6);
    text-align: center;
    color: #FFFFFF;
    padding-top: .7rem;
    margin: 0 auto;
    margin-top: -50%;
    border-radius: 0.1rem;
}

.freeOffer .content .logo{
    display: block;
    width: 2.33rem;
    height: .46rem;
    margin:  0 auto .38rem;
}
.freeOffer .content .logo img{
    width: 100%;
    height: 100%;
}
.freeOffer1 .content h1{
    font-size: .6rem;
}
.freeOffer1 .content .qr_code{
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.15rem;
}
.freeOffer1 .content p{
    font-size: .36rem;
}
.freeOffer1 .content .oblate{
    width: 3.75rem;
    height: .04rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 49%, rgba(255, 255, 255, 0) 100%);
    margin: .31rem auto .28rem;
}
.freeOffer1 .content h4{
    font-size: .24rem;
}
.freeOffer .content .clear{
    position: absolute;
    top: .28rem;
    right: .24rem;
    width: .22rem;
    height: .21rem;
    background-image: url(../imgs/icon/clear.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.freeOffer1 .formbox label{
    display: block;
    padding: 0 1.06rem;
}
.freeOffer1 .formbox label img{
    position: relative;
    top: .46rem;
    float: left;
    width: .3rem;
    height: .3rem;
}
.freeOffer1 .formbox input{
    float: left;
    width: calc(100% - .4rem);
    height: .58rem;
    border-bottom: .01rem solid rgba(112, 112, 112, 1);
    background-color: transparent;
    margin-top: .28rem;
    margin-left: .1rem;
    color: #fff;
}
/* 首页-小广告 */

.freeOffer2 .content h1{
    font-size: .35rem;
}
.freeOffer2 .content h1 span{
    color: rgba(246, 218, 31, 1);
}
.freeOffer2 .content p{
    font-size: .24rem;
    margin: .31rem 0 .14rem;
}
.freeOffer2 .content h4{
    font-size: .3rem;
    font-weight: bold;
    margin-bottom: .49rem;
}
.freeOffer2 .formbox input{
    display: block;
    width: 3.75rem;
    height: .7rem;
    background: #FFFFFF;
    border-radius: .04rem;
    margin: 0 auto .25rem;
    font-size: .24rem;
    text-indent: .24rem;
}
.freeOffer2 .formbox button{
   margin-top: .43rem;
}
/* 搜索框 */
.searchBox{
    position: fixed;
    z-index: 99999;
    width: 7rem;
    background: #F9F9F9;
    border-radius: .03rem;
    margin-top: 1.1rem;
    margin-left: .25rem;
    display: none;
}
.searchBox form{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 7rem;
    height: .8rem;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
    padding-right: .3rem;
}
.searchBox form input{
    width: 100%;
    text-indent: .39rem;
    font-size: .28rem;
    color: #525252;
}
.searchBox form button{
    width: .42rem;
    height: .42rem;
    background: transparent;
    background-image: url(../imgs/icon/icon_search2.png);
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: 0 0 #fff;
    border-radius: .04rem;
    font-size: .26rem;
    color: #FFFFFF;
    margin: 0;
    border: none;
    margin-top: .19rem;
}
.searchBox .searchList {
    max-height: 5rem;
    overflow: auto;
}
.searchBox .searchList a{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    font-size: .28rem;
    color: #525252;
    background: #F9F9F9;
    border-bottom: .01rem solid #E2E2E2;
    padding-left: .39rem;
    padding-right: .3rem;
}
.searchBox .searchList li:last-child a{
    border-bottom: none;
}
.searchBox .searchList .active{
    color: #FA9A09;
}
.searchBox .searchList .category{
    font-size: .3rem;
    color: #09C383;
}
/* tab */
.tabSwiper  {
    height: .6rem;
}
.tabSwiper .swiper-slide {
    width: auto;
}
.tabSwiper .swiper-slide a{
    display: block;
    height: .6rem;
    line-height: .6rem;
    color: #666666;
    font-size: .28rem;
    font-weight: bold;
    padding-bottom: .1rem;
    margin: 0 .2rem;
    box-sizing: border-box;
}
.tabSwiper .swiper-slide.active a{
    color: #09C383;
    border-bottom: .01rem solid #09C383;
}