/* 本例子css */
.tabox {
    clear: both;
    width: 1200px;
    margin: 30px auto;
    border-top: 2px solid #1a2c5c;
}

.tabox .hd {
    overflow: hidden;
    background: #efefef;
    border-left: 1px solid #ddd;
}

.tabox .hd li {
    position: relative;
    margin-left: -1px;
    height: 37px;
    line-height: 37px;
    text-align: center;
    width: 33.2%;
    float: left;
    border: 1px solid #ddd;
    border-top: 0;
    font: normal 14px/37px "Microsoft YaHei";
    _font-weight: bold;
    cursor: default;
}

.tabox .hd li.on {
    width: 33.2%;
    background: #1a2c5c;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.tabox .bd {
    height: 230px;
    border: 1px solid #ddd;
    border-top: 0;
}

.tabox .lh { height: 230px;    overflow: hidden;}

.tabox .lh li {
    width: 100%;
    padding: 0 10px;
    float: left;
}

.tabox .lh li .p-img {
    float: left;
    width: 25%; 
    /* padding:30px 13px 0 13px; */
    margin: 0 auto;
    text-align: center;
}
.tabox .lh li .p-img img{ width:100%;}
.tabox .lh li .p-name {
    color: #36648a;
    margin-top:40px;
    line-height: 36px;
    height: 38px;
    font-size: 20px;
    text-align: left;
    margin-left: 80px;
    font-weight: bold;
    padding-left: 4%;
    height: 130px;
    line-height: 18px;
    word-break: break-all;
    word-wrap: break-word;
    overflow: hidden;
}

.tabox .lh li .p-price {
    line-height: 40px;
    /* padding-left: 4%; */
    color: #999;
}

.tabox .lh li .p-price strong {
    color: #1a2c5c;
    font-size: 14px;
    font-family: verdana;
}

@media screen and (max-width: 600px) {
    .tabox {
    clear: both;
    width: 100%;
    margin: 30px auto;
    border-top: 2px solid #1a2c5c;
}
  .bd {
    flex-direction: column; /* 在小屏幕上改为垂直布局 */
  } 
  .lh {
    flex: none; /* 取消每列的等比分配 */
    width: 100%; /* 让每列宽度占满父容器 */
  }
  .tabox .bd { 
    border: 1px solid #ddd;
    border-top: 0;
}
}
