* {
  margin: 0;
  padding: 0;
}

html {
  --default-h: 80px;
  --header-small-height: 80px;
  --scroll-w: 4px;
  --vw: 100vw;
  --vwmini: calc(var(--vw) - var(--scroll-w));
  --hvw: clamp(0px, calc(100vw - var(--scroll-w)), 1920px);
  /* --hvw: 100%; */
  --bettwen-pad: 5vw;
  --main-color: #fa611b;
  --main-hover-color: #fa611b;
  --main-color-rgb: 246, 117, 36;
  --main-hover-color-rgb: 10, 76, 154;
  --main-third-color: #fa611b;
  --main-third-hover-color: #fa611b;
  --main-third-color-rgb: 73, 151, 203;
  --main-third-hover-color-rgb: 18, 101, 199;
  --linear-color: linear-gradient(124deg, #fa611b, #fa611b);
  --linear-color-h: linear-gradient(-124deg, #fa611b, #fa611b);
  --background: linear-gradient(-34deg, #fa611b 0%, #fa611b 100%), linear-gradient(#f67524, #f67524);
  --background-hover: linear-gradient(-34deg, #fa611b 100%, #fa611b 0%), linear-gradient(#f67524, #f67524);
  --win-width-1920: 100vw;
  --bettwen-full-pad: calc((100vw - var(--wrap-full-width)) / 2);
  --bettwen-1760-pad: calc((100vw - var(--wrap-1760-width)) / 2);
  --bettwen-1680-pad: calc((100vw - var(--wrap-1680-width)) / 2);
  --bettwen-1470-pad: calc((100vw - var(--wrap-1470-width)) / 2);
  --bettwen-1300-pad: calc((100vw - var(--wrap-1300-width)) / 2);
  --bettwen-1200-pad: calc((100vw - var(--wrap-1200-width)) / 2);
}

::-webkit-scrollbar {
  border-radius: 1.5px;
  width: 6px;
  height: 4px;
  background-color: #dfdfdf;
}

::-webkit-scrollbar-track {
  border-radius: 1.5px;
  background-color: #dfdfdf;
}

::-webkit-scrollbar-thumb {
  border-radius: 1.5px;
  background-color: var(--main-color);
}

body {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  background: #f5f5f5;
  font-family: 'Hiragino Sans GB', 'Lucida Grande', Helvetica, Arial, 'Microsoft YaHei', FreeSans, Arimo, 'Droid Sans', 'wenquanyi micro hei', 'Hiragino Sans GB', 'Hiragino Sans GB W3', Arial, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  line-height: inherit;
  font-family: 'Hiragino Sans GB', 'Lucida Grande', Helvetica, Arial, 'Microsoft YaHei', FreeSans, Arimo, 'Droid Sans', 'wenquanyi micro hei', 'Hiragino Sans GB', 'Hiragino Sans GB W3', Arial, sans-serif;
}
ul li {
  list-style: none;
}
input {
  -webkit-appearance: none;
  font-family: 'Hiragino Sans GB', 'Lucida Grande', Helvetica, Arial, 'Microsoft YaHei', FreeSans, Arimo, 'Droid Sans', 'wenquanyi micro hei', 'Hiragino Sans GB', 'Hiragino Sans GB W3', Arial, sans-serif;
}
textarea {
  -webkit-appearance: none;
  resize: none;
}
input::-webkit-input-safebox-button {
  display: none;
}
select {
  -webkit-appearance: none;
}
img {
  max-width: 100%;
  border: none;
  vertical-align: middle;
  text-decoration: none;
}
a {
  cursor: pointer;
  color: #000;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
a:hover {
  color: #fa611b;
}
a,
a img {
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  background: none;
}
span:focus,
img:focus,
button:focus {
  outline: none;
  border: none;
}
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
}
/*a:hover{-moz-transition:all 0.3s ease-out;transition:all 0.3s ease-out;}
*/
select,
select:focus,
select:active {
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border: #fa611b solid 1px;
}
.input_class::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
.input_class:-ms-input-placeholder {
  color: #ccc;
}
.input_class::-webkit-input-placeholder {
  color: #ccc;
}
.input_class {
  padding: 10px 15px;
  border: #ddd solid 1px;
  border-radius: 5px;
}
.input_class:focus {
  border-color: #fa611b;
}
.but_class {
  font-size: 14px;
  padding: 7px 15px;
  margin: 0px auto;
  background: #fa611b;
  color: #fff;
  max-width: 200px;
  text-align: center;
  border: #fa611b solid 1px;
  border-radius: 5px;
  display: inline-block;
}
.but_class:hover {
  border-color: #fa611b;
  color: #fff;
}
.but_class:focus {
  border: 1px solid #fa611b;
  color: #fff;
}

.but_class_two {
  font-size: 14px;
  padding: 7px 15px;
  margin: 0px auto;
  background: #fff;
  color: #000;
  max-width: 200px;
  text-align: center;
  border: #000 solid 1px;
  border-radius: 5px;
  display: inline-block;
}
.but_class_two:hover {
  border-color: #fa611b;
  color: #fa611b;
}
.but_class_two:focus {
  border: 1px solid #fa611b;
  color: #fa611b;
}

.caretl {
  clear: both;
  margin: 0;
  padding: 0;
  font-size: 0px;
  line-height: 0px;
  height: 0px;
}
/**/
.container {
  max-width: 1600px;
  width: 100%;
  padding: 0px 20px;
  margin: 0 auto;
}

header {
  background: #fff;
}
.top {
  padding: 20px 0px;
  display: grid;
  text-align: center;
}
.top_logo {
  float: left;
  padding-top: 3px;
}
.top_logo img {
  height: 38px;
}
.top_search {
  width: 35%;
  margin: 0px auto;
  display: inline-block;
}
.product_search {
  position: relative;
  width: 100%;
}
.product_search .input_class {
  border-color: #fa611b;
  width: 100%;
  padding-right: 95px;
  padding-left: 35px;
}
.product_search .but_class {
  width: 80px;
  text-align: center;
  border-radius: 0px 5px 5px 0px;
  position: absolute;
  right: 0px;
  height: 100%;
  top: 0px;
}
.search_icon {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -8px;
  color: #ccc;
}

.top_right {
  float: right;
  display: inline-block;
  padding-top: 3px;
}
.top_language {
  float: left;
  padding: 8px 15px;
  width: 85px;
  padding-right: 5px;
  line-height: 24px;
  margin: 0px auto;
}
.top_language .layui-unselect {
  height: 24px;
  border: none;
  padding: 0px;
  font-size: 14px;
  background: none;
}
.top_language .layui-form-select {
  padding-left: 22px;
  background: url(../images/cn_icon.png) 0px center no-repeat;
  background-size: 16px auto;
}
.top_language .layui-form-select .layui-edge {
  border-width: 4px;
  border-top-color: #000;
  margin-top: -2px;
  right: 2px;
}
.top_language .layui-form-selected .layui-edge {
  margin-top: -6px;
}
.top_language .layui-form-select dl {
  padding: 0px;
  border: none;
  text-align: center;
  border-radius: 3px;
}
.top_language .layui-form-select dl {
  top: 30px;
}
.top_language .layui-form-select dl dd {
  color: #000;
  font-size: 14px;
}
.top_language .layui-form-select dl dd.layui-this {
  background: #fa611b;
  color: #fff;
}
.top_language.JG_language .layui-form-select {
  background: none;
  padding-left: 0px;
}
.top_language.JG_language {
  width: 70px;
  margin-right: 5px;
}
.top_right a {
  display: inline-block;
  margin-left: 5px;
}

.top_nav_ct {
  display: block;
  border-top: #f9f9f9 solid 1px;
}

.top_nav {
  display: inline-block;
  margin: 0px auto;
}
.top_nav li {
  float: left;
  position: relative;
  padding-right: 35px;
}
.top_nav li:nth-last-child(1) {
  padding-right: 0px;
}
.top_nav .active > a {
  color: #fa611b !important;
}
.top_nav li a {
  padding: 12px 0px;
  display: block; /* font-weight: bold; */
}
.top_nav li > a {
  position: relative;
}
.top_nav li a:hover {
  color: #fa611b !important;
}
.top_nav li:hover .top_nav_li_icon:after,
.top_nav li:hover .top_nav_li_icon:before {
  background: #000;
}
.top_nav_li_icon {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 12px;
  margin-right: 10px;
}
.top_nav_li_icon:after,
.top_nav_li_icon:before {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  display: block;
  top: 0px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.top_nav_li_icon:after {
  bottom: 0px;
  top: auto;
}
.top_nav > li#shipclassli div {
  display: block;
  position: relative;
}
.top_nav li:hover > a {
  color: #fa611b !important;
}
.top_nav li:hover .arrowDG_menu {
  opacity: 1;
  height: auto;
}
.top_right_Shopping b {
  padding-left: 5px;
}
.top.top_fixed {
  background: #fff;
  color: #000;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}
.top.fixed {
  background: #fff;
  color: #000;
  position: fixed;
  left: 0px;
  top: 0px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.arrowDG_menu {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  height: 0px;
  position: absolute;
  opacity: 0;
  width: 100%;
  display: block;
  overflow: hidden;
  left: 0px;
  color: #000;
  text-align: left;
  top: 100%;
  background: #f9f9f9;
  padding: 0px;
  min-width: 320px;
  z-index: 999;
}

.top_nav .arrowDG_menu a {
  font-weight: normal;
}
.panli_nav_menu > li#shipclassli:hover .arrowDG_menu {
  display: block;
}
.arrowDG_menu > li:hover .subcat {
  display: block;
}
.top_nav .navbarbox_ul_li {
  display: block;
  overflow: hidden;
}
.top_nav .navbarbox_ul_li a {
  padding: 8px 15px;
  align-items: center;
  display: inline-block;
  white-space: nowrap;
}

.top_nav .navbarbox_ul_li {
  display: block;
  border-bottom: #ddd solid 1px;
}
.top_nav .navbarbox_ul_li:nth-last-child(1) {
  border: none;
}
.nav_a_mobi {
  display: none !important;
}
.top_nav_txt {
  float: right;
}
.top_nav .arrowDG_menu_w.on > a {
  color: #fa611b;
}
.top_nav .arrowDG_menu_w a > img {
  height: 15px;
  margin-right: 8px;
  float: left;
  margin-top: 2px;
}
.top_nav .arrowDG_menu_w .navbarbox_ul_li a {
  display: flex;
  padding: 10px 15px;
}
.top_nav .arrowDG_menu_w .navbarbox_ul_li a > img {
  height: 35px;
  margin-right: 10px;
}
.top_nav_txt {
  float: right;
}
.top_nav_txt a {
  padding: 12px 0px;
  display: inline-block;
  margin-left: 25px;
}

.top_nav_logo {
  display: none;
}
.top_nav_select {
  display: none;
}
.top_but {
  display: none;
}

.title {
  font-size: 24px;
  font-weight: bold;
}
.swiper-pagination-bullet {
  border-radius: 100%;
  background: #fff;
}
.swiper-pagination-bullet-active {
  background: #fa611b;
}

.banner {
  display: block;
  margin-bottom: 30px;
}
.banner .swiper-slide {
  position: relative;
}
.banner .swiper-slide > img {
  width: 100%;
}
.banner_txt {
  position: absolute;
  width: 100%;
  color: #fff;
  height: 100%;
  display: table;
  width: 100%;
  left: 0px;
  top: 0px;
}
.banner_txt_ct {
  display: table-cell;
  vertical-align: middle;
}
.banner_bu {
  max-width: 400px;
  padding: 20px 0px;
  display: block;
}
.banner_but {
  padding-top: 5px;
}
.banner_but .but_class {
  padding: 8px 30px;
}
.banner .title {
  line-height: 1.2;
  font-size: 40px;
}
.mc_img {
  display: none;
}

.banner_txt_2 {
  text-align: center;
}
.banner_txt_2 .banner_bu {
  margin: 0px auto;
  max-width: 600px;
}

.banner_txt_3 {
  text-align: center;
}
.banner_txt_3 .banner_bu {
  margin: 0px auto;
  max-width: 570px;
}
.banner_bu_tab {
  display: table;
  width: 100%;
}
.banner_bu_tab_l {
  display: table-cell;
  font-weight: 300;
  vertical-align: middle;
  font-size: 36px;
  width: 220px;
}
.banner_bu_tab_r {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  line-height: 1.2;
}
.banner_tab {
  text-align: center;
}
.banner_tab_li {
  padding: 0px 15px;
  font-weight: bold;
  display: inline-block;
  overflow: hidden;
  line-height: 24px;
}
.banner_tab_li i {
  color: #1dbb54;
  font-size: 18px;
  float: left;
  margin-right: 6px;
}

.home_li {
  padding-bottom: 30px;
}
.home_pr_class {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-gap: 25px;
}
.home_pr_class_li {
  display: block;
  transition: all 0.5s;
}
.home_pr_class_li a {
  background: linear-gradient(to right, #fff, #fffcf2);
  display: block;
}
.home_pr_class a {
  display: table;
  width: 100%;
  border-radius: 15px;
}
.home_pr_class_li a:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.home_pr_class_li_l {
  display: table-cell;
  vertical-align: top;
  width: 45%;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
}
.home_pr_class_li_r {
  display: table-cell;
  vertical-align: middle;
  min-width: 100px;
  padding: 15px;
  padding-bottom: 0px;
}
.home_pr_class_li_r img {
  width: 100%;
}
.Popular_Products {
  padding: 20px 25px;
  background: linear-gradient(#ffebe1, #fff 20%);
  border-radius: 15px;
  position: relative;
}
.nav_title {
  overflow: hidden;
}
.nav_title .title {
  float: left;
}
.nav_title_more {
  float: left;
  padding-top: 10px;
  float: right;
}

.Popular_Products_ct {
  padding-top: 20px;
}
.prdoct_li {
  display: block;
  position: relative;
}
.prdoct_li_img {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.prdoct_li_img img {
  width: 100%;
  transition: all 0.5s;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.prdoct_li_name {
  font-weight: bold;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prdoct_li_price {
  font-size: 16px;
  font-weight: bold;
  color: #fa611b;
  margin-top: 10px;
}
.prdoct_li:hover .prdoct_li_img img {
  transform: scale(1.05);
  -o-transform: scale(1.05);
}
.prdoct_li_Tech {
  font-size: 12px;
  padding-top: 8px;
  color: #999;
  overflow: hidden;
}
.prdoct_li_Tech span {
  float: right;
}

.swiper_width {
  position: relative;
}
.swiper_width .swiper-container {
  position: initial;
}
.swiper-button-white {
  position: absolute;
  z-index: 6;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
  display: inline-block;
  top: 50%;
  margin-top: -18px;
  width: 36px;
  color: #000;
  text-align: center;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 100%;
}
.swiper-button-white i {
  font-size: 20px;
  line-height: 36px;
}
.swiper-button-prev {
  left: -15px;
}
.swiper-button-next {
  right: -15px;
}

.advertisement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 30px;
}
.advertisement_li {
  overflow: hidden;
  border-radius: 15px;
}
.advertisement_li img {
  width: 100%;
}

.home_Belt {
  background: url(../images/Rectangle_bg.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 15px;
  color: #fff;
  padding: 25px;
}
.home_Belt_txt {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-gap: 25px;
  padding: 25px 0px 15px;
}
.home_Belt_txt_li {
  display: table;
  width: 100%;
}
.home_Belt_txt_l {
  display: table-cell;
  width: 48px;
  vertical-align: middle;
}
.home_Belt_txt_r {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
}
.home_Belt_txt_r b {
  font-size: 24px;
  display: block;
}
.Belt_pr_ct {
  display: block;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  padding: 20px;
}
.Belt_pr_title {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.Belt_pr_box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 25px;
  padding-top: 20px;
}
.Belt_pr_ct .prdoct_li {
  overflow: hidden;
  border-radius: 10px;
}
.Belt_pr_ct .prdoct_li a {
  display: block;
  position: relative;
  z-index: 2;
}
.Belt_pr_ct .prdoct_li a::after {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  height: 60%;
  content: '';
  display: block;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.Belt_pr_ct .prdoct_li_txt {
  position: absolute;
  left: 15px;
  bottom: 10px;
  right: 15px;
  z-index: 2;
}
.Belt_pr_ct .prdoct_li_name {
  font-size: 12px;
  color: #fff;
}
.Belt_pr_ct .prdoct_li_price {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
}

.home_Featured {
  border-radius: 15px;
  padding: 25px;
  background: #fff;
}
.Featured_tab {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 20px;
  padding-top: 20px;
}
.Featured_tab_li {
  background: #f4f6f9;
  padding: 10px;
  border-radius: 10px;
}
.Featured_tab_top {
  display: table;
  width: 100%;
}
.Featured_tab_l {
  display: table-cell;
  vertical-align: middle;
  width: 35px;
}
.Featured_tab_l img {
  border-radius: 10px;
  background: #fff;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.Featured_tab_r {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
  font-size: 12px;
}
.Featured_tab_r b {
  display: block;
}
.Featured_tab_r_txt {
  overflow: hidden;
  text-align: right;
}
.Featured_tab_r_txt span {
  color: #999;
  float: left;
  padding-top: 3px;
}
.Featured_tab_r_txt .layui-inline {
  display: inline-block;
  padding-right: 2px;
}
.Featured_tab_r_txt .layui-rate {
  padding: 0px;
}
.Featured_tab_r .Featured_tab_r_txt b {
  display: inline-block;
  font-size: 14px;
}
.Featured_tab_r .layui-rate li i.layui-icon {
  font-size: 14px;
  margin: 0px;
}
.Featured_tab_label {
  display: block;
  padding: 15px 0px;
}
.Featured_tab_label span {
  display: inline-block;
  font-size: 12px;
  padding: 4px 8px;
  border: #d2d6dd solid 1px;
  background: #fff;
  margin: 2px 0px;
  border-radius: 5px;
}
.Featured_tab_img {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 10px;
}
.Featured_tab_img_li img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.home_product {
  padding-top: 15px;
}
.layui-tab {
  padding: 0px;
  margin: 0px;
}
.layui-tab-title {
  display: block;
  border: none;
  text-align: center;
}
.layui-tab-brief > .layui-tab-more li.layui-this:after,
.layui-tab-brief > .layui-tab-title .layui-this:after {
  display: none;
}
.layui-tab-brief > .layui-tab-title .layui-this {
  font-weight: bold;
  color: #fa611b;
}
.layui-tab-content {
  padding: 0px;
}

.home_product_tab {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 30px;
  padding-top: 20px;
  width: 100%;
}

.foot_Support {
  background: #fa611b;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.foot_Support_ct {
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot_Support_ct img {
  height: 80px;
  margin-left: 15px;
}
.foot_select {
  padding: 30px 0px;
  background: #000;
}
.foot_select_tab {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 30px;
}
.foot_select_tab_li {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.foot_select_tab_icon {
  display: block;
}
.foot_select_tab_icon img {
  height: 40px;
}
.foot_select_tab_title {
  padding: 15px 0px 10px;
  font-weight: bold;
  display: block;
}
.foot_select_tab_txt {
  color: #999;
  display: block;
}

.foot_nav {
  background: #2c2c2c;
  padding: 30px 0px;
  overflow: hidden;
  font-size: 12px;
  color: #999;
}
.foot_nav_l {
  float: left;
  width: 28%;
}
.foot_nav_logo {
  display: block;
}
.foot_nav_logo img {
  height: 36px;
}
.foot_nav_logo_txt {
  max-width: 300px;
  color: #999;
  padding-top: 20px;
}
.foot_nav_c {
  width: 50%;
  float: left;
}
.foot_nav_li {
  display: inline-block;
  padding-right: 20%;
  float: left;
}
.foot_nav_li:nth-last-child(1) {
  padding-right: 0px;
}
.foot_nav_li b {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  padding-bottom: 10px;
}
.foot_nav_li_txt {
  display: block;
  padding: 6px 0px;
}
.foot_nav_li_txt a {
  display: block;
  color: #999;
}
.foot_nav_li_txt a:hover {
  color: #fff;
}
.foot_nav_r {
  float: right;
}
.foot_nav_r_title {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  padding-bottom: 10px;
}
.foot_nav_Follow {
  display: block;
  padding-top: 5px;
}
.foot_nav_Follow a {
  width: 40px;
  text-align: center;
  margin-right: 5px;
  height: 40px;
  border-radius: 100%;
  display: inline-block;
  background: #000;
  color: #fff;
}
.foot_nav_Follow a i {
  font-size: 20px;
  line-height: 40px;
}
.foot_nav_Follow a:nth-last-child(1) {
  margin-right: 0px;
}
.foot_nav_Follow a:hover {
  background: #fa611b;
}

.foot_bottom {
  background: #2c2c2c;
  padding: 20px 0px;
  border-top: #464646 solid 1px;
  overflow: hidden;
  font-size: 12px;
  color: #999;
}
.foot_bottom_l {
  float: left;
}
.foot_bottom_l a {
  margin-right: 20px;
}
.foot_bottom_l a:nth-last-child(1) {
  margin-right: 0px;
}
.foot_bottom_r {
  float: right;
}
.foot_bottom a {
  color: #999;
}
.foot_bottom a:hover {
  color: #fff;
}

.main {
  position: fixed;
  right: 10px;
  bottom: 30px;
  justify-content: center;
  align-items: flex-end;
  width: 50px;
  z-index: 99;
}
.Vector_icon {
  width: 50px;
  height: 50px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  border-radius: 100%;
  background: #fa611b;
}
.main img {
  width: 24px;
  padding: 13px 0px 0px;
}
.cd-top {
  display: inline-block;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  margin-top: 15px;
  transition: all 0.3s;
}
.cd-top i {
  background: #fff;
  width: 50px;
  transform: rotate(90deg);
  text-align: center;
  font-size: 24px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  position: relative;
  border-radius: 100%;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}
.cd-top.cd-is-visible {
  opacity: 1;
}

.Insideb_banner {
  background: #333333;
  position: relative;
}
.Insideb_banner::after {
  width: 20%;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  content: '';
  z-index: 1;
  background: #fa611b;
}
.Insideb_banner_ct {
  display: table;
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 2;
}
.Insideb_banner_l {
  display: table-cell;
  width: 30%;
  background: url(../images/Insideb_banner_bg.jpg) right center no-repeat #fa611b;
  background-size: auto 100%;
  position: relative;
  vertical-align: middle;
  font-weight: bold;
  font-size: 24px;
  text-align: left;
  padding: 35px 0px;
  padding-right: 40px;
}
.Insideb_banner_r {
  padding: 35px;
  padding-right: 0px;
}

.product_list_width {
  position: relative;
  display: flex;
  padding: 40px 0px;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
#column_left {
  float: left;
  width: 230px;
  flex: 0 0 230px;
  position: sticky;
  top: calc(10px);
  align-self: flex-start;
}
.product_title {
  font-weight: bold;
  font-size: 16px;
  border-bottom: #000 solid 1px;
  padding-bottom: 10px;
  position: relative;
}
.product_title img {
  height: 16px;
  margin-right: 10px;
  float: left;
  margin-top: 2px;
}
.column_left_column {
  padding: 10px 0px;
  border-bottom: #000 solid 1px;
}
.column_left_column span {
  padding: 7px 15px;
  margin: 3px 0px;
  padding-right: 35px;
  display: inline-block;
  line-height: 1.2;
  background: #000;
  color: #fff;
  font-size: 12px;
  position: relative;
  border-radius: 90px;
}
.column_left_column span i {
  position: absolute;
  right: 10px;
  top: 4px;
  cursor: pointer;
}
.column_left_li {
  padding: 20px 0px;
  border-bottom: #eee solid 1px;
}
.column_border {
  border: none;
}
.column_left_title {
  font-weight: bold;
  display: block;
}
.checkbox_li {
  margin-top: 10px;
}
.regular-radio {
  display: none;
}
.regular-radio + label {
  background: url(../images/checkout1.png) no-repeat left top;
  margin: 0px;
  font-weight: normal;
  background-size: 20px auto;
  font-size: 12px;
  line-height: 20px;
  position: relative;
  min-height: 20px;
  display: block;
  padding: 0;
  cursor: pointer;
  padding-left: 30px;
  text-align: left;
}
.regular-radio:checked + label {
  background: url(../images/checkout2.png) no-repeat left top;
  background-size: 20px auto;
}
.column_max {
  display: table;
  width: 100%;
  margin-top: 10px;
}
.column_max_input {
  display: table-cell;
  position: relative;
  width: 33%;
}
.column_max_input span {
  position: absolute;
  left: 11px;
  top: 6px;
}
.column_max_input .input_class {
  border-color: #f4f6f9;
  width: 100%;
  background: #f4f6f9;
  font-size: 12px;
  border-radius: 3px;
  padding: 7px 10px;
  padding-left: 30px;
}
.column_max_input .input_class:focus {
  border-color: #333;
}
.column_max_txt {
  display: table-cell;
  width: 12px;
  vertical-align: middle;
  text-align: center;
}
.column_max_but {
  display: table-cell;
  vertical-align: middle;
  padding-left: 5px;
}
.column_max_but .but_class {
  width: 100%;
  padding: 0px;
  line-height: 30px;
  height: 32px;
  background: #000;
  border-color: #000;
}
.column_max_but .but_class:hover {
  background: #fa611b;
  border-color: #fa611b;
}
.column_left_but {
  border-top: #000 solid 1px;
  padding-bottom: 3px;
  padding-top: 15px;
  overflow: hidden;
  display: none;
}
.column_left_but .but_class {
  font-size: 12px;
  float: left;
  width: 35%;
  text-align: center;
  padding: 8px 0px;
  background: #fff;
  border-color: #000;
  color: #000;
}
.column_left_but .but_class:hover {
  border-color: #fa611b;
  color: #fa611b;
}
.column_left_but .Apply_class {
  float: right;
  width: 61%;
  background: #000;
  color: #fff;
  border-color: #000;
}
.column_left_but .Apply_class:hover {
  background: #fa611b;
  color: #fff;
}
.column_close {
  position: absolute;
  right: 5px;
  top: 0px;
  cursor: pointer;
  font-size: 16px;
  display: none;
}

#column_center {
  padding-left: 40px;
  max-width: calc((100% - 230px));
  position: sticky;
  top: calc(10px);
  align-self: flex-start;
  flex: 0 0 calc((100% - 230px));
}

.column_center_nav {
  display: flow;
  font-size: 12px;
}
.column_center_nav_txt {
  display: inline-block;
  padding-top: 10px;
}
.column_center_nav_r {
  float: right;
  display: inline-block;
  width: initial;
}
.Sort_select {
  display: inline-block;
  width: 140px;
  margin-left: 3px;
}
.Sort_select .layui-form-select .layui-input {
  padding-right: 25px;
  height: 34px;
  border-color: #000;
  border-radius: 5px;
}
.Sort_select .layui-form-select dl {
  top: 38px;
}
.layui-form-select dl dd.layui-this {
  background: #fa611b;
}
.Sort_select .layui-input:hover,
.Sort_select .layui-textarea:hover {
  border-color: #000 !important;
}

.column_product_tab {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 30px;
  grid-gap: 10px;
}
.column_product_tab .prdoct_li {
  padding: 10px;
  border-radius: 5px;
}
.column_product_tab .prdoct_li:hover {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
.column_product_tab .prdoct_li:hover .prdoct_li_but {
  display: block;
}
.prdoct_li_but {
  position: absolute;
  display: none;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin-top: -5px;
  width: 100%;
  padding: 8px 10px 0px;
  background: #fff;
  left: 0px;
  top: 100%;
  z-index: 9;
}
.prdoct_li_but a {
  display: block;
  border: #000 solid 1px;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}
.prdoct_li_but a:hover {
  border-color: #fa611b;
  color: #fa611b;
}
.prdoct_li_but a.on {
  border-color: #fa611b;
  color: #fff;
  background: #fa611b;
}

.pagination {
  text-align: center;
  font-size: 12px;
  display: block;
  overflow: hidden;
  margin: 0px;
  padding-top: 40px;
}
.pagination .pagination {
  padding: 0px;
  margin: 0px auto;
}
.pagination ul li > a {
  color: #333 !important;
  width: 42px;
  height: 42px;
  padding: 0px;
  cursor: pointer;
  display: block;
  line-height: 42px;
  border-radius: 3px !important;
  font-weight: bold;
  background: #fff;
  border: 1px solid #e0e0e0 !important;
}
.pagination ul li > a.pagination_but {
  width: initial;
  padding: 0px 15px;
  text-align: center;
}
.pagination ul li > span {
  border: 1px solid #fa611b !important;
  border-radius: 0 !important;
  padding: 0px;
  color: #333 !important;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: block;
  line-height: 42px;
  border-radius: 3px !important;
}
.pagination ul li .fa {
  font-size: 20px;
  margin: 0px;
  vertical-align: middle;
  line-height: 42px;
  display: inline-block;
}
.pagination ul li:hover .fa-angle-left,
.pagination ul li:hover .fa-angle-right {
  color: #fff;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background: #fa611b;
  color: #fff !important;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  background: #fa611b;
  color: #fff !important;
}
.pagination > li > a,
.pagination > li > span {
  border: none !important;
}
.pagination > li {
  display: inline-block;
  margin: 0 3px;
  vertical-align: middle;
}

.Results_Machinery {
  padding-top: 10px;
  border-top: #eee solid 1px;
  margin-top: 40px;
  font-size: 12px;
}
.Results_Machinery_txt {
  font-weight: bold;
}
.Results_Machinery_txt b {
  padding-right: 20px;
}
.Results_Machinery_txt .layui-rate li i.layui-icon {
  font-weight: normal;
  font-size: 14px;
  margin-right: 2px;
}

.column_nav_icon {
  display: none;
}

.Insideb_nav {
  background: #f4f6f9;
  padding: 15px 0px;
  font-size: 12px;
}
.Insideb_nav a {
  color: #999;
}
.Insideb_nav i {
  font-size: 12px;
  padding: 0px 3px;
  color: #999;
}
.Insideb_nav a:hover {
  color: #000;
}

.product_show_ct {
  position: relative;
  display: flex;
  padding: 40px 0px;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.product_show_left {
  padding-right: 40px;
  max-width: calc((100% - 335px));
  position: sticky;
  top: calc(10px);
  align-self: flex-start;
  flex: 0 0 calc((100% - 335px));
}

.product_show_top {
  overflow: hidden;
  font-size: 12px;
  border-bottom: #eee solid 1px;
  padding-bottom: 30px;
}
.product_show_img {
  float: left;
  width: 50%;
  padding-right: 30px;
  padding-left: 75px;
  position: relative;
}
.skin_type_product .swiper-slide img {
  width: 100%;
  border-radius: 20px;
}
.product-show-buttom {
  position: absolute;
  width: 64px;
  left: 0px;
  top: 0px;
  height: 100%;
  padding: 35px 0px;
  overflow: hidden;
}
.product-show-buttom .swiper-slide {
  cursor: pointer;
}
.product-show-buttom .skin_type_thumbs {
  height: 100%;
}
.product-show-buttom .swiper-wrapper {
  height: 100% !important;
}
.product-show-buttom .swiper-slide img {
  width: 100%;
  border-radius: 5px;
}
.product-show-buttom .swiper-wrapper .swiper-slide-thumb-active img {
  border: #fa611b solid 2px;
}
.product-show-buttom .swiper-button-white {
  position: absolute;
  height: 20px;
  background: #fff;
  border-radius: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  top: 0px;
  width: 62px;
  text-align: center;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0);
}
.product-show-buttom .swiper-button-white i {
  line-height: 20px;
}
.product-show-buttom .swiper-button-next {
  bottom: 0px;
  top: auto;
}

.product_show_title {
  float: left;
  width: 50%;
}
.product_show_title h1.title {
  font-size: 16px;
}
.product_price {
  padding: 15px 0px 10px;
  color: #fa611b;
}
.product_Minimum span {
  color: #999;
}
.product_floor {
  margin: 10px 0px;
  border-bottom: #eee 1px solid;
  padding-bottom: 5px;
}
.product_floor_txt {
  height: 84px;
  overflow: hidden;
  transition: all 0.3s;
}
.product_floor_height {
  display: block;
}
.product_floor_more {
  display: none;
  cursor: pointer;
  padding-top: 2px;
  text-align: center;
}
.product_floor_more i {
  font-size: 12px;
}
.product_floor_more.on i.layui-icon-down:before {
  content: '\e619';
}

.option_radio_li {
  display: inline-block;
  margin: 5px 0px;
  margin-right: 10px;
}
.input_option_radio {
  display: none;
}
.input_option_radio + label {
  position: relative;
  text-align: center;
  overflow: hidden;
  font-weight: normal;
  cursor: pointer;
  border: 1px solid #eeeeee;
  border-radius: 5px;
}
.input_option_radio + label img {
  width: 64px;
  border-radius: 5px;
}
.input_option_radio:checked + label {
  background: #fa611b;
  color: #fff;
  border-color: #fa611b;
}
.input_option_radio:disabled + label {
  cursor: no-drop;
  background: #000;
  opacity: 0.5;
  color: #999;
  border-color: #f5f5f5;
}
.product_show_but {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 20px;
  padding-top: 20px;
}
.product_show_but_li {
  display: block;
  font-weight: bold;
}
.product_show_but_li a {
  display: block;
  padding: 12px 10px;
  width: 100%;
  max-width: initial;
}
.product_show_but_li a:hover {
  background: #000;
  border-color: #000;
}
.product_show_but_li img {
  height: 20px;
  margin-right: 5px;
}
.product_show_but_li a.Request_class {
  background: #fff;
  border-color: #000;
  color: #000;
}
.product_show_but_li a.Request_class:hover {
  border-color: #fa611b;
  color: #fa611b;
}

.product_show_right {
  float: right;
  width: 230px;
  flex: 0 0 335px;
  position: sticky;
  top: calc(60px);
  align-self: flex-start;
}
.product_show_user {
  padding: 15px;
  font-size: 12px;
  background: #f4f6f9;
  border-radius: 10px;
}
.product_show_user_top {
  display: table;
  width: 100%;
}
.product_show_user_top .Featured_tab_l {
  width: 40px;
}
.product_show_user_top .Featured_tab_r {
  padding-left: 10px;
}
.product_show_user_icon {
  padding: 12px 0px 8px;
}
.product_user_icon_li {
  background: #000;
  color: #fff;
  margin: 3px 0px;
  margin-right: 5px;
  overflow: hidden;
  border-radius: 90px;
  font-weight: bold;
  display: inline-block;
  padding: 6px 12px;
}
.product_user_icon_li img {
  height: 16px;
  margin-right: 5px;
  float: left;
}
.verified_bg {
  background: linear-gradient(to right, #fffcf2, #fff);
  color: #000;
}
.product_show_user_inline {
  display: flex;
  align-items: center;
}
.product_show_user_inline .layui-rate {
  padding: 0px;
}
.product_show_user_inline b {
  font-size: 14px;
  padding-right: 5px;
  padding-left: 8px;
}
.product_show_user_inline .layui-rate li i.layui-icon {
  font-size: 14px;
  margin-right: 2px;
}
.product_show_user .Featured_tab_label {
  padding: 5px 0px;
}
.Audited_label {
  padding-top: 5px;
}
.Audited_label .product_user_icon_li {
  display: block;
}
.Audited_label .product_user_icon_li a {
  border-radius: 3px;
}

.product_show_user_tab {
  padding: 10px 0px;
}
.product_show_user_tab_li {
  display: table;
  width: 100%;
  padding: 3px 0px;
}
.product_show_user_tab_li_l {
  display: table-cell;
  vertical-align: top;
  width: 42%;
  color: #999;
}
.product_show_user_tab_li_r {
  display: table-cell;
  vertical-align: top;
}
.product_show_user_table {
  border-top: #d2d6dd solid 1px;
  padding-top: 10px;
}

.product_show_user_table_li {
  display: table;
  width: 100%;
  padding: 5px 0px;
  font-weight: bold;
}
.product_show_user_table_li_l {
  display: table-cell;
  vertical-align: top;
  width: 15px;
}
.product_show_user_table_li_r {
  display: table-cell;
  vertical-align: middle;
  padding-left: 5px;
}
.tct {
  display: block;
  position: relative;
  padding-right: 10px;
}
.tct i {
  position: absolute;
  right: 0px;
  top: 2px;
  font-size: 12px;
  font-weight: normal;
}
.new_li {
  padding: 3px 0px;
  font-weight: normal;
}
.new_li i {
  color: #1dbb54;
  margin-right: 1px;
  font-size: 12px;
}

.product_show_right_pr {
  padding: 15px;
  border: #eee solid 1px;
  font-size: 12px;
  display: none;
  border-radius: 10px;
  margin-top: 20px;
  background: #fff;
}
.product_show_right_pr.on {
  display: block;
}
.product_right_ct {
  display: table;
  width: 100%;
  border-bottom: #eee solid 1px;
  padding-bottom: 15px;
}
.product_right_ct_l {
  display: table-cell;
  vertical-align: top;
  width: 56px;
}
.product_right_ct_l img {
  border-radius: 6px;
  width: 100%;
}
.product_right_ct_r {
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
  font-weight: bold;
}
.product_right_ct_price {
  display: block;
  overflow: hidden;
  padding: 10px 0px 0px;
}
.product_right_ct_price .title {
  display: inline-block;
  float: left;
  color: #fa611b;
  font-size: 16px;
}
.price_Minimum {
  float: right;
  padding-top: 3px;
}
.price_Minimum span {
  color: #999;
}
.product_show_right_pr .product_show_but {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 10px;
  padding-top: 10px;
}
.product_show_right_pr .product_show_but a {
  font-size: 12px;
  padding: 10px;
}
.product_show_right_pr .product_show_but img {
  height: 15px;
}

.activity_width {
  position: relative;
  padding-top: 30px;
}
.activity_nav {
  display: block;
  position: relative;
  top: 0px;
  width: 100%;
  height: initial;
  z-index: 9;
}
.activity_nav.active {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.MothersDay_nav {
  display: block;
  overflow: hidden;
}
.MothersDay_nav_table {
  display: block;
}
.MothersDay_nav_table li {
  float: left;
  margin-right: 10px;
  font-weight: bold;
  padding: 0px;
  cursor: pointer;
}
.MothersDay_nav_table li span {
  display: block;
  font-size: 12px;
  line-height: 20px;
  padding: 5px 15px;
  background: #fff;
  border-radius: 90px;
}
.MothersDay_nav_table li.active span {
  font-size: 12px;
  background: #fa611b;
  color: #fff;
}

.MothersDay_main {
  padding-top: 10px;
}
.louti {
  font-size: 12px;
  border-bottom: #eee solid 1px;
  padding-bottom: 30px;
}
.louti_title {
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0px;
}
.louti_table {
  border: #eee solid 1px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 0px;
}
.louti_table_li {
  display: table;
  width: 100%;
  border-bottom: #eee solid 1px;
}
.louti_table_li_title {
  background: #f4f6f9;
  display: table-cell;
  border-right: #eee solid 1px;
  vertical-align: middle;
  width: 35%;
}
.louti_table_li_txt {
  display: table-cell;
  vertical-align: middle;
}
.td_padding {
  padding: 15px;
}
.louti_table_li:nth-child(2n) .louti_table_li_title {
  border-left: #eee solid 1px;
}
.louti_table_li:nth-last-child(1) {
  border-bottom: none;
}
.louti ul {
  padding-left: 15px;
}
.louti ul li {
  list-style: disc;
  padding: 5px 0px;
}

.product_Reviews {
  display: table;
  width: 100%;
  padding-top: 10px;
}
.product_Reviews_l {
  display: table-cell;
  vertical-align: top;
  padding-right: 30px;
}
.product_Reviews_li {
  padding-bottom: 30px;
  font-size: 12px;
}
.product_Reviews_top {
  display: table;
  width: 100%;
}
.product_Reviews_top_l {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  font-weight: bold;
}
.product_Reviews_top_l img {
  height: 48px;
  border-radius: 100%;
  margin-right: 5px;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.product_Reviews_top_r {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.product_Reviews_r {
  display: table-cell;
  min-width: 200px;
  width: 30%;
  vertical-align: top;
  text-align: right;
}
.layui-rate {
  padding: 0px;
}
.layui-rate li i.layui-icon {
  font-size: 14px;
  margin: 0px;
  margin-left: 2px;
}
.louti .layui-rate li {
  padding: 0px;
}
.louti .layui-inline ul {
  padding-left: 5px;
}
.product_Reviews_link {
  padding-left: 57px;
  padding-top: 5px;
}
.product_Reviews_a {
  color: #0066ff;
}
.product_Reviews_link_txt {
  padding: 10px 0px;
  display: block;
}
.product_Reviews_link .Featured_tab_img {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 5px;
  grid-gap: 10px;
}
.product_Reviews_more {
  text-align: center;
}
.product_Reviews_more .but_class_two {
  padding: 8px 20px;
  width: 35%;
  min-width: 200px;
  margin: 0px auto;
  max-width: initial;
  font-weight: bold;
}

.product_Reviews_box {
  border-radius: 10px;
  background: #fff;
  border: #eee solid 1px;
}
.product_Reviews_box_title {
  text-align: left;
  padding: 15px;
  border-bottom: #eee 1px solid;
  margin-bottom: 10px;
}
.product_Reviews_box_title .layui-rate li i.layui-icon {
  font-size: 20px;
}
.product_Reviews_box_title b {
  font-size: 18px;
  float: right;
}
.louti .product_Reviews_box_title .layui-inline ul {
  padding-left: 0px;
}

.product_Reviews_box_li {
  display: table;
  width: 100%;
  padding: 4px 15px;
}
.stars_l {
  display: table-cell;
  width: 45px;
  text-align: left;
  vertical-align: middle;
}
.stars_c {
  display: table-cell;
  vertical-align: middle;
}
.stars_c span {
  width: 100%;
  height: 10px;
  position: relative;
  display: block;
  background: #eee;
  border-radius: 90px;
  overflow: hidden;
}
.stars_c span b {
  position: absolute;
  top: 0px;
  height: 100%;
  background: #ffc226;
  display: block;
  border-radius: 90px;
}
.stars_r {
  display: table-cell;
  text-align: right;
  width: 30px;
  vertical-align: middle;
}
.product_Reviews_box .Featured_tab_label {
  padding: 10px 13px 10px;
  text-align: left;
}

.louti:nth-last-child(1) {
  border: none;
}

.Related_products_ct {
  padding-bottom: 10px;
}
.Related_products {
  padding: 20px 0px;
  border-top: #eee solid 1px;
  margin-bottom: 20px;
}
.Related_products_title {
  font-weight: bold;
  font-size: 16px;
}
.activity_width.on .activity_nav {
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 10px;
}
.activity_width.on .MothersDay_nav_table li {
  margin: 0px 5px;
  float: none;
  display: inline-block;
}

.mc_right {
  display: none;
}

.merchant_top {
  background: #f4f6f9;
  padding: 20px 0px;
}
.merchant_top_ct {
  display: table;
  width: 100%;
}
.merchant_top_left {
  display: table-cell;
  width: 40%;
  vertical-align: middle;
}
.merchant_top_user {
  display: table;
  width: 100%;
}
.merchant_top_user_l {
  display: table-cell;
  vertical-align: middle;
  width: 80px;
}
.merchant_top_user_l img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.merchant_top_user_r {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
}
.merchant_top_user_r b {
  font-size: 18px;
  display: block;
}
.merchant_top_user_r .product_show_user_icon {
  padding-bottom: 0px;
  font-size: 12px;
  padding-top: 5px;
}
.merchant_top_right {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
.merchant_top_right .top_search {
  width: 60%;
  display: inline-block;
}
.merchant_top_right .product_search .input_class {
  border-color: #000;
}
.merchant_top_right .but_class {
  background: #000;
  border-color: #000;
}
.merchant_top_right .but_class_two {
  font-weight: bold;
  margin-left: 10px;
  line-height: 25px;
}

.merchant_banner_ct {
  display: table;
  width: 100%;
  color: #fff;
}
.merchant_banner_ct_l {
  display: table-cell;
  vertical-align: middle;
  width: 30%;
  padding: 20px 0px;
  font-size: 12px;
}
.merchant_banner_ct_l .title {
  font-size: 36px;
}
.merchant_banner_ct_l h2 {
  display: block;
  font-size: 14px;
  padding: 5px 0px;
  font-weight: bold;
}
.merchant_banner_ct_l b {
  color: #fa611b;
}
.merchant_banner_ct_r {
  display: table-cell;
  vertical-align: middle;
}
.merchant_banner_ct_r img {
  width: 100%;
}

.merchant_product {
  display: block;
  padding-top: 10px;
}
.merchant_product_li {
  border-bottom: #eee solid 1px;
  padding-bottom: 30px;
  padding-top: 20px;
}
.merchant_product_li .layui-tab-title {
  height: initial;
  text-align: left;
  margin-top: 20px;
}
.merchant_product_li .layui-tab-title li {
  margin-right: 10px;
  font-size: 12px;
}
.merchant_product_li .layui-tab-title li:nth-last-child(1) {
  margin-right: 0px;
}
.merchant_product_li .layui-tab-brief > .layui-tab-title .layui-this {
  font-weight: normal;
  background: #fa611b;
  color: #fff;
  border-radius: 90px;
}
.merchant_product_li .layui-tab-title li {
  height: initial;
  line-height: 32px;
}
.merchant_product_li .product_Reviews_more {
  margin: 0px auto;
  margin-top: 30px;
}
.merchant_product_li .product_Reviews_more .but_class_two {
  max-width: 320px;
}

.Company_Profile {
  display: table;
  width: 100%;
  margin-top: 20px;
  font-size: 12px;
}
.Company_Profile_left {
  display: table-cell;
  width: 50%;
  vertical-align: top;
}
.Company_Profile_left img {
  border-radius: 10px;
}
.Company_Profile_right {
  display: table-cell;
  padding-left: 40px;
  vertical-align: middle;
}
.Company_Profile_li {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: #eee solid 1px;
}
.Company_Profile_li:nth-last-child(1) {
  padding: 0px;
  margin: 0px;
  border: none;
}
.Company_Profile_title {
  font-size: 20px;
  display: block;
  font-weight: bold;
  padding-bottom: 5px;
}
.Company_Profile_ct {
  display: table;
  width: 100%;
}
.Company_Profile_ct_l {
  display: table-cell;
  width: 95px;
  font-weight: bold;
  vertical-align: top;
}
.Company_Profile_ct_r {
  display: table-cell;
  vertical-align: top;
  padding-left: 20px;
}
.Company_Profile_ct_r .Featured_tab_label {
  padding: 0px;
  padding-top: 8px;
}
.Qualification_li {
  display: inline-block;
  width: 50px;
  margin-right: 1px;
}
.Qualification_li:nth-last-child(1) {
  margin: 0px;
}
.Qualification img {
  width: 100%;
}

.Business_li {
  display: block;
  font-size: 12px;
}
.Business_li_img {
  overflow: hidden;
  border-radius: 10px;
}
.Business_li_img img {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.prdoct_li_img img {
  width: 100%;
  transition: all 0.5s;
}
.Business_li:hover .prdoct_li_img img {
  transform: scale(1.05);
  -o-transform: scale(1.05);
}
.Business_li_txt {
  padding-top: 15px;
}

.merchant_message {
  background: #f4f6f9;
  padding: 20px;
  font-size: 12px;
  border-radius: 10px;
  margin-top: 20px;
}
.merchant_message_top {
  display: table;
  width: 100%;
}
.merchant_message_icon {
  display: table-cell;
  vertical-align: middle;
  width: 55px;
}
.merchant_message_icon img {
  width: 100%;
}
.merchant_message_txt {
  display: table-cell;
  vertical-align: middle;
  color: #999;
  padding-left: 15px;
}
.merchant_message_txt b {
  font-weight: bold;
  color: #000;
  display: block;
  padding-bottom: 3px;
}
.merchant_message_ct {
  display: table;
  width: 100%;
  padding-top: 20px;
}
.merchant_message_left {
  padding-right: 20px;
  display: table-cell;
  vertical-align: top;
}
.merchant_message_right {
  width: 30%;
  min-width: 300px;
  display: table-cell;
  vertical-align: top;
}
.reg_color {
  color: #fa611b;
}
.merchant_message_title {
  display: block;
  padding-bottom: 5px;
}
.merchant_message_title b {
  display: inline-block;
}
.merchant_message_ct .input_class {
  width: 100%;
  border-color: #fff;
  padding: 15px 20px;
}
.merchant_message_ct .input_class:focus {
  border-color: #fa611b;
}
.merchant_message_but {
  padding-top: 20px;
}
.merchant_message_but .but_class {
  width: 100%;
  padding: 12px 10px;
  max-width: initial;
}
.textarea_height {
  height: 114px;
}

@media (max-width: 1200px) {
  .product_show_right {
    display: none;
  }
  .mc_right {
    display: block;
  }
  .product_show_ct {
    display: block;
  }
  .product_show_left {
    position: initial;
    display: block;
    max-width: initial;
    padding: 0px;
  }
  .product_show_top {
    border: none;
  }
}
@media (max-width: 1100px) {
  .banner .title {
    font-size: 26px;
  }
  .banner .swiper-slide {
    overflow: hidden;
  }
  .banner .swiper-slide > img.pc_img {
    width: 130%;
    margin-left: -15%;
    max-width: initial;
  }
  .home_pr_class a {
    display: block;
  }
  .home_pr_class_li_l {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 65px;
    padding: 20px 10px 0px;
  }
  .home_pr_class a {
    height: 100%;
    position: relative;
  }
  .home_pr_class_li_r {
    padding: 0px 15%;
  }
  .home_Belt_txt {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 20px;
  }
  .home_product_tab {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .foot_nav_c {
    width: 58%;
    padding-left: 5%;
  }
  .foot_nav_logo img {
    height: 30px;
  }
  .foot_nav_li:nth-last-child(1) {
    max-width: 180px;
  }
  .foot_nav_l {
    width: 20%;
  }
  .foot_nav_li {
    padding-right: 10%;
  }
  .column_product_tab {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 10px;
  }
}
@media (max-width: 800px) {
  .container {
    padding: 0px 15px;
  }
  .top {
    position: relative;
    padding: 10px 0px;
  }
  .top_search {
    position: absolute;
    width: 100%;
    display: none;
    top: 100%;
    left: 0px;
    padding: 10px 15px;
    z-index: 2;
    background: #fff;
    border-top: #f9f9f9 solid 1px;
  }
  .home_pr_class {
    grid-gap: 15px;
  }
  .top_nav_ct {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all 0.5s;
    z-index: 999;
    left: -100%;
    border: none;
    top: 0px;
  }
  .top_nav_ct.on {
    left: 0px;
  }
  .top_nav {
    display: block;
    width: 100%;
  }
  .top_nav li {
    display: block;
    float: none;
    border-bottom: #eeeeee solid 1px;
  }
  .merchant_top_bottom {
    position: fixed;
    bottom: 10px;
    display: block;
    z-index: 99;
    padding: 10px;
    left: 10px;
    right: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .merchant_top_bottom .top_but {
    float: left;
  }
  .merchant_top_bottom .top_nav_icon {
    float: left;
    margin-left: 5px;
  }
  .merchant_top_bottom .but_class_two {
    background: #fa611b;
    font-size: 14px;
    padding: 5px 20px;
    border-color: #fa611b;
    color: #fff;
  }
  .merchant_top_right .top_search {
    position: fixed;
    display: none;
    left: 0px;
    width: 100%;
    top: 0px;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }
  .merchant_top_right .top_search::after {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 65px;
    width: 100%;
    content: '';
    background: #fff;
  }
  .top_nav_logo b {
    font-size: 20px;
  }
  .merchant_top_ct {
    display: block;
  }
  .merchant_top_left {
    display: block;
    width: 100%;
  }
  .merchant_top_user_l {
    width: 65px;
  }
  .merchant_top_user_r b {
    font-size: 16px;
  }
  .main {
    bottom: 80px;
  }
  .Company_Profile {
    display: block;
  }
  .Company_Profile_left {
    display: block;
    width: 100%;
  }
  .Company_Profile_right {
    display: block;
    width: 100%;
    padding: 0px;
    padding-top: 20px;
  }
  .Company_Profile_ct_r {
    padding-left: 10px;
  }
  .merchant_message_ct {
    display: block;
  }
  .merchant_message_left {
    width: 100%;
    display: block;
    padding-right: 0px;
  }
  .merchant_message_right {
    width: 100%;
    display: block;
    padding-top: 15px;
  }
  .merchant_message_but {
    padding-top: 15px;
  }
  .merchant_product_li .swiper_width {
    padding-top: 5px;
  }
  .Business_li {
    margin-top: 15px;
  }
  .Business_li_txt {
    padding-bottom: 10px;
    padding-top: 8px;
  }
  .merchant_message {
    padding: 15px;
  }
  .merchant_banner_ct {
    display: block;
  }
  .merchant_banner_ct_l {
    display: block;
    width: 100%;
    padding: 40px 30px;
  }
  .merchant_banner_ct_r {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
  .product_search {
    position: relative;
    z-index: 2;
  }
  .top_nav li {
    padding: 0px;
  }
  .top_nav li a {
    padding: 15px 0px;
  }
  .nav_a_pc {
    display: none !important;
  }
  .nav_a_mobi {
    display: block !important;
  }
  .arrowDG_menu {
    position: initial;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
  }
  .top_nav_logo {
    display: block;
    padding: 10px 0px;
    border-bottom: #000 solid 2px;
    position: relative;
  }
  .top_nav_logo img {
    height: 35px;
  }
  .top_nav_close {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -20px;
  }
  .top_nav_close i {
    font-size: 28px;
    font-weight: bold;
  }
  .top_nav_select {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 0px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    border-top: #eeeeee solid 1px;
  }
  .top_nav_select .top_nav_select_li {
    padding: 5px;
    text-align: center;
    border-right: #eeeeee solid 1px;
  }
  .top_nav_select .top_nav_select_li:nth-last-child(1) {
    border: none;
  }
  .top_language.JG_language {
    margin: 0px auto;
  }
  .top_language .layui-form-selectup dl {
    top: auto;
  }
  .top_language {
    float: none;
  }
  .top_nav_txt {
    position: absolute;
    bottom: 55px;
    padding: 0px 15px;
    width: 100%;
    left: 0px;
  }
  .top_nav_txt a {
    display: block;
    padding: 10px;
    border: #000 solid 1px;
    text-align: center;
    border-radius: 10px;
    float: none;
    margin: 10px 0px;
  }
  .top_nav_txt a:nth-last-child(1) {
    border-color: #fa611b;
    color: #fa611b;
  }
  .top_nav {
    position: absolute;
    overflow-y: auto;
    top: 60px;
    padding: 0px 15px;
    bottom: 170px;
    width: 100%;
    left: 0px;
  }
  .top_right {
    display: none;
  }
  .top_but {
    float: right;
    display: block;
    overflow: hidden;
    padding-top: 12px;
  }
  .top_but_user {
    width: 20px;
    height: 20px;
    float: left;
    background: url(../images/user_icon.png) center center no-repeat;
    background-size: auto 100%;
  }
  .top_nav_icon {
    display: inline-block;
  }
  .top_nav_icon span {
    width: 20px;
    height: 2px;
    background: #000;
    display: block;
    margin: 2px 0px;
    border-radius: 10px;
  }
  .top_nav_icon span:nth-child(2) {
    margin: 5px 0px;
  }
  .top_but_Search {
    width: 20px;
    height: 20px;
    float: left;
    margin: 0px 25px;
    background: url(../images/Search_icon.png) center center no-repeat;
    background-size: auto 100%;
  }
  .banner_txt_ct {
    vertical-align: top;
    padding-top: 15%;
    text-align: center;
  }
  .banner .title {
    font-size: 24px;
  }
  .banner_txt_2 .banner_txt_ct {
    vertical-align: middle;
    padding: 0px;
  }
  .banner_txt_3 .banner_txt_ct {
    vertical-align: middle;
    padding: 0px;
  }
  .Featured_tab {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home_product_tab {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 20px;
  }
  .column_product_tab {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px;
  }
}
@media (max-width: 700px) {
  .Insideb_banner {
    display: block;
  }
  .Insideb_banner .container {
    padding: 0px;
  }
  .Insideb_banner_ct {
    display: block;
  }
  .Insideb_banner .Insideb_banner_l {
    padding: 20px 15px;
    font-size: 20px;
  }
  .Insideb_banner_r {
    background: #333;
    padding: 15px;
    font-size: 12px;
  }
  .column_nav_icon {
    display: block;
    margin-top: 20px;
    position: relative;
    border: #000 solid 1px;
    border-radius: 10px;
    padding: 10px 15px;
    padding-right: 10px;
    font-weight: bold;
  }
  .column_nav_icon img {
    height: 16px;
    float: left;
    margin-top: 2px;
    margin-right: 10px;
  }
  .column_nav_icon i {
    float: right;
    font-size: 14px;
  }
  .prdoct_li_but a {
    margin-bottom: 8px;
  }
  .product_list_width {
    display: block;
    position: initial;
  }
  .column_left_ct {
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
  }
  #column_left {
    width: 100%;
    position: fixed;
    height: 100%;
    border: none;
    z-index: 99999;
    opacity: 1;
    top: 100%;
    left: 0px;
    padding: 10px;
    padding-bottom: 0px;
    transition: all 0.5s;
  }
  #column_left::after {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    content: '';
    left: 0px;
    top: 0px;
  }
  #column_center {
    position: initial;
    width: 100%;
    max-width: initial;
    padding: 0px;
  }
  .column_close {
    display: block;
  }
  .column_left_bg {
    padding: 15px;
    background: #fff;
    z-index: 2;
    border-radius: 10px 10px 0px 0px;
    position: absolute;
    bottom: 65px;
    top: 10px;
    right: 10px;
    left: 10px;
    overflow-y: scroll;
  }
  .column_left_but {
    display: block;
  }
  .prdoct_li_but a {
    font-size: 12px;
  }
  #column_left.on {
    top: 0px;
  }
  #column_left.on::after {
    display: block;
  }
  .column_product_tab {
    grid-gap: 15px;
  }
  .column_product_tab .prdoct_li {
    padding: 0px;
  }
  .column_product_tab .prdoct_li:hover {
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0);
  }
  .prdoct_li_but {
    position: initial;
    display: block;
    padding: 0px;
    padding-top: 20px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0);
  }
  .column_left_but {
    position: absolute;
    z-index: 2;
    left: 10px;
    background: #fff;
    bottom: 0px;
    right: 10px;
    padding: 15px;
  }
  .column_border {
    padding-bottom: 0px;
  }
  .column_left_but .Apply_class {
    width: 62%;
    max-width: initial;
  }
  .product_list_width {
    padding: 20px 0px 30px;
  }
  .column_max_but {
    display: none;
  }
  .column_max_input {
    width: 48%;
  }
  .pagination {
    text-align: center;
    display: block;
    padding-top: 25px;
  }
  .pagination ul li > a {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .pagination > li {
    margin: 0px 2px;
  }
  .pagination ul li > span {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .pagination ul li .fa {
    font-size: 16px;
    line-height: 36px;
  }
  .Results_Machinery {
    margin-top: 30px;
  }
  .product_show_ct {
    padding: 20px 0px;
  }
  .product_show_img {
    width: 100%;
    float: none;
    padding: 0px;
  }
  .product_show_title {
    display: block;
    float: none;
    width: 100%;
  }
  .product-show-buttom {
    position: initial;
    width: 100%;
    margin-top: 15px;
    position: relative;
    padding: 0px 30px;
  }
  .product-show-buttom .swiper-button-white {
    width: 20px;
    height: 30px;
    top: 50%;
    margin-top: -10px;
  }
  .product-show-buttom .swiper-button-white i {
    position: relative;
  }
  .product-show-buttom .swiper-button-next {
    right: 0px;
    left: initial;
  }
  .product-show-buttom .layui-icon-up:before {
    content: '\e603';
  }
  .product-show-buttom .layui-icon-down:before {
    content: '\e602';
  }
  .product_show_title {
    padding-top: 30px;
  }
  .product_show_but {
    grid-gap: 10px;
  }
  .product_show_but_li a {
    padding: 10px 5px;
  }
  .product_show_but_li img {
    height: 16px;
  }
  .louti_table {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .td_padding {
    padding: 10px;
  }
  .product_Reviews {
    overflow: hidden;
    display: block;
    flex-wrap: wrap;
    display: flex;
    padding: 0px;
  }
  .product_Reviews_l {
    display: block;
    width: 100%;
    padding-top: 20px;
  }
  .louti {
    padding-bottom: 20px;
  }
  .product_Reviews_r {
    display: block;
    width: 100%;
    order: -1;
  }
}
@media (max-width: 500px) {
  .pc_img {
    display: none;
  }
  .mc_img {
    display: block;
  }
  .banner_txt_2 .banner_txt_ct {
    vertical-align: middle;
    padding: 0px;
    text-align: left;
  }
  .banner_bu_tab {
    display: block;
  }
  .banner_bu_tab_l {
    width: 100%;
    font-size: 20px;
    display: block;
  }
  .banner_bu_tab_r {
    display: block;
    width: 100%;
  }
  .banner_bu {
    padding: 15px 0px;
  }
  .banner_tab {
    display: block;
  }
  .banner_tab_li {
    display: block;
    text-align: left;
    padding: 3px 0px;
  }
  .banner {
    margin-bottom: 20px;
  }
  .home_li {
    padding-bottom: 20px;
  }
  .home_pr_class a {
    border-radius: 10px;
  }
  .home_pr_class {
    overflow: hidden;
    display: block;
    margin: 0px -5px;
  }
  .home_pr_class_li {
    width: 50%;
    float: left;
    padding: 5px;
  }
  .home_pr_class_li:nth-child(n + 3) {
    width: 33.33333%;
  }
  .home_pr_class_li_l {
    padding-top: 15px;
    height: 70px;
  }
  .home_pr_class_li:nth-child(-n + 2) .home_pr_class a {
    display: table;
  }
  .home_pr_class_li:nth-child(-n + 2) .home_pr_class_li_l {
    display: table-cell;
    width: 45%;
  }
  .home_pr_class_li:nth-child(-n + 2) .home_pr_class_li_r {
    padding: 0px 10px;
  }
  .home_pr_class_li_l {
    font-size: 14px;
  }
  .Popular_Products {
    padding: 20px;
    border-radius: 10px;
  }
  .swiper_width .banner_swiper_Pagination {
    display: none;
  }
  .swiper_width .swiper-wrapper {
    display: block;
    transform: initial !important;
  }
  .top_but_Search {
    margin: 0px 20px;
  }
  .top_but {
    padding-top: 9px;
  }
  .top_logo img {
    height: 32px;
  }
  .Popular_Products .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 15px;
  }
  .advertisement {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 20px;
  }
  .advertisement_li {
    border-radius: 10px;
  }
  .home_Belt_txt {
    padding: 20px 0px 10px;
  }
  .home_Belt_txt_l {
    width: 35px;
    vertical-align: top;
    padding-top: 5px;
  }
  .home_Belt_txt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px;
  }
  .home_Belt_txt_r b {
    font-size: 22px;
  }
  .home_Belt_txt_r {
    padding-left: 10px;
    font-size: 12px;
  }
  .Belt_swiper {
    padding-top: 0px;
  }
  .home_Belt {
    background: url(../images/Rectangle_m_bg.jpg) center top no-repeat #313131;
    background-size: 100% auto;
    border-radius: 10px;
    padding: 20px;
  }
  .Belt_pr_ct {
    padding: 15px;
    margin-top: 20px;
  }
  .Belt_pr_box {
    grid-gap: 15px;
    padding-top: 10px;
  }
  .home_Featured {
    padding: 20px;
  }
  .Featured_tab {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 15px;
  }
  .foot_select {
    padding: 20px 0px;
  }
  .home_Featured {
    padding: 10px 15px 15px;
  }
  .home_product_tab {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 15px;
    padding-top: 15px;
  }
  .foot_select_tab {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 5px;
  }
  .foot_select_tab_li {
    display: table;
    padding: 10px 0px;
  }
  .foot_select_tab_icon {
    display: table-cell;
    vertical-align: top;
    width: 60px;
    text-align: center;
  }
  .foot_select_tab_li_txt {
    display: table-cell;
    vertical-align: top;
    text-align: left;
    padding: 0px 20px;
  }
  .foot_select_tab_title {
    padding: 0px;
  }
  .foot_nav_l {
    width: 100%;
    float: none;
  }
  .foot_nav_c {
    overflow: hidden;
    width: 100%;
    float: none;
    padding: 20px 0px;
  }
  .foot_nav_li {
    width: 50%;
    padding: 10px 0px;
    float: left;
  }
  .foot_nav {
    padding: 30px 10px;
  }
  .foot_nav_li_txt {
    padding: 5px 0px;
  }
  .foot_nav_li:nth-last-child(1) {
    width: 100%;
    max-width: initial;
  }
  .foot_nav_r {
    display: block;
    width: 100%;
    float: none;
  }
  .foot_bottom {
    text-align: center;
  }
  .foot_bottom_l {
    display: block;
    padding-bottom: 10px;
    float: none;
  }
  .foot_bottom_l a {
    margin: 0px 8px;
  }
  .foot_bottom_r {
    display: block;
    float: none;
    width: 100%;
  }
}
