@import "./base.css";
@import "../iconfont/iconfont.css";
.w1280 {
  width: 100%;
  max-width: var(--primary-width);
  margin: 0 auto;
}
body {
  background-color: #f8f9fc;
}
header {
  height: var(--header-height);
  /* position: sticky;
  top: 0;
  z-index: 999;
  width: 100%; */
}
header .header-top {
  height: 36px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
}
header .header-top .w1280 {
  height: 100%;
}

header .header-top .right .menu-list {
  margin-right: 50px;
}
header .header-top .right .menu-list .menu {
  color: #fff;
}
header .header-top .right .menu-list .menu img {
  width: 20px;
  height: 20px;
  margin-right: 2px;
}
header .header-top .right .menu-list .menu .avatar {
  border-radius: 50%;
  margin-right: 5px;
}
header .header-top .right .menu-list .line-column {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 24px;
}
header .header-top .img-box {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
header .header-top .img-box img {
  width: 16px;
  height: 16px;
}
header .header-bottom {
  height: 90px;
  background-color: #fff;
}
header .header-bottom .w1280 {
  height: 100%;
}
header .header-bottom .logo {
  /* font-size: 34px;
  line-height: 41px;
  font-family: Alimama_ShuHeiTi;
  color: var(--primary-color);
  font-weight: 700; */
}
header .header-bottom .logo img {
  width: 170px;
}
header .header-bottom .nav a {
  margin: 0 30px;
  font-size: 16px;
}
header .header-bottom .hot-line {
  font-size: 12px;
  line-height: 16px;
  text-align: right;
}
header .header-bottom .hot-line p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--primary-color);
}
.banner {
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
  background: url("../images/banner.png");
  background-size: cover;
  margin-bottom: 40px;
}
.banner img {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
}
.banner h4,
.banner p {
  font-family: Alimama_ShuHeiTi;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.banner h4 {
  font-size: 54px;
  line-height: 65px;
  margin-bottom: 8px;
}
.banner p {
  font-size: 30px;
  line-height: 36px;
}
.page-container .right-content {
  margin-left: 20px;
  flex: 1;
}
.page-container .right-content .search-box {
  background-color: #fff;
  padding: 15px 30px;
  margin-bottom: 10px;
}
.page-container .right-content .search-box .label {
  width: 80px;
  font-size: 16px;
  line-height: 21px;
  margin-top: 7px;
}

.page-container .right-content .search-list .search-item {
  padding: 7px 16px 7px 20px;
  font-size: 15px;
  color: var(--primary-color);
  border: 1px solid rgb(234, 234, 234);
  border-radius: 4px;
  margin-left: 10px;
}
.page-container .right-content .search-list .search-item .layui-icon {
  color: #c4c4c4;
  font-size: 14px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: 600;
}
.page-container .right-content .search-list .search-item .layui-icon:hover {
  color: var(--primary-color);
}
.page-container .back-top {
  background-color: #fff;
  padding: 19px 30px;
  margin-bottom: 10px;
  font-size: 20px;
  cursor: pointer;
  width: 100%;
}
.page-container .back-top .back {
  font-size: 16px;
  color: var(--color9);
  border-right: solid 1px #ddd;
  padding-right: 15px;
  margin-right: 15px;
  line-height: 1;
}
.page-container .back-top .back .layui-icon {
  margin-right: 5px;
  font-size: 14px;
}
/* php自带的分页器 */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination li {
  border-radius: 4px;
  margin: 0 8px;
}
.pagination li.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.pagination li.active a,
.pagination li.active span {
  color: #fff;
  background-color: var(--primary-color);
}
.pagination li a,
.pagination li span {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: var(--color6);
  cursor: pointer;
}
footer {
  background-color: var(--color3);
  /* position: fixed; */
  bottom: 0;
  width: 100%;
  height: 72px;
  color: var(--color9);
  font-size: 16px;
  line-height: 21px;
  z-index: 99;
}
footer a {
  color: var(--color9);
  margin-left: 5px;
}
.hover-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hover-btn span {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.hover-btn::after {
  position: absolute;
  content: "";
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 0;
  transition: all 0.3s;
}
.hover-btn:hover::after {
  top: 0%;
}
.hover-btn:hover span {
  color: #fff;
}
.empty-box {
  padding-top: 50px;
  text-align: center;
  display: none;
}
.empty-box img {
  display: inline-block;
}
.empty-box p {
  font-size: 12px;
  -moz-border-top-colors: 10px;
  color: #969696;
}
