:root {
  --page-width: 1200px;
  --content-width: 1200px;
  --ink: #252b39;
  --blue: #1369e8;
  --orange: #ff811b;
}

* {
  box-sizing: border-box;
}

html {
  min-width: var(--page-width);
  scroll-behavior: smooth;
}

body {
  min-width: var(--page-width);
  margin: 0;
  overflow-x: auto;
  color: var(--ink);
  background: #f8f9fd;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}


.page-shell {
  width: var(--page-width);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.card {
  border-radius: 8px;
  background: #fff;
}




.hero-section {
  height: 510px;
  padding-top: 46px;
  background: url(bg.jpg) no-repeat center;
}

.hero-scene {
  height: 474px;
}

.hero-panel {
  display: grid;
  height: 430px;
  grid-template-columns: 322px 860px;
  gap: 18px;
}

.hero-menu {
  position: relative;
  z-index: 20;
  height: 430px;
  padding: 9px 0;
  box-shadow: 0 12px 30px rgba(74, 100, 127, 0.11);
}

.hero-menu__item {
  position: relative;
  display: flex;
  min-height: 82px;
  padding: 12px 36px 10px;
  align-items: flex-start;
  cursor: pointer;
}

.hero-menu__item:hover {
  background: #FEF1E4;
}

.hero-menu__item:last-child {
  min-height: 67px;
  border-bottom: 0;
}

.hero-menu__copy h3 {
  margin: 0 0 6px;
  color: #242c39;
  font-size: 15px;
  line-height: 1;
}

.hero-menu__copy p {
  margin: 0;
  color: #5c6573;
  font-size: 12px;
  line-height: 1.6;
  white-space: nowrap;
}

.hero-menu__copy a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-menu__copy a:hover,
.hero-menu__copy a:focus {
  color: #FF4808;
}

.hero-menu__arrow {
  position: absolute;
  top: 32px;
  right: 36px;
  width: 21px;
  height: 21px;
  object-fit: contain;
  opacity: 0.78;
}

.hero-menu__item:last-child .hero-menu__arrow {
  top: 23px;
}

/* 二级导航：位置固定，顶部与左侧导航最顶部对齐，覆盖右侧横幅区域 */
.hero-submenu {
  position: absolute;
  top: 0;
  left: 322px;
  z-index: 30;
  display: none;
  width: 880px;
  height: 430px;
  padding: 28px 34px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(74, 100, 127, 0.18);
  box-sizing: border-box;
}

.hero-menu__item:nth-child(1):hover~.hero-submenu--1,
.hero-submenu--1:hover,
.hero-menu__item:nth-child(2):hover~.hero-submenu--2,
.hero-submenu--2:hover,
.hero-menu__item:nth-child(3):hover~.hero-submenu--3,
.hero-submenu--3:hover,
.hero-menu__item:nth-child(4):hover~.hero-submenu--4,
.hero-submenu--4:hover,
.hero-menu__item:nth-child(5):hover~.hero-submenu--5,
.hero-submenu--5:hover {
  display: block;
}

.hero-submenu h4 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  color: #242c39;
  font-size: 17px;
  line-height: 1;
  border-bottom: 1px solid #edf1f4;
}

.hero-submenu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
}

.hero-submenu__list a {
  color: #5c6573;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-submenu__list a:hover {
  color: #FF4808;
}

.wp-banner {
  width: 860px;
  height: 430px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  border-radius: 5px;
}

.wp-banner .hd {
  width: 860px;
  height: 10px;
  position: absolute;
  bottom: 9px;
  z-index: 1
}

.wp-banner .hd ul {
  display: flex;
  justify-content: center
}

.wp-banner .hd ul li {
  width: 10px;
  height: 10px;
  background: #FFF;
  border-radius: 50%;
  margin: 0 3px;
  font-size: 0
}

.wp-banner .hd ul li.on {
  background: #FF4808
}

.wp-banner .bd {
  width: 100%;
  height: auto;
  overflow: hidden
}

.wp-banner .bd li {
  width: 100%;
  height: auto;
  overflow: hidden
}

.wp-banner .bd li img {
  display: block;
  width: 100%;
  height: 430px
}

