@import url(./header.css);
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  display: block;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
.overflow-text {
  overflow: hidden; /* 处理溢出 */
  white-space: nowrap; /* 防止文本换行 */
  text-overflow: ellipsis; /* 显示省略号 */
}
.text-ellipsis-2 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* 显示两行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
body {
  width: 100%;
  height: 100%;
  background: #f9f9f9;
}
.ky-column-main {
  width: 1172px;
  margin: 20px auto 0;
  display: flex;
min-height:550px;
}
.main-left {
  flex: 1;
}
.section-wrap {
  width: 828px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 0;
  margin-bottom: 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 10px;
}

.section-title {
  font-weight: 600;
  font-size: 20px;
  color: #000000;
}
.section-content {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
.content-item {
  width: 128px;
  height: 94px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  margin-right: 8px;
}
.content-item:nth-child(6n) {
  margin-right: 0;
}
.content-item-img {
  width: 40px;
  height: 40px;
}
.content-item-info {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  padding:0 10px;
}
.main-right {
  position: relative;
  width: 324px;
  height: 128px;
  background: #ffffff;
  border-radius: 10px;
  margin-left: 20px;
}
.main-right-img {
  width: 100%;
  height: 100%;
}
.main-right-content {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  left: 0;
}
.main-right-header {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
}
.right-header-title {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  margin-bottom: 6px;
}
.right-header-sub-title {
  font-weight: 400;
  color: #818181;
  font-size: 14px;
}
.main-right-footer {
  width: 324px;
  height: 43px;
  background: #DBF47E;
  border-radius: 0px 0px 10px 10px;
  font-weight: 400;
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.qrcode {
  position: absolute;
  width: 100px;
  height: 100px;
  background: url(../../images/channel/image05.jpg) no-repeat;
  background-size: 100% 100%;
  border-radius: 2px;
  right: 30px;
  top: 10px;
}
