body {
  font-family: "Microsoft YaHei";
}

img {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */
}

.w {
  max-width: 1600px;
  margin: 0 auto;
}

.w1500 {
  max-width: 1500px;
  margin: 0 auto;
}

.nr {
  max-width: 1400px;
  margin: 0 auto;
}

li {
  list-style: none;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  margin-bottom: 0;
}

a {
  color: #333;
}

a:hover {
  text-decoration: none;
  color: var(--styleColor);
}

a:link {
  text-decoration: none;
}

:root {
  --styleColor: #b68916;
}

.move {
  display: flex;
  justify-content: center;
}

.move a {
  padding: 8px 40px;
  border-radius: 10px;
  border: solid 1px #606060;
  font-size: 20px;
  color: #606060;
  transition: all 0.3s;
}

.move a:hover {
  background-color: #1184da;
  color: #fff;
  border-color: #1184da;
  border-radius: 100px;
}

.swiper-pagination-bullet-active {
  background-color: var(--styleColor);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}

.ft_title {
  text-align: center;
  margin-bottom: 40px;
}

.ft_title p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  color: var(--styleColor);
}

.ft_title p::before,
.ft_title p::after {
  content: '';
  font-size: 21px;
  width: 3em;
  height: 1px;
  background-color: var(--styleColor);
}

.ft_title p::before {
  margin-right: 10px;
}

.ft_title p::after {
  margin-left: 10px;
}

.ft_title h2 {
  font-size: 46px;
  color: #333333;
  margin: 10px 0 0 0;
}

.logo_text h2 {
  font-size: 32px;
  margin: 0 0 5px 0;
  color: var(--styleColor);
  font-weight: 600;
}

.logo_text p {
  font-size: 18px;
  color: #333;
}

.contact_l {
  display: flex;
  align-items: center;
  font-size: 27px;
  color: #1184da;
  margin-right: 20px;
}

.contact_l p {
  font-weight: 600;
}

.contact_l .teltext {
  width: 203px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(../images/hot-tel.png) no-repeat center center;
  background-size: 101% auto;
  margin-left: 60px;
  color: #fff;
}

.contact_l .teltext p {
  font-size: 27px;
}

.contact_l .teltext span {
  color: #fff;
  font-size: 18px;
}

.contact_l span {
  font-size: 16px;
  color: #333333;
}

#utils {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0%;
  z-index: 999;
  display: none;
  width: 60px;
  background-color: var(--styleColor);
  border-radius: 10px 0px 0px 10px;
  border: solid 1px #d5d5d5;
}

#utils ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
}

#utils ul li:last-child {
  border-bottom: none;
}

#utils ul li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 0.3rem;
  color: #fff;
  cursor: pointer;
}

#utils ul li span img {
  max-width: 100%;
}

#utils ul li>p {
  display: none;
  font-size: 16px;
  color: #333333;
}

#utils ul span {
  cursor: pointer;
}

#utils ul .utils_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #fff;
}

#utils ul .utils_item img {
  max-width: 100%;
}

#utils ul .utils_item>p {
  display: none;
  font-size: 16px;
  color: #333333;
}

#utils ul .utils_item .box {
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #fff;
  border: solid 1px #d5d5d5;
  padding: 15px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  display: none;
}

#utils ul .utils_item .box.active {
  display: flex;
  animation: xcf_show 0.3s;
}

#utils ul .utils_item .box.text_box {
  flex-direction: column;
}

#utils ul .utils_item .box img {
  width: 90px;
  max-width: none;
  height: auto;
  margin-bottom: 5px;
}

#utils ul .utils_item .box .img_item {
  margin-right: 15px;
  text-align: center;
  font-size: 15px;
}

#utils ul .utils_item .box .img_item:last-child {
  margin-right: 0;
}

#utils ul .utils_item .box .text_item {
  white-space: nowrap;
  margin-bottom: 15px;
  font-size: 15px;
}

#utils ul .utils_item .box .text_item:last-child {
  margin-bottom: 0;
}

