.page_title .classification {
  position: absolute;
  font-size: 16px;
  color: #8d8d8d;
  top: 0;
  right: 0;
  width: 255px;
  border-bottom: 2px solid #000;
  cursor: pointer; display: none;
}

.page_title .ui-selectmenu-button {
  padding-bottom: 10px;
}

.page_title select {
  position: relative;
  width: 100%;
  outline: 0;
  border: 0;
  color: #8d8d8d;
  font-size: 15px;
  background-image: url("../images/s_down.png");
  background-size: 17px;
  background-position: right center;
  background-repeat: no-repeat;
}

.ui-selectmenu-text {
  width: 100%;
  border: 0 solid #000;
}

.page_content > * {
  opacity: 0;
}

.t1 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 35px;
}

.t2 {
  font-size: 16px;
  font-weight: 700;
}

.page_title {
  position: relative;
}

p.note {
  /*width: 550px;*/ width: 100%;
  font-size: 15px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  margin-bottom: 65px;
  color: #515151;
}

.li_title {
  font-size: 20px;
  font-weight: 700;
}

.item_list {
  margin-bottom: 50px;
}

.item_list .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: 45px;
  border-bottom: 1px solid #c4c4c4;
  margin-bottom: 45px;
  height: 288px;
  opacity: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
}

.item_list .item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.item_list .item_img {
  position: relative;
  width: 287px;
  height: 287px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.item_list .item_img .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.item_list .item_img img {
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.item_list .item_title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 14px;
  line-height: 1.2em;
  height: 40px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.item_list .item_info {
  width: 100%;
  -webkit-box-flex: 2;
  -ms-flex: 2 1 auto;
  flex: 2 1 auto;
  max-width: 595px;
  padding-left: 80px;
  padding-right: 80px;
}

.item_list .item_info p {
  font-size: 15px;
  line-height: 1.46em;
  color: #515151;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.item_list .item_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 20px;
  padding-left: 20px;
  width: 22%;
  height: 100%;
  border-left: 1px solid #c4c4c4;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.item_list .morebtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #000;
  font-size: 15px;
  overflow: hidden;
  border-radius: 50%;
  width: 115px;
  height: 115px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.item_list .morebtn:hover span {
  color: #fff;
}

.item_list .morebtn span {
  position: relative;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.item_list .morebtn:before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: url("../images/circle_btn.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.item_list .morebtn:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  border: 3px solid #727272;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.item_list .morebtn:hover:before {
  opacity: 1;
}

.item_list .morebtn:hover:after {
  opacity: 0;
}

.color_border {
  width: calc(100% - 10%);
  height: calc(100% - 10%);
  position: absolute;
  top: 5%;
  left: 5%;
}

@media only screen and (min-width: 1025px) {
  .item_list .item:hover .morebtn:before {
    opacity: 1;
  }
  .item_list .item:hover .morebtn:after {
    opacity: 0;
  }
  .item_list .item:hover .morebtn span {
    color: #fff;
  }
  .item_list .item:hover .item_img {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    background-size: 120%;
  }
  .item_list .item:hover .item_img .img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
  }
  .item_list .item:hover .item_img img {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1.12);
    -ms-transform: translateX(-50%) translateY(-50%) scale(1.12);
    transform: translateX(-50%) translateY(-50%) scale(1.12);
  }
}

@media only screen and (min-width: 1300px) and (max-height: 800px) {
    .item_list .item_info{
        width: 50%;
        padding-left: 35px;
        padding-right: 35px;
    }

    .item_list .morebtn{
        width: 90px;
        height: 90px;
    }

    .item_list .item_btn{
        width: 19%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 1150px) {
  .page_content {
    padding-left: 45px;
    padding-right: 45px;
  }
  .page_title {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 35px;
  }
  p.note {
    width: 100%;
    margin-bottom: 65px;
  }
  .item_list .item {
    height: 230px;
  }
  .item_list .item_info {
    padding-left: 35px;
    padding-right: 35px;
  }
  .item_list .item_info p {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
  }
  .item_list .item_img {
    position: relative;
    min-width: 230px;
    height: 230px;
  }
  .item_list .item_img img {
    max-height: 100%;
    width: auto;
  }
  .item_list .item_btn {
    padding-left: 15px;
    padding-right: 5px;
  }
  .item_list .morebtn {
    min-width: 85px;
    width: 85px;
    height: 85px;
  }
}

@media only screen and (max-width: 650px) {
    .page_title .classification {
      position: relative;
      margin-top: 45px;
      padding-bottom: 20px;
      width: 100%;
    }
  .page_content {
    padding-left: 0;
    padding-right: 0; margin-top: 35px;
  }
  .page_title {
    padding-left: 33px;
    padding-right: 33px;
  }
  .page_title select {
    position: relative;
    top: inherit;
    right: inherit;
  }
  p.note {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 35px;
  }
  .item_list {
    padding-left: 33px;
    padding-right: 33px;
  }
  .item_list .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
  .item_list .item_img {
    width: 100%;
    height: calc(100vw - 66px);
    margin: 0 auto 40px;
  }
  .item_list .item_info {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .item_list .item_info p {
    display: block;
  }
  .item_list .item_title {
    font-size: 18px;
  }
  .item_list .item_btn {
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    border-left: 0;
  }
  .item_list .morebtn {
    font-size: 13px;
    width: 95px;
    height: 95px;
  }
}

/*# sourceMappingURL=web_market.css.map */
