/* base.css */
/* #region -----common----- */
/*css变量测试*/
:root {
  --bgColor: #00bf94;
  /*默认颜色*/
  --bgColor0: #fff;
  --bgColor1: #eaffec;
  --bgColor2: #ffede9;
  --bgColor3: #fff1f0;
  --bgColor4: #1e9fff;
  --font12: 12px;
  --font13: 13px;
  --font14: 14px;
  --font15: 15px;
  --font16: 16px;
  --font17: 17px;
  --font18: 18px;
  --font19: 19px;
  --font20: 20px;
  /*滚动条*/
  --arrow_color: #ddd;
  /*上下箭头*/
  --track_color: #ddd;
  /*底层背景色*/
  --face_color: #f1f1f1;
  /*滚动条前景色*/
  --Shadow_color: #1589ce;
  /*滚动条边线色*/
  --thumb_color: #2f3541;
  /*滚动条边线色*/
  --box-shadow-color: rgba(0, 0, 0, 0.35);
}
html,
body,
div,
p,
h1,
h2,
h3,
ul,
li,
img {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Microsoft Yahei", "黑体";
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
}
div {
  box-sizing: border-box;
}
/*IE滚动条颜色设置*/
body {
  scrollbar-arrow-color: var(--arrow_color);
  /*上下箭头*/
  scrollbar-track-color: var(--track_color);
  /*底层背景色*/
  scrollbar-face-color: var(--face_color);
  /*滚动条前景色*/
  scrollbar-shadow-color: var(--Shadow_color);
  /*滚动条边线色*/
}
/*chrome滚动条颜色设置*/
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0px;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
body::-webkit-scrollbar-track {
  background-color: var(--face_color);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px var(--box-shadow-color);
}
/*定义滚动条轨道 内阴影+圆角*/
body::-webkit-scrollbar-thumb {
  background-color: var(--track_color);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px var(--box-shadow-color);
}
/*pc端*/
body {
  background: #efefef;
  font-size: 15px;
}
var {
  font-style: normal;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  outline: none;
}
a:focus {
  outline: none;
}
img {
  border: none;
}
input {
  min-width: 10%;
}
/*强制横向排列*/
.d-flex {
  display: flex;
}
.disp_r {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}
/*强制纵向排列*/
.disp_c {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
}
/*设置的节点自动占满剩余的空间*/
.flex1 {
  flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
}
.flex2 {
  flex: 2;
  -webkit-flex: 2;
  -moz-flex: 2;
  -ms-flex: 2;
}
.flex3 {
  flex: 3;
  -webkit-flex: 3;
  -moz-flex: 3;
  -ms-flex: 3;
}
.ai-c {
  align-items: center;
}
/*子节点居住*/
.jus_center {
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}
/*子节点两边置顶 中间平均分配*/
.jus_between {
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}
/*子节点剩余空间平均分配*/
.jus_around {
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
}
/*横---反向排列*/
.flex_r {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
}
/*纵---反向排列*/
.flex_c {
  flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
}
/*换行*/
.flex_w {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
#vueBox {
  width: 100%;
  position: relative;
}
.bg-gray {
  background-color: #f5f5f5;
}
.red-border {
  border: 1px solid red !important;
}
.text-center {
  text-align: center;
}
input {
  outline: none;
}
.common_button {
  font-size: 20px;
  padding: 10px 20px;
  border: none;
  height: 50px;
  background: #be6533;
  border-radius: 25px 25px 25px 25px;
}
/* #endregion */
/* #region -----底部弹框-----*/
.alert_all {
  position: fixed;
  bottom: 3%;
  width: 100%;
  display: none;
  pointer-events: none;
  z-index: 999;
}
.alert_content {
  box-shadow: 0px 0px 15px #efefef;
  max-width: 85%;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 10px;
  border-radius: 5px;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  font-size: 1rem;
}
.loading_content {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.1);
}
/* #endregion  */
/* #region -----pc端-----*/
.content_company,
.content_recruitment,
.content_environment,
.container_footer,
.content_dute,
.product_img,
.yewu_box,
.container_footer,
.content_about,
.content-container {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  padding: 0 2%;
}
.flex_top {
  width: 100%;
  height: 4.2vw;
  max-height: 72px;
}
.header_box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.header_box .header_title {
  position: fixed;
  top: 0%;
  background-color: #fff;
  z-index: 999;
  height: 4.2vw;
  max-height: 72px;
  min-height: 44px;
  padding: 0 2%;
  display: flex;
  justify-content: space-around;
}
.header_box .header_title .title_logo {
  width: 315px;
  min-width: 50px;
}
.header_box .header_title .title_logo img {
  width: 100%;
}
.header_box .header_title .title_nav {
  position: relative;
}
.header_box .header_title .title_nav .nav {
  padding: 0 10px;
  cursor: pointer;
  margin-right: 0.4vw;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.header_box .header_title .title_nav .nav a {
  color: #000;
}
.header_box .header_title .title_nav .nav.active {
  background: #be6533;
  color: #fff;
}
.header_box .header_title .title_nav .nav.active a {
  color: #fff;
}
.header_box .header_title .title_nav .fans_quantity {
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #be6533;
  font-size: 14px;
  color: #be6533;
  line-height: 24px;
  height: 32px;
  padding: 0 10px;
  margin-right: 10px;
  cursor: default;
}
.header_box .header_title .title_nav .cart {
  width: 22px;
  height: 20px;
  cursor: pointer;
}
.header_box .header_title .title_nav .user {
  margin-left: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.header_box .header_title .title_nav .menu {
  display: none;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  cursor: pointer;
}
.container_pc {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}
.container_pc .container_top {
  width: 100%;
  position: relative;
  background: #fff;
}
.footer {
  width: 100%;
  position: relative;
  background: #292822;
}
.footer .container_footer .footer_top {
  width: 100%;
  border-bottom: 1px solid #313029;
  font-size: 14px;
  color: #929291;
  min-height: 88px;
  margin: 0 auto;
  padding: 2% 4%;
}
.footer .container_footer .footer_top .topBox ul li {
  line-height: 2.2em;
}
.footer .container_footer .footer_top .topBox ul li:nth-of-type(1) {
  font-size: 14px;
  color: #fff;
}
.footer .container_footer .footer_top .topBox ul li a {
  color: #fff;
  font-size: 18px;
}
.footer .container_footer .footer_top .topBox ul .images {
  width: 100%;
}
.footer .container_footer .footer_top .topBox ul .images img {
  width: 90px;
}
.footer .container_footer .footer_top .ico {
  width: 20px;
  margin: 0 5px;
}
.footer .container_footer .footer_top .ico img {
  width: 100%;
}
.footer .container_footer .footer_top .tele_phone,
.footer .container_footer .footer_top .e_mails {
  font-size: 16px;
  color: #fff;
  padding-left: 0px;
}
.footer .container_footer .footer_bottom {
  padding: 15px 0;
}
.footer .container_footer .footer_bottom p {
  font-size: 13px;
  color: #646463;
  text-align: center;
}
.site-mobile-menu {
  min-width: 543px;
  position: fixed;
  right: 0;
  top: 0;
  background: #ffffff;
  height: calc(100vh);
  min-height: 600px;
  transform: translateX(100%);
  transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
}
.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.site-mobile-menu .site-mobile-menu-body {
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 120px);
  overflow-y: auto;
}
.site-mobile-menu .site-mobile-menu-body .under-line {
  font-weight: 800;
}
.site-mobile-menu .site-mobile-menu-body .under-line a {
  font-weight: 700;
  color: #fff;
}
.site-mobile-menu .cart-title {
  font-weight: 400;
  font-size: 26px;
  color: #333333;
  line-height: 40px;
  margin-bottom: 20px;
}
.site-mobile-menu hr {
  color: #e6e6e6;
  border-radius: 0px 0px 0px 0px;
  border: 1px solid #e6e6e6;
}
.site-mobile-menu .site-nav-wrap {
  margin-top: 20px;
}
.site-mobile-menu .site-nav-wrap img {
  display: inline-block;
}
.site-mobile-menu .site-nav-wrap .select-item {
  margin-bottom: 25px;
}
.site-mobile-menu .site-nav-wrap .select-item img {
  width: 120px;
  height: 120px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex: 1;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-top {
  display: flex;
  justify-content: space-between;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-top .title {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-top .icon-delete {
  margin-left: 10px;
  width: 18px;
  height: 18px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .text {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .price {
  font-size: 22px;
  color: #be6533;
  line-height: 33px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .quantity-boxer {
  margin-left: 25px;
  height: 30px;
  line-height: 30px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .quantity-boxer input {
  width: 50px;
  border: none;
  font-size: 14px;
  text-align: center;
  background: #f5f5f5;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .quantity-boxer .btn {
  background-color: #f5f5f5;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .quantity-boxer .btn svg {
  font-size: 15px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .quantity-boxer .sub {
  padding-left: 5px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .quantity-boxer .add {
  padding-right: 5px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .product-quantity-cart {
  padding-top: 14px;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .product-quantity-cart .product-quantity {
  position: relative;
  padding-right: 24px;
  margin-right: 30px;
  margin-top: 10px;
  width: 120px;
  display: flex;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .product-quantity-cart .product-quantity *:first-child {
  top: auto;
  bottom: 0;
}
.site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .product-quantity-cart .product-quantity button {
  background: none;
  top: 0;
  border: none;
  padding: 0;
  width: 35px;
  font-size: 16px;
  background: #f5f5f5;
}
.site-mobile-menu .go_settle {
  margin: 15px 0 50px;
}
.pc_menu_list {
  min-width: 300px;
  position: fixed;
  right: 0;
  top: 0;
  background: #ffffff;
  height: calc(100vh);
  min-height: 600px;
  transform: translateX(100%);
  padding: 10px;
  transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
}
.pc_menu_list .site-mobile-menu-close {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  cursor: pointer;
}
.pc_menu_list .cart-title {
  font-size: 26px;
}
.pc_menu_list .menu_boxer li {
  margin-bottom: 20px;
}
.pc_menu_list .menu_boxer li.active a {
  color: #be6533;
}
.pc_menu_list .menu_boxer a {
  color: #333;
  font-size: 16px;
}
.offcanvas-pc-menu .pc_menu_list {
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  transform: translateX(0%);
  z-index: 2000;
}
.offcanvas-menu .site-mobile-menu {
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  transform: translateX(0%);
  z-index: 2000;
}
.mask {
  display: none;
  background-color: #000;
  opacity: 0.2;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
}
/* #endregion*/
@media screen and (min-width: 1920px) {
  .header_box .header_title {
    width: 1920px;
  }
}
@media screen and (max-width: 1920px) {
  .header_box .header_title {
    width: 100%;
  }
}
@media screen and (max-width: 1450px) {
  .container_pc .header_box .header_title {
    margin: 0 auto;
    justify-content: space-between;
  }
  .container_pc .header_box .header_title .menu {
    display: block;
  }
  .container_pc .header_box .pc_menu {
    display: none;
  }
}
/* 小屏以下 */
@media screen and (max-width: 750px) {
  .site-mobile-menu {
    min-width: auto;
    width: 90%;
  }
  .site-mobile-menu .cart-title {
    font-size: 0.8rem;
    line-height: 1.1;
    margin-bottom: 0;
  }
  .site-mobile-menu .site-nav-wrap .select-item img {
    width: 5rem;
    height: 5rem;
  }
  .site-mobile-menu .site-nav-wrap .select-item .product-info {
    flex: 1;
  }
  .site-mobile-menu .site-nav-wrap .select-item .product-info .info-top .title {
    font-size: 0.55rem;
  }
  .site-mobile-menu .site-nav-wrap .select-item .product-info .info-top .icon-delete {
    width: 0.7rem;
    height: 0.7rem;
  }
  .site-mobile-menu .site-nav-wrap .select-item .product-info .text {
    font-size: 0.5rem;
  }
  .site-mobile-menu .site-nav-wrap .select-item .product-info .info-bottom .price {
    font-size: 0.55rem;
  }
  .site-mobile-menu .go_settle {
    margin: 0.8rem 0 1.5rem;
  }
  .common_button {
    font-size: 0.55rem;
    width: auto;
    height: auto;
    border: none;
    padding: 0.4rem 0.55rem;
    background: #be6533;
    border-radius: 25px 25px 25px 25px;
  }
  .product_swiper img {
    width: 80%;
  }
  .product_swiper .product_title {
    font-size: 0.7rem;
    margin: 0.25rem 0;
  }
  .product_swiper .product_price {
    font-size: 0.65rem;
  }
}
.container_mobile {
  width: 100%;
  position: relative;
  /*移动底部*/
}
.container_mobile img {
  width: 100%;
  pointer-events: none;
}
.container_mobile .m_header {
  padding: 0.6rem 0.7rem;
  background: #fff;
  position: fixed;
  top: 0%;
  z-index: 999;
  background-color: #fff;
  width: 100%;
}
.container_mobile .m_header .m_header_img {
  width: 38%;
}
.container_mobile .m_header .m_header_text {
  flex-direction: row;
}
.container_mobile .m_header .m_header_text img {
  width: 0.8rem;
  height: 0.8rem;
}
.container_mobile .m_header .m_header_text .boxer {
  cursor: pointer;
}
.container_mobile .m_header .m_header_text .fans_quantity {
  border-radius: 16px 16px 16px 16px;
  border: 1px solid #be6533;
  font-size: 0.5rem;
  color: #be6533;
  line-height: 1.7;
  padding: 0 0.25rem;
  margin-right: 0.2rem;
  cursor: default;
}
.container_mobile .m_header .m_header_text img.user {
  width: 1rem;
  height: 1rem;
  margin-right: 3px;
}
.container_mobile .m_header .m_header_text img.cart {
  display: inline-block;
  width: 0.87rem;
  height: 0.87rem;
  margin-right: 5px;
}
.container_mobile .m_banner {
  width: 100%;
  padding: 2.5rem 0 0;
  background-color: #f3f3f3;
}
.container_mobile .m_banner .page-banner-title {
  font-size: 1.5rem;
  color: #242424;
  text-transform: capitalize;
  line-height: 1;
  text-align: center;
}
.container_mobile .m_footer {
  width: 100%;
  background: #292822;
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.2rem;
  padding-bottom: 0px;
}
.container_mobile .m_footer .m_footer_top {
  padding: 0.7rem;
  width: 100%;
}
.container_mobile .m_footer .m_footer_top .left {
  padding-right: 0.5rem;
}
.container_mobile .m_footer .m_footer_top .left p {
  color: #999;
  margin-top: 15px;
  line-height: 1.5;
}
.container_mobile .m_footer .m_footer_top .right a {
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.4rem;
}
.container_mobile .m_footer .m_footer_top .left span,
.container_mobile .m_footer .m_footer_top .right span {
  font-size: 0.75rem;
}
.container_mobile .m_footer .m_footer_bottom {
  width: 100%;
  font-size: 0.6rem;
  color: #999;
  padding: 0.6rem 0.4rem;
  border-top: 1px solid #34332b;
  text-align: center;
  line-height: 1.4;
}
.container_mobile .wap-ju-nav {
  width: auto;
  background: #3d4045;
  position: fixed;
  top: 0px;
  right: 0px;
  color: #fff;
  display: none;
  z-index: 9999;
}
.container_mobile .wap-ju-nav ul {
  padding: 0.75rem;
  line-height: 1.5rem;
  font-size: 0.75rem;
}
.container_mobile .wap-ju-nav ul li span {
  color: #fff;
  padding-right: 1rem;
}
.container_mobile .wap-ju-nav ul li .icon-mjiantou-copy:before {
  color: #fff;
  font-size: 0.65rem;
}
