.bread-crumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: 0.5rem;
  border-bottom: 1px solid #C0C0C0;
  background: #F2F4F8;
}

.bread-crumb--inner {
  display: -ms-flexbox;
  display: flex;
  width: 14.4rem;
  margin: 0 auto;
  line-height: 0.5rem;
}

.bread-crumb__item {
  color: #676767;
  font-size: 0.14rem;
  font-weight: 400;
  white-space: nowrap;
}

.bread-crumb__link {
  font-size: 0.14rem;
}

.bread-crumb__link,
.bread-crumb__divider {
  font-family: PingFangSC-Regular, PingFang SC;
  color: #676767;
  font-weight: 300;
}

.bread-crumb__divider {
  margin-left: 0.08rem;
  margin-right: 0.08rem;
}

.bread-crumb__item:last-child {
  color: #000;
}

.bread-crumb__link:hover {
  color: #0032B4;
}

@media screen and (max-width: 768px) {
  .bread-crumb--inner {
    width: 100%;
  }

  .bread-crumb {
    min-height: 0.6rem;
    padding: 0 .32rem;
  }

  .bread-crumb__item,
  .bread-crumb__link,
  .bread-crumb__divider {
    font-size: .24rem;
  }

  .bread-crumb__item:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.big-picture {
  position: relative;
  overflow: hidden;
  background: #000;
}

.big-picture-pc {
  display: block;
  width: 100%;
  position: relative;
}

.big-picture-content {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.big-picture-content-text {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-pack: center;
      justify-content: center;
}

.big-picture-content-title {
  width: 14.4rem;
  font-size: .42rem;
  font-weight: 600;
  color: #FFF;
  line-height: .58rem;
}

.big-picture-content-desc {
  width: 8rem;
  margin-top: .14rem;
  font-size: .16rem;
  line-height: .28rem;
  color: #D8D8D8;
  font-weight: 400;
  overflow: hidden;
}

.big-picture-content-link {
  display: block;
  -ms-flex-align: center;
      align-items: center;
  width: 1.8rem;
  height: 0.4rem;
  margin-top: 0.2rem;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.16rem;
  font-weight: 400;
  text-align: center;
  line-height: 0.4rem;
}

@media screen and (max-width: 768px) {
  .big-picture,
  .big-picture-pc,
  .big-picture-content {
    width: 100%;
    height: 3.4rem;
  }

  .big-picture-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }

  .big-picture-content-text {
    -ms-flex: 1;
        flex: 1;
    -ms-flex-pack: start;
        justify-content: flex-start;
    padding: .8rem .32rem 0;
  }

  .big-picture-content-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 7.09rem;
    font-size: .5rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: .7rem;
  }

  .big-picture-content-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 7.09rem;
    margin-top: .2rem;
    font-size: .3rem;
    line-height: .42rem;
    color: #d8d8d8;
  }

  .pattern-flow .big-picture-content {
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  .pattern-flow.big-picture,
  .pattern-flow .big-picture-pc,
  .pattern-flow .big-picture-content {
    height: auto;
  }

  .pattern-flow .big-picture-content-text {
    padding: 0.3rem 0.32rem 0.47rem;
  }

  .big-picture-content-title {
    font-size: 0.54rem;
    line-height: 0.75rem;
  }

  .big-picture-content-link {
    width: 2.9rem;
    height: 0.84rem;
    margin-top: 0.4rem;
    font-size: 0.3rem;
    line-height: 0.84rem;
  }
}
.notify{
	position: fixed;
	width: 400px;
	padding: 15px;
	z-index: 1000001;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	transition: all .4s ease-in-out;
}
.notify > button.close{
	position: absolute;
	top: 8px;
	right: 12px;
	-webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
	float: right;
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
	outline: none;
}
.notify > button.close:hover{
	filter: alpha(opacity=50);
    opacity: .5;
}
.notify-dismissible .message{
	padding-right: 25px;
}