header {
  position: relative;
  z-index: 1000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

header .top_title {
  line-height: 34px;
  background-color: #eee;
  font-size: 15px;
}

header .top_title .w1500 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .top_title .w1500 p a {
  border-right: 1px solid #cacaca;
  padding-right: 15px;
  margin-right: 15px;
}

header .top_title .w1500 a {
  font-size: 15px;
}

header .top_title .w1500 span {
  font-size: 18px;
  font-weight: 600;
  color: #b68916;
}

header .header_top {
  padding: 20px 0;
}

header .header_top .w {
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header_top .w .logo {
  display: flex;
  align-items: center;
}

header .header_top .w .contact {
  display: flex;
  align-items: center;
}

header .header_top .w .contact .contact_r {
  display: flex;
}

header .header_top .w .contact .contact_r form {
  display: flex;
}

header .header_top .w .contact .contact_r form input {
  height: 40px;
  outline: none;
  border: solid 1px #bfbfbf;
  border-right: none;
  width: 150px;
  padding-left: 1em;
}

header .header_top .w .contact .contact_r form input[type="submit"] {
  width: 50px;
  font-size: 0;
  background: url(../images/ss.png) no-repeat center center;
  border: solid 1px #bfbfbf;
  border-left: none;
  background-color: var(--styleColor);
}

header .nav {
  z-index: 5;
  display: flex;
  align-items: center;
}

header .nav>ul {
  display: flex;
  justify-content: space-between;
  position: relative;
}

header .nav>ul>li {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 15px;
  position: relative;
}

header .nav>ul>li.active>a {
  color: var(--styleColor);
  border-bottom: 1px solid var(--styleColor);
}

header .nav>ul>li:hover>a {
  color: var(--styleColor);
  border-bottom: 1px solid var(--styleColor);
}

header .nav>ul>li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-bottom: 1px solid transparent;
  padding: 20px 15px;
  transition: all 0.3s;
}

header .nav>ul>li .nav-child {
  position: absolute;
  width: auto;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  border: 1px solid #ddd;
  padding: 15px;
  z-index: 99;
  display: none;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
}

header .nav>ul>li .nav-child .box {
  display: flex;
  align-items: center;
}

header .nav>ul>li .nav-child .box ul {
  width: 100%;
  display: block;

}



header .nav>ul>li .nav-child li {
  text-align: center;
}

header .nav>ul>li .nav-child li a {
  line-height: 40px;
  font-size: 16px;
  color: #333;
}

header .nav>ul>li .nav-child li:hover a {
  color: var(--styleColor);
}

header .m_nav {
  font-size: 30px;
  color: var(--styleColor);
}

.about_title {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 26px;
  margin-bottom: 26px;
}

.about_title h2 {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: #333333;
  margin: 0;
}

.about_title h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -26px;
  height: 4px;
  width: 100%;
  background-color: #d4ad48;
}

.pro_breadcrumb {
  display: flex;
  align-items: center;
  color: #686868;
  font-size: 16px;
}

.pro_breadcrumb span.glyphicon {
  color: var(--styleColor);
  margin-right: 16px;
}

.pro_breadcrumb p {
  display: flex;
  align-items: center;
}

.pro_breadcrumb .breadcrumb>li+li:before {
  content: '>';
}

.pro_breadcrumb .breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  padding: 15px 0;
}

.search_bar {
  height: 78px;
  position: relative;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.16);
}

.search_bar .w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.search_bar .w .search_bar_l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}

.search_bar .w .search_bar_l a {
  font-size: 14px;
  color: #666666;
  margin-left: 15px;
}

.search_bar .w .search_bar_l a:hover {
  color: var(--styleColorr);
}

.search_bar .w .search_bar_r .search_form form {
  display: flex;
}

.search_bar .w .search_bar_r .search_form form input[type="text"] {
  width: 270px;
  height: 47px;
  border-radius: 38px 0 0 38px;
  border: 1px solid #e5e5e5;
  padding-left: 1em;
  outline: none;
  background-color: #eeeeee;
}

.search_bar .w .search_bar_r .search_form form input[type="text"]::-webkit-input-placeholder {
  color: #c0bfbf;
}

.search_bar .w .search_bar_r .search_form form input[type="submit"] {
  height: 47px;
  width: 65px;
  border-radius: 0 38px 38px 0;
  background: url(../images/ss.png) no-repeat center center;
  border: none;
  outline: none;
  font-size: 0;
  background-size: 40%;
  background-color: var(--styleColor);
}

footer .footer_top {
  background-color: #be9a42;
  padding-top: 1.6%;
  padding-bottom: 3%;
  color: #fff;
}

footer .footer_top a {
  color: #eee;
}

footer .footer_top a:hover {
  color: #fff;
}

footer .footer_top .w {
  display: flex;
}

footer .footer_top .footerl {
  width: 100%;
}

footer .footer_top .f_nav {
  padding: 3% 0;
  border-bottom: 1px solid rgba(216, 216, 216, 0.27);
  margin-bottom: 1.7%;
}

footer .footer_top .f_nav ul {
  display: flex;
}

footer .footer_top .f_nav ul li {
  width: 13%;
  text-align: center;
  position: relative;
}

