/*
* desc：产品与业务
* date：2024-12-16
* author：方岚
* email：florayoo@163.com
*/
.product-page{

}
/* 类别 */
.category-list{
  display: flex;
  height: 102px;
  width: 1008px;
  margin: 40px auto 0;
}
.category-item{
  position: relative;
  flex: 1;
  color: #666;
}
.category-item a{
  position: relative;
  display: block;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 12px;
  z-index: 2;
}
.logo-product{
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
.category-item:hover{
  color: #0d56aa;
  cursor: pointer;
}
.category-item-act{
  background: #efefef;
}
/* 描述 */
.describe-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 120px auto 0;
  width: 1008px;
  padding: 22px 35px;
  background-color: #efefef;
}
.describe-left{
  width: 63%;
}
.describe-right{
  width: 329px;
  height: 202px;
  background: url(../img/product/introduce.jpg) no-repeat 100% center;
}
.describe-title{
  font-size: 24px;
  color: #2158a7;
  padding-bottom: 25px;
  font-weight: 700;
  padding-top: 15px;
}
.describe-content{
  color: #666;
  line-height: 22px;
  font-size: 14px;
}
/* 详细分类 */
.goods-box{
  margin: 0 auto 120px;
  width: 1008px;
  /* background: #efefef; */
}
.goods-box-item{
  display: flex;
}
/* 分类导航 */
.goods-nav-list{
  width: 216px;
}
.goods-nav-item{
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.goods-nav-item:first-child{
  border-top: 1px solid #eee;
}
.goods-first-title{
  padding-left: 18px;
  line-height: 40px;
  color: #666;
}
.goods-second-title-list{
  display: none;
}
.goods-second-title{
  line-height: 34px;
  font-size: 14px;
  color: #666;
  padding-left: 36px;
}
.goods-second-title-act{
  color: #0d56aa;
}
/* 分类选中态 */
.goods-nav-item-act{
  background: #efefef;
  border-left: 1px solid #3f383b;
}
.goods-nav-item-act .goods-first-title{
  color: #333;
}
.goods-nav-item-act .goods-second-title-list{
  display: block;
}
/* 商品分类 */
.goods-list{
  width: 792px;
  padding: 0 30px 30px 30px;
  background: #efefef;
}
.goods-item-box{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.pdf-link{
  margin-top: 20px;
  color: #2158a7;
  text-decoration: underline;
}
.goods-item{
  position: relative;
  flex-shrink: 0;
  width: 224px;
  height: 224px;
  font-size: 16px;
  margin-top: 30px;
  margin-right: 30px;
  background-color: #f4f4f4;
  border: 3px solid #f4f4f4;
}
.goods-item:hover{
  cursor: pointer;
  border: 3px solid #2158a7;
  background-color: #2158a7;
  box-sizing: border-box;
}
.goods-item:hover .goods-name{
  color: #fff;
}
.goods-item-link{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.goods-item:nth-child(3n){
  margin-right: 0;
}
.goods-img-box{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  background-color: #fff;
}
.goods-img{
  max-width: 218px;
  max-height: 150px;
}
.goods-name{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #2158a7;
  height: 70px;
  padding: 0 12px;
}