@charset "utf-8";

* {
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}

body {
  line-height: 1;
  font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  /* 解决安卓手机按钮点击出现蓝色背景*/
  /* 适配齐刘海*/
  padding-top: constant(safe-area-inset-top);
  /* 适配底部黑条*/
  padding-bottom: constant(safe-area-inset-bottom);
}

body,
html {
  -webkit-overflow-scrolling: touch;
}

::-webkit-scrollbar {
  display: none;
  /* 隐藏微信浏览器滚动条 */
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  font-family: "微软雅黑";
}

fieldset,
img {
  border: 0;
}

ul,
ol,
li {
  list-style: none;
  font-family: 'Microsoft YaHei';
}

/* remember to define focus styles! */
input:focus {
  outline: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
  font-style: normal;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  background-color: #fff;
  border: none;
}

code,
kbd,
samp,
tt {
  font-size: 100%;
}

a {
  text-decoration: none;
  color: unset;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input,
button,
textarea {
  *font-size: 100%;
}

ol,
ul {
  list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  padding: 0;
}

caption,
th {
  text-align: left;
}

sup,
sub {
  font-size: 100%;
  vertical-align: baseline;
}

/* remember to highlight anchors and inserts somehow! */
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* common */
body,html{
	background: #f3f6f8;color: #333;font-size: 14px;
}

.footer{
  height: 360px;
}
.header{
  height: 197px;
}

.header,.footer{
	width: 100%;overflow: hidden;
}
.container{
	width: 1200px;position: relative;
	margin: 0 auto;
}
.disNone{
  display: none !important;
}

.nowrap{
	white-space: nowrap;overflow: hidden;text-overflow: ellipsis;
}

.crumbsBox{
	padding: 30px 0 14px;display: flex;color: #999999;line-height: 14px;
}
.crumbsBox .crumb{
	margin-right: 4px;
}
.crumbsBox .crumb::after{
	font-family: swiper-icons;
	content:"next";
	font-size: 10px;
	margin-left: 10px;
	font-weight: bold;
}
.crumbsBox .crumb:first-child::after,
.crumbsBox .crumb:last-child::after{
	display: none;
}
.crumbsBox .crumb:last-child{
	color: #333333;
}
.crumbsBox .crumb:nth-last-child(2)::after{
	color: #333333;
}

.priceBox{
	display: flex;align-items: flex-end;color: #F44122;font-size: 18px;font-weight: bold;
}
.priceBox::before{
	content: "￥";font-size: 14px;font-weight: 400;
}
.banner{
	min-width: 1200px;
	width: 100%;
	display: block;
	margin: 0 auto;
}

.lineTxt1{
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.lineTxt2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.sidebarBox{
    position: fixed;top: 50%;transform: translate(0,-50%);z-index: 2;right: 50px;
    width: 75px;height: 295px;background: url(../img/sidebar.png) center/cover no-repeat;display: flex;flex-direction: column;align-items: center;padding-top: 70px;color: #666666;
}
.sidebarItem{
	width: 60px;height: 70px;display: flex;align-items: center;justify-content: center;font-size: 12px;flex-direction: column;
}
.sidebarIcon{
	width: 26px;margin-bottom: 7px;
}

.pageLoadTipsBox{
	display: flex;align-items: center;justify-content: center;
	padding: 30px 0 95px;text-align: center;color: #999999;
}
.pageLoadTipsBox .loading{
	border: 2px solid #999999;border-top: 2px solid transparent;width: 20px;height: 20px;animation: spin 2s linear infinite;border-radius: 50%;margin-right: 10px;
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}