/** animation type **/
.notify.scale{
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
}
.notify.left.drop{
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
}
.notify.center.drop{
	-webkit-transform: translateY(-120%);
	transform: translateY(-120%);
	opacity: 0;
}
.notify.right.drop{
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	opacity: 0;
}
.notify.middle.center.drop{
	-webkit-transform: translateY(-20%);
	transform: translateY(-20%);
	opacity: 0;
}
.notify.bottom.center.drop{
	-webkit-transform: translateY(120%);
	transform: translateY(120%);
	opacity: 0;
}
.notify.fade{
	opacity: 0;
}
.notify.out{
	opacity: 0;
}

/** notify type **/
.notify-default{
	background-color: #fff;
	color: #333;
	box-shadow: 0 3px 10px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.notify-info{
	color: #31708f;
	background-color: #d9edf7;
}
.notify-toast{
	color: #fff;
	background-color: rgba(0,0,0,0.75);
}
.notify-danger{
	color: #a94442;
	background-color: #f2dede;
}
.notify-warning{
	color: #8a6d3b;
	background-color: #fcf8e3;
}
.notify-success{
	color: #3c763d;
	background-color: #dff0d8;
}

/** position **/
.notify.top{
	top: 15px;
}
.notify.middle{
	top: 50%;
}
.notify.bottom{
	bottom: 15px;
}
.notify.left{
	left: 15px;
}
.notify.center{
	left: 50%;
	margin-left: -200px;
}
.notify.right{
	right: 15px;
}

/** buttons **/
.notify-buttons{
	width: 100%;
	margin-top: 10px;
}
.notify-buttons.left{
	text-align: left;
}
.notify-buttons.center{
	text-align: center;
}
.notify-buttons.right{
	text-align: right;
}
.notify-buttons > button{
	border: 1px solid #ddd;
	padding: 4px 10px;
	background: #fff;
	color: #333;
	cursor: pointer;
	outline: none;
}
.notify-buttons > button:hover{
	background: #eee;
}
.notify-buttons > button:first-child{
	margin-right: 5px;
}

/** util **/
.notify-backdrop{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 9998;
	background-color: #000;
	opacity: 0;
	transition: opacity .4s ease-in-out;
}
body.notify-open{
	overflow: hidden;
}
body.notify-open-drop{
	overflow-x: hidden;
}

@media all and (max-width:768px){
	.notify{
		width: 100%;
		left: 0!important;
		margin: 0!important;
		border-radius: 0;
		-webkit-border-radius: 0;
	}
	.notify.top{
		top: 0!important;
	}
	.notify.bottom{
		bottom: 0!important;
	}
	.notify.middle{
		width: 80%!important;
		margin-left: 10%!important;
		border-radius: 4px;
		-webkit-border-radius: 4px;
	}
	.notify.left.drop, .notify.right.drop{
		-webkit-transform: translateY(-120%);
		transform: translateY(-120%);
	}
	.notify.bottom.drop{
		-webkit-transform: translateY(120%);
		transform: translateY(120%);
		opacity: 0;
	}
}
.search__hd {
  margin-bottom: 0.3rem;
}

.search__title {
  margin-bottom: 0.16rem;
  font-size: 0.24rem;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  color: #1D1D1D;
  line-height: 0.33rem;
}

.search__desc {
  font-size: 0.18rem;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  color: #434548;
  line-height: 0.25rem;
}

.search__bd {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 0.5rem;
  background: #FFFFFF;
}

.search__input {
  box-sizing: border-box;
  -ms-flex: 1;
      flex: 1;
  height: 0.5rem;
  border: 1px solid #C0C0C0;
  padding: 0.15rem 0.2rem;
}

.search__btn {
  width: 0.96rem;
  height: 0.5rem;
  border: none;
  background-color: #0F1319;
  font-size: 0.14rem;
  color: #fff;
  cursor: pointer;
}

.support--container {
  padding-top: 0.5rem;
  padding-bottom: 1.2rem;
}

.product--container {
  display: -ms-flexbox;
  display: flex;
}

.category-toc--container {
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
  left: 0;
  margin-bottom: auto;
  min-width: 2.06rem;
}

.category-toc__title {
  margin-bottom: 0.22rem;
  font-size: 0.24rem;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  color: #1D1D1D;
  line-height: 0.33rem;
}

.category-toc__items {
  border-left: 1px solid #D8D8D8;
}

.category-toc__item {
  font-size: 0.16rem;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  line-height: 0.46rem;
}

.category-toc__item .active {
  position: relative;
}

.category-toc__item .active::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: 0.03rem;
  height: 100%;
  background-color: #0032B4;
  content: '';
}

