@charset "UTF-8";

.border-test {
  border: red solid 1px;
}

body {
  /*margin: 0;*/
  /*padding: 0;*/
  /*height: 100vh;*/
  /*overflow: auto;*/

  /*color: #2c3e50;*/
  /*background-color: #f0f2f5;*/
}

.minWindow {
  min-width: 1366px;
  min-height: 640px;
}

.min-window-width {
  width: 16rem;
  min-width: 1366px;
}

.hidden {
  display: none;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

.font-17 {
  font-size: 17px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-28 {
  font-size: 28px;
}

.font-32 {
  font-size: 32px;
}

.font-bold {
  font-weight: bold;
}

.width-50 {
  width: 50%;
}

.width-100 {
  width: 100%;
}

.height-50 {
  height: 50%;
}

.height-100 {
  height: 100%;
}

.size-max {
  width: 100%;
  height: 100%;
}

.rect-24 {
  width: 24px;
  height: 24px;
}

.rect-32 {
  width: 32px;
  height: 32px;
}

.rect-36 {
  width: 36px;
  height: 36px;
}

.rect-40 {
  width: 40px;
  height: 40px;
}

.rect-48 {
  width: 48px;
  height: 48px;
}

.rect-64 {
  width: 64px;
  height: 64px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.link {
  color: #1877f2;
  text-decoration: none;
}

.link:hover {
  cursor: pointer;
  text-decoration: underline;
}

.pointer {
  cursor: pointer;
}

.border-box {
  box-sizing: border-box;
}
.color-white {
  color: white;
}

.color-333 {
  color: #333333;
}

.color-666 {
  color: #666666;
}


.line-height-15 {
  line-height: 1.5;
}

.line-height-20 {
  line-height: 2.0;
}

.line-height-25 {
  line-height: 2.5;
}
.text-i-1{
  text-indent: 2em;
}
/**
 * -------------------------------------------------------
 * 滚动条
 * -------------------------------------------------------
 */
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 15px;
  height: 15px;
}

::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  background: #4dd2ff;
  box-shadow: inset 0 0 10px -2px #ffffff;
}

::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  /*background: #ddd;*/
}
