.float-l {
  float: left;
}
.float-r {
  float: right;
}
.clear {
  clear: both;
}
.center {
  margin: 0 auto;
}
.ft-wei {
  font-weight: 600;
}
.hide-excess-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.v-center {
  display: flex;
  justify-content: center;
  align-items: Center;
}
@keyframes imgHover {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.imgHover {
  animation: imgHover 1s forwards;
}
.figure a:not(.btn):hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .content {
    overflow: auto;
  }
}
.home-app .app-right .app-list {
  margin-bottom: 40px;
}
.content:not([class*="col-"]) a[href]:not(.btn) {
  text-decoration: underline;
}
.dialog-modal{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.6);
  border: 1px solid #000;
  z-index: 10000;
}
.dialog-modal .model-box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.dialog-modal .model-box img{
  max-width: 100%;
  max-height: 100%;
}