footer .footer_top .f_nav ul li:last-child::after {
  content: none;
}

footer .footer_top .f_nav ul li::after {
  content: '/';
  position: absolute;
  font-size: 18px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

footer .footer_top .f_nav a {
  font-size: 18px;
  color: #ffffff;
}

footer .footer_top .bk {
  display: flex;
  justify-content: space-between;
}
footer .footer_top .bk .f_pro{
  flex: 1;
}
footer .footer_top .bk .f_pro:first-child{
  flex: auto;
  width: 20%;
}
footer .footer_top .bk .f_pro:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
}

footer .footer_top .bk .f_pro ul li {
  line-height: 30px;
  letter-spacing: 0px;
  color: #ececec;
  font-size: 15px;
}

footer .footer_top .bk .f_pro ul li a {
  line-height: 30px;
  font-size: 15px;
  color: #ececec;
}

footer .footer_top .bk .f_pro ul li a:hover {
  color: #fff;
}

footer .footer_top .bk .qrcode {
  background-color: #fff;
}

footer .footer_top .bk .qrcode p {
  text-align: center;
  line-height: 30px;
  font-size: 15px;
  color: var(--styleColor);
}

footer .footer_top .footerr {
  flex: 1;
}

footer .footer_top .footerr .qrcode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer .footer_top .footerr .qrcode .qrcode_top {
  margin-bottom: 6%;
}

footer .footer_top .footerr .qrcode .qrcode_top img {
  max-width: 232px;
  width: 100%;
}

footer .footer_top .footerr .qrcode .qrcode_bottom {
  display: flex;
  justify-content: center;
}

footer .footer_top .footerr .qrcode .qrcode_bottom .qr1 {
  margin-right: 34px;
}

footer .footer_top .footerr .qrcode .qrcode_bottom img {
  width: 188px;
}

footer .footer_top .footerr .qrcode .qrcode_bottom p {
  text-align: center;
  font-size: 18px;
  margin: 15px 0 0 0;
}

.f_title {
  font-size: 17px;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 38px;
}

.footer_bottom {
  background-color: #a88632;
  padding: 20px 0;
}

.footer_bottom .w .link {
  margin-bottom: 20px;
}

.footer_bottom .w .link .link_box h3 {
  font-weight: 600;
  margin: 0;
  font-size: 20px;
}

.footer_bottom .w .link .link_box ul {
  display: flex;
  align-items: flex-end;
}

.footer_bottom .w .link .link_box ul li {
  margin-right: 15px;
}

.footer_bottom .w .link .link_box ul a {
  font-size: 14px;
}

.copy {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

.copy a {
  color: #fff;
}

.copy .copy_l p {
  margin-bottom: 6px;
}

.copy .copy_l p:last-child {
  margin-bottom: 0;
}

#gotop {
  width: 149px;
  height: 116px;
  background: url(../images/icon-top.png) no-repeat center center;
  background-color: var(--styleColor);
  cursor: pointer;
}

.site-mobile .site-mobile-shade {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

.min_nav {
  padding: 30px 0;
}

.min_nav .w1500 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.min_nav ul {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.min_nav ul li {
  padding: 0 30px;
  background-color: #f5f5f5;
  margin-right: 2px;
  position: relative;
  margin-bottom: 15px;
}

.min_nav ul li::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--styleColor);
  display: none;
}

.min_nav ul li.active {
  background-color: var(--styleColor);
}

.min_nav ul li.active::before {
  display: block;
}

.min_nav ul li.active a {
  color: #fff;
}

.min_nav ul li.active a:hover {
  color: #fff;
}

.min_nav ul li a {
  font-size: 18px;
  color: #333333;
  line-height: 46px;
}

.min_nav ul li a:hover {
  color: var(--styleColor);
}

@-webkit-keyframes move {
  0% {
    transform: translateY(-50%) scale(2);
  }

  50% {
    transform: translateY(-50%) scale(1);
  }

  100% {
    transform: translateY(-50%) scale(2);
  }
}

@keyframes move {
  0% {
    transform: translateY(-50%) scale(2);
  }

  50% {
    transform: translateY(-50%) scale(1);
  }

  100% {
    transform: translateY(-50%) scale(2);
  }
}

@-webkit-keyframes xcf_show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes xcf_show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 1620px) {
  .w {
    max-width: 95%;
  }
}

@media screen and (max-width: 1520px) {
  .w1500 {
    max-width: 95%;
  }

  header .header_top .w {
    max-width: 95%;
  }

  header .nav>ul>li {
    margin: 0 10px;
  }

  header .nav>ul>li>a {
    font-size: 18px;
  }
}

