.go3085902934 textarea {
  display: none !important;
}

/* Webkit 浏览器（Chrome, Safari） */
::-webkit-scrollbar {
  width: 0px; /* 设置滚动条的宽度 */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* 滚动条轨道的背景 */
}

::-webkit-scrollbar-thumb {
  background: #000; /* 滚动条的颜色 */
  border-radius: 0px; /* 滚动条的圆角 */
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* 鼠标悬停时的颜色 */
}



.fl_clum_center {display: flex;flex-direction: column;justify-content: center;align-items: center;}
.fl_clum_start {display: flex;flex-direction: column;justify-content: flex-start;align-items: center;}
.fl_clum_start2 {display: flex;flex-direction: column;justify-content: flex-start;align-items: flex-start;}
.fl_clum_end {display: flex;flex-direction: column;justify-content: flex-end;align-items: center;}
.fl_clum_arround {display: flex;flex-direction: column;justify-content: space-around;align-items: center;}
.fl_clum_between {display: flex;flex-direction: column;justify-content:space-between;align-items: center;}
.fl_between{display: flex;justify-content: space-between;align-items: center;}.fl_arround{display: flex;justify-content: space-around;align-items: center;}
.fl_center{display: flex;justify-content: center;align-items: center;}
.fl_start{display: flex;justify-content: start;align-items: center;}
.fl_wrap{display: flex;flex-wrap: wrap;}
.self_start{align-self: start;}
.self_center{align-self: center;}
.self_end{align-self: flex-end;}


