@charset "utf-8";
/**
  * @name:项目产品 页面样式
  * @update:2022-1-11
  **/


/* ======================================= 
            项目产品页面样式 开始
   =======================================*/
/* 游戏列表模块 开始 */


.m-gameList .list {
  min-height: 700px;
}

.m-gameList .list .item {
  float: left;
  width: 380px;
  height: 320px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.m-gameList .list .item:not(:nth-child(3n)) {
  margin-right: 30px;
}

.m-gameList .list .item .pic {
  height: 214px;
  overflow: hidden;
}

.m-gameList .list .item .pic img {
  transition: transform 0.2s linear;
}

.m-gameList .list .item:hover .pic img {
  transform: scale(1.1);
}

.m-gameList .list .item .name {
  height: 40px;
  line-height: 20px;
  padding: 20px 15px 0;
  margin-bottom: 8px;
  font-size: 18px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s linear;
}

.m-gameList .list .item:hover .name {
  color: #ff6600;
}

.m-gameList .list .item .info {
  padding: 0 15px;
}

.m-gameList .list .item .info .txt {
  line-height: 20px;
  color: #999;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}



/* 新闻列表模块 结束 */
/* ======================================= 
            项目产品页面样式 结束
   =======================================*/