/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
/* 全局a标签样式 */
a {
  text-decoration: none;
  color: inherit;
}
/* 容器样式 */
.container {
  width: 1200px;
  margin: 0 auto;
}
/* 头部样式 */
.custom-header {
  background-color: #b81c22;
  color: white;
}
.custom-header .header-top {
  display: flex;
  align-items: center;
  height: 100px;
}
.custom-header .header-top .logo {
  display: flex;
  align-items: center;
}
.custom-header .header-top .logo img {
  height: 68px;
  margin-right: 15px;
}
.custom-header .header-top .logo h1 {
  font-size: 20px;
  font-weight: bold;
}
.custom-header .header-bottom {
  width: 100vw;
  background-color: #ffffff;
  display: none;
}
.custom-header .header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-header .header-bottom .container .nav ul {
  display: flex;
  list-style: none;
}
.custom-header .header-bottom .container .nav ul .nomal-li {
  display: flex;
  align-items: center;
}
.custom-header .header-bottom .container .nav ul .dropdown {
  padding: 16px 0;
}
.custom-header .header-bottom .container .nav ul li {
  margin-right: 30px;
  position: relative;
}
.custom-header .header-bottom .container .nav ul li a {
  font-family: PingFang SC,
                PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: left;
  font-style: normal;
  text-transform: none;
  display: block;
}
.custom-header .header-bottom .container .nav ul li a:hover {
  color: #b81c22;
  font-weight: 500;
}
.custom-header .header-bottom .container .nav ul li.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background: #ffffff;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
  opacity: 0;
  transform-origin: top center;
  transform: translateX(-50%) scaleY(0.9);
  transition: all 0.3s ease;
  z-index: 1000;
}
.custom-header .header-bottom .container .nav ul li.dropdown .dropdown-menu li {
  margin-right: 0;
  width: 100%;
}
.custom-header .header-bottom .container .nav ul li.dropdown .dropdown-menu li a {
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-align: center;
  padding: 0 10px;
  color: #333333;
}
.custom-header .header-bottom .container .nav ul li.dropdown .dropdown-menu li a:hover {
  background-color: #b81c22;
  color: #ffffff;
  font-weight: 400;
}
.custom-header .header-bottom .container .nav ul li.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}
.custom-header .header-bottom .container .search {
  display: flex;
  align-items: center;
}
.custom-header .header-bottom .container .search input {
  width: 120px;
  height: 25px;
  background: #f9f9f9;
  border-radius: 17px;
  border: 1px solid #d6d6d6;
  padding: 0 30px 0 15px;
  outline: none;
  font-family: PingFang SC,
            PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: rgba(153, 153, 153, 0.6);
  line-height: 20px;
}
.custom-header .header-bottom .container .search button {
  background: transparent;
  border: none;
  position: relative;
  left: -25px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.custom-header .header-bottom .container .search button svg {
  width: 16px;
  height: 16px;
  fill: #999;
}

/* 页脚样式 */
.custom-footer {
  background-color: #333;
  background-image: url("/static/front/gufe/basic/images/next/background@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding-top: 60px;
  padding-bottom: 0;
}
.custom-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.custom-footer .footer-content .footer-left {
  width: 200px;
}
.custom-footer .footer-content .footer-left .footer-logo {
  display: flex;
  align-items: center;
}
.custom-footer .footer-content .footer-left .footer-logo img {
  height: 40px;
  margin-right: 10px;
}
.custom-footer .footer-content .footer-left .footer-logo h3 {
  font-size: 16px;
  font-weight: bold;
}
.custom-footer .footer-content .footer-center {
  flex: 2;
  margin: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.custom-footer .footer-content .footer-center .footer-links-section,
.custom-footer .footer-content .footer-center .footer-contact-section {
  display: flex;
}
.custom-footer .footer-content .footer-center .footer-links-section .section-title,
.custom-footer .footer-content .footer-center .footer-contact-section .section-title {
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
  white-space: nowrap;
}
.custom-footer .footer-content .footer-center .footer-links-section .links-content,
.custom-footer .footer-content .footer-center .footer-contact-section .links-content {
  font-size: 14px;
  color: #ccc;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.custom-footer .footer-content .footer-center .footer-links-section .links-content a,
.custom-footer .footer-content .footer-center .footer-contact-section .links-content a {
  color: #ccc;
  position: relative;
  white-space: nowrap;
}
.custom-footer .footer-content .footer-center .footer-links-section .links-content a:hover,
.custom-footer .footer-content .footer-center .footer-contact-section .links-content a:hover {
  color: white;
}
.custom-footer .footer-content .footer-center .footer-links-section .links-content a:not(:last-child),
.custom-footer .footer-content .footer-center .footer-contact-section .links-content a:not(:last-child) {
  margin-right: 15px;
}
.custom-footer .footer-content .footer-center .footer-links-section .links-content a:not(:last-child)::after,
.custom-footer .footer-content .footer-center .footer-contact-section .links-content a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -10px;
  top: 44%;
  transform: translateY(-50%);
  color: #ccc;
}
.custom-footer .footer-content .footer-center .footer-links-section .contact-content,
.custom-footer .footer-content .footer-center .footer-contact-section .contact-content {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}
.custom-footer .footer-content .footer-right {
  flex: 1;
  display: flex;
  gap: 20px;
}
.custom-footer .footer-content .footer-right .qr-item {
  width: 114px;
  height: 145px;
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
}
.custom-footer .footer-content .footer-right .qr-item .qr-code {
  width: 108px;
  height: 108px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.custom-footer .footer-content .footer-right .qr-item .qr-code img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-footer .footer-content .footer-right .qr-item .qr-text {
  width: 114px;
  height: 14px;
  font-family: PingFang SC,
            PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 14px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  white-space: nowrap;
}
.custom-footer .footer-bottom {
  width: 100vw;
  height: 40px;
  background: #b81c22;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.custom-footer .footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
