.loginPanel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 310px;
  height: 100%;
  max-height: 360px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
}
.loginPanel > * {
  width: 70%;
  height: 33px;
  margin-top: 28px;
}
.loginPanel > span {
  font-size: 12px;
  margin-top: 3px;
  color: #B69C9C;
}
.loginPanel .phoneNumber {
  padding-left: 5px;
  border: 1px solid #4F4F4F;
  border-radius: 3px;
}
.loginPanel .verCode {
  position: relative;
  margin-top: 8px;
}
.loginPanel .verCode input {
  width: 100%;
  height: 100%;
  padding-left: 5px;
  border: 1px solid #4F4F4F;
  border-radius: 3px;
}
.loginPanel .verCode button {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-1px);
  display: block;
  width: 41%;
  height: calc(100% - 2px);
  background-color: #EFEFEF;
  border: 0;
  border-left: 1px solid #4F4F4F;
  margin-top: 1px;
  cursor: pointer;
}
.loginPanel .verCode button:hover {
  color: #30318B;
}
.loginPanel .closeButton {
  width: 24px;
  height: 25px;
  line-height: 25px;
  font-size: 16px;
  align-self: flex-end;
  background-color: #EFEFEF;
  margin-right: 22px;
  text-align: center;
  border: 1px solid #4F4F4F;
  border-radius: 3px;
  margin-top: -30px;
  margin-bottom: 13px;
  cursor: pointer;
}
.loginPanel .loginSubmit {
  border: 1px solid #4F4F4F;
  border-radius: 3px;
  background-color: #EFEFEF;
  margin-top: 33px;
  cursor: pointer;
}
.loginPanel .loginSubmit:hover {
  color: #30318B;
}
.loginPanel .agreement {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  margin-top: 0;
}
.loginPanel .agreement input {
  cursor: pointer;
}
.loginPanel .agreement span {
  margin-left: 10px;
}
.loginPanel .agreement a {
  color: #0000EE;
}
.backgroundBlind {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
}
.noticeFrame {
  width: 500px;
  height: 300px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -250px;
  border: 1px solid #000;
  border-radius: 10px;
  box-shadow: 4px 4px 15px #bbb7b7;
  background-color: #fff;
}
.noticeFrame div {
  margin-top: 91px;
  font-weight: 500;
  font-size: 21px;
  color: red;
}
.noticeFrame button {
  width: 160px;
  height: 47px;
  margin-top: 21px;
  margin-right: 5px;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 100%;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 40px;
    margin: 20px auto;
    position: relative;
  }
  .logo {
    display: none;
  }
  .nav {
    /* 头部导航 */
    display: none;
    width: 150px;
    position: absolute;
    z-index: 1;
    top: 38px;
    background-color: #fff;
  }
  .nav li {
    border-bottom: 1px solid;
  }
  .nav li:last-child {
    border-bottom: 0;
  }
  .nav a {
    display: block;
    height: 40px;
    padding: 0 12px;
    line-height: 40px;
    font-size: 16px;
    color: #050505;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .nav:hover {
    display: block;
  }
  .cartSmall {
    width: 15%;
    height: 36px;
    line-height: 36px;
    text-align: center;
    float: left;
    margin: 0 1%;
    margin-top: 2px;
  }
  .cartSmall svg {
    width: 100%;
    height: 100%;
  }
  .cartTag {
    position: absolute;
    left: 28vw;
    top: -7px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .navButton {
    float: left;
    width: 18%;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
  }
  .navButton div {
    width: 80%;
    height: 29px;
    border-top: 4px solid #30318B;
    border-bottom: 4px solid #30318B;
    margin: 7px auto 0;
  }
  .navButton .navButtonCenter {
    width: 100%;
    height: 4px;
    background-color: #30318B;
    margin-top: 9px;
    border: 0;
  }
  .topSearch {
    float: right;
    width: 65%;
    height: 40px;
  }
  .topSearch input {
    float: left;
    width: calc(100% - 36px);
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 414px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    display: none;
  }
  .footDiv .footImgLi {
    display: block;
    width: 50%;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
    margin: 35px auto 0;
  }
  .footDiv .footImgLi img {
    width: 100%;
  }
  .copyRight {
    display: none;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
    margin-top: 50px;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
  }
}
@media screen and (min-width: 576px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 560px;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 40px;
    margin: 20px auto;
    position: relative;
  }
  .logo {
    float: left;
  }
  .logo img {
    height: 31px;
    margin: 5px auto;
  }
  .nav {
    /* 头部导航 */
    display: none;
    width: 150px;
    position: absolute;
    z-index: 1;
    top: 38px;
    background-color: #fff;
  }
  .nav li {
    border-bottom: 1px solid;
  }
  .nav li:last-child {
    border-bottom: 0;
  }
  .nav a {
    display: block;
    height: 40px;
    padding: 0 12px;
    line-height: 40px;
    font-size: 16px;
    color: #050505;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .nav:hover {
    display: block;
  }
  .cartSmall {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    float: left;
    margin-top: 2px;
    margin-right: 14px;
  }
  .cartSmall svg {
    width: 100%;
    height: 100%;
  }
  .cartTag {
    position: absolute;
    left: 102px;
    top: -6px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .navButton {
    float: left;
    width: 10%;
    height: 40px;
    margin-right: 17px;
    border-radius: 4px;
    cursor: pointer;
  }
  .navButton div {
    width: 100%;
    height: 29px;
    border-top: 4px solid #30318B;
    border-bottom: 4px solid #30318B;
    margin: 7px auto 0;
  }
  .navButton .navButtonCenter {
    width: 100%;
    height: 4px;
    background-color: #30318B;
    margin-top: 9px;
    border: 0;
  }
  .topSearch {
    float: right;
    width: 225px;
    height: 40px;
    margin-left: 12px;
  }
  .topSearch input {
    float: left;
    width: calc(100% - 36px);
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 414px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    display: none;
  }
  .footDiv .footImgLi {
    display: block;
    margin: 36px auto 0 170px;
    width: 228px;
    height: 228px;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
  }
  .footDiv .footImgLi img {
    width: 100%;
    height: 100%;
  }
  .copyRight {
    display: none;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
    margin-top: 50px;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 750px;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 40px;
    margin: 20px auto;
    position: relative;
  }
  .logo {
    float: left;
  }
  .logo img {
    height: 36px;
    margin: 2px auto;
  }
  .cartSmall {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    float: left;
    margin-top: 2px;
    margin-right: 14px;
  }
  .cartSmall svg {
    width: 100%;
    height: 100%;
  }
  .cartTag {
    position: absolute;
    left: 125px;
    top: -6px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .nav {
    /* 头部导航 */
    display: none;
    width: 150px;
    position: absolute;
    z-index: 1;
    top: 38px;
    background-color: #fff;
  }
  .nav a {
    display: block;
    height: 40px;
    padding: 0 12px;
    line-height: 40px;
    font-size: 16px;
    color: #050505;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .nav li {
    border-bottom: 1px solid;
  }
  .nav li:last-child {
    border-bottom: 0;
  }
  .nav:hover {
    display: block;
  }
  .navButton {
    float: left;
    width: 10%;
    height: 40px;
    margin-right: 21px;
    border-radius: 4px;
    cursor: pointer;
  }
  .navButton div {
    width: 100%;
    height: 29px;
    border-top: 4px solid #30318B;
    border-bottom: 4px solid #30318B;
    margin: 7px auto 0;
  }
  .navButton .navButtonCenter {
    width: 100%;
    height: 4px;
    background-color: #30318B;
    margin-top: 9px;
    border: 0;
  }
  .topSearch {
    float: right;
    width: 361px;
    height: 40px;
    margin-top: 2px;
  }
  .topSearch input {
    float: left;
    width: calc(100% - 36px);
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 367px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    display: unset;
    float: left;
    margin-right: 50px;
    margin-top: 35px;
  }
  .footDiv li a {
    display: block;
    color: #837a7a;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .footDiv li a:hover {
    color: #D82019;
  }
  .footDiv li .footTitle {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
  }
  .footDiv .footImgLi {
    float: right;
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
    margin: 35px auto;
  }
  .footDiv .footImgLi img {
    width: 100%;
    height: 100%;
  }
  .copyRight {
    display: block;
    margin: 50px 0 10px;
    color: #837a7a;
    text-align: center;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 960px;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 40px;
    margin: 20px auto;
    position: relative;
  }
  .header .navButton {
    display: none;
  }
  .logo {
    float: left;
  }
  .logo img {
    height: 28px;
    margin: 6px auto;
  }
  .cartSmall {
    display: none;
  }
  .nav {
    /* 头部导航 */
    display: block;
    float: left;
    margin-left: 10px;
    position: unset;
    width: unset;
    top: unset;
    background-color: unset;
    z-index: unset;
  }
  .nav li {
    float: left;
    border-bottom: unset;
  }
  .nav a {
    display: block;
    height: 40px;
    padding: 0 12px;
    line-height: 40px;
    font-size: 16px;
    color: #050505;
  }
  .nav a svg {
    margin-top: 15px;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .cartTag {
    position: absolute;
    left: 681px;
    top: -2px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .topSearch {
    float: right;
    width: 157px;
    height: 40px;
  }
  .topSearch input {
    float: left;
    width: calc(100% - 36px);
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
    margin: 2px auto;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    margin: 2px auto;
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 367px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    float: left;
    margin-right: 70px;
    margin-top: 50px;
  }
  .footDiv li a {
    display: block;
    color: #837a7a;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .footDiv li a:hover {
    color: #D82019;
  }
  .footDiv li .footTitle {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
  }
  .footDiv .footImgLi {
    float: right;
    width: 120px;
    height: 120px;
    margin-right: 0;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
  }
  .footDiv .footImgLi img {
    width: 100%;
    height: 100%;
  }
  .copyRight {
    text-align: center;
    margin: 50px 0 10px;
    color: #837a7a;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 1200px;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 50px;
    margin: 25px auto;
    position: relative;
  }
  .header .navButton {
    display: none;
  }
  .logo {
    float: left;
  }
  .logo img {
    height: 38px;
    margin: 5px auto;
  }
  .cartSmall {
    display: none;
  }
  .nav {
    /* 头部导航 */
    display: block;
    float: left;
    margin-left: 37px;
  }
  .nav li {
    float: left;
  }
  .nav a {
    display: block;
    height: 50px;
    padding: 0 15px;
    line-height: 50px;
    font-size: 16px;
    color: #050505;
  }
  .nav a svg {
    margin-top: 15px;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .cartTag {
    position: absolute;
    left: 812px;
    top: 3px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .topSearch {
    float: right;
    width: 247px;
    height: 50px;
  }
  .topSearch input {
    float: left;
    width: 200px;
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
    margin: 8px auto;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    margin: 8px auto;
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 367px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    float: left;
    margin-right: 80px;
    margin-top: 50px;
  }
  .footDiv li a {
    display: block;
    color: #837a7a;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .footDiv li a:hover {
    color: #D82019;
  }
  .footDiv li .footTitle {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
  }
  .footDiv .footImgLi {
    float: right;
    width: 120px;
    height: 120px;
    margin-right: 0;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
  }
  .footDiv .footImgLi img {
    width: 100%;
    height: 100%;
  }
  .copyRight {
    text-align: center;
    margin: 50px 0 10px;
    color: #837a7a;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
    height: 100%;
  }
}
.pagePath {
  height: 35px;
  background-color: #ecebf0;
  margin-bottom: 20px;
}
.pagePath div {
  line-height: 35px;
  font-size: 14px;
}
.pagePath div a {
  color: #515152;
}
.productTop::after {
  /* 伪元素清除浮动 */
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.mainImg {
  float: left;
  width: 450px;
  height: 450px;
}
.mainImg img {
  width: 100%;
  height: 100%;
}
.topRight {
  float: left;
  width: 750px;
}
.topRight h1 {
  margin-left: 20px;
}
.price {
  margin-left: 50px;
  margin-top: 40px;
  color: #FF5000;
  font-size: 20px;
  font-weight: 600;
}
.price span:first-child {
  font-size: 14px;
  color: #4F4F4F;
}
.transport {
  margin-left: 50px;
  margin-top: 40px;
  font-size: 12px;
}
.transport::after {
  content: "";
  display: block;
  clear: both;
}
.littleTitle {
  height: 24px;
  line-height: 24px;
  float: left;
  color: #737374;
  margin-right: 8px;
}
.areaSelect {
  float: left;
  position: relative;
  width: 220px;
  height: 24px;
  line-height: 24px;
  border: 1px solid #000;
}
.areaSelect::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
}
.areaSelect span {
  padding-left: 6px;
}
.areaSelect .selectPanel {
  display: none;
  position: absolute;
  top: 23px;
  left: 0;
  width: 440px;
  height: 340px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
}
.areaSelect .selectPanel .default {
  display: flex;
  cursor: pointer;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 2px;
}
.areaSelect .selectPanel .default:hover {
  color: red;
}
.areaSelect .selectPanel .default div {
  margin-left: 10px;
  margin-top: 6px;
}
.areaSelect .selectPanel .chooseNew .chooseNew_label {
  margin: 4px 0 4px 6px;
}
.areaSelect .selectPanel .chooseNew .tags {
  display: flex;
}
.areaSelect .selectPanel .chooseNew .tags div {
  border: 1px solid #E6E6E6;
  margin-left: 6px;
  padding-left: 6px;
  padding-right: 25px;
  cursor: pointer;
  position: relative;
}
.areaSelect .selectPanel .chooseNew .tags div::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  rotate: 45deg;
  position: absolute;
  top: 6px;
  right: 7px;
}
.areaSelect .selectPanel .chooseNew .tabs div {
  display: flex;
  flex-wrap: wrap;
}
.areaSelect .selectPanel .chooseNew .tabs div span {
  width: 78px;
  color: #0d6efd;
  padding: 4px 0px;
  cursor: pointer;
  text-align: center;
}
.areaSelect .selectPanel .chooseNew .tabs div span:hover {
  color: red;
}
.transportPrice {
  margin-top: 10px;
  font-size: 12px;
  margin-left: 50px;
}
.sku {
  width: 100%;
  margin-left: 50px;
  margin-top: 25px;
}
.sku ul {
  display: flex;
  flex-wrap: wrap;
}
.sku ul li {
  height: 28px;
  line-height: 26px;
  font-size: 14px;
  text-align: center;
  max-width: 220px;
  padding: 0 6px;
  border: 1px solid #4F4F4F;
  border-radius: 3px;
  margin-right: 12px;
  margin-top: 14px;
  cursor: pointer;
}
.sku ul li:hover {
  color: #30318B;
  border-color: #30318B;
}
.addHole {
  display: flex;
  margin-top: 50px;
  margin-left: 50px;
}
.addHole .addQuantity {
  display: flex;
  width: 60px;
  height: 52px;
  border: 1px solid #4F4F4F;
}
.addHole .addQuantity input {
  width: 45px;
  height: 100%;
  border: 0;
  text-align: center;
  border-right: 1px solid #4F4F4F;
}
.addHole .addQuantity > div {
  display: flex;
  flex-direction: column;
  width: 15px;
  height: 100%;
}
.addHole .addQuantity > div div {
  width: 100%;
  height: 50%;
  text-align: center;
  background-color: #EFEFEF;
  cursor: pointer;
}
.addHole .addQuantity > div div:first-child {
  border-bottom: 1px solid #4F4F4F;
}
.addHole .addToCart {
  width: 157px;
  height: 52px;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  background-color: #30318B;
  border: 0;
  margin-left: 5px;
  cursor: pointer;
}
.flyCart {
  position: fixed;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background-color: #30318B;
  transition: top 0.5s, left 0.5s;
}
.productBottom {
  margin-top: 20px;
}
.bottomTitle {
  height: 35px;
  line-height: 35px;
  padding-left: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #515152;
  background-color: #ECEBF0;
}
.productBottom img {
  max-width: 790px;
  vertical-align: bottom;
}
@media screen and (max-width: 575px) {
  .pagePath {
    text-align: center;
    height: 45px;
  }
  .pagePath div {
    line-height: 45px;
    font-size: 18px;
  }
  .mainImg {
    float: unset;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .mainImg img {
    width: 100%;
  }
  .topRight {
    float: unset;
    width: 100%;
  }
  .price {
    margin-left: 12px;
  }
  .transport {
    margin-left: 12px;
  }
  .transportPrice {
    margin-left: 12px;
  }
  .sku {
    margin-left: 12px;
  }
  .addHole {
    margin-left: 12px;
  }
  .productBottom img {
    max-width: 100%;
  }
  .bottomTitle {
    height: 45px;
    font-size: 16px;
    line-height: 45px;
    padding-left: 0;
    text-align: center;
  }
}
@media screen and (min-width: 576px) {
  .pagePath {
    text-align: center;
    height: 45px;
  }
  .pagePath div {
    line-height: 45px;
    font-size: 18px;
  }
  .mainImg {
    float: unset;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .mainImg img {
    width: 100%;
  }
  .topRight {
    float: unset;
    width: 100%;
  }
  .price {
    margin-left: 12px;
  }
  .transport {
    margin-left: 12px;
  }
  .transportPrice {
    margin-left: 12px;
  }
  .sku {
    margin-left: 12px;
  }
  .addHole {
    margin-left: 12px;
  }
  .productBottom img {
    max-width: 100%;
  }
  .bottomTitle {
    height: 45px;
    font-size: 16px;
    line-height: 45px;
    padding-left: 0;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .pagePath {
    text-align: unset;
    height: 35px;
  }
  .pagePath div {
    line-height: 35px;
    font-size: 14px;
  }
  .mainImg {
    float: left;
    width: 390px;
    margin: unset;
  }
  .mainImg img {
    width: 100%;
    height: unset;
  }
  .topRight {
    float: left;
    width: 350px;
  }
  .price {
    margin-left: 50px;
  }
  .transport {
    margin-left: 50px;
  }
  .transportPrice {
    margin-left: 50px;
  }
  .sku {
    margin-left: 50px;
  }
  .addHole {
    margin-left: 50px;
  }
  .productBottom img {
    max-width: 750px;
  }
  .bottomTitle {
    height: 35px;
    font-size: 14px;
    line-height: 35px;
    padding-left: 10px;
    text-align: unset;
  }
}
@media screen and (min-width: 992px) {
  .mainImg {
    width: 450px;
  }
  .topRight {
    width: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .topRight {
    width: 740px;
  }
}
/*# sourceMappingURL=product.css.map */