* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration-line: none;

}


li {
  list-style: none;
  list-style-type: none;
}



.mui-table-view-cell1 {
  min-height: 101vh;
}

.mui-row.mui-fullscreen>[class*="mui-col-"] {
  height: 100%;
}

.mui-col-xs-3,
.mui-col-xs-9 {
  overflow-y: auto;
  height: 100%;
}

.mui-segmented-control .mui-control-item {
  line-height: 50px;
  width: 100%;
}

.mui-control-content {
  display: block;
}

.mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active {
  background-color: #fff;
}

.mui-segmented-control .mui-control-item {
  display: -webkit-box;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.mui-col-xs-4,
.mui-col-xs-8 {
  overflow-y: auto;
  height: 100%;
}

.mui-control-item img {
  width: 60%;
}

#segmentedControls .mui-control-item {
  line-height: 5vw;
  padding: 10px 0px;
  font-size: .26rem
}

#segmentedControlContents {
  font-size: .28rem
}

.mui-table-view-cell1 {

  padding: 11px 8px;
  -webkit-touch-callout: none;
}

#segmentedControlContents img {
  width: 100%
}

.cell_title {
  font-size: 0.3rem;
  text-align: center;
  font-weight: bold;
  line-height: 30px;
  padding: 0px 5px 5px 5px;
}

.cell_title_second {
  font-size: 0.28rem;
  text-align: center;
  font-weight: bold;
  line-height: 30px;
  padding: 10px 5px;
  border-top: 1px solid #efefef
}

.cell_title_info {
  text-align: right;
  font-size: 0.26rem;
  color: #4C4C4C;
  text-align: center;
  line-height: 30px;
  padding: 0px 5px;
}

.cell_title_bottom {
  text-align: left;
  font-size: 0.26rem;
  line-height: 25px;
  padding: 0px 5px;
}

.cell_title_exmple {
  color: #4C4C4C;
  text-align: center
}

.cell_title_text {
  text-align: left;
  font-size: 0.25rem;
  line-height: 0.35rem;
  padding: 5px 5px;
  text-indent: 2em;
  text-align: justify;
  text-justify: inter-ideograph;
}


.mui-scroll-wrapper {
  position: relative;
}

.mui-col-xs-3 {
  width: 25%
}

.mui-col-xs-9 {
  width: 75%
}

.mui-preview-image.mui-fullscreen {
  position: fixed;
  z-index: 20;
  background-color: #000;
}

.mui-preview-header,
.mui-preview-footer {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 10;
}

.mui-preview-header {
  height: 44px;
  top: 0;
}

.mui-preview-footer {
  height: 50px;
  bottom: 0px;
}

.mui-preview-header .mui-preview-indicator {
  display: block;
  line-height: 25px;
  color: #fff;
  text-align: center;
  margin: 15px auto 4;
  width: 70px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  font-size: 16px;
}

.mui-preview-image {
  display: none;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.mui-preview-image.mui-preview-in {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.mui-preview-image.mui-preview-out {
  background: none;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.mui-preview-image.mui-preview-out .mui-preview-header,
.mui-preview-image.mui-preview-out .mui-preview-footer {
  display: none;
}

.mui-zoom-scroller {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-backface-visibility: hidden;
}

.mui-zoom {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.mui-slider .mui-slider-group .mui-slider-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.mui-android-4-1 .mui-slider .mui-slider-group .mui-slider-item img {
  width: 100%;
}

.mui-android-4-1 .mui-slider.mui-preview-image .mui-slider-group .mui-slider-item {
  display: inline-table;
}

.mui-android-4-1 .mui-slider.mui-preview-image .mui-zoom-scroller img {
  display: table-cell;
  vertical-align: middle;
}

.mui-preview-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}

.mui-preview-loading.mui-active {
  display: block;
}

.mui-preview-loading .mui-spinner-white {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  height: 50px;
  width: 50px;
}

.mui-preview-image img.mui-transitioning {
  -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
}



@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.clear {
  clear: both;
}

.cell_title_bold {
  font-weight: bold
}