@charset "UTF-8";

/* 衬线字体 - 以'宋体'为代表*/
.font-family-serif {
  font-family: '宋体', Times, 'Times New Roman', Georgia, serif;
}

/* 无衬线字体 - 以'微软雅黑'为代表*/
.font-family-sans-serif {
  font-family: 'Microsoft YaHei', '微软雅黑', '华文黑体', Tahoma, Arial, Helvetica, sans-serif;
}

html {
  font-size: 100px;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-size: 0.14rem;
  font-family: 'Microsoft YaHei', '微软雅黑', '华文黑体', Tahoma, Arial, Helvetica, sans-serif;

  color: #2c3e50;
  background-color: #f0f2f5;
}

#app {
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
}

.minWinWidth {
  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-20 {
  width: 20%;
}

.width-25 {
  width: 25%;
}

.width-33 {
  width: 33%;
}

.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;
}

.border-4 {
  border-radius: 4px;
}

.border-8 {
  border-radius: 8px;
}

.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-000 {
  color: #000;
}
.color-333 {
  color: #333333;
}

.color-666 {
  color: #666666;
}

.line-height-15 {
  line-height: 1.5;
}

.line-height-20 {
  line-height: 2;
}

.line-height-25 {
  line-height: 2.5;
}

/**
 * -------------------------------------------------------
 * 滚动条
 * -------------------------------------------------------
 */
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  background: #61b0ff;
  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;*/
}
