@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul li {
  list-style: none;
}
html {
  width: 100%;
  height: 100%;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-text-size-adjust: none;
}
body {
  width: 100%;
  height: 100%;
}
#app {
  width: 100%;
  height: 100%;
}
.el-container {
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.el-container .el-header {
  width: 100%;
  padding: 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.el-container .el-header .h-left {
  color: #9333ea;
  font-size: 24px;
  font-weight: 700;
  flex: none;
}
.el-container .el-header .h-center {
  flex: 1;
  text-align: center;
}
.el-container .el-header .h-center a {
  margin: 0 20px;
}
.el-container .el-header .h-right {
  flex: none;
  display: flex;
  align-items: center;
}
.el-container .el-header .h-right .el-input {
  margin-right: 20px;
}
.el-container .el-header .h-right .el-avatar {
  flex: none;
}
.el-main {
  padding: 0 !important;
  background-color: #f9fafb;
}
.el-main .banner {
  height: 500px;
  background-image: url("../images/banner.png");
  background-size: cover;
  position: relative;
}
.el-main .banner h1 {
  position: absolute;
  left: 96px;
  top: 160px;
  height: 48px;
  font-family: Roboto;
  font-size: 48px;
  font-weight: bold;
  line-height: 48px;
  letter-spacing: 0px;
  font-feature-settings: "kern" on;
  color: #ffffff;
  overflow: hidden;
}
.el-main .banner p {
  position: absolute;
  left: 96px;
  top: 232px;
  width: 500px;
  height: 28px;
  opacity: 1;
  font-family: Roboto;
  font-size: 20px;
  font-weight: normal;
  line-height: 28px;
  letter-spacing: 0px;
  font-feature-settings: "kern" on;
  color: #ffffff;
  overflow: hidden;
}
.el-main .content {
  width: 100%;
  height: 600px;
  display: flex;
}
.el-main .content .c-left {
  flex: 1;
  padding: 50px 32px 48px 96px;
}
.el-main .content .c-left .c-l-header {
  font-size: 24px;
  font-weight: 700;
}
.el-main .content .c-l-main {
  display: flex;
  flex-wrap: wrap;
}
.el-main .content .c-l-main .bottom {
  padding: 30px;
}
.el-main .content .main-item {
  background-color: #fff;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  width: 402px;
  margin-right: 24px;
  margin-bottom: 24px;
}
.el-main .content .c-l-header {
  margin-bottom: 20px;
}
.el-main .content .b-header {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0px;
  margin: 0 0 8px 0;
}
.el-main .content .b-text {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #4b5563;
}
.el-main .content .c-right {
  width: 500px;
  flex: none;
  padding: 48px 96px 48px 0;
}
.el-main .content .c-right .stack {
  width: 100%;
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
}
.el-main .content .c-right .s-title,
.el-main .content .c-right .a-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0px;
  margin-bottom: 15px;
}
.el-main .content .c-right ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.el-main .content .c-right ul li:last-child {
  margin: 0;
}
.el-main .content .c-right ul li span {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #374151;
}
.el-main .content .c-right ul li span:last-child {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 0px;
  color: #6b7280;
}
.el-main .content .c-right .about {
  margin-top: 20px;
  width: 100%;
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
}
.el-main .content .c-right .about .a-list span {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #374151;
}
/* 全局滚动条样式统一 */
::-webkit-scrollbar {
  width: 10px;
  /*滚动条宽度*/
  height: 10px;
  /*滚动条高度*/
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  box-shadow: 0px 1px 3px transparent inset;
  /*滚动条的背景区域的内阴影*/
  border-radius: 10px;
  /*滚动条的背景区域的圆角*/
  background-color: transparent;
  /*滚动条的背景颜色*/
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  box-shadow: 0px 1px 3px rgba(144, 147, 153, 0.3) inset;
  /*滚动条的内阴影*/
  border-radius: 10px;
  /*滚动条的圆角*/
  background-color: rgba(144, 147, 153, 0.3);
  /*滚动条的背景颜色*/
}
