.uipanel {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-right: 1.333%;
  margin-bottom: 20px;
  background-color: #FFF;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .25);
}
.uipanel.s {
  width: 24%;
  margin-right: 1%;
}
.uipanel.m {
  width: 49%;
  margin-right: 2%;
}
.uipanel.l {
  width: 74%;
  margin-right: 2%;
}
.uipanel.w {
  width: 100%;
  margin-right: 0;
}
.uipanel:last-child {
  margin-right: 0;
}
.uipanel .tab-list {
  display: inline-block;
  width: 100%;
  font-size: 0;
  text-align: left;
}
.uipanel .tab-item {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: .5em 1.5em;
  color: #333;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.uipanel .tab-item:hover {
  background-color: #F0F0F0;
}
.uipanel .tab-item .tab-bar {
  display: inline-block;
  position: absolute;
  bottom: 5px;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: #3467b1;
  opacity: 0;
  transition: all ease-in-out .2s;
}
.uipanel .tab-item.selected .tab-bar {
  opacity: 1;
}
.uipanel .option {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url('/image/icon-menu.png');
  background-size: auto 60%;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all ease-in-out .2s;
  z-index: 1;
}
.uipanel .option:focus {
  outline: none;
}
.uipanel .option .dropdown {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  background-color: #FFF;
  box-shadow: 0 0 3px rgba(0, 0, 0, .25);
  z-index: 10;
}
.uipanel .option .option-item {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  color: #333;
  font-size: 14px;
  text-align: center;
  background-color: #FFF;
  border-bottom: 1px solid #EEE;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.uipanel .option .option-item:hover {
  background-color: #F0F0F0;
}
.uipanel .option .option-item:last-child {
  border-bottom: none;
}
.uipanel .top {
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
  font-size: 0;
  border-bottom: 1px solid #EEE;
}
.uipanel .top .title {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.uipanel .body {
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
  background-color: #FFF;
}
.uipanel .body.fragment {
  display: none;
}
.uipanel .body .title {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.uipanel .body .desc {
  display: inline-block;
  width: 100%;
  line-height: 1.5em;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.uipanel .body .row {
  margin-bottom: 10px;
}
.uipanel .body .row:last-child {
  margin-bottom: 0px;
}
.uipanel .linebreak {
  display: inline-block;
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
  background-color: #CCC;
}