.category-toc__item .active {
  color: #0032B4;
  font-weight: 600;
}

.category-toc__item a {
  display: block;
  padding-left: 0.3rem;
  color: #1D1D1D;
  white-space: nowrap;
}

.category-toc__item a:hover {
  color: #0032B4;
}

.product__items {
  -ms-flex: 1;
      flex: 1;
}

.product-category__item:not(:last-child) {
  margin-bottom: 0.5rem;
}

.product-category__hd {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 0.28rem;
}

.toggle-btn {
  display: none;
}

.product-category__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex: 1;
      flex: 1;
  font-size: 0.24rem;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  color: #1D1D1D;
  line-height: 0.33rem;
}

.product-category__icon {
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.16rem;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
}

.product-category__icon.item-title1 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/6496242db5dc2e396dec6d25893c14b6.svg');
}

.product-category__icon.item-title2 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/25dcd71bcf62e5e280ef24ad892350f9.svg');
}

.product-category__icon.item-title3 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/c97f9c8040e184ebb276cb5b94b9800c.svg');
}

.product-category__icon.item-title4 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/9b5c87f34f7650fa324ee4e41e8171ef.svg');
}

.product-category__icon.item-title5 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/bbde01f8bf06e5038ae45696d377c9ec.svg');
}

.product-category__icon.item-title6 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/9d4f7fb558eaa4615236295fd93ec885.svg');
}

.product-category__icon.item-title7 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/3cde9526b7c92db53314d8b4adb053c3.svg');
}

.product-category__icon.item-title8 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/269caa5922acfda8d416534b475fc392.svg');
}

.product-category__icon.item-title9 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/bbe2c0feb3bf9758bd005276ef76cfbe.svg');
}

.product-category__icon.item-title10 {
  background-image: url('https://static01-www.qianxin.com/qaxweb/50878cc2d74101d73739b5f17ad7abfa.svg');
}

.sub-category__item--container {
  padding: 0.3rem 0.6rem;
  border: 1px solid #DEDEDE;
}

.sub-category__item--container:not(:last-child) {
  margin-bottom: 0.16rem;
}

.sub-category__title {
  margin-bottom: 0.14rem;
  font-size: 0.18rem;
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  color: #1D1D1D;
  line-height: 0.25rem;
}

.sub-category__product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 0 0.6rem;
  gap: 0 0.6rem;
}

.product__item {
  width: calc((100% - 1.2rem) / 3);
  font-size: 0.16rem;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  color: #4E4E4E;
  line-height: 0.36rem;
}

.product__item:hover {
  color: #1842B3;
}

