﻿/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  background-color: #f2f6fc;
}

/* 使链接去掉下划线 */
a {
  text-decoration: none;
  color: inherit;
}

i {
  font-style: normal;
}

/* 清除列表样式 */
ul,
ol,
li {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
}

/* 图片自适应 */
img {
  max-width: 100%;
  height: auto;
}

/* 表格样式 */
table {
  border-collapse: collapse; /* 合并边框 */
  width: 100%; /* 表格宽度100% */
}

/* input默认样式清除 */
input {
  border: none; /* 清除默认边框 */
  background: transparent; /* 清除默认背景色 */
  outline: none; /* 去掉聚焦时的轮廓 */
  box-shadow: none; /* 清除阴影效果 */
}
input::placeholder {
  color: #aaa; /* 占位符的颜色 */
}

th,
td {
  text-align: left; /* 左对齐 */
  padding: 0.5rem; /* 单元格内边距 */
}

iframe {
  height: 100%;
}

.icon-lianjie {
  font-size: 18px;
  font-weight: bold;
  color: #fd3358;
}

.baidu-value {
  background: url(http://tougao.china-ef.com/common/images/baidu.png) no-repeat center;
}

.item-flying {
  position: absolute;
  z-index: 1000;
  animation: flyToCart 1s forwards; /* 动画持续时间 */
}

.container {
  width: 90%;
  min-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  /* background-color: #fff; */
  /* padding: 20px 0; */
}

/* 头部样式 */
header .site-topbar {
  height: 32px;
  background: #f6f6f6;
  line-height: 32px;
}
header .w1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  margin: 0 auto;
}
header .site-topbar .slogan {
  font-size: 14px;
  line-height: 18px;
  color: #333;
}
header .site-topbar .slogan .is-login {
  display: inline-block;
}
header .site-topbar .slogan .title-login {
  font-family: Microsoft YaHei;
  font-size: 14px;
  line-height: 18px;
  color: #fb3358;
  padding: 0 15px;
  border-right: 1px solid #ccc;
  /* font-weight: bold; */
}
header .site-topbar .topbar-nav .topbar-link {
  color: #fb3358;
  margin-left: 30px;
  font-weight: bold;
}
header .site-topbar .topbar-nav .topbar-link a {
  color: #fb3358;
  font-weight: bold;
  margin-left: 0;
  font-size: 18px;
}
.header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  transition: all 0.3s;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  height: 90px;
  box-sizing: border-box;
  padding: 15px 0;
}
.header .brand-box {
  display: flex;
  align-items: center;
}
.header .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .logo img {
  height: 46px;
}
.header .brand-box .brand-slogan {
  font-size: 14px;
  line-height: 20px;
  color: #333;
  position: relative;
  margin-left: 10px;
  padding-left: 15px;
}
.header .menu {
  line-height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  margin-left: 60px;
}
.header .menu li {
  position: relative;
}
.header .menu li a {
  display: block;
  font-size: 16px;
  color: #333;
  position: relative;
  line-height: 60px;
}
.header .menu li a.on {
  color: #fb3358;
}

/* 底部样式 */
footer {
  background-color: #fff;
  color: #333;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px; /* 限制最大宽度 */
  margin: 0 auto; /* 居中对齐 */
}

.footer-container p {
  margin: 10px 0;
}

.footer-container span {
  font-size: 12px;
}

.footer-container nav {
  margin: 20px 0;
}

.footer-link {
  color: #333;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #3388ff; /* 悬停时改变颜色 */
}

/* 搜索框 */
.search-container {
  width: 60%;
  height: 50px;
  display: flex; /* 使用弹性盒子布局 */
  align-items: center; /* 垂直居中对齐 */
  /* border: 1px solid #ccc; 边框 */
  border-radius: 5px; /* 圆角 */
  overflow: hidden; /* 隐藏溢出部分 */
  background-color: white; /* 背景颜色 */
  margin: 30px auto;
  border-radius: 60px;
}

.dropdown {
  height: 100%;
  border: none;
  padding: 10px;
  outline: none;
  font-size: 18px;
}