@media screen and (max-width: 1420px) {
  .nr {
    max-width: 95%;
  }

  .f_title {
    margin-bottom: 20px;
  }

  header .nav>ul>li {
    margin: 0 8px;
  }

  header .nav>ul>li>a {
    font-size: 16px;
    padding: 15px 10px;
  }
  footer .footer_top .bk .f_pro:last-child{
    width: 10%;
  }
  footer .footer_top .bk .f_pro:last-child img{
    width: 100%;
  }
  footer .footer_top .bk .f_pro ul li a {
    font-size: 12px;
  }

  footer .footer_top .bk .f_pro ul li {
    font-size: 12px;
  }

  header .header_top {
    padding: 10px 0;
  }

  header .nav {
    height: 60px;
  }

  header .nav .w>ul>li {
    padding: 7px 0;
  }

  header .nav .w>ul>li>a {
    height: 40px;
    width: 150px;
    font-size: 16px;
  }

  header .nav .w>ul>li .nav-child li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1250px) {
  header .nav>ul>li>a {
    font-size: 15px;
  }

  header .header_top .w .contact .contact_r form input {
    height: 30px;
    width: 120px;
  }

  header .header_top .w .contact .contact_r form input[type="submit"] {
    width: 40px;
  }

  footer .footer_top .bk .f_pro ul li a {
    font-size: 10px;
  }

  footer .footer_top .bk .f_pro ul li {
    font-size: 10px;
  }
}

@media screen and (max-width: 1200px) {
  header .nav {
    position: fixed;
    right: -100vw;
    left: auto;
    top: 60px;
    height: auto;
    min-width: 200px;
    z-index: 1000;
    max-height: calc(100vh - 120px);
    overflow: auto;
    transition: all 0.3s;
  }

  header .nav>ul {
    display: block;
  }

  header .nav>ul>li {
    flex-direction: column;
  }

  header .nav>ul>li>a {
    font-size: 16px;
    line-height: 40px;
    color: #fff;
  }

  header .nav>ul>li .nav-child {
    position: static;
    border: none;
  }

  header .nav>ul>li .nav-child li a {
    font-size: 14px;
  }

  .site-mobile .nav {
    right: 0;
  }
}