@media screen and (max-width: 768px) {
  .search__title,
  .search__desc,
  .search__hd {
    display: none;
  }

  .search__bd {
    height: 0.94rem;
  }

  .search__input {
    height: 0.94rem;
    padding: 0.27rem 0.32rem;
    border-width: 0;
    border-bottom: 1px solid #CBCBCB;
    background-color: #F2F4F8;
    font-size: 0.28rem;
  }

  .search__btn {
    width: 1.6rem;
    height: 0.94rem;
    font-size: 0.28rem;
  }

  .category-toc--container {
    display: none;
  }

  .product-category__item {
    border-bottom: 1px solid rgba(151, 151, 151, 0.5);
  }

  .product-category__hd {
    height: 1.12rem;
    margin-bottom: 0;
    padding-right: 0.32rem;
    padding-left: 0.32rem;
  }

  .product-category__item:not(:last-child) {
    margin-bottom: 0;
  }

  .sub-category--container {
    padding: 0.6rem 0.32rem;
    background: #F2F4F8;
  }

  .sub-category__item--container {
    padding: 0.4rem 0.3rem 0.3rem;
    background-color: #fff;
  }

  .sub-category__item--container:not(:last-child) {
    margin-bottom: 0.4rem;
  }

  .product-category__hd ~ .sub-category--container {
    display: none;
  }

  .product-category__hd.active ~ .sub-category--container {
    display: block;
  }

  .product-category__title {
    font-size: 0.34rem;
    line-height: 0.48rem;
    font-weight: 400;
  }

  .product-category__icon {
    width: 0.56rem;
    height: 0.56rem;
    margin-right: 0.4rem;
  }

  .toggle-btn {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 0.26rem;
    height: 0.14rem;
    background: url('https://static01-www.qianxin.com/qaxweb/02527f8677321c6d16924b87ebc75f0d.png') no-repeat 0 0;
    background-size: contain;
  }

  .product-category__hd.active .toggle-btn {
    background: url('https://static01-www.qianxin.com/qaxweb/951e6327e6f1211be7fdb1abe1b004d7.png') no-repeat 0 0;
    background-size: contain;
  }

  .sub-category__item--container {
    border: none;
  }

  .sub-category__title {
    margin-bottom: 0.18rem;
    font-size: 0.3rem;
    line-height: 0.42rem;
  }

  .sub-category__product {
    display: block;
  }

  .product__item {
    display: block;
    width: 100%;
    font-size: 0.3rem;
    line-height: 0.54rem;
  }
}
.empty-tips {
  color: #4E4E4E;
  line-height: .36rem;
  text-align: center;
}

.empty-tips__hd {
  font-size: .2rem;
  margin-bottom: 0.35rem;
}

.empty-tips__hd-desc strong {
  color: #FFA400;
  font-weight: 400;
}

.empty-tips__bd {
  font-size: 0.18rem;
}

.empty-tips__navs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.empty-tips__navs a {
  color: #1842B3;
}

.empty-tips__navs a:hover {
  text-decoration: underline;
}

.empty-tips__navs a+a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
}

.empty-tips__navs a+a::before {
  width: 1px;
  height: 0.18rem;
  overflow: hidden;
  margin-left: 0.16rem;
  margin-right: 0.16rem;
  background-color: #000;
  content: '';
}

@media screen and (max-width: 768px) {
  .empty-tips {
    margin-top: 0.6rem;
    line-height: 0.48rem;
  }

  .empty-tips__hd {
    font-size: 0.3rem;
  }

  .empty-tips img {
    width: 3.68rem;
  }

  .empty-tips__hd-desc {
    white-space: nowrap;
  }

  .empty-tips__bd {
    font-size: 0.28rem;
  }

  .empty-tips__navs a+a::before {
    height: 0.24rem;
    margin-left: 0.24rem;
    margin-right: 0.24rem;
  }
}

.search-result {
  padding-top: 0.5rem;
}

.search--outer {
  margin-bottom: 0.7rem;
  padding: 0.35rem 1.03rem;
  background-color: #F2F4F8;
}

.search-result__container {
  margin-bottom: 0.94rem;
}

.search-result__total {
  font-size: 0.24rem;
  line-height: 0.33rem;
  font-weight: 600;
}

.search-result__total strong {
  color: #0032B4;
}

.search-result__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 0 0.6rem;
  gap: 0 0.6rem;
  margin-top: 0.7rem;
}

.search-result__item {
  width: calc((100% - 1.2rem) / 3);
  color: #4E4E4E;
  font-size: 0.16rem;
  line-height: 0.36rem;
}

.search-result__item .highlighted {
  color: #FFA400;
  font-weight: 400;
}

.search-result__item:hover {
  color: #0032B4;
}

@media screen and (max-width: 768px) {
  .search-result {
    padding-top: 0;
  }

  .search--outer {
    margin-bottom: 0.6rem;
    padding: 0;
  }

  .search-result__container {
    margin-bottom: 1.2rem;
    padding-right: 0.32rem;
    padding-left: 0.32rem;
  }

  .search-result__total {
    font-size: 0.4rem;
    line-height: 0.56rem;
  }

  .search-result__items {
    display: block;
    margin-top: 0.6rem;
  }

  .search-result__item {
    display: block;
    width: 100%;
    font-size: 0.3rem;
    line-height: 0.62rem;
  }
}

