﻿@charset "UTF-8";
/** 热点 **/
body.hot .header-box{
	background: #fff;
}
.hot-box{
	min-height: 100vh;
	padding-top: 7.5em;
	padding-bottom: 9em;
	width: 92%;
	max-width: 1106px;
	margin: auto;
	
}
.hot-box .rows{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.hot-box .rows .left{
	width: 39.87%;
    max-width: 100%;
}
.hot-box .rows .right{
	width: 53.44%;
    max-width: 100%;
}
.hot-box .rows .imgs-box{
	overflow: hidden;
	position: relative;
}
.hot-box .rows .imgs-box .imgs{
	width: 100%;
    transform: scale(1);
    -webkit-transform: scale(1);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.hot-box .rows .imgs-box .imgs:hover{
	 -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.hot-box .rows .name{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.1em;
	margin-top: 1em;
	overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hot-box .rows .imgs-box .doc-box{
	position: absolute;
	width: 100%;
	overflow: hidden;
	left: 0;
	bottom: 0;
	line-height: 70px;
	padding: 0 24px;
	background: url(../../Img/images/hot-docbg.png) left center repeat-x;
}
.hot-box .rows .imgs-box .doc-box .title{
	float: left;
	font-size: 16px;
	color: #fff;
	max-width: 70%;
	overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hot-box .rows .imgs-box .doc-box .icon{
	float: right;
	opacity: 0;
	-webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.hot-box .rows .imgs-box .doc-box .icon img{
	position: relative;
	top: -1px;
}
.hot-box .rows .imgs-box:hover .doc-box .icon{
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.hot-box{
		padding: 1rem 0 0.7rem;
	}
	.hot-box .rows .name{
	  	font-size: 0.16rem;
	  	margin-top: 0.15rem;
	}
	.hot-box .rows .imgs-box .doc-box{
		line-height: 0.5rem;
		padding: 0 5%;
	}
	.hot-box .rows .imgs-box .doc-box .title{
		font-size: 0.15rem;
	}
}