@charset "utf-8";
/**
 * @Description: 网站主要样式
 * @Author: 
 * @Date: 2024-9-24 10:23:09
 * @LastEditors: 
 * @LastEditTime: 2024-9-24 10:23:09
 */
@font-face {
  font-family: "";
  src: url("");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ==================== 重置样式 Start ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微软雅黑,SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
a {
  text-decoration: none;
  outline: none;
}
html.no-scroll {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 4px;
  height: 2px;
  background: #ececec;
  border-radius: 100px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: #333;
  cursor: pointer;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
ul,
li {
  list-style: none;
}
input,
button {
  outline: 0 none;
  border: none;
  background-color: transparent;
}
button {
  cursor: pointer;
}
/* 图片统一动画 */
.mxw-image {
  overflow: hidden;
}
.mxw-image img {
  transition: transform 0.4s;
  width: 100%;
}
.mxw-image:hover img {
  transform: scale(1.1);
}
main,
header,
footer,
.mxw-box,
section {
  font-size: 16px;
}
main {
  position: relative;
  z-index: 10;
}
main.active {
  z-index: 22;
}
section {
  position: relative;
  z-index: 9;
}
/* ==================== 重置样式 End ==================== */
/* ==================== 通用容器大小 Start ==================== */
.mxw-box {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
/* 2025-2-7 修改 */
.edit-mxw-box {
  max-width: 1570px;
}
@media screen and (max-width: 1680px) {
  .mxw-box {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .mxw-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ==================== 通用容器大小 End ==================== */
/* ==================== 通用断点隐藏 Start ==================== */
@media screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .ipad-hide {
    display: none !important;
  }
}
@media screen and (min-width: 0) and (max-width: 500px) {
  .mobile-hide {
    display: none !important;
  }
}
/* ==================== 通用断点隐藏 End ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1600px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 49%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 2%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18.4%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15.5%;
    margin-right: 1.4%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 1.4%;
  }
}
@media screen and (max-width: 500px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 通用文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 通用文本行数限制 end ==================== */
/* ==================== 图片放大插件 Start ==================== */
.viewer-list > li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewer-list > li img {
  width: 100% !important;
  height: auto !important;
  transform: translate(0, 0) !important;
}
/* ==================== 图片放大插件 End ==================== */
/* ==================== ElementUI Start ==================== */
.el-table-filter__bottom {
  font-size: 12px;
}
/* ==================== ElementUI End ==================== */
/* ==================== 头部导航样式 Start ==================== */
@media screen and (min-width: 769px) {
  header {
    position: relative;
    z-index: 21;
  }
  header.fixed {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: -5.875vw;
  }
  header.fixed .header {
    background-color: transparent;
  }
  header.fixed .header .logo img:first-child {
    display: none;
  }
  header.fixed .header .logo img:first-child ~ img {
    display: block;
  }
  header.fixed .header .navbar > ul > li > a {
    color: #fff;
  }
  header.fixed .header .tools .tool-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  header.fixed .header .tools .tool-btn img {
    -webkit-filter: inherit;
    filter: inherit;
  }
  header.white .header-top {
    background-color: #f8f9fc;
  }
  header.white .header {
    background-color: #fff;
  }
  header.white .header .logo img:first-child {
    display: block;
  }
  header.white .header .logo img:first-child ~ img {
    display: none;
  }
  header.white .header .navbar > ul > li a {
    color: #333;
  }
  header.white .header .tools .tool-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header.white .header .tools .tool-btn img {
    -webkit-filter: brightness(1) invert(1);
    filter: brightness(1) invert(1);
  }
  .header-top {
    text-align: center;
    color: #46b035;
    padding-top: 0.75vw;
    padding-bottom: 0.75vw;
    background-color: #101010;
    line-height: 1.1;
    font-size: 0.875vw;
    transition: background-color 0.3s;
  }
  .header-top a {
    color: #46b035;
  }
  .header-top.white {
    background-color: #f8f9fc;
  }
  .header {
    background-color: #fff;
    transition: background-color 0.3s;
  }
  .header > .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header .logo {
    display: block;
    width: 10.75vw;
    flex-shrink: 0;
  }
  .header .logo img:first-child ~ img {
    display: none;
  }
  .header .logo img {
    width: 100%;
  }
  .header .navbar > ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .navbar > ul > li {
    margin-left: 2.188vw;
    margin-right: 2.188vw;
  }
  .header .navbar > ul > li:hover .sub-nav {
    opacity: 1;
    visibility: visible;
  }
  .header .navbar > ul > li:hover > a {
    color: #4cb848 !important;
  }
  .header .navbar > ul > li:hover > a:after {
    width: 100%;
  }
  .header .navbar > ul > li.active > a:after {
    width: 100%;
  }
  .header .navbar > ul > li > a {
    display: block;
    font-size: 1vw;
    line-height: 1.2;
    padding-top: 2.313vw;
    padding-bottom: 2.313vw;
    color: #333;
    position: relative;
    transition: color 0.4s;
  }
  .header .navbar > ul > li > a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #4cb848;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.4s, width 0.4s;
  }
  .header .tools {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .header .tools .tool-btn {
    width: 2.5vw;
    height: 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875vw;
    border-radius: 100%;
    transition: background-color 0.5s;
    cursor: pointer;
  }
  .header .tools .tool-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .header .tools .tool-btn img {
    display: block;
    width: 50%;
    -webkit-filter: brightness(1) invert(1);
    filter: brightness(1) invert(1);
  }
  .header .tools .login {
    position: relative;
    color: #000000;
    margin-right: 1.5vw;
    font-size: 1.5vw;
  }
  .header .tools .login:hover ul {
    opacity: 1;
    visibility: visible;
  }
  .header .tools .login .icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .tools .login ul {
    position: absolute;
    top: calc(100% + 0.813vw);
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    border-radius: 0.5vw;
    background: #f6f6f6;
    min-width: 6vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: none;
  }
  .header .tools .login ul li a {
    display: block;
    padding: 0.438vw 0.75vw;
    color: #999;
    font-family: "Inter-Regular";
    font-size: 0.75vw;
    line-height: 1.125vw;
    transition: color 0.3s;
  }
  .header .tools .login ul li a:hover {
    color: #4cb848;
  }
  .header .search-form {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #f8f8f8;
    text-align: center;
    padding-top: 0.625vw;
    padding-bottom: 0.625vw;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0.625vw 0.625vw -0.813vw rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .header .search-form.active {
    opacity: 1;
    visibility: visible;
  }
  .header .search-form .form-body {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.625vw;
    padding-bottom: 0.625vw;
    border: 1px solid #eee;
    padding-left: 1.25vw;
    padding-right: 1.25vw;
    border-radius: 6.25vw;
  }
  .header .search-form input {
    width: 37.5vw;
    height: 1.875vw;
    font-size: 0.875vw;
    color: #000;
    text-align: left;
  }
  .header .search-form .icon {
    line-height: 1;
    font-size: 1.25vw;
    margin-right: 0.938vw;
    flex-shrink: 0;
    width: 1.25vw;
  }
  .header .search-form .close {
    width: 1vw;
    font-size: 1.25vw;
    cursor: pointer;
    margin-left: 0.938vw;
    flex-shrink: 0;
    margin-right: 0;
  }
  .header .sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f8f9fc;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header .sub-nav.active {
    visibility: visible;
    opacity: 1;
  }
  .header .sub-nav .sub-box {
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
  }
  .header .sub-nav1 {
    display: none;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
    height: calc(100vh - 5.813vw);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .sub-nav1::-webkit-scrollbar {
    width: 0.25vw;
    height: 0.125vw;
    background: #ececec;
    border-radius: 6.25vw;
  }
  .header .sub-nav1::-webkit-scrollbar-thumb {
    border-radius: 6.25vw;
    background: #333;
    cursor: pointer;
  }
  .header .sub-nav1 > .sub-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .header .sub-nav1 .left {
    flex-shrink: 0;
    width: 18.75vw;
    background-color: #fff;
    border-radius: 0.625vw;
    padding: 1.875vw;
  }
  .header .sub-nav1 .left .more-btn {
    display: block;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1vw;
    padding-bottom: 0.875vw;
    margin-top: 2.5vw;
    color: #000000;
    transition: color 0.4s;
  }
  .header .sub-nav1 .left .more-btn:hover {
    color: #4cb848;
  }
  .header .sub-nav1 .left .list-item.active > a .icon {
    background-image: url(../images/header/img016@100x100.png);
  }
  .header .sub-nav1 .left .list-item.active > .list {
    display: block;
  }
  .header .sub-nav1 .left .list-item > a {
    padding-top: 1.25vw;
    padding-bottom: 1.25vw;
    display: block;
    position: relative;
    padding-right: 0.938vw;
    font-size: 1vw;
    color: #000000;
    font-weight: bold;
  }
  .header .sub-nav1 .left .list-item > a .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    right: 0;
    background: url(../images/header/img015@100x100.png) no-repeat center;
    width: 1vw;
    height: 1vw;
    background-size: 100%;
  }
  .header .sub-nav1 .left .list1 > .list-item > a {
    border-bottom: 1px solid #f0f0f0;
  }
  .header .sub-nav1 .left .list2 {
    display: none;
    padding-left: 0.625vw;
    padding-right: 0.625vw;
  }
  .header .sub-nav1 .left .list2 > .list-item.active > a {
    color: #4cb848;
  }
  .header .sub-nav1 .left .list2 > .list-item > a {
    border-bottom: 1px solid #f0f0f0;
  }
  .header .sub-nav1 .left .list2 > .list-item > a .icon {
    width: 0.75vw;
    height: 0.75vw;
    right: -0.313vw;
  }
  .header .sub-nav1 .left .list3 {
    display: none;
    padding-top: 0.625vw;
    padding-bottom: 0.625vw;
  }
  .header .sub-nav1 .left .list3 > .list-item.active > a {
    background-color: #4cb848;
    color: #fff;
  }
  .header .sub-nav1 .left .list3 > .list-item > a {
    font-size: 0.875vw;
    line-height: 1.1;
    padding: 0.875vw 2.875vw;
    font-weight: 400;
    color: #666666;
    border-radius: 6.25vw;
  }
  .header .sub-nav1 .right {
    min-width: 0;
    flex-grow: 1;
    margin-left: 1.625vw;
  }
  .header .sub-nav1 .right-item {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    display: none;
  }
  .header .sub-nav1 .right-item.active {
    display: flex;
  }
  .header .sub-nav1 .right-item .item {
    width: 23.5%;
    margin-right: 2%;
    background-color: #fff;
    border-radius: 0.625vw;
    overflow: hidden;
  }
  .header .sub-nav1 .right-item .item:nth-child(4n) {
    margin-right: 0;
  }
  .header .sub-nav1 .right-item .item:nth-child(4) ~ .item {
    margin-top: 2%;
  }
  .header .sub-nav1 .right-item .item:hover .info .text1 {
    color: #4cb848;
  }
  .header .sub-nav1 .right-item .info {
    text-align: center;
    padding: 1.875vw;
    padding-top: 0;
  }
  .header .sub-nav1 .right-item .info .text1 {
    font-size: 1vw;
    line-height: 1.1;
    margin-bottom: 1.063vw;
    transition: color 0.4s;
  }
  .header .sub-nav1 .right-item .info .price {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .sub-nav1 .right-item .info .last-price {
    font-size: 0.875vw;
    color: #000000;
    line-height: 1.1;
    margin-right: 1.25vw;
  }
  .header .sub-nav1 .right-item .info .first-price {
    color: #aaaaaa;
    font-size: 0.875vw;
    line-height: 1.1;
    text-decoration: line-through;
  }
  .header .sub-nav1 .right-item .tip {
    text-align: center;
    font-size: 1vw;
    color: #666;
    width: 100%;
  }
  .header .sub-nav2 {
    padding-top: 3.5vw;
    padding-bottom: 3.5vw;
  }
  .header .sub-nav2 > .sub-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header .sub-nav2 .nav-item {
    text-align: center;
    margin-left: 4.688vw;
    margin-right: 4.688vw;
  }
  .header .sub-nav2 .nav-item:hover .text {
    color: #4cb848;
  }
  .header .sub-nav2 .nav-item .icon {
    width: 4.375vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .header .sub-nav2 .nav-item .text {
    margin-top: 1.563vw;
    color: #666666;
    line-height: 1.1;
    font-size: 1vw;
    transition: color 0.4s;
  }
}
@media screen and (min-width: 1600px) {
  header.fixed {
    margin-bottom: -94px;
  }
  .header-top {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }
  .header .logo {
    width: 172px;
  }
  .header .navbar > ul > li {
    margin-left: 35px;
    margin-right: 35px;
  }
  .header .navbar > ul > li > a {
    font-size: 16px;
    padding-top: 37px;
    padding-bottom: 37px;
  }
  .header .tools .tool-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .header .tools .login {
    margin-right: 24px;
    font-size: 24px;
  }
  .header .tools .login ul {
    top: calc(100% + 13px);
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    min-width: 96px;
  }
  .header .tools .login ul li a {
    padding: 7px 12px;
    font-size: 12px;
    line-height: 18px;
  }
  .header .search-form {
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 10px 10px -13px rgba(0, 0, 0, 0.2);
  }
  .header .search-form .form-body {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 100px;
  }
  .header .search-form input {
    width: 600px;
    height: 30px;
    font-size: 14px;
  }
  .header .search-form .icon {
    font-size: 20px;
    margin-right: 15px;
    width: 20px;
  }
  .header .search-form .close {
    width: 16px;
    font-size: 20px;
    margin-left: 15px;
  }
  .header .sub-nav .sub-box {
    max-width: 1600px;
  }
  .header .sub-nav1 {
    padding-top: 40px;
    padding-bottom: 40px;
    height: calc(100vh - 93px);
  }
  .header .sub-nav1::-webkit-scrollbar {
    width: 4px;
    height: 2px;
    border-radius: 100px;
  }
  .header .sub-nav1::-webkit-scrollbar-thumb {
    border-radius: 100px;
  }
  .header .sub-nav1 .left {
    width: 300px;
    border-radius: 10px;
    padding: 30px;
  }
  .header .sub-nav1 .left .more-btn {
    font-size: 16px;
    padding-bottom: 14px;
    margin-top: 40px;
  }
  .header .sub-nav1 .left .list-item > a {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 15px;
    font-size: 16px;
  }
  .header .sub-nav1 .left .list-item > a .icon {
    width: 16px;
    height: 16px;
  }
  .header .sub-nav1 .left .list2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header .sub-nav1 .left .list2 > .list-item > a .icon {
    width: 12px;
    height: 12px;
    right: -5px;
  }
  .header .sub-nav1 .left .list3 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header .sub-nav1 .left .list3 > .list-item > a {
    font-size: 14px;
    padding: 14px 46px;
    border-radius: 100px;
  }
  .header .sub-nav1 .right {
    margin-left: 26px;
  }
  .header .sub-nav1 .right-item .item {
    border-radius: 10px;
  }
  .header .sub-nav1 .right-item .info {
    padding: 30px;
  }
  .header .sub-nav1 .right-item .info .text1 {
    font-size: 16px;
    margin-bottom: 17px;
  }
  .header .sub-nav1 .right-item .info .last-price {
    font-size: 14px;
    margin-right: 20px;
  }
  .header .sub-nav1 .right-item .info .first-price {
    font-size: 14px;
  }
  .header .sub-nav1 .right-item .tip {
    font-size: 16px;
  }
  .header .sub-nav2 {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .header .sub-nav2 .nav-item {
    margin-left: 75px;
    margin-right: 75px;
  }
  .header .sub-nav2 .nav-item .icon {
    width: 70px;
  }
  .header .sub-nav2 .nav-item .text {
    margin-top: 25px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header-top {
    text-align: center;
    color: #46b035;
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #101010;
    line-height: 1.1;
    font-size: 14px;
    min-height: 40px;
    transition: background-color 0.3s;
  }
  header {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 21;
  }
  header .header {
    width: 100%;
    background-color: #fff;
  }
  header .header > .mxw-box {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header .menu {
    width: 20px;
    flex-shrink: 0;
  }
  header .header .logo {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  header .header .logo img:first-child {
    display: block !important;
  }
  header .header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 3;
    background-color: #fff;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  header .header .navbar.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  header .header .navbar > ul {
    width: 100%;
    height: calc(100% - 60px - 60px);
    position: relative;
  }
  header .header .navbar > ul > li {
    width: 120px;
  }
  header .header .navbar > ul > li.active > a {
    color: #4cb848;
  }
  header .header .navbar > ul > li.active > a:after {
    display: block;
  }
  header .header .navbar > ul > li.active .sub-nav {
    display: block !important;
  }
  header .header .navbar > ul > li > a {
    font-size: 14px;
    padding: 20px 20px;
    display: block;
    position: relative;
  }
  header .header .navbar > ul > li > a:hover {
    color: #4cb848;
  }
  header .header .navbar > ul > li > a:after {
    content: "";
    display: block;
    width: 3px;
    height: 24%;
    border-radius: 100px;
    overflow: hidden;
    background-color: #4cb848;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8%;
    display: none;
  }
  header .header .navbar .mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    height: 60px;
  }
  header .header .navbar .mobile-head .close {
    width: 20px;
  }
  header .header .navbar .mobile-head .logo2 {
    width: 100px;
  }
  header .header .navbar .mobile-head .logo2 img {
    width: 100%;
  }
  header .header .navbar .mobile-head .shop2 {
    font-size: 14px;
    font-weight: bold;
    border-radius: 100px;
    background-color: #4cb848;
    color: #fff;
    padding: 6px 10px;
    text-align: center;
  }
  header .header .navbar .more-btn {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    display: block;
    width: 100%;
    color: #333;
    color: #4cb848;
  }
  header .header .navbar .more-btn:hover {
    color: #4cb848;
  }
  header .header .navbar .sub-nav {
    display: none !important;
    position: absolute;
    left: 120px;
    top: 0;
    border-left: 1px solid #eee;
    height: 100%;
    width: calc(100% - 120px);
    overflow: auto;
  }
  header .header .navbar .sub-nav1 .list .list-item > a {
    font-size: 15px;
    color: #333;
    display: block;
    padding: 10px 20px;
  }
  header .header .navbar .sub-nav1 .list1 > .list-item.active > a .icon {
    background-image: url(../images/header/img016@100x100.png);
  }
  header .header .navbar .sub-nav1 .list1 > .list-item.active .list2 {
    display: block;
  }
  header .header .navbar .sub-nav1 .list1 > .list-item > a {
    position: relative;
    background-color: #f8f8f8;
  }
  header .header .navbar .sub-nav1 .list1 > .list-item > a .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    right: 10px;
    background: url(../images/header/img015@100x100.png) no-repeat center;
    width: 14px;
    height: 14px;
    background-size: 100%;
  }
  header .header .navbar .sub-nav1 .list2 {
    padding-left: 30px;
    padding-bottom: 20px;
    display: none;
  }
  header .header .navbar .sub-nav1 .list2 > .list-item > a {
    font-size: 14px;
    color: #999;
    padding: 8px 8px;
    padding-left: 0;
  }
  header .header .navbar .sub-nav1 .list3 > .list-item {
    display: inline-block;
  }
  header .header .navbar .sub-nav1 .list3 > .list-item > a {
    padding: 4px 8px;
    font-size: 12px;
    color: #999;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 2px;
  }
  header .header .navbar .sub-nav1 .list3 > .list-item > a:hover {
    color: #4cb848;
    border-color: #4cb848;
  }
  header .header .navbar .sub-nav2 > .sub-box {
    display: flex;
    flex-wrap: wrap;
  }
  header .header .navbar .sub-nav2 .nav-item {
    width: 48%;
    text-align: center;
    margin-top: 6%;
  }
  header .header .navbar .sub-nav2 .nav-item .icon {
    display: block;
    width: 50px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  header .header .navbar .sub-nav2 .nav-item .text {
    font-size: 14px;
    color: #333;
  }
  header .header .search {
    width: 20px;
    margin-left: 10px;
  }
  header .header .search img {
    -webkit-filter: brightness(1) invert(1);
    filter: brightness(1) invert(1);
  }
  header .header .tools {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  header .header .tools .tool-btn {
    width: 20px;
    flex-shrink: 0;
  }
  header .header .tools .tool-btn img {
    -webkit-filter: brightness(1) invert(1);
    filter: brightness(1) invert(1);
    width: 100%;
  }
  header .header .tools .login {
    color: #000000;
    font-size: 20px;
    position: relative;
  }
  header .header .tools .login:hover ul {
    opacity: 1;
    visibility: visible;
  }
  header .header .tools .login ul {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    transform: translateX(-50%);
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    background: #f6f6f6;
    min-width: 96px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: none;
  }
  header .header .tools .login ul li a {
    display: block;
    padding: 7px 12px;
    color: #999;
    font-family: "Inter-Regular";
    font-size: 12px;
    line-height: 18px;
    transition: color 0.3s;
  }
  header .header .tools .login ul li a:hover {
    color: #4cb848;
  }
  header .header .tools .login {
    display: none;
  }
  header .header .tools .search {
    display: none;
  }
  header .header .tools .shop {
    margin-left: 15px;
  }
  header .header .search-form {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 20px;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  header .header .search-form.active {
    opacity: 1;
    visibility: visible;
  }
  header .header .search-form .form-body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 100px;
  }
  header .header .search-form .icon {
    width: 20px;
  }
  header .header .search-form .icon.search-icon {
    display: none;
  }
  header .header .search-form input {
    min-width: 0;
    flex-grow: 1;
    margin-right: 20px;
    font-size: 15px;
  }
  header .header .search-form .close {
    width: 14px;
    line-height: 1;
    display: block;
    font-size: 14px;
  }
  header .header .login-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    height: 60px;
  }
  header .header .login-btn-group .btn {
    width: 49%;
    padding: 8px 10px;
    text-align: center;
    color: #000;
    border-radius: 100px;
    border: 1px solid #eee;
    font-size: 14px;
  }
  header .header .login-btn-group .btn:first-child {
    margin-right: 2%;
  }
  header .header .login-btn-group .btn.login-btn {
    border-color: #4cb848;
    background-color: #4cb848;
    color: #fff;
  }
}
/* ==================== 头部导航样式 End ==================== */
/* ==================== 底部样式 Start ==================== */
.footer {
  position: relative;
  z-index: 10;
  background-color: #242933;
}
.footer .foot-top {
  border-bottom: 1px solid #2f3541;
}
.footer .foot-top > .mxw-box {
  padding-top: 3.125vw;
  padding-bottom: 3.125vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .foot-msg {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .foot-msg .msg-left {
  margin-right: 3.75vw;
}
.footer .foot-msg .msg-left .text1 {
  font-size: 1.25vw;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.1;
}
.footer .foot-msg .msg-left .text2 {
  margin-top: 1.25vw;
  font-size: 0.875vw;
  color: #999999;
  line-height: 1.4;
}
.footer .foot-msg .msg-right {
  background-color: #303643;
  padding: 1.125vw 1.875vw;
  border-radius: 6.25vw;
}
.footer .foot-msg .msg-right input {
  width: 31.25vw;
  line-height: 1.1;
  font-size: 1vw;
  color: #fff;
}
.footer .foot-msg .msg-right input::-webkit-input-placeholder {
  color: #585f6d;
}
.footer .foot-msg .msg-right input::-moz-placeholder {
  color: #585f6d;
}
.footer .foot-msg .msg-right input:-moz-placeholder {
  color: #585f6d;
}
.footer .foot-msg .msg-right input:-ms-input-placeholder {
  color: #585f6d;
}
.footer .foot-msg .msg-right button {
  margin-left: 1.875vw;
  position: relative;
}
.footer .foot-msg .msg-right button:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.875vw;
}
.footer .foot-msg .msg-right button img {
  width: 1.25vw;
}
.footer .foot-share {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .foot-share .share-item {
  position: relative;
  width: 3.75vw;
  height: 3.75vw;
  border-radius: 100%;
  background-color: #303643;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 1.25vw;
  transition: background-color 0.4s;
}
.footer .foot-share .share-item:last-child {
  margin-right: 0;
}
.footer .foot-share .share-item:hover {
  background-color: #4cb848;
}
.footer .foot-share .share-item:hover .qr {
  opacity: 1;
  visibility: visible;
}
.footer .foot-share .share-item:hover .img {
  opacity: 1;
}
.footer .foot-share .share-item .img {
  width: 1.25vw;
  opacity: 0.4;
  transition: opacity 0.4s;
}
.footer .foot-share .share-item .qr {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 9.375vw;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
}
.footer .foot-center {
  padding-bottom: 3.125vw;
}
.footer .foot-center .head {
  font-size: 1.125vw;
  line-height: 1.1;
  font-weight: bold;
  display: table;
  margin-bottom: 1.875vw;
  color: #fff;
  position: relative;
  padding-top: 4.375vw;
}
.footer .foot-center .head:before {
  content: "";
  display: block;
  background: url(../images/index/img049@300x200.png) no-repeat center;
  width: 9.375vw;
  height: 6.25vw;
  background-size: 100%;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
}
.footer .foot-center > .mxw-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer .foot-center > .mxw-box > ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  flex-grow: 1;
}
.footer .foot-center > .mxw-box > ul > li {
  margin-right: 9.375vw;
}
.footer .foot-center > .mxw-box > ul > li:last-child {
  margin-right: 0;
}
.footer .foot-center > .mxw-box > ul > li > ul {
  min-width: 8.75vw;
}
.footer .foot-center > .mxw-box > ul > li > ul > li:last-child > a {
  margin-bottom: 0;
}
.footer .foot-center > .mxw-box > ul > li > ul > li > a {
  font-size: 1vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.625vw;
  color: #6a6f7b;
}
.footer .foot-center > .mxw-box > ul > li > ul > li > a:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #4cb848;
  margin-right: 0.313vw;
  transition: all 0.4s;
  display: inline-block;
}
.footer .foot-center > .mxw-box > ul > li > ul > li > a:hover {
  color: #4cb848;
}
.footer .foot-center > .mxw-box > ul > li > ul > li > a:hover:before {
  width: 0.625vw;
}
.footer .foot-contact {
  flex-shrink: 0;
}
.footer .foot-contact .head2 {
  font-size: 1.125vw;
  line-height: 1.1;
  font-weight: bold;
  display: table;
  margin-bottom: 1.875vw;
  color: #fff;
  position: relative;
  margin-top: 3.125vw;
}
.footer .foot-contact .desc {
  color: #6a6f7b;
  font-size: 1vw;
  line-height: 2;
}
.footer .foot-contact .desc span {
  color: #b8b8b8;
}
.footer .foot-contact .itembox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .foot-contact .item {
  width: 10.813vw;
  flex-shrink: 0;
  margin-right: 0.625vw;
}
.footer .foot-contact .item:last-child {
  margin-right: 0;
}
.footer .foot-contact .item img {
  width: 100%;
}
.footer .foot-bottom {
  padding-top: 1.625vw;
  padding-bottom: 2.25vw;
  border-top: 1px solid #2f3541;
}
.footer .foot-bottom .foot-link {
  margin-bottom: 1.563vw;
}
.footer .foot-bottom .foot-link a {
  font-size: 0.875vw;
  color: #e9e9e9;
  line-height: 1.1;
  margin-right: 0.625vw;
}
.footer .foot-bottom .foot-link a:hover {
  color: #4cb848;
}
.footer .foot-bottom .foot-link a:last-child {
  margin-right: 0;
}
.footer .foot-bottom .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .foot-bottom .copyright {
  line-height: 1.1;
  color: #646464;
  font-size: 0.875vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .foot-bottom .copyright span {
  font-size: inherit;
  color: #b1b1b1;
}
.footer .foot-bottom .copyright > a {
  font-size: inherit;
  color: #646464;
  margin-left: 1.25vw;
}
.footer .foot-bottom .support {
  font-size: 0.875vw;
  color: #434a55;
  line-height: 1.1;
  margin-left: 1.25vw;
}
.footer .foot-bottom .support a {
  color: inherit;
  font-size: inherit;
}
.footer .foot-bottom .list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .foot-bottom .list > a {
  line-height: 1.1;
  font-size: 0.875vw;
  color: #808590;
  margin-right: 1.25vw;
}
.footer .foot-bottom .list > a:last-child {
  margin-right: 0;
}
@media screen and (min-width: 1600px) {
  .footer .foot-top > .mxw-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .footer .foot-msg .msg-left {
    margin-right: 60px;
  }
  .footer .foot-msg .msg-left .text1 {
    font-size: 20px;
  }
  .footer .foot-msg .msg-left .text2 {
    margin-top: 20px;
    font-size: 14px;
  }
  .footer .foot-msg .msg-right {
    padding: 18px 30px;
    border-radius: 100px;
  }
  .footer .foot-msg .msg-right input {
    width: 500px;
    font-size: 16px;
  }
  .footer .foot-msg .msg-right button {
    margin-left: 30px;
  }
  .footer .foot-msg .msg-right button:before {
    left: -30px;
  }
  .footer .foot-msg .msg-right button img {
    width: 20px;
  }
  .footer .foot-share .share-item {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  .footer .foot-share .share-item .img {
    width: 20px;
  }
  .footer .foot-share .share-item .qr {
    width: 150px;
  }
  .footer .foot-center {
    padding-bottom: 50px;
  }
  .footer .foot-center .head {
    font-size: 18px;
    margin-bottom: 30px;
    padding-top: 70px;
  }
  .footer .foot-center .head:before {
    width: 150px;
    height: 100px;
  }
  .footer .foot-center > .mxw-box > ul > li {
    margin-right: 150px;
  }
  .footer .foot-center > .mxw-box > ul > li > ul {
    min-width: 140px;
  }
  .footer .foot-center > .mxw-box > ul > li > ul > li > a {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .footer .foot-center > .mxw-box > ul > li > ul > li > a:before {
    margin-right: 5px;
  }
  .footer .foot-center > .mxw-box > ul > li > ul > li > a:hover:before {
    width: 10px;
  }
  .footer .foot-contact .head2 {
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 50px;
  }
  .footer .foot-contact .desc {
    font-size: 16px;
  }
  .footer .foot-contact .item {
    width: 173px;
    margin-right: 10px;
  }
  .footer .foot-bottom {
    padding-top: 26px;
    padding-bottom: 36px;
  }
  .footer .foot-bottom .foot-link {
    margin-bottom: 25px;
  }
  .footer .foot-bottom .foot-link a {
    font-size: 14px;
    margin-right: 10px;
  }
  .footer .foot-bottom .copyright {
    font-size: 14px;
  }
  .footer .foot-bottom .copyright > a {
    margin-left: 20px;
  }
  .footer .foot-bottom .support {
    font-size: 14px;
    margin-left: 20px;
  }
  .footer .foot-bottom .list > a {
    font-size: 14px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer .foot-top > .mxw-box {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer .foot-msg {
    width: 100%;
    display: block;
  }
  .footer .foot-msg .msg-left {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .footer .foot-msg .msg-left .text1 {
    font-size: 20px;
  }
  .footer .foot-msg .msg-left .text2 {
    margin-top: 10px;
    font-size: 14px;
    margin-bottom: 30px;
  }
  .footer .foot-msg .msg-right {
    width: 100%;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .footer .foot-msg .msg-right input {
    width: auto;
    font-size: 14px;
    min-width: 0;
    flex-grow: 1;
  }
  .footer .foot-msg .msg-right button {
    flex-shrink: 0;
    margin-left: 15px;
  }
  .footer .foot-msg .msg-right button:before {
    left: -15px;
  }
  .footer .foot-msg .msg-right button img {
    display: block;
    font-size: 12px;
    line-height: 1;
    width: 20px;
  }
  .footer .foot-share {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
  .footer .foot-share .share-item {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .footer .foot-share .share-item .img {
    width: 50%;
    line-height: 1;
    display: block;
    font-size: 12px;
  }
  .footer .foot-share .share-item .qr {
    width: 120px;
    z-index: 3;
  }
  .footer .foot-center {
    padding-bottom: 50px;
    padding: 20px;
  }
  .footer .foot-center .head {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-top: 35px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  .footer .foot-center .head:before {
    width: 75px;
    height: 50px;
    left: 0;
    transform: translateX(0);
  }
  .footer .foot-center > .mxw-box {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }
  .footer .foot-center > .mxw-box > ul {
    display: block;
  }
  .footer .foot-center > .mxw-box > ul > li {
    min-width: inherit;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .footer .foot-center > .mxw-box > ul > li > ul {
    min-width: inherit;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .footer .foot-center > .mxw-box > ul > li > ul > li {
    width: 32%;
  }
  .footer .foot-center > .mxw-box > ul > li > ul > li:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .footer .foot-center > .mxw-box > ul > li > ul > li:nth-child(3) ~ li {
    margin-top: 2%;
  }
  .footer .foot-center > .mxw-box > ul > li > ul > li > a {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .footer .foot-center > .mxw-box > ul > li > ul > li > a:before {
    margin-right: 5px;
  }
  .footer .foot-center > .mxw-box > ul > li > ul > li > a:hover:before {
    width: 10px;
  }
  .footer .foot-contact .head2 {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 50px;
  }
  .footer .foot-contact .desc {
    font-size: 14px;
  }
  .footer .foot-contact .item {
    width: 173px;
    max-width: 49%;
    margin-right: 2%;
  }
  .footer .foot-contact .item:last-child {
    margin-right: 0;
  }
  .footer .foot-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    padding: 20px;
  }
  .footer .foot-bottom .foot-link {
    margin-bottom: 25px;
  }
  .footer .foot-bottom .foot-link a {
    font-size: 13px;
    margin-right: 20px;
  }
  .footer .foot-bottom .bottom {
    display: block;
  }
  .footer .foot-bottom .copyright {
    font-size: 13px;
    display: block;
    text-align: center;
    line-height: 1.6;
  }
  .footer .foot-bottom .copyright > a {
    margin-left: 10px;
  }
  .footer .foot-bottom .support {
    font-size: 13px;
    margin-left: 0;
    margin-top: 10px;
  }
  .footer .foot-bottom .list {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer .foot-bottom .list > a {
    font-size: 13px;
    margin-right: 10px;
  }
}
/* ==================== 底部样式 End ==================== */
/* ==================== 通用 侧边栏 Start ==================== */
.float-tools {
  position: fixed;
  right: 0;
  bottom: 20%;
  z-index: 20;
  background-color: #4cb848;
  padding-left: 8px;
  padding-right: 8px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.float-tools .float-item {
  display: block;
  position: relative;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.float-tools .float-item:hover .qr,
.float-tools .float-item:hover .tel {
  opacity: 1;
  visibility: visible;
}
.float-tools .float-item .icon {
  width: 20px;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
}
.float-tools .float-item .text {
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
}
.float-tools .float-item .tel {
  width: 160px;
  height: 100%;
  background-color: #fff;
  color: #333;
  font-size: 17px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.2);
}
.float-tools .float-item .qr {
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
  width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.float-tools .float-item .qr img {
  width: 100%;
}
/* ==================== 通用 侧边栏 End ==================== */
/* ==================== 通用 切换按钮 Start ==================== */
.swiper-button {
  position: absolute;
  transform: translateY(-50%);
  z-index: 3;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  margin: 0;
}
.swiper-button:after {
  color: #fff;
  font-size: 15px;
}
.swiper-button.black {
  background-color: rgba(255, 255, 255, 0.8);
}
.swiper-button.black:after {
  color: #000;
}
.swiper-button-prev {
  left: 70px;
}
.swiper-button-next {
  right: 70px;
}
@media screen and (max-width: 500px) {
  .swiper-button {
    width: 40px;
    height: 40px;
  }
  .swiper-button:after {
    font-size: 14px;
  }
  .swiper-button-prev {
    left: 10px;
  }
  .swiper-button-next {
    right: 10px;
  }
}
/* ==================== 通用 切换按钮 End ==================== */
/* ==================== 通用 面包屑 Start ==================== */
.breadcrumb {
  padding-top: 26px;
  padding-bottom: 26px;
  font-size: 14px;
  color: #999999;
}
.breadcrumb a {
  font-size: 14px;
  color: #999999;
  line-height: 1.1;
  padding-right: 5px;
  padding-left: 5px;
}
.breadcrumb a:hover {
  text-decoration: underline;
  color: #4cb848;
}
.breadcrumb a:first-child {
  padding-left: 0;
}
.breadcrumb a.active {
  color: #4cb848;
}
/* ==================== 通用 面包屑 End ==================== */
/* ==================== 通用 分页器 Start ==================== */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4.688vw;
}
.pagination > a {
  display: block;
}
.pagination > a:not(.page-btn) {
  width: 1.875vw;
  height: 1.875vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
  color: #999;
  border-radius: 100%;
}
.pagination > a:not(.page-btn).active {
  color: #fff;
  background-color: #4cb848;
}
.pagination > a.page-btn {
  padding: 0.5vw 1.875vw;
  line-height: 1.1;
  color: #666666;
  text-align: center;
  font-size: 1vw;
  overflow: hidden;
  border: 1px solid #dddddd;
  border-radius: 6.25vw;
}
.pagination > a.page-btn.active,
.pagination > a.page-btn:hover {
  color: #fff;
  background-color: #4cb848;
  border-color: #4cb848;
}
.pagination > a.prev-btn {
  margin-right: 2.5vw;
}
.pagination > a.next-btn {
  margin-left: 2.5vw;
}
@media screen and (min-width: 1600px) {
  .pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 75px;
  }
  .pagination > a {
    display: block;
  }
  .pagination > a:not(.page-btn) {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #999;
    border-radius: 100%;
  }
  .pagination > a:not(.page-btn).active {
    color: #fff;
    background-color: #4cb848;
  }
  .pagination > a.page-btn {
    padding: 8px 30px;
    line-height: 1.1;
    color: #666666;
    text-align: center;
    font-size: 16px;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 100px;
  }
  .pagination > a.page-btn.active,
  .pagination > a.page-btn:hover {
    color: #fff;
    background-color: #4cb848;
    border-color: #4cb848;
  }
  .pagination > a.prev-btn {
    margin-right: 40px;
  }
  .pagination > a.next-btn {
    margin-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 30px;
    padding-bottom: 40px;
    position: relative;
  }
  .pagination > a:not(.page-btn) {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .pagination > a.page-btn {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 50px;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
    width: 40%;
  }
  .pagination > a.prev-btn {
    left: 8%;
  }
  .pagination > a.next-btn {
    right: 8%;
  }
}
/* ==================== 通用 分页器 End ==================== */
/* ==================== 首页 - 通用按钮 Start ==================== */
.index-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.875vw;
  color: #000;
}
.index-btn:hover {
  color: #000;
}
.index-btn.black .icon {
  background-color: #000;
}
.index-btn.black .icon:after {
  color: #fff;
}
.index-btn.white {
  color: #fff;
}
.index-btn.white .icon {
  background-color: #fff;
}
.index-btn.white .icon:after {
  color: #000;
}
.index-btn .icon {
  width: 1.75vw;
  height: 1.75vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
  margin-left: 0.5vw;
}
.index-btn .icon:after {
  content: "";
  display: block;
  width: 0.375vw;
  height: 0.375vw;
  color: #000;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
  margin-left: -0.188vw;
}
@media screen and (min-width: 1600px) {
  .index-btn {
    font-size: 14px;
  }
  .index-btn .icon {
    width: 28px;
    height: 28px;
    margin-left: 8px;
  }
  .index-btn .icon:after {
    width: 6px;
    height: 6px;
    margin-left: -3px;
  }
}
@media screen and (max-width: 768px) {
  .index-btn {
    font-size: 14px;
  }
  .index-btn .icon {
    width: 28px;
    height: 28px;
    margin-left: 8px;
  }
  .index-btn .icon:after {
    width: 6px;
    height: 6px;
    margin-left: -3px;
  }
}
/* ==================== 首页 - 通用按钮 End ==================== */
/* ==================== 通用毛玻璃背景 Start ==================== */
.navbar-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.39vw);
  -webkit-backdrop-filter: blur(1.39vw);
  top: 0;
  left: 0;
  z-index: 18;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.navbar-bg.active {
  opacity: 1;
  visibility: visible;
}
.navbar-bg.active2 {
  opacity: 1;
  visibility: visible;
  z-index: 22;
}
/* ==================== 通用毛玻璃背景 End ==================== */
/* ==================== ny3 - 板块一 Start ==================== */
.ny3-section1 {
  position: relative;
}
.ny3-section1 .image img {
  width: 100%;
  display: block;
  line-height: 1;
}
.ny3-section1 .info {
  width: 53.125vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ny3-section1 .info .text1 {
  font-size: 2.25vw;
  line-height: 1.1;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.875vw;
}
.ny3-section1 .info .text2 {
  line-height: 1.8;
  font-size: 1vw;
  color: #e1e1e1;
}
@media screen and (min-width: 1600px) {
  .ny3-section1 .info {
    width: 850px;
  }
  .ny3-section1 .info .text1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .ny3-section1 .info .text2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .ny3-section1 .info {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ny3-section1 .info .text1 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .ny3-section1 .info .text2 {
    font-size: 13px;
  }
}
/* ==================== ny3 - 板块一 End ==================== */
/* ==================== 首页 - 板块5 通用 tabs Start ==================== */
.index-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.875vw;
}
.index-tabs .tab-item {
  font-size: 1vw;
  color: #333333;
  line-height: 1.1;
  padding: 0.625vw 1.875vw;
  border-radius: 6.25vw;
  text-align: center;
  background-color: #edeff2;
  margin-right: 1.25vw;
}
.index-tabs .tab-item.active {
  background-color: #262629;
  color: #fff;
}
.index-tabs .tab-item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 1600px) {
  .index-tabs {
    margin-bottom: 30px;
  }
  .index-tabs .tab-item {
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 100px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .index-tabs {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  .index-tabs .tab-item {
    width: 48%;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 25px;
    margin-right: 0;
  }
  .index-tabs .tab-item:nth-child(2n-1) {
    margin-right: 4%;
  }
  .index-tabs .tab-item:nth-child(2) ~ .tab-item {
    margin-top: 4%;
  }
}
/* ==================== 首页 - 板块5 通用 tabs End ==================== */
/* ==================== 首页 - 板块1 通用产品 Start ==================== */
.ny1-item {
  background-color: #fff;
  border-radius: 0.625vw;
  overflow: hidden;
}
.ny1-item .image {
  position: relative;
  line-height: 1;
  display: block;
  height: 20.625vw;
}
.ny1-item .image:hover .img1 {
  opacity: 1;
  visibility: visible;
}
.ny1-item .image img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.ny1-item .image .img1 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.ny1-item .image .img1 .desc {
  width: 100%;
  padding: 1.563vw 1.875vw;
  font-size: 1vw;
  color: #fff;
  line-height: 1.6;
}
.ny1-item .image .img2 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ny1-item .info {
  padding: 2.25vw;
}
.ny1-item .info .text1 {
  font-size: 1.125vw;
  line-height: 1.1;
  margin-bottom: 1.125vw;
  transition: color 0.4s;
}
.ny1-item .info .evaluate {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ny1-item .info .evaluate .text {
  font-size: 0.875vw;
  color: #aaaaaa;
  display: block;
}
.ny1-item .info .evaluate .score {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #dfc09c;
  font-size: 0.875vw;
  margin-right: 1.125vw;
}
.ny1-item .info .evaluate .score i {
  font-size: 16px;
  font-style: inherit;
  margin-right: 4px;
  color: #dfc09c;
}
.ny1-item .info .evaluate .score i.disabled {
  color: #dfdfdf;
}
.ny1-item .info .evaluate .score i:last-child {
  margin-right: 10px;
}
.ny1-item .info .evaluate .score i:after {
  display: block;
  content: "\e60e";
  font-family: "iconfont";
  font-size: 16px;
}
.ny1-item .info .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 2.25vw;
}
.ny1-item .info .bottom:hover .add-cart {
  opacity: 1;
  visibility: visible;
}
.ny1-item .info .price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny1-item .info .last-price {
  font-size: 1.5vw;
  color: #000000;
  line-height: 1.1;
  margin-right: 1.25vw;
}
.ny1-item .info .last-price i {
  font-size: 1vw;
}
.ny1-item .info .first-price {
  color: #aaaaaa;
  font-size: 1vw;
  line-height: 1.1;
  text-decoration: line-through;
}
.ny1-item .info .index-btn .icon {
  background-color: #dfdfdf;
}
.ny1-item .info .add-cart {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  background-color: #4cb848;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125vw;
  border-radius: 6.25vw;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
}
.ny1-item .info .add-cart:before {
  font-size: 1.375vw;
}
.ny1-item .info .add-cart img {
  width: 1.375vw;
  line-height: 1;
  display: block;
  margin-right: 0.625vw;
}
@media screen and (min-width: 1600px) {
  .ny1-item {
    border-radius: 10px;
  }
  .ny1-item .image {
    height: 330px;
  }
  .ny1-item .image .img1 .desc {
    padding: 25px 30px;
    font-size: 16px;
  }
  .ny1-item .info {
    padding: 36px;
  }
  .ny1-item .info .text1 {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .ny1-item .info .evaluate .text {
    font-size: 14px;
  }
  .ny1-item .info .evaluate .score {
    font-size: 14px;
    margin-right: 18px;
  }
  .ny1-item .info .bottom {
    margin-top: 36px;
  }
  .ny1-item .info .last-price {
    font-size: 24px;
    margin-right: 20px;
  }
  .ny1-item .info .last-price i {
    font-size: 16px;
  }
  .ny1-item .info .first-price {
    font-size: 16px;
  }
  .ny1-item .info .add-cart {
    font-size: 18px;
    border-radius: 100px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .ny1-item .info .add-cart:before {
    font-size: 22px;
  }
  .ny1-item .info .add-cart img {
    width: 22px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .ny1-item {
    width: 48%;
    border-radius: 10px;
    margin: 0 !important;
  }
  .ny1-item:nth-child(2n-1) {
    margin-right: 4% !important;
  }
  .ny1-item:nth-child(2) ~ .ny1-item {
    margin-top: 20px !important;
  }
  .ny1-item .image {
    height: 61.069vw;
  }
  .ny1-item .image .img1 .desc {
    padding: 10px 10px;
    font-size: 14px;
  }
  .ny1-item .info {
    padding: 20px 12px;
  }
  .ny1-item .info .text1 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .ny1-item .info .evaluate .text {
    font-size: 14px;
  }
  .ny1-item .info .evaluate .score {
    font-size: 14px;
    margin-right: 18px;
  }
  .ny1-item .info .bottom {
    margin-top: 20px;
  }
  .ny1-item .info .price {
    justify-content: flex-start;
  }
  .ny1-item .info .last-price {
    font-size: 14px;
    margin-right: 20px;
  }
  .ny1-item .info .last-price i {
    font-size: 12px;
  }
  .ny1-item .info .first-price {
    font-size: 14px;
  }
  .ny1-item .info .add-cart {
    font-size: 18px;
    border-radius: 100px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .ny1-item .info .add-cart:before {
    font-size: 22px;
  }
  .ny1-item .info .add-cart img {
    width: 22px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .ny1-item {
    width: 100%;
    border-radius: 10px;
    margin: 0 !important;
  }
  .ny1-item:nth-child(1) ~ .ny1-item {
    margin-top: 20px !important;
  }
}
/* ==================== 首页 - 板块1 通用产品 End ==================== */
/* ==================== 通用弹窗 Start ==================== */
.common-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.694vw);
  -webkit-backdrop-filter: blur(0.694vw);
  top: 0;
  left: 0;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: auto;
  padding-top: 5%;
  padding-bottom: 5%;
  display: none;
}
.common-popup.active {
  opacity: 1;
  visibility: visible;
}
.common-popup.active .body {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.common-popup .body {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
  transform: translateY(100%);
  display: flex;
  align-items: flex-start;
  width: 68.056vw;
  padding: 2.778vw;
  padding-top: 4.167vw;
  border-radius: 16px;
  background-color: #fff;
}
.common-popup .body .close {
  width: 2.778vw;
  height: 2.778vw;
  position: absolute;
  top: 0.556vw;
  right: 0.556vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.389vw;
  border-radius: 100%;
  background-color: #f6f6f6;
  cursor: pointer;
  z-index: 3;
}
.common-popup .body .close img {
  width: 40%;
}
.common-popup .body .content {
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .common-popup {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .common-popup .body {
    width: 980px;
    padding: 40px;
    padding-top: 60px;
  }
  .common-popup .body .close {
    width: 40px;
    height: 40px;
    top: 8px;
    right: 8px;
    font-size: 20px;
  }
  .common-popup .body iframe {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .common-popup {
    backdrop-filter: blur(1.302vw);
    -webkit-backdrop-filter: blur(1.302vw);
    padding-left: 3.125vw;
    padding-right: 3.125vw;
  }
  .common-popup .body {
    width: 100%;
    padding: 3.125vw;
    padding-top: 6.51vw;
  }
  .common-popup .body .close {
    width: 5.208vw;
    height: 5.208vw;
    top: 1.042vw;
    right: 1.042vw;
    font-size: 2.604vw;
  }
  .common-popup .body iframe {
    height: 65.104vw;
  }
}
@media screen and (max-width: 500px) {
  .common-popup {
    backdrop-filter: blur(2.545vw);
    -webkit-backdrop-filter: blur(2.545vw);
    padding-left: 4.071vw;
    padding-right: 4.071vw;
  }
  .common-popup .body {
    padding: 4.071vw;
    padding-top: 10.178vw;
  }
  .common-popup .body .close {
    width: 7.634vw;
    height: 7.634vw;
    top: 2.036vw;
    right: 2.036vw;
    font-size: 5.089vw;
  }
  .common-popup .body iframe {
    height: 50.891vw;
  }
}
/* ==================== 通用弹窗 End ==================== */
/* ==================== 通用评分 Start ==================== */
.common-score-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 0.625vw;
}
.common-score-list i {
  display: block;
  width: 1.125vw;
  height: 1.125vw;
  background: url(../images/ny1/img013.png) no-repeat center;
  background-size: 100%;
}
.common-score-list i.active {
  background-image: url(../images/ny1/img011.png);
}
.common-score-list i.ban {
  background-image: url(../images/ny1/img014.png);
}
@media screen and (max-width: 768px) {
  .common-score-list {
    margin-right: 10px;
  }
  .common-score-list i {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 500px) {
  .common-score-list {
    margin-right: 10px;
  }
  .common-score-list i {
    width: 18px;
    height: 18px;
  }
}
/* ==================== 通用评分 End ==================== */
/* ==================== 内页7 - 板块一 Start ==================== */
.ny7-section1 .head {
  text-align: center;
  margin-bottom: 6.875vw;
}
.ny7-section1 .head .text1 {
  font-size: 2.25vw;
  line-height: 1.1;
}
.ny7-section1 .head .text2 {
  font-size: 1vw;
  line-height: 1.1;
  margin-top: 0.625vw;
  color: #7f7f7f;
}
.ny7-section1 .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.ny7-section1 .item {
  width: 21%;
  margin-right: 5.333%;
  text-align: center;
}
.ny7-section1 .item:last-child {
  margin-right: 0;
}
.ny7-section1 .item .image {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0vw 0vw 3vw 0.875vw rgba(0, 0, 0, 0.02);
  border-radius: 0.625vw;
}
.ny7-section1 .item .image img {
  width: 100%;
}
.ny7-section1 .item .info {
  padding-top: 7.375vw;
  text-align: center;
  padding-bottom: 2.5vw;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 4.375vw;
}
.ny7-section1 .item .info .text1 {
  font-size: 1.25vw;
  line-height: 1.1;
  font-weight: bold;
  color: #000000;
}
.ny7-section1 .item .info .text2 {
  margin-top: 0.938vw;
  font-size: 1vw;
  color: #999999;
  line-height: 1.6;
}
.ny7-section1 .item .info .text3 {
  margin-top: 0.938vw;
  font-size: 1vw;
  color: #000000;
  line-height: 1.1;
}
.ny7-section1 .item .info .buy-btn {
  padding: 10px 25px;
  border-radius: 100px;
  background-color: #4cb848;
  color: #fff;
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  font-size: 16px;
}
.ny7-section1 .item ul li {
  font-size: 0.875vw;
  color: #444444;
  margin-top: 2.5vw;
}
@media screen and (min-width: 1600px) {
  .ny7-section1 .head {
    margin-bottom: 110px;
  }
  .ny7-section1 .head .text1 {
    font-size: 36px;
  }
  .ny7-section1 .head .text2 {
    font-size: 16px;
    margin-top: 10px;
  }
  .ny7-section1 .item .image {
    box-shadow: 0px 0px 48px 14px rgba(0, 0, 0, 0.02);
    border-radius: 10px;
  }
  .ny7-section1 .item .info {
    padding-top: 118px;
    padding-bottom: 40px;
    margin-bottom: 70px;
  }
  .ny7-section1 .item .info .text1 {
    font-size: 20px;
  }
  .ny7-section1 .item .info .text2 {
    margin-top: 15px;
    font-size: 16px;
  }
  .ny7-section1 .item .info .text3 {
    margin-top: 15px;
    font-size: 16px;
  }
  .ny7-section1 .item .info .buy-btn {
    padding: 10px 25px;
    border-radius: 100px;
    margin-top: 30px;
    font-size: 16px;
  }
  .ny7-section1 .item ul li {
    font-size: 14px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ny7-section1 .head {
    margin-bottom: 55px;
  }
  .ny7-section1 .head .text1 {
    font-size: 18px;
    font-weight: bold;
  }
  .ny7-section1 .head .text2 {
    font-size: 14px;
    margin-top: 10px;
  }
  .ny7-section1 .itembox {
    flex-wrap: inherit;
    overflow: auto;
  }
  .ny7-section1 .item {
    width: 48%;
    flex-shrink: 0;
  }
  .ny7-section1 .item .image {
    box-shadow: 0px 0px 24px 7px rgba(0, 0, 0, 0.02);
    border-radius: 10px;
  }
  .ny7-section1 .item .info {
    padding-top: 40px;
    padding-bottom: 20px;
    margin-bottom: 35px;
  }
  .ny7-section1 .item .info .text1 {
    font-size: 16px;
    line-height: 1.4;
    min-height: 2.8em;
  }
  .ny7-section1 .item .info .text2 {
    margin-top: 15px;
    font-size: 13px;
  }
  .ny7-section1 .item .info .text3 {
    margin-top: 15px;
    font-size: 12px;
  }
  .ny7-section1 .item .info .buy-btn {
    padding: 8px 20px;
    border-radius: 100px;
    margin-top: 20px;
    font-size: 14px;
  }
  .ny7-section1 .item ul li {
    font-size: 12px;
    margin-top: 20px;
    line-height: 1.4;
    height: 2.8em;
  }
}
/* ==================== 内页7 - 板块一 End ==================== */
/* ==================== 通用 - 热门话题 Start ==================== */
.common-right-list {
  width: 28.125vw;
  flex-shrink: 0;
  margin-left: 2.5vw;
  border-radius: 0.625vw;
  overflow: hidden;
  background-color: #fff;
  padding: 1.875vw;
  padding-bottom: 3.75vw;
  position: sticky;
  top: 0;
  right: 0;
}
.common-right-list .text1 {
  font-size: 1.625vw;
  line-height: 1.1;
  margin-bottom: 3.125vw;
}
.common-right-list .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.25vw;
}
.common-right-list .item:hover .num {
  background-color: #4cb848;
  color: #fff;
}
.common-right-list .item:hover .text {
  color: #4cb848;
}
.common-right-list .item:last-child {
  margin-bottom: 0;
}
.common-right-list .item .num {
  display: block;
  width: 1.875vw;
  height: 1.875vw;
  background-color: #f4f4f4;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
  color: #000;
  margin-right: 1.25vw;
  transition: background-color 0.4s, color 0.4s;
}
.common-right-list .item .text {
  min-width: 0;
  flex-grow: 1;
  font-size: 1vw;
  color: #000000;
  transition: color 0.4s;
  line-height: 1.1;
}
@media screen and (min-width: 1600px) {
  .common-right-list {
    width: 450px;
    margin-left: 40px;
    border-radius: 10px;
    padding: 30px;
    padding-bottom: 60px;
  }
  .common-right-list .text1 {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .common-right-list .item {
    margin-bottom: 20px;
  }
  .common-right-list .item .num {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 20px;
  }
  .common-right-list .item .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .common-right-list {
    width: 100%;
    margin-left: 0;
    border-radius: 10px;
    padding: 30px 20px;
    padding-bottom: 30px;
    margin-top: 20px;
  }
  .common-right-list .text1 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .common-right-list .item {
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .common-right-list .item .num {
    width: 26px;
    height: 26px;
    font-size: 12px;
    margin-right: 20px;
    flex-shrink: 0;
  }
  .common-right-list .item .text {
    font-size: 14px;
    line-height: 1.4;
    padding-top: 2px;
  }
}
/* ==================== 通用 - 热门话题 End ==================== */
/* ==================== 内页30 - 通用 Start ==================== */
.ny30-common {
  background-color: #f8f9fd;
}
.ny30-common .main {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ny30-common aside {
  flex-shrink: 0;
  background-color: #fff;
  padding: 1.688vw 2.5vw;
  border-radius: 0.625vw;
  margin-right: 1.875vw;
  position: sticky;
  top: 0;
  left: 0;
}
.ny30-common aside .list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.625vw;
  height: 2.875vw;
  border-radius: 6.25vw;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  color: #666;
}
.ny30-common aside .list-item:last-child {
  margin-bottom: 0;
}
.ny30-common aside .list-item:hover {
  background-color: #f8f8f8;
}
.ny30-common aside .list-item.active {
  background: -webkit-linear-gradient(to left, #5dd14b, #4cb23b);
  background: -o-linear-gradient(to left, #5dd14b, #4cb23b);
  background: -moz-linear-gradient(to left, #5dd14b, #4cb23b);
  background: linear-gradient(to left, #5dd14b, #4cb23b);
}
.ny30-common aside .list-item.active .text,
.ny30-common aside .list-item.active .icon {
  color: #fff;
}
.ny30-common aside .list-item .icon {
  font-size: 1.5vw;
  line-height: 1;
  color: inherit;
  flex-shrink: 0;
}
.ny30-common aside .list-item .text {
  margin-left: 0.938vw;
  font-size: 1vw;
  line-height: 1.1;
  color: inherit;
}
.ny30-common aside .list2 {
  padding-top: 2.5vw;
  border-top: 1px solid #f0f0f0;
  margin-top: 2.5vw;
}
.ny30-common .container {
  min-width: 0;
  flex-grow: 1;
}
@media screen and (min-width: 1600px) {
  .ny30-common aside {
    padding: 27px 40px;
    border-radius: 10px;
    margin-right: 30px;
  }
  .ny30-common aside .list-item {
    margin-bottom: 10px;
    height: 46px;
    border-radius: 100px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .ny30-common aside .list-item .icon {
    font-size: 24px;
  }
  .ny30-common aside .list-item .text {
    margin-left: 15px;
    font-size: 16px;
  }
  .ny30-common aside .list2 {
    padding-top: 40px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ny30-common .main {
    display: block;
  }
  .ny30-common aside {
    position: static;
    padding: 20px 20px;
    border-radius: 10px;
    margin-right: 0;
    overflow: hidden;
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .ny30-common aside .list-item {
    margin-bottom: 0;
    height: 40px;
    border-radius: 25px;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
    width: 48%;
    margin-top: 10px;
    margin-left: 1%;
    margin-right: 1%;
  }
  .ny30-common aside .list-item .icon {
    font-size: 20px;
  }
  .ny30-common aside .list-item .text {
    margin-left: 10px;
    font-size: 15px;
  }
  .ny30-common aside .list2 {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
  .ny30-common aside .list2 .list-item {
    margin-left: 1%;
    margin-right: 1%;
  }
}
/* ==================== 内页30 - 通用 End ==================== */
/* ==================== 内页31 - 通用样式 Start ==================== */
.ny31-itembox .item {
  margin-bottom: 1.25vw;
}
.ny31-itembox .item .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.063vw 1.25vw;
  background-color: #f8f8f8;
}
.ny31-itembox .item .top .text1 {
  font-size: 1vw;
  color: #888;
}
.ny31-itembox .item .top .text1 span {
  color: #333;
}
.ny31-itembox .item .top .text2 {
  font-size: 1vw;
  color: #999999;
  line-height: 1.1;
  margin-right: 0;
  margin-left: auto;
}
.ny31-itembox .item .top .del {
  font-size: 1.25vw;
  line-height: 1;
  color: #9a9a9a;
  margin-left: 1.25vw;
  cursor: pointer;
}
.ny31-itembox .item .top .del:hover {
  color: #333;
}
.ny31-itembox .item .top .del .iconfont {
  font-size: inherit;
}
.ny31-itembox .bottom-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 10vw;
  border: 1px solid #f0f0f0;
  border-top: 0;
}
.ny31-itembox .bottom-item1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  flex-grow: 1;
}
.ny31-itembox .bottom-item1 .product-list {
  width: 100%;
}
.ny31-itembox .bottom-item1 .product-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px dashed #eee;
}
.ny31-itembox .bottom-item1 .product-item:last-child {
  border-bottom: 0;
}
.ny31-itembox .bottom-item1 .image {
  width: 6.875vw;
  flex-shrink: 0;
  display: block;
  margin-right: 3.125vw;
  margin-left: 1.875vw;
  margin-right: 1.875vw;
}
.ny31-itembox .bottom-item1 .info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  flex-grow: 1;
}
.ny31-itembox .bottom-item1 .title {
  font-size: 1vw;
  color: #000000;
  line-height: 1.4;
  min-width: 0;
  flex-grow: 1;
}
.ny31-itembox .bottom-item1 .title span {
  font-size: 0.6vw;
  color: #bbb;
}
.ny31-itembox .bottom-item1 .number {
  font-size: 1vw;
  line-height: 1.1;
  color: #888;
  margin-right: 6.563vw;
  flex-shrink: 0;
}
.ny31-itembox .bottom-item1 .price {
  font-size: 1vw;
  color: #666666;
  line-height: 1.1;
  margin-right: 3.75vw;
  flex-shrink: 0;
}
.ny31-itembox .bottom-item2 {
  border-left: 1px solid #f0f0f0;
  width: 8.125vw;
  flex-shrink: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.ny31-itembox .bottom-item2 .text {
  display: block;
  margin-top: 1.25vw;
  font-size: 0.875vw;
}
.ny31-itembox .bottom-item2 .text.text1 {
  margin-top: 0;
}
.ny31-itembox .bottom-item2 .text3 {
  text-decoration: underline;
  color: #4cb848;
}
.ny31-itembox .bottom-item2 a:hover {
  color: #4cb848;
}
.ny31-itembox .bottom-item3 {
  width: 8.125vw;
  flex-shrink: 0;
  border-left: 1px solid #f0f0f0;
  /*display: flex;*/
  padding-top: 50px;
  padding-left: 20px;
  align-items: center;
  justify-content: center;
}
.ny31-itembox .bottom-item3 .btn {
  width: 5.625vw;
  height: 1.938vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875vw;
  color: #666666;
  cursor: pointer;
  border-radius: 6.25vw;
  margin-top: 20px;
  background-color: #ededed;
}
.ny31-itembox .bottom-item3 .btn.active {
  background-color: #4cb848;
  color: #fff;
}
@media screen and (min-width: 1600px) {
  .ny31-itembox .item {
    margin-bottom: 20px;
  }
  .ny31-itembox .item .top {
    padding: 17px 20px;
  }
  .ny31-itembox .item .top .text1 {
    font-size: 16px;
  }
  .ny31-itembox .item .top .text2 {
    font-size: 16px;
  }
  .ny31-itembox .item .top .del {
    font-size: 20px;
    margin-left: 20px;
  }
  .ny31-itembox .bottom-list {
    min-height: 160px;
  }
  .ny31-itembox .bottom-item1 .image {
    width: 110px;
    margin-right: 50px;
    margin-left: 30px;
    margin-right: 30px;
  }
  .ny31-itembox .bottom-item1 .title {
    font-size: 16px;
  }
  .ny31-itembox .bottom-item1 .title span {
    font-size: 12px;
  }
  .ny31-itembox .bottom-item1 .number {
    font-size: 16px;
    margin-right: 105px;
  }
  .ny31-itembox .bottom-item1 .price {
    font-size: 16px;
    margin-right: 60px;
  }
  .ny31-itembox .bottom-item2 {
    width: 130px;
  }
  .ny31-itembox .bottom-item2 .text {
    margin-top: 20px;
    font-size: 14px;
  }
  .ny31-itembox .bottom-item2 .text.text1 {
    margin-top: 0;
  }
  .ny31-itembox .bottom-item3 {
    width: 130px;
  }
  .ny31-itembox .bottom-item3 .btn {
    width: 90px;
    height: 31px;
    font-size: 14px;
    border-radius: 100px;
  }
}
@media screen and (max-width: 768px) {
  .ny31-itembox .item {
    margin-bottom: 20px;
  }
  .ny31-itembox .item .top {
    padding: 10px 10px;
    display: block;
    line-height: 1.8em;
    position: relative;
    padding-right: 30px;
  }
  .ny31-itembox .item .top .text1 {
    font-size: 13px;
  }
  .ny31-itembox .item .top .text2 {
    font-size: 13px;
  }
  .ny31-itembox .item .top .del {
    font-size: 20px;
    width: auto;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .ny31-itembox .bottom-list {
    min-height: inherit;
    display: block;
  }
  .ny31-itembox .bottom-item {
    width: 100%;
  }
  .ny31-itembox .bottom-item1 {
    align-items: flex-start;
    padding: 20px;
  }
  .ny31-itembox .bottom-item1 .product-item {
    align-items: flex-start;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .ny31-itembox .bottom-item1 .product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .ny31-itembox .bottom-item1 .image {
    width: 40px;
    margin-right: 10px;
    margin-left: 0;
  }
  .ny31-itembox .bottom-item1 .info {
    display: flex;
    flex-wrap: wrap;
  }
  .ny31-itembox .bottom-item1 .title {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 0;
    font-weight: bold;
    width: 100%;
  }
  .ny31-itembox .bottom-item1 .title span {
    font-size: 12px;
    color: #bbb;
  }
  .ny31-itembox .bottom-item1 .number {
    font-size: 14px;
    margin-right: 20px;
    margin-top: 10px;
    width: auto;
  }
  .ny31-itembox .bottom-item1 .price {
    font-size: 14px;
    margin-right: 0;
    margin-top: 10px;
    width: auto;
  }
  .ny31-itembox .bottom-item2 {
    width: 100%;
    border-top: 1px dashed #ddd;
    padding-top: 10px;
    border-left: 0;
  }
  .ny31-itembox .bottom-item2 .text {
    margin-top: 10px;
    font-size: 14px;
    width: 33%;
    text-align: center;
  }
  .ny31-itembox .bottom-item2 .text1 {
    margin-top: 10px;
  }
  .ny31-itembox .bottom-item3 {
    width: 100%;
    padding: 20px;
    border-left: 0;
  }
  .ny31-itembox .bottom-item3 .btn {
    width: 100%;
    height: auto;
    padding: 8px 10px;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 50px;
  }
}
/* ==================== 内页31 - 通用样式 End ==================== */
/* ==================== 内页31 - 通用标题 Start ==================== */
.ny31-title {
  line-height: 1.1;
  font-size: 1.625vw;
  margin-bottom: 1.875vw;
}
@media screen and (min-width: 1600px) {
  .ny31-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .ny31-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
/* ==================== 内页31 - 通用标题 Start ==================== */
/* ==================== 内页32 - 通用优惠券 Start ==================== */
.ny32-itembox {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ny32-itembox .item {
  width: 47%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 0.625vw;
  overflow: hidden;
}
.ny32-itembox .item.disabled .left {
  background-color: #b4b4b4;
}
.ny32-itembox .item.disabled .right:after {
  display: block;
}
.ny32-itembox .item.disabled .right .text2 {
  color: #aba6a6;
}
.ny32-itembox .item.disabled .right .btn {
  display: none;
}

.ny32-itembox .item.used .left {
  background-color: #b4b4b4;
}
.ny32-itembox .item.used .right:after {
  content: "已过期";
}
.ny32-itembox .item.used .right .text2 {
  color: #aba6a6;
}
.ny32-itembox .item.used .right .btn {
  display: none;
}
.ny32-itembox .item:nth-child(2) ~ .item {
  margin-top: 3.75vw;
}
.ny32-itembox .item .left {
  background-color: #e2d3af;
  border-radius: 0.625vw;
  width: 13.75vw;
  min-height: 14.375vw;
  color: #fff;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.ny32-itembox .item .left:before,
.ny32-itembox .item .left:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100%;
  z-index: 3;
  background-color: #fff;
}
.ny32-itembox .item .left:before {
  width: 1vw;
  height: 1vw;
  top: -0.5vw;
  right: -0.5vw;
}
.ny32-itembox .item .left:after {
  width: 1vw;
  height: 1vw;
  bottom: -0.5vw;
  right: -0.5vw;
}
.ny32-itembox .item .left .top {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  flex-grow: 1;
}
.ny32-itembox .item .left .top .text1 {
  font-size: 2.5vw;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.563vw;
}
.ny32-itembox .item .left .top .text2 {
  font-size: 1.125vw;
  line-height: 1.1;
}
.ny32-itembox .item .left .bottom {
  padding: 1.25vw;
  text-align: center;
  position: relative;
  width: 100%;
  font-size: 1.5vw;
  line-height: 1.1;
}
.ny32-itembox .item .left .bottom:before {
  content: "";
  display: block;
  width: 80%;
  height: 0;
  border-top: 1px dashed #fff;
  left: 50%;
  top: 0;
  position: absolute;
  transform: translateX(-50%);
}
.ny32-itembox .item .right {
  min-width: 0;
  flex-grow: 1;
  padding: 1.25vw;
  padding-top: 3.125vw;
  padding-bottom: 3.125vw;
  position: relative;
  background: url(../images/ny32/img001.png) no-repeat center;
  background-size: 100%;
  background-color: #fafafa;
}
.ny32-itembox .item .right:after {
  content: "";
  display: block;
  width: 6.875vw;
  height: 6.875vw;
  background: url(../images/ny32/img002.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  right: 0.75vw;
  bottom: 0.75vw;
  z-index: 3;
  display: none;
}
.ny32-itembox .item .right .text1 {
  font-size: 1.75vw;
  color: #333333;
}
.ny32-itembox .item .right .text2 {
  margin-top: 1vw;
  font-size: 1.125vw;
  color: #c7afac;
  line-height: 1.1;
}
.ny32-itembox .item .right .btn {
  position: absolute;
  bottom: 1.25vw;
  right: 1.25vw;
  padding: 0.5vw 1.125vw;
  line-height: 1;
  border-radius: 6.25vw;
  border: solid 1px #e2d3af;
  color: #8a733d;
  display: table;
  cursor: pointer;
  font-size: 1vw;
}
.ny32-itembox .item .right .btn:hover {
  background-color: #8a733d;
  border-color: #8a733d;
  color: #fff;
}
@media screen and (min-width: 1600px) {
  .ny32-itembox .item {
    border-radius: 10px;
  }
  .ny32-itembox .item:nth-child(2) ~ .item {
    margin-top: 60px;
  }
  .ny32-itembox .item .left {
    border-radius: 10px;
    width: 220px;
    min-height: 230px;
  }
  .ny32-itembox .item .left:before {
    width: 16px;
    height: 16px;
    top: -8px;
    right: -8px;
  }
  .ny32-itembox .item .left:after {
    width: 16px;
    height: 16px;
    bottom: -8px;
    right: -8px;
  }
  .ny32-itembox .item .left .top .text1 {
    font-size: 40px;
    margin-bottom: 25px;
  }
  .ny32-itembox .item .left .top .text2 {
    font-size: 18px;
  }
  .ny32-itembox .item .left .bottom {
    padding: 20px;
    font-size: 24px;
  }
  .ny32-itembox .item .right {
    padding: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ny32-itembox .item .right:after {
    width: 110px;
    height: 110px;
    right: 12px;
    bottom: 12px;
  }
  .ny32-itembox .item .right .text1 {
    font-size: 28px;
  }
  .ny32-itembox .item .right .text2 {
    margin-top: 16px;
    font-size: 18px;
  }
  .ny32-itembox .item .right .btn {
    bottom: 20px;
    right: 20px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .ny32-itembox {
    display: block;
  }
  .ny32-itembox .item {
    width: 100%;
    border-radius: 5px;
  }
  .ny32-itembox .item:nth-child(1) ~ .item {
    margin-top: 20px;
  }
  .ny32-itembox .item:nth-child(2) ~ .item {
    margin-top: 20px;
  }
  .ny32-itembox .item .left {
    border-radius: 5px;
    width: 110px;
    min-height: 115px;
  }
  .ny32-itembox .item .left:before {
    width: 16px;
    height: 16px;
    top: -8px;
    right: -8px;
  }
  .ny32-itembox .item .left:after {
    width: 16px;
    height: 16px;
    bottom: -8px;
    right: -8px;
  }
  .ny32-itembox .item .left .top .text1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .ny32-itembox .item .left .top .text2 {
    font-size: 14px;
  }
  .ny32-itembox .item .left .bottom {
    padding: 10px;
    font-size: 12px;
  }
  .ny32-itembox .item .right {
    padding: 20px;
  }
  .ny32-itembox .item .right:after {
    width: 60px;
    height: 60px;
    right: 5px;
    bottom: 5px;
  }
  .ny32-itembox .item .right .text1 {
    font-size: 16px;
  }
  .ny32-itembox .item .right .text2 {
    margin-top: 8px;
    font-size: 12px;
  }
  .ny32-itembox .item .right .btn {
    position: static;
    padding: 8px 9px;
    border-radius: 50px;
    font-size: 12px;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}
/* ==================== 内页32 - 通用优惠券 End ==================== */
/* ==================== 内页31 - 通用tabs Start ==================== */
.ny31-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.875vw;
}
.ny31-tabs .tab-item {
  font-size: 1vw;
  padding: 0.625vw 1.563vw;
  border-radius: 6.25vw;
  color: #666;
  margin-right: 1.25vw;
}
.ny31-tabs .tab-item:hover {
  background-color: #f8f8f8;
}
.ny31-tabs .tab-item span {
  color: #e59017;
}
.ny31-tabs .tab-item.active {
  background-image: linear-gradient(97deg, #5dd14b 0%, #4cb23b 100%);
  color: #fff;
}
.ny31-tabs .tab-item.active span {
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 1600px) {
  .ny31-tabs {
    margin-bottom: 30px;
  }
  .ny31-tabs .tab-item {
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 100px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .ny31-tabs {
    margin-bottom: 15px;
  }
  .ny31-tabs .tab-item {
    width: 48%;
    font-size: 14px;
    padding: 10px 13px;
    border-radius: 50px;
    margin-right: 4%;
    text-align: center;
  }
  .ny31-tabs .tab-item:nth-child(2n) {
    margin-right: 0;
  }
}
/* ==================== 内页31 - 通用tabs End ==================== */
/* ==================== 通用拼图验证 Start ==================== */
.puzzle-verify {
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.puzzle-verify.active {
  opacity: 1;
  visibility: visible;
}
.puzzle-verify .bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  background: #000000;
  opacity: 0.5;
  width: 100%;
  height: 100vh;
}
.puzzle-verify .slidercaptcha {
  width: 590px;
  border-radius: 10px;
  font-size: 16px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 30vh;
  z-index: 1001;
  padding: 0 0 10px;
  background: #ffffff;
  overflow: hidden;
}
.puzzle-verify .fa-arrow-right:before {
  content: "➔";
  text-align: center;
  color: #222222;
  font-style: inherit;
}
.puzzle-verify .fa-redo:before {
  content: "刷新";
  color: #000000;
  background: #ffffff;
  border-radius: 5px;
  padding: 0 5px;
  font-weight: lighter;
  font-size: 12px;
  line-height: 2;
  height: 24px;
}
.puzzle-verify .sliderContainer_active .sliderIcon:before {
  color: #ffffff;
}
.puzzle-verify .sliderContainer_success .sliderIcon:before {
  content: "√";
  color: #ffffff;
}
.puzzle-verify .sliderContainer_fail .sliderIcon:before {
  content: "X";
  color: #ffffff;
}
.puzzle-verify .slidercaptcha .card-header {
  background: #eeeeee;
  font-weight: bold;
  line-height: 50px;
  padding: 0 20px;
  box-sizing: border-box;
}
.puzzle-verify .slidercaptcha .card-body {
  padding: 20px;
  box-sizing: border-box;
}
.puzzle-verify .refreshIcon {
  right: 10px;
  top: 10px;
  font-size: 14px;
  color: #888;
  padding: 4px 8px;
  display: block;
  background-color: #fff;
  margin: 0;
  border-radius: 100px;
}
.puzzle-verify .refreshIcon:before {
  background: none;
  padding: 0;
  font-size: inherit;
}
.puzzle-verify .slider:hover {
  background-color: #4cb848;
}
.puzzle-verify .slider:hover .fa-arrow-right:before {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .puzzle-verify .slidercaptcha {
    width: 90%;
    border-radius: 5px;
    font-size: 14px;
    padding: 0 0 10px;
  }
  .puzzle-verify .fa-redo:before {
    border-radius: 5px;
    padding: 0 5px;
    font-size: 12px;
    height: 12px;
  }
  .puzzle-verify .slidercaptcha .card-header {
    line-height: 40px;
    padding: 0 10px;
  }
  .puzzle-verify .slidercaptcha .card-body {
    padding: 10px;
  }
  .puzzle-verify .refreshIcon {
    right: 10px;
    top: 10px;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 50px;
  }
}
/* ==================== 通用拼图验证 End ==================== */
/* ==================== 通用收货地址弹窗 Start ==================== */
.address-popup .ny31-title {
  padding-bottom: 2.188vw;
  border-bottom: 1px solid #edeeee;
  margin-bottom: 2.5vw;
}
.address-popup .fixed-item {
  background-color: #fcfcfc;
  border-radius: 0.625vw;
  border: dashed 1px #e0e0e0;
  padding: 0.938vw 1.25vw;
  font-size: 1vw;
  color: #b2b2b2;
  line-height: 1.4;
  width: 100%;
}
.address-popup .u-row2 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.address-popup .u-row2 .form-item {
  width: 49%;
}
.address-popup .form-item {
  width: 100%;
  border-radius: 0.625vw;
  border: solid 1px #e0e0e0;
  padding-left: 1.125vw;
  padding-right: 1.125vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.875vw;
}
.address-popup .form-item .label {
  font-size: 1vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #b2b2b2;
  white-space: nowrap;
  margin-right: 2%;
}
.address-popup .form-item .label span {
  margin-left: 0.313vw;
  color: #ff0000;
}
.address-popup .form-item input {
  border: 0;
  height: 3.125vw;
  font-size: 1vw;
}
.address-popup .form-item input:focus {
  box-shadow: none;
}
.address-popup .form-item-select .label {
  width: auto;
}
.address-popup .form-item-select .layui-form-select dl dd.layui-this {
  color: #4cb848;
}
.address-popup .form-item-select .layui-form-select dl {
  top: 3.25vw;
  font-size: 1vw;
}
.address-popup .form-item-select input {
  font-size: 1vw;
}
.address-popup .form-select {
  width: 100%;
}
.address-popup .form-item-checkbox {
  margin-top: 2%;
}
.address-popup .form-item-checkbox .layui-form-checked[lay-skin="primary"] > i {
  background-color: #4cb848;
  border-color: #4cb848;
}
.address-popup button {
  padding: 0.75vw 1.875vw;
  background-color: #4cb848;
  border-radius: 6.25vw;
  color: #fff;
  font-size: 1vw;
  margin-top: 3.125vw;
}
@media screen and (min-width: 1600px) {
  .address-popup .ny31-title {
    padding-bottom: 35px;
    margin-bottom: 40px;
  }
  .address-popup .fixed-item {
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
  }
  .address-popup .form-item {
    border-radius: 10px;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 30px;
  }
  .address-popup .form-item .label {
    font-size: 16px;
  }
  .address-popup .form-item .label span {
    margin-left: 5px;
  }
  .address-popup .form-item input {
    height: 50px;
    font-size: 16px;
  }
  .address-popup .form-item-select .layui-form-select dl {
    top: 52px;
    font-size: 16px;
  }
  .address-popup .form-item-select input {
    font-size: 16px;
  }
  .address-popup button {
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 16px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .address-popup .ny31-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .address-popup .fixed-item {
    border-radius: 5px;
    padding: 8px 14px;
    font-size: 14px;
  }
  .address-popup .u-row2 .form-item {
    width: 100%;
  }
  .address-popup .form-item {
    border-radius: 5px;
    padding-left: 14px;
    padding-right: 14px;
    margin-top: 15px;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .address-popup .form-item .label {
    font-size: 14px;
  }
  .address-popup .form-item .label span {
    margin-left: 5px;
  }
  .address-popup .form-item input {
    padding-left: 0;
    padding-right: 0;
    height: 40px;
    font-size: 14px;
  }
  .address-popup .form-item-select {
    display: block;
    padding-top: 10px;
  }
  .address-popup .form-item-select input {
    padding-left: 0;
    font-size: 14px;
  }
  .address-popup .form-item-select .layui-form-select dl {
    top: 46px;
    font-size: 14px;
  }
  .address-popup button {
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    margin-top: 20px;
    width: 100%;
  }
}
/* ==================== 通用收货地址弹窗 End ==================== */
.address-popup .select {
  height: 50px;
  width: 100%;
  line-height: 1.3;
  line-height: 50px\9;
  border-width: 1px;
  border-style: solid;
  background-color: #fff;
  color: #666;
  border-radius: 2px;
  border: none;
}