.search-input {
  flex: 1; /* 使输入框填满剩余空间 */
  height: 100%;
  border: none;
  padding: 10px;
  outline: none;
  font-size: 18px;
  border-left: 1px solid #ccc; /* 右边框 */
}

.search-button {
  width: 100px;
  height: 100%;
  background-color: #007bff; /* 按钮背景颜色 */
  color: white; /* 按钮文字颜色 */
  border: none;
  padding: 10px 20px; /* 按钮内边距 */
  cursor: pointer; /* 鼠标指针变为手形 */
  font-size: 18px;
}

.search-button:hover {
  background-color: #0056b3; /* 悬停时按钮颜色 */
}

/* 媒体筛选 */
.media-filter {
  border-radius: 10px;
  width: 90%;
  min-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 -2px 5px rgba(255, 255, 255, 0.8);
}

.media-tab {
  display: flex;
  justify-content: space-between;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px 10px 0 10px;
  margin-bottom: 20px;
}

.media-tab li {
  text-align: center;
  flex: 1;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  border: 1px solid #007bff;
  margin-right: 10px;
  opacity: 0.9;
}

.media-tab li i {
  font-size: 18px;
  margin-right: 10px;
  color: #007bff;
}

.media-tab li.active {
  background: linear-gradient(180deg, #2196f3 0%, #90caf9 100%);
  box-shadow: 0 5px 5px #e5e5e5;
  border: unset;
}

.media-tab li.active i {
  color: #fff;
}

.media-tab li.active span {
  color: #fff;
}

.media-tab li a {
  line-height: 60px;
  font-size: 20px;
  color: #333;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
}

.media-filter .filter {
  border-bottom: 1px solid #eeeeee;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

.media-filter ul .filter-title {
  background-color: #fff;
  width: 12.5%;
  text-align: center;
  font-size: 14px;
  color: #333;
  flex-shrink: 0;
  align-self: center;
}

.media-filter .filter-item {
  flex: 1;
  min-height: 44px;
}

.media-filter .filter-item ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 5px 0;
}

.media-filter .filter-item li {
  position: relative;
  font-size: 14px;
  color: #666;
  padding: 5px 13px;
  border-radius: 4px;
  cursor: pointer;
}

.media-filter .filter-item li.active {
  color: #409eff;
  background-color: #d9ecff;
}

.media-filter .filter-item li:hover {
  color: #409eff;
  background-color: #d9ecff;
}

.filter-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  min-width: 1200px;
  margin: 20px auto;
}

.rank-filter {
  display: flex;
  justify-content: flex-start;
  float: left;
}

.rank-filter .rank-item {
  margin-right: 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  line-height: 40px;
  border-radius: 4px;
  cursor: pointer;
}

.rank-filter .rank-item.active {
  border-color: #fd3358;
}

.rank-filter .rank-item a {
  padding: 0 22px;
  height: 100%;
  display: inline-block;
  font-size: 14px;
}

.rank-filter .rank-item.active a {
  color: #fd3358;
}

/* 媒体列表 */
.medias {
  width: 90%;
  min-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 30px;
  font-size: 14px;
}

.medias .media-ul {
  width: 100%;
  min-height: 800px;
}

.medias .media-ul .media-li {
  padding: 15px 25px;
  display: flex;
  /* height: 80px; */
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  position: relative;
  min-width: 1100px;
}

.medias .media-ul .media-li:hover {
  background-color: #ecf5ff;
}

.medias .media-ul .media-li.active:hover {
  background-color: #fef0f0;
}

.medias .media-ul .media-li.active {
  background-color: #fef0f0;
}
.medias .media-ul .media-li.active .add-btn .addMedia {
  background-color: #fd4768;
  border: 1px solid #fd4768;
}
.medias .media-ul .media-li.active .add-btn .addMedia {
  color: #fff;
}

.medias .media-ul .media-li .media-info {
  width: 280px;
  display: flex;
}

