@charset "utf-8";
/* CSS Document */

#mainContent #designerArea .contentInner .img {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  #mainContent #designerArea .contentInner .img {
    width: auto;
  }
}
.tab_content {
  display: none;
}
.tab_content.active{
display: block;
}

.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;}

ul.tabs  {
    display: flex;
    width: 100%;
    list-style: none;
    justify-content: space-between;
    box-sizing: border-box;
}

.tabs > li{
  width: calc((100% - 60px) / 3);/*
　margin-right: 30px;*/
  text-align: center;
  height: 50px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  line-height: 50px;
  font-size: 16px;
  transition: all 0.2s ease;
  color: #fff;
  cursor: pointer;/*
  flex: 1;*/
}
/*.tabs > li:last-child {
    margin-right: 0;
}*/
.tabs > li.active{
  background: #fff;
  color: #000;
}
@media screen and (min-width: 768px){
  
 .tabs > li{
    cursor: pointer;
  }
  .tabs > li.active{
    cursor: default;
  }
}
.tab_content.active{
　display: block;
}

@media screen and (max-width: 768px){
       ul.tabs {
        flex-wrap: wrap;
    }
 .tabs > li{
    width: calc(100%);
    margin-bottom: 10px;
  }
}