/* 小于750px 手机*/
@media screen and (max-width: 750px) {
  .private_page {
    background-color: #f0f0f0;
  }
  .m_nav_content.have_bg .el-input--suffix .el-input__inner,
  .m_nav_content.have_bg .el-select-dropdown__list {
    background-color: #f0f0f0;
  }
  .business_box {
    width: 100%;
    display: flex;
    gap: 0.06rem;
    flex-wrap: wrap;
  }
  .business_box .business_item {
    background-color: #fff;
    width: 32%;
    padding: 0.24rem 0.08rem;
    border-radius: 0.04rem;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .business_box .business_item .business_icon {
    width: 0.44rem;
    height: 0.44rem;
    background-color: #254a98;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
  }
  .business_box .business_item .business_icon img {
    width: 0.4rem;
    height: 0.4rem;
    object-fit: cover;
  }
  .business_box .business_item p {
    line-height: 0.36rem;
    font-size: 0.14rem;
    color: #222222;
  }
  .business_box .business_item .business_btn {
    font-size: 0.14rem;
    width: 0.8rem;
    height: 0.3rem;
    border-radius: 0.3rem;
    color: #8b6825;
    border: 1px solid #8b6825;
    text-align: center;
    line-height: 0.28rem;
  }
  .business_box .business_item .business_btn:active {
    color: #fff;
    background-color: #8b6825;
  }
  .second_contain {
    margin: 0.2rem 0;
  }
  .add_height {
    padding-bottom: 0.4rem !important;
  }
}
@media screen and (min-width: 750px) {
  /*  PC ,只需要从内容里面自己取类名的地方开始写就就可以了 */
  .private_page {
    background-color: #f0f0f0;
  }
  .business_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .business_box .business_item {
    background-color: #fff;
    margin-bottom: 20px;
    width: 32%;
    padding: 50px 0;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-right: 14px;
  }
  .business_box .business_item:hover {
    cursor: pointer;
  }
  .business_box .business_item:hover p {
    color: #8b6825;
  }
  .business_box .business_item:hover .business_btn {
    color: #fff;
    background-color: #8b6825;
  }
  .business_box .business_item .business_icon {
    width: 104px;
    height: 104px;
    background-color: #254a98;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
  }
  .business_box .business_item .business_icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  .business_box .business_item p {
    line-height: 60px;
    font-size: 24px;
    color: #222222;
  }
  .business_box .business_item .business_btn {
    font-size: 16px;
    width: 120px;
    height: 40px;
    border-radius: 40px;
    color: #8b6825;
    border: 2px solid #8b6825;
    text-align: center;
    line-height: 36px;
    user-select: none;
  }
  .second_contain {
    margin: 60px 0;
  }
  .add_height {
    padding-bottom: 100px !important;
  }
}
