
.news-box{
    display: block;
    width: 100%;
    padding: 50px 0 30px 0;
    background-color: #FFF;
}
.news-list{
    padding-bottom: 30px;
}
.news-list li{
    padding: 25px 0;
    display: flex;
}
.news-list li:first-child{
    padding-top: 0;
}
.news-list .alt-pic {
    flex: 0 0 408px;
    width: 408px;
    height: 252px;
    overflow: hidden;
    border:1px solid #EAEAEA;
}
.news-list .alt-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}
.news-list .alt-pic img:hover {
    transform: scale(1.2);
}
.news-list .alt-text {
    margin-left: 2.0%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
}
.news-list .alt-title {
    display: block;
    font-size: 30px;
    font-weight: bold;
}
.news-list .alt-title a{
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-list .alt-desc {
    height: auto;
    margin: 6px 0 10px 0;
    font-size: 18px;
    color: #666;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-list .alt-con {
    padding-top: 6px;
    display: block;
    font-size: 16px;
    line-height: 28px;
}
.news-list .alt-tag{
    display: flex;
    width: 100%;
    overflow: hidden;
}
.news-list .alt-tag a{
    color: #333;
    line-height: 32px;
    border-radius: 5px;
    padding: 0 13px;
    height: 32px;
    margin-right: 15px;
    font-size: 16px;
    background-color: #F6F6F6;
}
.news-list .alt-tag a:hover{
    background-color: #D97811;
    color: #ecfdec;
}
.news-list .alt-time{
    margin-top: 15px;
    color: #666;
}
.article{
    padding-top: 50px;
}
.ard-top {
    border-bottom: dashed 1px #e6e6e6;
    padding: 20px 0 20px 0;
}
.ard-title {
    text-align: left;
    font-size: 36px;
    color: #333;
    font-weight: bold;
    text-align: center;
}
.ard-span {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}
.ard-source, .ard-time {
    margin-right: 38px;
}
.ard-source span, .ard-time span {
    margin-left: 5px;
}
.ard-source, .ard-time{
    color: #666;
}
.ard-desc {
  padding: 20px 15px 15px 15px;
  position: relative;
  background: #f5f5f5;
  color: #888;
  font-size: 18px;
  margin: 45px 0 0 0
}
.ard-desc em {
  position: absolute;
  left: 12px;
  top: -12px;
  background: #1C3591;
  color: #fff;
  padding: 0 15px;
  line-height: 24px;
  text-align: center;
}
.ard-body{
    color: #4c4c4c;
    font-size: 18px;
    line-height: 2;
    padding-top: 20px;
    padding-bottom: 30px;
}
.ard-body p{
    margin-top: 15px;
    margin-bottom: 15px;
}
.ard-body img{
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}
.ard-next{
    height: auto;
    line-height: 60px;
    padding-top: 20px;
    font-size: 18px;
    border-top: dashed 1px #e7e7e7;
    display: flex;
    justify-content: space-between;
}
.ard-next .col {
    color: #999;
    width: 49%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ard-next .col:last-child {
    text-align: right;
}
.ard-copyright {
    margin-bottom: 25px;
    overflow: hidden;
    color: #999;
    text-align: center;
}
.det-tagbox{
    display: flex;
    padding-top: 10px;
    padding-bottom: 30px;
}
.det-tagbox .tag-title{
    display: block;
    width: 80px;
    line-height: 32px;
    margin-right: 10px;
    font-size: 16px;
}
.det-tag{
    display: flex;
    width: auto;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
}
.det-tag a{
    color: #333;
    line-height: 32px;
    border-radius: 28px;
    padding: 0 16px;
    height: 32px;
    margin-right: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    background-color: #F6F6F6;
}
.det-tag a:hover{
    background-color: #D97811;
    color: #FFFFFF;
}
/*PC自适应*/
@media only screen and (min-width:1024px) and (max-width:1900px){

}

/*Mobile v1*/
@media only screen and (max-width:767px){
.news-box {
    padding: 10px 0 10px 0;
}
.news-list {
    padding-bottom: 10px;
}
.news-list li {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.news-list .alt-pic {
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
}
.news-list .alt-text {
    margin-left: 0;
}
.news-list .alt-title {
    padding-top: 10px;
    font-size: 18px;
}
.news-list .alt-desc {
    text-overflow: ellipsis;
    overflow: hidden;
    height: auto;
    line-height: 1.5;
    margin-top: 5px;
    font-size: 14px;
    color: #656565;
}
.news-list .alt-tag {
    display: flex;
    width: 100%;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
}
.news-list .alt-tag a {
    margin: 5px 0;
    margin-right: 5%;
    font-size: 13px;
    width: 45%;
    padding: 0 15px;
    text-align: center;
}
.news-list .alt-time {
    font-size: 14px;
    margin-top: 8px;
}
.article {
    padding: 0 4%;
}
.ard-title {
    font-size: 20px;
}
.ard-span {
    font-size: 13px;
}
.ard-desc {
    font-size: 16px;
    margin: 35px 0 0 0;
}
.ard-body {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 20px;
}
.det-tagbox {
    display: flex;
    padding-bottom: 20px;
    flex-direction: column;
}
.det-tagbox .tag-title {
    width: 100%;
    line-height: 32px;
    margin-right: 0;
    font-size: 15px;
    margin-bottom: 10px;
}
.det-tag a {
    width: 48%;
    line-height: 28px;
    border-radius: 28px;
    padding: 0 16px;
    height: 28px;
    margin-right: 2%;
    margin-bottom: 8px;
    font-size: 15px;
    text-align: center;
}
.ard-next {
    height: auto;
    line-height: 38px;
    padding-top: 15px;
    font-size: 15px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.ard-next .col {
    width: 100%;
}
.ard-next .col:last-child {
    text-align: left;
}

}