@charset "utf-8";
/* CSS Document */

/* =========全局样式======= */
*,
:after,
:before {
    box-sizing: border-box;
}
html{scroll-behavior: smooth;}
html, body, div, p, a, ol, ul, li, dl, dt, dd, h1, h2, h3, h4,h5,h6,img, object, embed, span, form, marquee{
    margin:0;
    padding:0;
}
body{
    font-size: 0.16rem;
    font-family:'微软雅黑','宋体',Arial, Helvetica, sans-serif;
    color:#333;
    line-height:2;
}
html{font-size: 5.208333vw;}
body{font-size: 0.16rem;}
img{ max-width:100%;vertical-align: middle;}
ol, ul, li, dl, dt, dd{
    list-style:none;
}
img{
    border:none;
}
p{
    text-justify:inter-ideograph;
}
/*table{border:0px;border-collapse:collapse;border-spacing:0px;}*/
em,i{
    font-style:normal;
}
a {
    text-decoration:none;
    color:#111;
    transition:all 0.3s;
}
/*a:link,a:visited{}*/
a:hover {
    color:#d6222e;
    text-decoration: none;
}

/* =========基本样式======= */

h1{font-size:0.30rem;font-family:"Microsoft YaHei";font-weight:700;}
h2{font-size:0.24rem;font-family:"Microsoft YaHei";font-weight:700;}
h3{font-size:0.18rem;font-weight: bold;}
h4{font-size:0.16rem;font-weight:normal;}
h5{font-size:0.14rem;}
h6{font-size:0.12rem;font-weight:normal;}

.b{ font-weight: 600;}

/*=======内容区域==========*/
.w{width:17.20rem; margin:0 auto;}
.wrapper{width:10.80rem; margin:0 auto;}
.i-w{width:10.50rem;margin:0 auto;}

.time,.en,.more{font-family:Arial, Helvetica, '微软雅黑', sans-serif;}
/*======浮动=====*/
.left{float:left;}
.right{float:right;}
.flex{display: flex;}
.flex-item{ flex:1;}
.flex-bw{ flex-flow: row wrap;justify-content: space-between;}
.block{ display:block;}

.grid{ display:grid;}
.grid-4{grid-template-columns: repeat(4,1fr);column-gap:35px;}
/*======清除浮动=====*/
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}

.img-cover{ object-fit: cover !important;}

/*
    文字超出用省略号...
*/
.text-overflow{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space:nowrap;
}
.text-up{text-transform: uppercase;}
.text-overflow-2{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;

}

.icon {
   width: 1em; height: 1em;
   vertical-align: -0.15em;
   fill: currentColor;
   overflow: hidden;
}
.iconfont{ vertical-align: middle;}

/*======通用样式=====*/
.p10{padding:0.10rem;}
.p20{padding:0.20rem;}
.p30{padding:0.30rem;}
.pt10{padding-top:0.10rem;}
.pt20{padding-top:0.20rem;}
.pt30{padding-top:0.30rem;}
.pt40{padding-top:0.40rem;}
.pt50{padding-top:0.50rem;}

.ptb10{padding:0.10rem 0;}
.ptb20{padding:0.20rem 0;}
.ptb30{padding:0.30rem 0;}
.ptb40{padding:0.40rem 0;}
.ptb50{padding:0.50rem 0;}

.m10{margin:0.10rem;}
.m20{margin:0.20rem;}
.m30{margin:0.30rem;}
.mt10{margin-top:0.10rem;}
.mt20{margin-top:0.20rem;}
.mt30{margin-top:0.30rem;}
.mt40{margin-top:0.40rem;}
.mt50{margin-top:0.50rem;}

.mtb10{margin:0.10rem 0;}
.mtb20{margin:0.20rem 0;}
.mtb30{margin:0.30rem 0;}
.mtb40{margin:0.40rem 0;}
.mtb50{margin:0.50rem 0;}


.text-left{text-align:left;}
.text-right{text-align:right;}
.text-center{text-align:center;}
.text-uppercase {text-transform:uppercase;}

.bgcfff{background-color:#fff;}
.bgceee{background-color:#eee;}
.bgcddd{background-color:#ddd;}
.bgc333{background-color:#333;color:#fff;}
.bgc000{background-color:#000;color:#fff;}

.rounded3{border-radius:3px;}
.rounded5{border-radius:0.05rem;}
.rounded10{border-radius:0.10rem;}



/*======图片放大=====*/

li.img-list{
    float: left;
}
li.img-list .img{
    overflow: hidden;
}
li.img-list .img img{
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    width:100%;
    height:100%;
}
li.img-list:hover .img img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.titbox2{ margin: 0.80rem 0;}
.titbox2 .tit{ line-height: 1; font-size: 0.36rem; font-weight: bold; color: #656565;}
.titbox2 .more{ color: #666; font-size: 0.14rem;}
.titbox2 .more .iconfont{color: #999;}