.wp-banner span {
  position: absolute;
  top: 190px;
  display: block;
  width: 37px;
  height: 50px;
  overflow: hidden;
  cursor: pointer;
  background: url(https://img.wproedu.com/www_wp/2022pc/index/2.png) no-repeat center
}

.wp-banner span:hover {
  background: url(https://img.wproedu.com/www_wp/2022pc/index/3.png) no-repeat center
}

.wp-banner span.next {
  right: -1px;
  background: url(https://img.wproedu.com/www_wp/2022pc/index/4.png) no-repeat center
}

.wp-banner span.next:hover {
  background: url(https://img.wproedu.com/www_wp/2022pc/index/5.png) no-repeat center
}

.quick-section {
  height: 432px;
  padding-top: 32px;
}

.quick-row {
  position: relative;
}


.quick-main {
  display: grid;
  grid-template-columns: 328px 1fr;
  gap: 14px;
}

.quick-promo {
  width: 328px;
  height: 347px;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.quick-promo a {
  display: block;
  width: 100%;
  height: 100%;
}
.quick-promo img{
  width: 328px;
  height: 347px;
  object-fit: cover;
  border-radius: 20px;
}

.quick-panels {
  display: grid;
  grid-template-columns: 330px 510px;
  gap: 14px;
}

.consult-card {
  background: #F6FBFF;
}

.consult-card,
.news-panel {
  height: 347px;
  padding: 18px 25px;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.section-mini-head {
  display: flex;
  height: 29px;
  align-items: flex-start;
  justify-content: space-between;
}

.section-mini-head h3 {
  margin: 0;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  line-height: 1;
}

.section-mini-head h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #9EBBF0;
  margin-top: 10px;
}


.section-mini-head a {
  font-weight: 400;
  font-size: 16px;
  color: #727272;
}

.consult-list {
  padding-top: 16px;
}

.consult-item {
  display: grid;
  width: 275px;
  height: 125px;
  background: #FFFFFF;
  box-shadow: 0px 2px 13px 0px rgba(96, 146, 196, 0.23);
  border-radius: 20px;
  grid-template-columns: 116px 1fr 10px;
  align-items: center;
  position: relative;
}

.consult-item img {
  margin-left: 10px;
}

.consult-item:last-child {
  margin-top: 11px;
}

.consult-item>img:first-child {
  width: 98px;
  height: 98px;
  object-fit: contain;
}

.consult-item h4 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  margin: 0 0 7px;
  color: #093B6E;
  font-size: 18px;
}

.consult-item p {
  margin: 0;
  font-family: Microsoft YaHei;
  font-weight: 300;
  font-size: 16px;
  color: #727272;
  line-height: 1.7;
}

.consult-arrow {
  width: 27px;
  height: 27px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.consult-modal.is-open {
  display: flex;
}

.benefit-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.benefit-modal.is-open {
  display: flex;
}

.benefit-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.benefit-modal__box {
  position: relative;
  z-index: 1;
  width: min(500px, 92vw);
  max-height: 92vh;
}

.benefit-modal__box img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
}

.benefit-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.consult-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.consult-modal__box {
  position: relative;
  z-index: 1;
  width: 576px;
  height: 276px;
  background: url(30.png) no-repeat center / cover;
  border-radius: 14px;
  overflow: hidden;
}

.consult-modal__box--phone {
  background-image: url(31.png);
}

.consult-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  line-height: 26px;
  cursor: pointer;
}

.consult-modal__main {
  padding: 72px 38px 0;
}

.consult-modal__main h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 3px rgba(33, 99, 157, 0.45);
}

.consult-modal__content {
  display: grid;
  grid-template-columns: 1fr 124px;
  gap: 16px;
}

.consult-modal__form,
.consult-modal__service {
  height: 171px;
  border-radius: 8px;
}

.consult-modal__form {
  padding: 33px 38px 0;
  box-sizing: border-box;
}

.consult-modal__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 52px;
  color: #4d4d4d;
  font-size: 14px;
}

.consult-modal__benefits span {
  padding-left: 18px;
}

.consult-modal__submit {
  display: flex;
  height: 34px;
  margin-top: 25px;
  border-radius: 5px;
  overflow: hidden;
}

.consult-modal__submit input {
  flex: 1;
  min-width: 0;
  padding: 0 12px;
  border: 0;
  outline: none;
  color: #666;
  font-size: 14px;
}

.consult-modal__submit button {
  width: 68px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.consult-modal__service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 24px;
  box-sizing: border-box;
  color: #4d4d4d;
}

.consult-modal__service strong {
  font-size: 18px;
  font-weight: 400;
}

.consult-modal__service p {
  margin: 8px 0 0;
  color: #999;
  font-size: 14px;
}

.news-panel__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.news-panel__list li {
  display: grid;
  height: 29px;
  grid-template-columns: 24px minmax(0, 1fr) 50px;
  align-items: center;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-bottom: 15px;
}

.news-panel__list li span {
  color: #ff811b;
  font-weight: 700;
}

.news-panel__list li:nth-child(n + 4) span {
  color: #9ba3af;
}

.news-panel__list a {
  overflow: hidden;
  color: #333333;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}

.news-panel__list a:hover,
.news-panel__list a:focus {
  color: #FF4808;
}

.news-panel__list time {
  font-family: Microsoft YaHei;
  font-weight: 300;
  font-size: 16px;
  color: #9F9D9D;
  text-align: right;
}

.live-section {
  height: auto;
  padding: 54px 0;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  line-height: 1.15;
}

.section-heading p {
  margin: 10px 0 0;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}

.wp-zb {
  width: 1200px;
  height: 285px;
  overflow: hidden;
  position: relative;
  margin: 30px auto 0;
}

.wp-zb .hd {
  position: absolute;
  width: 100%;
  height: 2px;
  font-size: 0;
  background: #ff6e00;
  left: 0;
  top: 281px;
  z-index: 5
}

.wp-zb .hd ul {
  display: none
}

.wp-zb .bd {
  width: 1120px;
  height: auto;
  overflow: hidden;
  margin: 0 auto
}

.wp-zb .bd li {
  width: 277px;
  height: auto;
  overflow: hidden;
  margin-right: 5px;
  position: relative;
  background: url(6.png) no-repeat center top;
}

.wp-zb .bd li img {
  display: block;
  width: 268px;
  height: auto;
  margin: 0 auto;
  border-radius: 20px 20px 0 0
}

.wp-zb .bd li div {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 25px;
  padding: 10px 15px
}


.wp-zb .bd li div h3 {
  width: 100%;
  font-size: 14px;
  line-height: 1.2em;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px
}

.wp-zb .bd li div a {
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding-left: 30px;
  cursor: pointer;
  color: #ff6e00;
  background: url(https://img.wproedu.com/www_wp/2022pc/wp/red.svg) no-repeat center left
}


.wp-zb .bd li h4 {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  color: #666
}

.wp-zb .bd li h4 span {
  font-size: 12px;
  color: #F17116;
  display: inline-block;
  margin-left: 5px
}

.wp-zb .bd li h5 {
  position: absolute;
  color: #fff;
  width: 60px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background: #666;
  font-size: 12px;
  top: 15px;
  left: 5px
}

.wp-zb .bd li h5.on {
  background: #41d12e
}

.wp-zb>span {
  position: absolute;
  top: 110px;
  display: block;
  width: 37px;
  height: 50px;
  overflow: hidden;
  cursor: pointer;
  background: url(https://img.wproedu.com/www_wp/2022pc/index/2.png) no-repeat center
}

.wp-zb>span:hover {
  background: url(https://img.wproedu.com/www_wp/2022pc/index/3.png) no-repeat center
}

.wp-zb>span.next {
  right: -1px;
  background: url(https://img.wproedu.com/www_wp/2022pc/index/4.png) no-repeat center
}

.wp-zb>span.next:hover {
  background: url(https://img.wproedu.com/www_wp/2022pc/index/5.png) no-repeat center
}

.advantage-section {
  height: auto;
  padding: 48px 0;
}

.advantage-layout {
  display: grid;
  margin-top: 45px;
  grid-template-columns: 596px 1fr;
  gap: 16px;
}

.advantage-main {
  width: 596px;
  height: 394px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 288px);
  gap: 16px;
}

.advantage-card {
  position: relative;
  height: 187px;
  overflow: hidden;
  background: linear-gradient(38deg, #D7E9F9, #E3EEFA);
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}


.advantage-card h3 {
  width: 292px;
  height: 88px;
  margin: 0 0 12px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 88px;
  padding-left: 20px;
  background: url(8.png) no-repeat center;
}

.advantage-card:nth-child(2) h3 {
  background: url(9.png) no-repeat center;
}

.advantage-card:nth-child(3) h3 {
  background: url(10.png) no-repeat center;
}

.advantage-card:nth-child(4) h3 {
  background: url(11.png) no-repeat center;
}

.advantage-card p {
  margin: 0;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #727272;
  line-height: 1.75;
  padding: 0 20px;
}

.tech-section {
  height: auto;
  padding: 59px 0;
}

.tech-grid {
  display: grid;
  margin-top: 48px;
  margin-left: 25px;
  grid-template-columns: repeat(4, 288px);
  gap: 0;
}

.tech-card {
  position: relative;
  width: 265px;
  height: 488px;
  padding: 0 40px 24px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  border-radius: 7px;
  background: url(13.png) no-repeat center;
}

.tech-card:nth-child(2) {
  background: url(14.png) no-repeat center;
}

.tech-card:nth-child(3) {
  background: url(15.png) no-repeat center;
}

.tech-card:nth-child(4) {
  background: url(16.png) no-repeat center;
}

.tech-card h3 {
  color: #1b2e51;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  margin: 240px 0 30px;
}


.tech-card p {
  margin: 0;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #727272;
  line-height: 24px;
  text-align: justify;
}

.tech-card__more {
  position: absolute;
  right: 24px;
  bottom: 30px;
  right: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #9B9A9A;
}

.about-section {
  height: auto;
  padding: 57px 0;
}

.about-section .section-heading h2 {
  color: #2e343f;
}

.about-card {
  position: relative;
  display: grid;
  width: 1200px;
  height: 560px;
  margin-top: 40px;
  padding: 30px 26px 0;
  grid-template-columns: 635px 1fr;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  background: url("17.png") center no-repeat;
}

.about-copy {
  padding-right: 44px;
  background: #F3F8FD;
  box-shadow: 0px 0px 18px 0px rgba(6, 0, 1, 0.1);
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  height: 357px;
  padding: 17px;
  margin-right: 20px;
}


.about-copy p {
  margin: 0 0 13px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #727272;
  text-align: justify;
}

.about-visual {
  width: 492px;
  height: 327px;
  margin-top: 3px;
  overflow: hidden;
  border-radius: 6px;
  margin-top: 30px;
}


.about-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 170px;
  padding: 0 140px;
  grid-template-columns: repeat(4, 1fr);
}

.about-stats>div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.about-stats {
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
}

.about-stats strong {
  color: #FFF;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.1;
}

.about-stats span {
  margin-top: 9px;
  color: #FFF;
  font-size: 18px;
}

.teacher-section {
  height: 830px;
  padding: 65px 0;
  /* background: url("18.png") center no-repeat; */
}

.teacher-section .section-heading h2 {
  color: #2e343f;
}

.news-section {
  height: auto;
  padding: 55px 0;
}

.news-columns {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, 592px);
  gap: 16px;
}

.news-column {
  min-height: 216px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.news-column__head {
  display: flex;
  height: 57px;
  padding: 0 19px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.news-column__head>div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-column--orange .news-column__head {
  background: #FF6E00;
}

.news-column--blue .news-column__head {
  background: #80B4F7;
}

.news-column__head h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
}

.news-column__head span {
  width: 22px;
  height: 22px;
  background: url(12.png) no-repeat center;
}

.news-column__head a {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}

.news-list {
  margin: 11px 18px 13px;
  padding: 0;
  list-style: none;
}

.news-list li {
  display: grid;
  height: 29px;
  grid-template-columns: 27px minmax(0, 1fr) 46px;
  align-items: center;
  color: #5a6474;
  font-size: 14px;
}

.news-list b {
  width: 18px;
  height: 18px;
  background: #FF6E00;
  border-radius: 50%;
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

.news-list--blue b {
  background: #6CA8F6;
}

.news-list a {
  overflow: hidden;
  color: #5a6474;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}

.news-list a:hover,
.news-list a:focus {
  color: #FF6E00;
}

.news-list--blue a:hover,
.news-list--blue a:focus {
  color: #6CA8F6;
}

.news-list time {
  color: #a5adb8;
  text-align: right;
}

.honor-section {
  height: auto;
  padding: 54px 0;
}

.honor-panel {
  display: grid;
  height: auto;
  margin-top: 39px;
  padding: 24px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.honor-panel li {
  display: grid;
  min-height: 73px;
  padding: 8px 12px;
  place-items: center;
  color: #53738f;
  border: 1px solid #dae9f5;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}


.partners-section {
  height: auto;
  padding: 58px 0;
}

.partners-section .section-heading h2 {
  color: #2e343f;
}

.honor-section .section-heading h2,
.partners-section .section-heading h2 {
  position: relative;
  display: inline-block;
}

.honor-section .section-heading h2::after,
.partners-section .section-heading h2::after {
  position: absolute;
  right: 9px;
  bottom: -8px;
  left: 9px;
  height: 4px;
  content: "";
  background: #ff7c1a;
}


.site-footer {
  background: #f7fbff;
}

.footer-top {
  height: auto;
  padding: 44px 0;
  border-radius: 64px 64px 0 0;
  background: #e9eff6;
}

.footer-follow {
  display: flex;
  height: auto;
  padding-bottom: 30px;
  align-items: center;
  border-bottom: 1px solid #dbe5ee;
}

.footer-follow__copy h3 {
  margin: 0 0 8px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 36px;
  color: #333333;
}


.footer-follow__icons {
  display: flex;
  margin-left: auto;
  gap: 35px;
}

.footer-follow__icons>div {
  position: relative;
  display: flex;
  width: 72px;
  flex-direction: column;
  align-items: center;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  cursor: pointer;
}

.footer-follow__icons>div>img {
  width: 72px;
  height: 72px;
  margin-bottom: 6px;
  object-fit: contain;
}

.footer-follow__icons>div:hover {
  color: #FF4808;
}

.footer-follow__qr {
  position: absolute;
  left: 50%;
  bottom: 100%;
  z-index: 20;
  display: none;
  width: 132px;
  padding: 10px;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(36, 58, 99, 0.18);
  transform: translateX(-50%);
}

.footer-follow__qr::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.footer-follow__icons>div:hover .footer-follow__qr {
  display: block;
}

.footer-follow__qr img {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0;
  object-fit: contain;
}

.footer-links {
  display: grid;
  margin-top: 36px;
  grid-template-columns: 136px 142px 142px 142px 142px 1fr;
  gap: 14px;
}

.footer-col h4 {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #FF6E00;
}

.footer-col h4::after {
  display: block;
  content: "";
  width: 73px;
  height: 2px;
  background: #333333;
  margin: 15px 0;
}

.footer-col a {
  display: block;
  margin: 0 0 10px;
  font-family: Microsoft YaHei;
  font-weight: 300;
  font-size: 16px;
  color: #666666;
  line-height: 38px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  text-align: center;
}

.footer-brand__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.footer-brand__logo {
  width: 200px;
  object-fit: contain;
}

.footer-brand__phone {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-brand__phone strong {
  display: block;
  font-size: 18px;
  font-weight: 400;
}

.footer-brand__codes {
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: flex-start;
  width: 301px;
  height: 183px;
  background: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  margin: 20px auto;
}

.footer-qr-card {
  display: grid;
  width: 50%;
  padding: 8px 8px 6px;
  justify-items: center;
  border-radius: 8px;
}

.footer-qr-card img {
  width: 139px;
  height: 139px;
  object-fit: contain;
  background: #fff;
}

.footer-qr-card span {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 1;
}

.footer-qr-card span img {
  width: 15px;
  height: 15px;
}

.footer-brand__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-brand__caption p {
  margin: 0;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 25px;
}

.footer-brand__caption strong {
  color: #FF6E00;
  font-size: 18px;
  font-weight: 400;
}








.fl-div {
  width: 240px;
  height: 180px;
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 999;
  transform: translate(0, -50%);
  background: url(fl.png) no-repeat center;
}

.fl-div a {
  display: block;
  width: 100%;
  height: 100%;
}

.quick-sticker {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 20px;
  height: auto;
  cursor: pointer;
}