@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;
}
.main-left {
  flex: 1;
}
.section-wrap {
  width: 828px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 0;
  margin-bottom: 20px;
}
.recommend > .section-container {
  padding: 0 10px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 10px;
}
.hot > .section-header {
  border-bottom: 1px solid #ededed;
}
.section-title {
  font-weight: 600;
  font-size: 20px;
  color: #000000;
}
.section-more {
  font-weight: 400;
  color: #959595;
  font-size: 14px;
}

.swiper-container {
  height: 140px;
}
.swiper-wrapper {
  height: 94px;
}
.swiper-slide {
  display: flex;
}
.swiper-slide-item {
  width: 128px;
  height: 94px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  margin-right: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-slide-item:last-child {
  margin-right: 0px;
}
.slide-item-img {
  width: 40px;
  height: 40px;
}
.slide-item-content {
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  padding: 0 10px;
}

.container-list-wrap {
  display: flex;
  flex-wrap: wrap;
}

.container-list-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
.item-wrap {
  width: 192px;
}
.item-header {
  width: 100%;
  margin-bottom: 20px;
}
.item-img {
  width: 100%;
  height: 120px;
  border-radius: 6px;
}
.item-title {
  font-weight: 500;
  color: #333333;
  font-size: 12px;
  line-height: 17px;
  margin-top: 5px;
}

.item-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-time {
  font-weight: 400;
  font-size: 10px;
  color: #959595;
}
.footer-btn {
  width: 64px;
  height: 25px;
  background: #0367f5;
  border-radius: 13px;
  text-align: center;
  line-height: 25px;
  font-size: 12px;
  color: #ffffff;
  cursor: pointer;
}

.container-tips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 500px;
}
.tips-img {
  width: 163px;
  height: 155px;
}
.tips-text {
  font-weight: 600;
  color: #000000;
  font-size: 16px;
  margin-top: 15px;
}

.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;
  font-size: 12px;
  color: #303030;
  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;
}

