/*form item start */
.error {
    color: #b94a48 !important;
}
input.error{
   border: #b94a48 1px solid !important;
}

.form-ctn {
    text-align: center;
}

.form-submit {
    margin: auto 0;
}

.form-title {
    color: #666;
}

.form-label {
    width: 18%;
    display: inline-block;
    font-size: 16px;
    text-align: right;
    margin-right: 1%;
    color: #666;
}

.form-input {
    display: inline-block;
    width: 80%;
    min-height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-select {
    display: inline-block;
    width: 80%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

/*form item end */
/*自定义折叠控件*/
.ext-collapse-a {
        background:none; border:none;
         text-align: left;width: 100%;display: block;line-height: 40px;font-size: 18px;text-indent: 1em;
    }
/*ext table list样式*/
.ext-table-list{

    width:100%;
    height:auto;
    display: block;
    overflow: hidden;

}
.ext-table-list li {

    width: 100%;
    height:40px;
    overflow: hidden;
}
li.art-line{
    border-bottom: #ccc 2px dotted;
   }
.ext-table-list  li a, .ext-table-list li span{
    min-height: 45px;
    line-height: 45px;
    font-size:18px;
    display: inline-block;
    overflow: hidden;


}
.ext-table-list li a{
    width: 70%;
    text-align: left;
    color:#666;
    float:left;
    font-weight: bold;
}
.ext-table-list li span{
     width: 30%;
    text-align: right;
    color:#666;
    float:left;

}
/*淡入淡出效果*/
 @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .fup {
    visibility: visible;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both; /* 保持动画结束后的状态 */
  }
  .fin {
    visibility: visible;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  /*弹出淡入*/
  .fade-in{
      opacity: 1;
      transition: opacity 1s;


  }
  .fade-out{
      opacity: 0;
      transition: opacity 1s;
  }

  /*上下浮动*/
  .rise-up, .rise-down {
      transition: transform 0.5s ease;/*平湖过度效果*/

  }
  .rise-up:hover {
      transform: translateY(-10px);

  }
  .rise-down:hover {
      transform: translateY(10px);

  }
/*图片翻动*/
.flip-card {
    transition: transform 0.6s; /* 平滑过渡效果 */
    transform-style: preserve-3d; /* 保持3D变换 */
}

.flip-card:hover {
    transform: rotateY(180deg); /* 鼠标悬停时翻转 */
}