@media screen and (max-width: 780px) {
  .w {
    width: 90%;
  }

  :root {
    --swiper-navigation-size: 0.48rem;
  }

  .prm_title {
    margin-bottom: 15px;
  }

  .prm_title::after {
    width: 70px;
  }

  .prm_title h2 {
    font-size: 22px;
    margin: 0;
  }

  .move a {
    padding: 5px 28px;
    font-size: 14px;
    border-radius: 100px;
    background-color: #0094d0;
    color: #fff;
    border-color: #0094d0;
  }

  header .header_top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0px;
    box-shadow: 0px 10px 20px 3px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    z-index: 1000;
  }

  header .header_top .w {
    height: 100%;
  }

  header .header_top .w .logo {
    height: 80%;
  }

  header .header_top .w .logo a {
    height: 100%;
    border: none;
  }

  header .header_top .w .logo img {
    height: 100%;
  }

  header .nav {
    border-top: none;
    width: 200px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }

  header .nav>ul {
    height: 100%;
    display: block;
    width: 100%;
  }

  header .nav>ul>li {
    padding: 0;
    margin: 0 0 5px 0;
  }

  header .nav>ul>li>a {
    font-size: 14px;
    width: 90%;
    border-radius: 0;
    padding: 0;
  }

  header .nav>ul>li .nav-child {
    padding: 0.2rem;
  }

  header .nav>ul>li .nav-child .box {
    width: 100%;
  }

  header .nav>ul>li .nav-child .box ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 0.2rem;
  }

  header .nav>ul>li .nav-child .box ul li {
    width: 50%;
  }

  header .nav>ul>li .nav-child .box ul li a {
    line-height: 34px;
    font-size: 12px;
  }

  header .nav>ul>li .nav-child .box .imgbox {
    display: none;
  }

  .min_nav {
    padding: 0.2rem 0;
  }

  .min_nav .w1500 {
    flex-direction: column;
    align-items: flex-start;
  }

  .min_nav .miaosu_title {
    order: 2;
    font-size: 26px;
    padding-bottom: 0.3rem;
  }

  .min_nav ul {
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    justify-content: flex-start;
    padding-bottom: 0.3rem;
    flex-wrap: nowrap;
  }

  .min_nav ul li {
    padding: 0 20px;
    margin-bottom: 0;
  }

  .min_nav ul li a {
    line-height: 40px;
    font-size: 14px;
  }

  .breadcrumb {
    padding: 0.2rem 0;
    margin-bottom: 0.3rem;
  }

  .breadcrumb .w .breadcrumb_l {
    display: none;
  }

  .breadcrumb .w .breadcrumb_r {
    width: 100%;
  }

  .breadcrumb .w .breadcrumb_r .box {
    width: 100%;
  }

  .breadcrumb .w .breadcrumb_r .box input[type="text"] {
    font-size: 12px;
    height: 40px;
  }

  .breadcrumb .w .breadcrumb_r .box input[type="submit"] {
    height: 40px;
  }

  .ft_title {
    margin-bottom: 0.3rem;
  }

  .ft_title h2 {
    font-size: 26px;
  }

  .ft_title p {
    font-size: 12px;
    margin: 0 0 0.1rem 0;
  }

  .pro_breadcrumb {
    margin-bottom: 0;
    font-size: 14px;
    display: none;
  }

  .search_bar .w .search_bar_l {
    display: none;
  }

  .search_bar .w .search_bar_r .search_form form input[type="text"] {
    height: 0.72rem;
  }

  .search_bar .w .search_bar_r .search_form form input[type="submit"] {
    height: 0.72rem;
    background-size: 30% auto;
  }

  #utils {
    display: block;
    width: 100%;
    height: 60px;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    border-radius: 0;
    transform: none;
    border: none;
    border-top: solid 1px #d5d5d5;
  }

  #utils ul {
    display: flex;
    height: 100%;
  }

  #utils ul .utils_box {
    flex: 1;
    display: flex;
  }

  #utils ul .utils_box .utils_item {
    width: 25vw;
    height: 100%;
    justify-content: flex-end;
    border-bottom: none;
  }

  #utils ul .utils_box .utils_item span img {
    margin-bottom: 3px;
    height: 26px;
  }

  #utils ul .utils_box .utils_item p {
    display: block;
    font-size: 14px;
    color: #fff;
  }

  #utils ul .utils_box .utils_item .box {
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 60px;
    width: 100%;
    height: calc(100vh - 120px);
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    box-shadow: none;
  }

  #utils ul .utils_box .utils_item .box.active {
    display: flex;
    animation: xcf_show 0.3s;
  }

  #utils ul .utils_box .utils_item .box .img_item {
    margin-right: 0;
    margin-bottom: 10px;
    color: #fff;
  }

  #utils ul .utils_box .utils_item .box .img_item img {
    width: 34vw;
  }

  #utils ul .utils_box .utils_item .box .img_item p {
    font-size: 16px;
  }

  #utils ul li {
    height: 100%;
    width: 25vw;
    justify-content: flex-end;
    border-bottom: none;
  }

  #utils ul li span img {
    margin-bottom: 3px;
    height: 26px;
  }

  #utils ul li p {
    display: block;
    font-size: 14px;
    color: #fff;
  }

  .f_title {
    font-size: 22px;
    margin-bottom: 0.3rem;
  }

  .f_title::after {
    width: 2rem;
  }

  footer {
    margin-bottom: 60px;
  }

  footer .footer_top {
    padding: 0.3rem 0;
    display: none;
  }

  footer .footer_top .w {
    flex-direction: column-reverse;
  }

  footer .footer_top .w .footerl {
    width: 100%;
  }

  footer .footer_top .w .footerl .f_nav {
    display: none;
  }

  footer .footer_top .w .footerl .bk {
    flex-direction: column;
    align-items: center;
  }

  footer .footer_top .w .footerl .bk .f_pro {
    display: none;
  }

  footer .footer_top .w .footerl .bk .f_pro:last-child {
    display: block;
  }

  footer .footer_top .w .footerr {
    width: 100%;
    margin-bottom: 0.3rem;
  }

  footer .footer_top .w .footerr .qrcode .qrcode_top {
    margin-bottom: 0.3rem;
  }

  footer .footer_top .w .footerr .qrcode .qrcode_top img {
    max-width: 4.64rem;
  }

  footer .footer_top .w .footerr .qrcode .qrcode_bottom .qr1 {
    margin-right: 0.3rem;
  }

  footer .footer_top .w .footerr .qrcode .qrcode_bottom img {
    width: 1.76rem;
  }

  footer .footer_top .w .footerr .qrcode .qrcode_bottom p {
    font-size: 12px;
    margin: 0.2rem 0 0 0;
  }

  footer .footer_logo {
    padding: 0.3rem 0;
  }

  footer .footer_bottom {
    padding: 0.3rem 0;
  }

  footer .footer_bottom .w .link {
    display: none;
  }

  footer .footer_bottom .w .copy {
    display: block;
    text-align: center;
  }
}
