a{color: inherit;}
.goods-type-box {
  height: 42px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff; }
  .goods-type-box > span {
    text-align: center;
    font-size: 14px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    cursor: pointer;
    border-left: 1px solid #DDD; }
  .goods-type-box > span:nth-of-type(1) {
    border-left: none; }
  .goods-type-box > span:hover, .goods-type-box > span.active {
    color: #ff892c; }

.goods-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 120%; }
  .goods-box .goods-item {
    width: 275px;
    height: 385px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #EEE;
    background-color: #fff;
    margin-bottom: 25px;
    padding: 10px;
    margin-right: 25px; }
    .goods-box .goods-item .goods-img{
      width: 253px;
      height: 253px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      overflow-y: auto;
      position: relative;
      }
    .goods-box .goods-item img {
      width: 100%;
      height: auto;
      margin: 0 auto;
      top: 0;
      position: absolute;
      transition: all 4s;
      }
    .goods-box .goods-item .goods-title {
      font-size: 16px;
      line-height: 1.6em;
      margin: 15px 0;
      height: 50px;
      overflow: hidden; }
    .goods-box .goods-item .goods-money {
      font-size: 22px;
      line-height: 2em;
      color: red; }
    .goods-box .goods-item .btn-box {
      height: 40px;
      border-top: 1px solid #EEE;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .goods-box .goods-item .btn-box span {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        text-align: center;
        line-height: 40px;
        cursor: pointer;
        margin-right: -10px;
        font-size: 14px;
        color: #ff892c; }
        .goods-box .goods-item .btn-box span a{display:block;}
      .goods-box .goods-item .btn-box span:nth-of-type(1) {
        color: #333;
        margin-right: 0px;
        margin: 0 -10px; }
      .goods-box .goods-item .btn-box .el-divider {
        margin: 0 10px; }
      .goods-box .goods-item .btn-box span:hover {
        color: white;
        background-color: #ff892c; }
    .goods-box .goods-item .btn-box:hover .el-divider {
      opacity: 0; }
  .goods-box .goods-item:hover {
    -webkit-box-shadow: 0 0 2px 2px #EEE;
            box-shadow: 0 0 2px 2px #EEE;
    border-color: #ff892c; }

@media all and (max-width:720px){
.xy-box{padding: 0 2% 40px;}
.goods-type-box{width: 96%;margin: 0 2%;}
.goods-box{width: 100%;}
.goods-box .goods-item{width: 46%;margin: 0 2% 20px;height: auto;}
.goods-box .goods-item .goods-img{width: 100%;height: 40vw;}
.goods-box .goods-item .goods-title{height: 32px;}
.goods-box .goods-item .btn-box{height: 20px;}
.goods-box .goods-item .btn-box span{color: #fff !important;background-color: #ff892c;}
} 

::-webkit-scrollbar{
    width: 3px;
    background-color: #ccc;
}
::-webkit-scrollbar-thumb{
    background-color: #999;
}