.medias .media-ul .media-li .media-info .logo {
  width: 80px;
  flex: 0 0 80px;
  height: 80px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.medias .media-ul .media-li .media-info .logo img {
  display: block;
  max-width: 80px;
  max-height: 80px;
}

.medias .media-ul .media-li .media-info .info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.medias .media-ul .media-li .media-info .info p {
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.medias .media-ul .media-li .media-info .info span {
  color: #007bff;
  border: 1px solid #007bff;
  text-align: center;
  padding: 2px 4px;
  font-size: 12px;
  margin: 10px 2px 0 0;
  border-radius: 5px;
}

.medias .media-ul .media-li .price {
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.medias .media-ul .media-li .note {
  width: 300px;
}

.medias .media-ul .media-li .note .value {
  /* 超过两行显示... */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.medias .media-ul .media-li .area {
  width: 120px;
}

.medias .media-ul .media-li .key {
  text-align: center;
  color: #666;
  margin-top: 22px;
  padding-bottom: 5px;
  font-size: 12px;
}

.medias .media-ul .media-li .price .price-yhj {
  font-size: 14px;
}

.medias .media-ul .media-li .price .price-yhj span {
  color: #fb3358;
  font-size: 16px;
}

.medias .media-ul .media-li .value {
  text-align: center;
  color: #333;
}

.medias .media-ul .media-li .value.baidu-value {
  width: 55px;
  text-indent: 24px;
  height: 19px;
  background-size: auto 100% !important;
  line-height: 19px;
  position: relative;
  color: #fff;
  font-size: 16px;
}

.medias .media-ul .media-li .add-btn {
  position: relative;
  /* margin-top: 28px; */
  margin: auto 0;
  padding: 0 5px;
}

.medias .media-ul .media-li .add-btn .addMedia {
  border: 1px solid #007bff;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  padding: 3px 20px;
}

.medias .media-ul .media-li .add-btn .addMedia {
  color: #007bff;
  border-color: #007bff;
}
.medias .media-ul .media-li .add-btn .addMedia.isdel {
  background: #fb3358;
  border-color: #fb3358;
}

.medias .media-ul .media-li .add-btn .addMedia.isdel {
  color: #fff;
}

/* 右侧菜单 */
.right-menu {
  position: fixed;
  right: 0;
  top: calc((100% - 118px) / 2);
  z-index: 10000;
}

.right-menu .service-panel {
  margin-bottom: 10px;
  position: relative;
}

.right-menu .service-panel .service-title {
  padding: 17px 20px;
  width: 60px;
  display: inline-block;
  color: #fd3358;
  box-shadow: 0px 1px 16px 0px rgba(51, 51, 51, 0.09);
  border-radius: 4px 0 0 4px;
  text-align: center;
  font-size: 16px;
  position: relative;
  background-color: #fff;
  box-sizing: border-box;
  cursor: pointer;
}

.right-menu .service-content {
  position: absolute;
  right: 70px;
  top: 0;
  background-color: #fff;
  border: 1px solid #fd3358;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-radius: 5px;
  display: none;
}

.right-menu .service-qrcode {
  font-size: 14px;
  /* color: #FD3358; */
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.right-menu .service-box {
  color: #333;
  text-align: center;
  width: 150px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.right-menu .media-selected {
  width: 60px;
  background: #ffffff;
  box-shadow: 0px 1px 16px 0px rgba(51, 51, 51, 0.09);
  border-radius: 4px 0 0 4px;
  color: #fd3358;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  margin-top: 20px;
}

.right-menu .media-selected .iconfont {
  font-size: 32px;
  padding: 5px;
  color: green;
}

.right-menu .media-selected .mediaCount {
  position: absolute;
  right: 0px;
  top: -10px;
  background: green;
  color: #fff;
  padding: 2px 6px;
  line-height: 18px;
  border-radius: 10px 0 0 10px;
}

.right-menu .back2top {
  width: 60px;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 1px 16px 0px rgba(51, 51, 51, 0.09);
  border-radius: 4px 0 0 4px;
  color: #fd3358;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  display: none;
}

/* 购物车 */

.selectMedias-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 8888;
  align-items: center;
  /* display: none; */
  transition: all 0.5s;
  overscroll-behavior: contain;
}

.selectMedias {
  width: 900px;
  height: 580px;
  background: #fff;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px;
}

.selectMedias iframe {
  width: 100%;
  height: calc(100% - 50px);
}

.selectMedias .selectMedias-title {
  display: flex;
  justify-content: space-between;
  line-height: 50px;
  font-size: 18px;
  font-weight: bold;
  padding: 0 20px;
  color: #333;
  overflow: hidden;
}

.selectMedias .selectMedias-close {
  font-size: 16px;
  float: right;
  cursor: pointer;
}

.selectMedias-ul {
  min-height: 100px;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  overflow: auto;
  padding: 10px;
  background: #f6f7f8;
  /* overscroll-behavior: contain; */
}

.selectMedias-ul li {
  background: #fff;
  box-sizing: border-box;
  width: calc(50% - 10px);
  height: 80px;
  border-bottom: 0;
  padding: 10px;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px;
}

.selectMedias-ul .media-li .media-info img {
  max-width: 95px;
  height: 100%;
}

.selectMedias-ul .media-li .media-info {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 100%;
}

.selectMedias-ul li .media-info .item-logo-box {
  background: #fff;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.selectMedias-ul li .media-info .item-logo-box img {
  max-width: 60px;
  max-height: 60px;
}

.selectMedias-ul li .price .item-price-yhj span {
  font-size: 16px;
  font-weight: bold;
  color: #fd3358;
}

.selectMedias-action {
  position: absolute;
  bottom: -50px;
  width: 100%;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px 20px;
  /* 上阴影 */
  box-shadow: 0px -1px 16px 0px rgba(51, 51, 51, 0.09);
}

.selectMedias-action a {
  display: block;
  width: 80px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  background: #fb3358;
  color: #fff;
  margin-left: 10px;
}

.selectMedias-ul li .selectMedia-item-del .iconfont {
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

.right-menu .back2top .iconfont {
  font-size: 30px;
}

/* 详情页 */
.mediaContent {
  width: 1200px;
  margin: 20px auto;
  overflow: hidden;
}

.mediaContent-left {
  float: left;
  width: 900px;
  background: #fff;
  padding: 20px;
  margin-right: 20px;
  box-sizing: border-box;
}

.mediaContent-pic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
  width: 170px;
  float: left;
}

.logo-box {
  border: 1px solid #ddd;
  width: 155px;
  height: 155px;
  display: flex;
  align-items: center;
  padding: 5px;
}

.logo-box img {
  display: block;
  margin: auto;
}

.mediaContent-left .doselect {
  background: linear-gradient(272.75deg, #288be6 5.93%, #7bc0ff 94.27%);
  padding: 10px 16px;
  background-color: #fd3358;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

.mediaContent-info {
  float: left;
  width: 670px;
}

.mediaContent-info .media-name {
  overflow: hidden;
}

.mediaContent-info .media-name h1 {
  font-size: 26px;
  color: #333;
  float: left;
}

.mediaContent-info .media-name a {
  float: left;
  margin: 8px 0 0 10px;
  display: block;
  font-size: 14px;
  color: #fd3358;
  font-weight: bold;
}

.mediaContent-info .note {
  color: #666;
  margin: 18px 0;
  font-size: 14px;
  line-height: 1.5em;
}

.mediaContent-info .mediaData {
  background: rgb(250, 250, 250);
  padding: 10px;
  display: flex;
}

.mediaContent-info .mediaData li {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-left: 1px solid #eee;
}

.mediaContent-info .mediaCanshu {
  font-size: 14px;
  width: 860px;
  margin-left: -190px;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
}

.mediaContent-info .mediaCanshu li {
  width: 33.33%;
  box-sizing: border-box;
  padding: 10px;
  color: #666;
  overflow: hidden; /* 隐藏溢出的内容 */
  white-space: nowrap; /* 强制在同一行内显示所有文本，直到文本结束或者遇到<br>标签才会换行 */
  text-overflow: ellipsis; /* 当文本溢出时显示省略号来代表被修剪的文本 */
}

.mediaContent-info .mediaData li:first-child {
  border-left: 0;
}

.mediaContent-info .mediaData li .datavalue {
  color: rgb(238, 65, 65);
  font-size: 22px;
  margin-top: 10px;
}

.mediaContent-info .mediaData li .datavalue2 {
  color: rgb(238, 65, 65);
  font-size: 16px;
  display: block;
  margin-top: 6px;
}

.mediaContent-info .mediaData li .datavalue3 {
  color: #999;
  font-size: 12px;
  margin-top: 10px;
  display: block;
}

.mediaContent-info .mediaCanshu li {
  width: 33.33%;
  box-sizing: border-box;
  padding: 10px;
  color: #666;
}

.mediaContent-info .mediaCanshu li span {
  color: rgb(238, 65, 65);
}

.mediaContent-right {
  box-sizing: border-box;
  float: left;
  width: 280px;
}

.mediaContent-right .service-info {
  background: #fff;
  padding: 20px;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

.mediaContent-right .service-info .service-code {
  width: 110px;
  height: 110px;
}

.recommend-media-box {
  background: #fff;
  padding: 10px 20px 0;
  flex-shrink: 0;
  margin-top: 20px;
}

.recommend-media-box .title {
  font-size: 20px;
  line-height: 28px;
  margin: 20px 0 10px 0;
  display: flex;
  justify-content: space-between;
}

.recommend-media-box .title .refresh {
  font-size: 14px;
  line-height: 24px;
  color: #fb3358;
  margin-left: 10px;
  cursor: pointer;
}

.recommend-media-box .title .refresh i {
  vertical-align: -1px;
  margin-right: 2px;
}

.recommend-media-box .media-list {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 10px;
}

.recommend-media-box .media-list .media-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.recommend-media-box .media-list .media-item .media-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 10px;
}

.recommend-media-box .media-list .media-item .media-name {
  flex: 1;
}

.recommend-media-box .media-list .media-item .media-cart {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 8px;
  padding: 10px 24px;
  background-color: #fb3358;
  width: 80px;
  margin: 0 auto;
  margin-left: -60px;
  margin-top: -20px;
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 10px #eeeeee;
  display: none;
}

/* .main {
  background: url(../img/home_bg.png) no-repeat top center;
} */

.header.home_header {
  background-color: transparent;
  border-bottom: none;
}

.header.home_header .menu li a {
  color: #fff;
}

.wrapper {
  width: 1200px;
  margin: 60px auto;
}

/*分页*/
.paging {
  width: 100%;
  text-align: center;
  font: 14px/28px "宋体";
  padding-top: 15px;
  padding-bottom: 30px;
}

.paging a,
.paging span {
  background: #fff;
  font: 15px/45px "宋体";
  padding: 10px 15px;
  border: 1px solid #dddddd;
  margin-right: 10px;
  color: #000;
}

.paging a.show,
.paging a:hover {
  background: #0077b3;
  color: #fff;
  border: 1px solid #0077b3;
}

.paging span.current {
  background: #0077b3;
  color: #fff;
}

.paging .pageInfo:hover {
  background: #fff;
  color: #000;
  border: 1px solid #dddddd;
}

/* 首页banner */
.banner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 1200px;
  margin: 0 auto;
  height: 660px;
}

.banner .intro {
  color: #fff;
}

.banner .intro h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.banner .intro p {
  font-size: 16px;
  line-height: 1.8;
}

.banner .user-panel,
.banner .login-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 360px;
  height: 400px;
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.banner .user-panel .author {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.banner .user-panel .nick-name {
  font-size: 24px;
  font-weight: bold;
}

.banner .user-panel .member-btn {
  width: 100%;
  background-color: #fd3358;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  margin-top: 10px;
}
.banner .user-panel span {
  margin-top: 30px;
}

.banner .user-panel span i {
  font-size: 24px;
  color: red;
  margin-right: 5px;
  font-weight: bold;
}

.banner .user-panel .user-btn-box {
  width: 100%;
  display: flex;
  margin-top: 20px;
}

.banner .user-panel .user-btn-box a {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .user-panel .user-btn-box a:hover {
  color: #fd3358;
}

.banner .user-panel .user-btn-box a:first-child {
  border-right: 1px solid #ddd;
}

.banner .user-panel .user-btn-box a i {
  font-size: 18px;
  margin-right: 5px;
}

.banner .user-panel .user-btn-box a:last-child i {
  font-size: 22px;
}

.banner .login-panel h3 {
  font-size: 26px;
  color: #3876db;
  margin-bottom: 30px;
}

.banner .login-panel input {
  width: 100%;
  padding: 15px;
  margin-bottom: 25px;
  border: none;
  background-color: #f5f6f7;
  border-radius: 5px;
}

.banner .login-panel .login-buttons {
  display: flex;
  width: 100%;
}

.banner .login-panel .login-buttons .login-btn {
  flex: 2;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  border-radius: 5px;
  background-color: #4287f2;
}

.banner .login-panel .login-buttons .register-btn {
  flex: 1;
  background-color: #40e6b5;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  border-radius: 5px;
  margin-left: 10px;
}

.banner .login-panel p {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: red;
  margin-top: 30px;
}

.about {
  margin-top: 50px;
  height: 650px;
}

.sub-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.sub-title span {
  font-size: 55px;
  color: #ebebeb;
}

.sub-title h2 {
  position: absolute;
  top: 30px;
  font-size: 44px;
  font-weight: 500;
}

.sub-title p {
  font-size: 16px;
  color: #606266;
  margin-top: 20px;
}

.about .content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.about .content .intro {
  width: 500px;
}

.about .content .intro h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about .content .intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #606266;
  margin-bottom: 20px;
}

.about .content .intro a {
  float: left;
  font-size: 14px;
  padding: 10px 20px;
  color: #fff;
  background-color: #4287f2;
  margin-top: 20px;
}

.about .content img {
  width: 500px;
}

.process {
  height: 430px;
  background-color: #f9f9f9;
  padding: 20px;
}

.process .wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process .process-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process .process-item i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #4287f2;
}

.process .process-item .item-title {
  position: relative;
  width: 100%;
  font-size: 24px;
  text-align: center;
  padding-top: 38px;
  border-top: 1px solid #4287f2;
}

.process .process-item .item-title::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4287f2;
  left: 50%;
  margin-left: -8px;
  top: -9px;
}

.soft .content {
  display: flex;
  width: 1200px;
  height: 500px;
  background-color: #f9fbff;
  border-radius: 15px;
  margin: 52px 0 14px;
  background: #f9fbff;
}

.soft .content .sidebar {
  width: 260px;
  background: linear-gradient(90deg, #f9fbff, #f0f4fe);
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}

.soft .content .sidebar .sidebar-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 260px;
  height: 100%;
  overflow-x: hidden;

  /* 隐藏滚动条 */
  overflow-y: auto;
  scrollbar-width: none;
}

.soft .content .sidebar .sidebar-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 70px;
  border-radius: 10px;
  font-weight: 500;
  line-height: 70px;
  background: -webkit-linear-gradient(314deg, #fff, #f3f7ff);
  box-shadow: 0 2px 16px 0 rgba(52, 112, 255, 0.12);
  cursor: pointer;
}

.soft .content .sidebar .sidebar-list li i {
  font-size: 16px;
  margin-right: 10px;
}

.soft .content .sidebar .sidebar-list li span {
  width: 71px;
  font-size: 16px;
}

.soft .content .sidebar .sidebar-list li:first-child {
  margin-top: 30px;
}
.soft .content .sidebar .sidebar-list li.active {
  background: #e1eaff;
  box-shadow: none;
}

.soft .content .info {
  flex: 1;
  display: flex;
  padding: 32px 34px 32px 40px;
}

.soft .content .info .info-content {
  padding: 60px 65px 0 0;
}

.soft .content .info .info-content .title {
  font-size: 22px;
  font-weight: 700;
}

.soft .content .info .info-content .tip {
  margin: 22px 0 26px;
  font-size: 18px;
  color: #939396;
  /* 超出三行显示... */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.soft .content .info .info-content .logo {
  display: flex;
  flex-wrap: wrap;
}

.soft .content .info .info-content .logo li {
  width: 95px;
  height: 43px;
  margin-right: 10px;
  background: #fff;
  -webkit-box-shadow: 0 2px 37px 0 rgba(52, 112, 255, 0.12);
  -moz-box-shadow: 0 2px 37px 0 rgba(52, 112, 255, 0.12);
  box-shadow: 0 2px 37px 0 rgba(52, 112, 255, 0.12);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.soft .content .info .info-content .logo li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.soft .content .info .info-content .btn {
  display: inline-block;
  margin-top: 64px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  background: #4287f2;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  padding: 8px 30px;
  cursor: pointer;
}

.soft .content .info .info-img {
  width: 350px;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.soft .content .info .info-img img {
  width: 100%;
  height: 100%;
}

@keyframes scrolling {
  to {
    transform: translateX(calc(var(--wall-item-width) * -1));
  }
}

:root {
  --wall-item-height: 80px;
  --wall-item-width: 140px;
  --wall-item-number: 9;
  --duration: 55s;
}

.logos .content {
  overflow: hidden;
  margin-top: 40px;
}

.logos .content .logo-list {
  position: relative;
  height: var(--wall-item-height);
  display: flex;
  mask-image: linear-gradient(90deg, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
  margin: 10px 0;
}

.logos .content .logo-list li {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(52, 112, 255, 0.12);
  margin: 10px 15px;
  overflow: hidden;
  background: #fff;

  transform: translateX(calc(var(--wall-item-width) * var(--wall-item-number)));
  animation: scrolling var(--duration) linear infinite;
}

.logos .content .logo-list[data-direction="reverse"] li {
  animation-direction: reverse;
}

.logos .content .logo-list li:nth-child(1) {
  animation-delay: calc((var(--duration) / var(--wall-item-number)) * (var(--wall-item-number) - 1) * -1);
}

.logos .content .logo-list li:nth-child(2) {
  animation-delay: calc((var(--duration) / var(--wall-item-number)) * (var(--wall-item-number) - 2) * -1);
}

.logos .content .logo-list li:nth-child(3) {
  animation-delay: calc((var(--duration) / var(--wall-item-number)) * (var(--wall-item-number) - 3) * -1);
}

.logos .content .logo-list li:nth-child(4) {
  animation-delay: calc((var(--duration) / var(--wall-item-number)) * (var(--wall-item-number) - 4) * -1);
}

.logos .content .logo-list li:nth-child(5) {
  animation-delay: calc((var(--duration) / var(--wall-item-number)) * (var(--wall-item-number) - 5) * -1);
}

.logos .content .logo-list li:nth-child(6) {
  animation-delay: calc((var(--duration) / var(--wall-item-number)) * (var(--wall-item-number) - 6) * -1);
}

.logos .content .logo-list li:nth-child(7) {
  animation-delay: calc((var(--duration) / var(--wall-item-number)) * (var(--wall-item-number) - 7) * -1);
}

.logos .content .logo-list li:nth-child(8) {
  animation-delay: calc((var(--duration) / var(--wall-item-number)) * (var(--wall-item-number) - 8) * -1);
}

.logos .content .logo-list li:nth-child(9) {
  animation-delay: calc((var(--duration) / var(--wall-item-number)) * (var(--wall-item-number) - 9) * -1);
}

.logos .content .logo-list:has(li:hover) li {
  animation-play-state: paused;
}

.logos .content .logo-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer {
  background-color: #fff;
  color: #333;
  padding: 40px 20px;
  text-align: center;
  margin-top: 50px;
  /* 上阴影 */
  box-shadow: 0 -2px 10px 0 rgba(52, 112, 255, 0.12);
}

.footer-container {
  max-width: 1200px; /* 限制最大宽度 */
  margin: 0 auto; /* 居中对齐 */
}

.footer-container .logo img {
  max-width: 150px;
}

.footer-container p {
  margin: 10px 0;
}

.footer-container span {
  font-size: 12px;
}

.footer-container nav {
  margin: 20px 0;
}

.footer-link {
  color: #333;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #3388ff; /* 悬停时改变颜色 */
}
