@charset "utf-8";

/* CSS Document */

html,
body,
div,
span,
object,
embed,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
cite,
code,
del,
dfn,
em,
img,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
article {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: none;
}

ul,
li,
ol {
  list-style: none;
}

i,
em,
cite,
dfn {
  font-style: normal;
}

.clearfix:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}

.clearfix {
  *display: inline-block;
  *zoom: 100%;
}

.clear {
  clear: both;
  line-height: 1px;
  height: 1px;
  *display: inline;
  font-size: 1px;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.alignL {
  text-align: left;
}

.alignC {
  text-align: center;
}

.alignR {
  text-align: right;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.none {
  display: none;
}

.block {
  display: block;
}

.overf {
  overflow: hidden;
}

.center {
  margin: 0 auto;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.trs3 {
  transition: all 0.3s;
}

:focus,
a {
  outline: none;
  outline-style: none;
  -moz-outline-style: none;
}

a:visited,
a:link {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
  color: #525152;
}

a:hover {
  text-decoration: none;
}

ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: calc(100vw / 25.6);
}

/* @font-face {
    font-family: 'sy-hei';
    src: url('../font/SourceHanSansCN-Normal.otf') format('truetype');
}

@font-face {
    font-family: 'sy-song';
    src: url('../font/SourceHanSerifCN-Medium.otf') format('truetype');
} */

/* 
--f23:calc(23px * var(--scale));
--f26:calc(26px * var(--scale));
--f28:calc(28px * var(--scale));
--f30:calc(30px * var(--scale));
--f36:calc(36px * var(--scale));
--f42:calc(42px * var(--scale));
--f45:calc(45px * var(--scale));
--f70:calc(70px * var(--scale));
*/

:root {
  --scale: 1;
  --f-sy: '思源宋体 CN Medium', '思源宋体cn', '宋体';
  --f-syh: '思源黑体 CN Normal', 'Microsoft YaHei';
  --f18: 0.18rem;
  --f21: 0.21rem;
  --f23: 0.23rem;
  --f25: 0.25rem;
  --f26: 0.26rem;
  --f28: 0.28rem;
  --f30: 0.3rem;
  --f32: 0.32rem;
  --f33: 0.33rem;
  --f36: 0.36rem;
  --f38: 0.38rem;
  --f40: 0.4rem;
  --f42: 0.42rem;
  --f45: 0.45rem;
  --f48: 0.48rem;
  --f52: 0.52rem;
  --f60: 0.6rem;
  --f70: 0.7rem;
  --size: calc(100vw / 750);
  --s1: calc(100vw / 750);
}

body {
  font: 16px/1.5 '思源黑体 CN Normal', 'sy-hei', 'Microsoft YaHei', '\5FAE\8F6F\96C5\9ED1', tahoma, Arial;
  color: #525152;
  background: #eeeeee;
}

@media screen and (max-width: 960px) {
  html {
    font-size: calc(960px / 25.6);
  }
}

@media screen and (max-width: 750px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}





.mb12 {
  margin-bottom: 1.2rem;
}

/*滚动条*/

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f7f7f7;
}

::-webkit-scrollbar-thumb {
  background: #4e4e4e;
}

/* 弹窗 */

.alert-bg {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}

.pop {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
  border: 1px solid rgba(0, 0, 0, 0);
}

.pop .inPop {
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.pop .close {
  width: 23px;
  height: 23px;
  display: block;
  background: url(../images/nav-icon-mob.png) no-repeat -29px 0;
  background-size: 108px;
  margin-left: 10px;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.fadeIn.paused {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fade {
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*分页*/

#pageNavi {
  text-align: center;
}

#pageNavi span,
#pageNavi a {
  color: #936e67;
  padding: 4px 9px;
  margin: 0 4px;
  border-radius: 2px;
  background: #010101;
  display: inline-block;
  line-height: 1.2;
}

#pageNavi .current {
  color: #cb2655;
}

/* header */

.header {
  height: 0.7rem;
  background: #90c1e7;
  position: relative;
  z-index: 3;
}

.header .inHeader {
  width: 19.2rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  width: 2.7rem;
  display: block;
}

.header .logo-text {
  display: block;
  color: #fff;
  font-size: var(--f28);
}

.header .aside,
.header .aside ul {
  display: flex;
}

.header .aside ul li {
  display: inline-block;
  font-size: 0;
  position: relative;
}

.header .aside .icon {
  margin: 0 0.4rem;
  height: 0.38rem;
  display: inline-block;
  background: url(../images/header-icon.png) no-repeat 0 50%;
  background-size: 2.38rem;
}

.header .aside .line {
  width: 1px;
  background: #fff;
}

.header .aside .use {
  width: 0.27rem;
  background-position: 49%;
}

.header .aside .use-down {
  position: absolute;
  z-index: 1;
  top: 0.55rem;
  left: 0;
  font-size: var(--f23);
  display: none;
  word-break: break-all;
  width: max-content;
  min-width: 100%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.header .aside .use-down dd {
  padding: 0.05rem 0.14rem;
  border: 1px solid #9e9d9e;
  background: #fff;
  border-radius: 0.05rem;
}

.header .aside .use-down dd a {
  color: #525152;
  display: block;
  line-height: 1.8;
  border-bottom: 1px solid #9e9d9e;
}

.header .aside .use-down dd a:last-child {
  border: none;
}

.header .aside .lang {
  display: inline-block;
  font-size: 0.3rem;
  line-height: 0.38rem;
  background-position: 100%;
  color: #fff;
  text-align: center;
  background: none;
  /* margin-right: 0; */
  /* padding-left: .4rem; */
}

.header .aside .srch {
  width: 0.31rem;
}

.header .aside .search {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 5.4rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background: #fff;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: all 0.3s;
  box-sizing: border-box;
  margin-top: -0.25rem;
}

.header .aside .search.close {
  width: 0;
}

.header .search .srch-inpt {
  padding: 0;
  width: 5rem;
  height: 100%;
  color: #525152;
  font-size: var(--f23);
  padding: 0 0.1rem;
  border: none;
}

.header .search .srch-inpt::placeholder {
  color: #cbcacb;
}

.header .search .srch-btn {
  position: absolute;
  right: 0.1rem;
  top: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
  display: inline-block;
  background: url(../images/icon-search.png) no-repeat 0;
  background-size: 100%;
}

.nav .pater-nav {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f-sy);
  font-size: var(--f30);
  position: relative;
}

.pater-nav .logo {
  width: 0.66rem;
  padding: 0 1.25rem;
  box-sizing: content-box;
  display: block;
}

.pater-nav .pater-nav-wrap {
  display: flex;
  width: 19.2rem;
  height: 1.5rem;
}

.pater-nav li {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pater-nav li.logo-li {
  flex: none;
}

.pater-nav li.lang {
  display: none;
  position: relative;
  text-align: left;
}

.pater-nav li.lang::after {
  content: '';
  width: 63px;
  background: #d3d3d4;
  height: 1px;
  position: absolute;
  top: 9px;
  left: 30px;
}

.pater-nav li.lang a {
  display: inline-block;
  width: auto;
}

.pater-nav li a {
  color: #525152;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pater-nav li.active > a {
  border-bottom: 1px solid #9fa0a0;
}

.pater-nav li.downNav.bar {
  background: url(../images/nav-icon-horn.png) no-repeat 50% 100%;
  background-size: 0.18rem;
}

.child-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: auto;
  text-align: left;
  display: none;
  width: 100%;
  background: #90c1e7;
  line-height: 0.57rem;
  font-size: var(--f23);
  font-family: var(--f-syh);
  z-index: 2;
}

.child-nav > dd {
  width: 19.2rem;
  margin: 0 auto;
}

.child-nav .child-head {
  display: none;
}

.pater-nav .child-nav a {
  color: #fff;
  margin: 0 0.35rem;
  transition: color 0.3s;
}

.child-nav a:hover {
  color: #416681;
}

.place {
  margin: 0.3rem 0 0 0.4rem;
  font: var(--f26) var(--f-sy);
}

.place a {
  color: #525152;
}

.footer {
  background: #ffff;
  font-size: 0;
  position: relative;
}

.footer .inFooter {
  width: 19.2rem;
  height: 3.68rem;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0.36rem;
}

.footer .logo {
  width: 6.01rem;
}

.footer .aside {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .aside > a {
  margin-left: 0.48rem;
  width: 0.4rem;
  height: 0.36rem;
  background: url(../images/footer-icon.png) no-repeat 0;
  background-size: 3.56rem;
  flex: none;
}

.footer .aside > a:nth-of-type(1) {
  background-position: 0;
}

.footer .aside > a:nth-of-type(2) {
  background-position: -1.06rem;
}

.footer .aside > a:nth-of-type(3) {
  background-position: -2.12rem;
}

.footer .aside > a:nth-of-type(4) {
  background-position: 100%;
}

.footer .aside > a:nth-of-type(5) {
  background: url(../images/icon-search.png) no-repeat;
  background-size: contain;
}

.footer .copy {
  line-height: 1;
  font-size: 0.26rem;
  display: inline-block;
}

.footer .copy a {
  color: #416681;
  text-decoration: underline;
}

.footer .foot-left {
  display: flex;
  justify-content: space-between;
  flex: auto;
  align-items: end;
  color: #000;
  line-height: 1;
  font-size: 0.32rem;
}

.footer.private .inFooter {
  align-items: center;
  height: 2rem;
}

.footer.private .foot-left {
  align-items: center;
}

@media screen and (max-width: 1365px) {
  .header {
    height: 38px;
  }
  .header .logo {
    width: 175px;
  }
  .header .logo-text {
    font-size: var(--f30);
  }
  .header .aside .icon {
    margin: 0 22px;
    height: 20px;
    line-height: 20px;
    background-size: 130px;
  }
  .header .aside .use,
  .header .aside .srch {
    width: 17px;
  }
  .header .aside .search {
    right: 56px;
    width: 300px;
    height: 28px;
    border-radius: 28px;
    margin-top: -14px;
  }
  .header .search .srch-inpt {
    width: 280px;
    padding: 5px;
  }
  .header .search .srch-btn {
    right: 5px;
    top: 5px;
    width: 15px;
    height: 15px;
  }
  .header .aside .use-down {
    top: 31px;
    text-align: center;
    font-size: 14px;
  }
  .header .aside .use-down dd {
    padding: 3px 7px;
  }
  .header .aside .use-down dd a {
    font-size: 14px;
  }
  .pater-nav .pater-nav-wrap {
    height: 80px;
    font-size: 16px;
  }
  .child-nav {
    line-height: 40px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1080px) {
  .pater-nav .pater-nav-wrap {
    font-size: 14px;
  }
}

@media screen and (max-width: 750px) {
  .pop-search .search {
    position: relative;
    width: 100%;
    height: 44px;
    border-radius: 5px;
    background: #fff;
    z-index: 1;
    display: block;
    overflow: hidden;
    transition: all 0.3s;
    box-sizing: border-box;
    border: 1px solid #000;
  }
  .pop-search .search .srch-inpt {
    padding: 0;
    width: 100%;
    height: 100%;
    color: #525152;
    font-size: 14px;
    padding-right: 45px;
    padding-left: 10px;
    border: none;
  }
  .pop-search .search .srch-inpt::placeholder {
    color: #cbcacb;
  }
  .pop-search .search .srch-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 42px;
    height: 42px;
    display: inline-block;
    background: url(../images/icon-search.png) no-repeat 9px 50%;
    background-size: 20px;
  }
  .header {
    height: 30px;
  }
  .header .inHeader {
    width: auto;
    padding: 0 30px;
  }
  .header .logo {
    width: 130px;
  }
  .header .logo-text {
    font-size: var(--f28);
  }
  .header .aside {
    display: none;
  }
  .nav {
    position: relative;
    height: 80px;
    background: #fff;
    padding: 0 30px;
  }
  .nav-head {
    display: block;
    height: 100%;
  }
  .nav-head .icon-nav {
    background: url(../images/nav-icon-mob.png) no-repeat 0;
    background-size: 129px;
  }
  .nav-head .btn-cart-nav {
    width: 26px;
    height: 30px;
    display: block;
  }
  .nav-head .btn-cart-nav.close {
    background-position: -35px 0;
  }
  .nav-head .logo {
    width: 35px;
  }
  .nav-head > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    vertical-align: middle;
    font-size: 0;
    text-align: center;
    height: 100%;
  }
  .nav-head li {
    width: 33.333%;
  }
  .nav-head .aside {
    text-align: right;
  }
  .nav-head .aside > a {
    display: inline-block;
    width: 24px;
    height: 30px;
  }
  .nav-head .aside .use {
    background-position: -71px;
    margin-right: 30px;
  }
  .nav-head .aside .srch {
    background-position: -107px;
  }
  .nav .nav-cont {
    position: absolute;
    top: 80px;
    left: 0;
    background-color: #fff;
    display: none;
    overflow: hidden;
    width: 100%;
    z-index: 2;
  }
  .nav .pater-nav {
    display: block;
    transition: all 0.4s cubic-bezier(0.29, 0.63, 0.44, 1);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translateZ(0);
  }
  .pater-nav li {
    justify-content: left;
  }
  .pater-nav li.lang {
    display: block;
    padding-top: 12px;
  }
  .pater-nav .logo-li {
    display: none;
  }
  .nav .pater-nav-wrap {
    display: block;
    width: auto;
    height: auto;
  }
  .nav .pater-nav-wrap.openChild {
    transform: translate3d(-100%, 0px, 0px);
  }
  .nav .pater-nav-wrap a {
    display: block;
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
  }
  .pater-nav li.downNav:hover {
    background: none;
  }
  .pater-nav li.downNav > a {
    position: relative;
  }
  .pater-nav li.downNav > a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 22px;
    height: 100%;
    width: 8px;
    pointer-events: none;
    background: url(../images/nav-arr-left.png) no-repeat 0 center;
    background-size: 100%;
  }
  .pater-nav li.active a {
    border: none;
  }
  .nav .child-nav {
    position: absolute;
    background-color: #fff;
    z-index: 2;
    width: 100%;
    top: 0;
    left: 100%;
    display: none;
    padding: 0;
  }
  .nav .child-nav > dd {
    width: 100%;
  }
  .nav .openChild .child-nav {
    display: block;
  }
  .pater-nav .child-nav a {
    color: #525152;
    margin: 0;
    padding-left: 70px;
  }
  .child-nav .child-head {
    position: relative;
    font-weight: bold;
  }
  .child-nav .child-head::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 8px;
    pointer-events: none;
    background: url(../images/nav-arr-right.png) no-repeat 0 center;
    background-size: 100%;
  }
  .nav-foot {
    display: flex;
    align-items: center;
    margin-top: 12px;
    margin-left: 26px;
    margin-bottom: 30px;
  }
  .nav-foot > a {
    margin-right: 30px;
    width: 27px;
    height: 18px;
    background: url(../images/footer-icon.png) no-repeat 0;
    background-size: 189px;
    flex: none;
  }
  .nav-foot > a:nth-of-type(1) {
    background-position: 0;
  }
  .nav-foot > a:nth-of-type(2) {
    background-position: -56px;
  }
  .nav-foot > a:nth-of-type(3) {
    background-position: -112px;
  }
  .nav-foot > a:nth-of-type(4) {
    background-position: 103%;
  }
  .place {
    display: none;
  }
  .footer .inFooter {
    width: auto;
    height: auto;
    flex-direction: column-reverse;
  }
  .footer .foot-left {
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: var(--f26);
  }
  .footer .foot-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #eee;
    padding-bottom: 0.4rem;
  }
  .footer .logo {
    margin-top: 0.9rem;
    width: 4.55rem;
  }
  .footer .aside > a {
    margin: 0 0.24rem;
  }
  .footer .copy {
    margin: 0.5rem 0;
    font-size: 16px;
    transform: scale(0.6);
    line-height: 1.2;
  }
  .footer.private .copy {
    margin: auto;
  }
}

/* ===== 手机端显示面包屑 ===== */
@media screen and (max-width: 750px) {
    .place {
        display: block !important;
        position: static;
        margin: 0.2rem 0.3rem;
        font-size: 14px; /* 👈 手机最稳 */
        line-height: 1.4;
        background: #f5f5f5;
    }
}


