#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
#header.on {
  background: rgba(0, 0, 0, 0.8);
}
#header .cont {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo {
  width: 150px;
}
#header .menus {
  display: flex;
}
#header .menus .a {
  display: block;
  width: 93px;
  height: 75px;
  cursor: pointer;
  color: #fff;
  line-height: 75px;
  margin: 0 20px;
  text-align: center;
}
#header .right {
  color: #fff;
  position: relative;
  padding: 18px 37px;
  border-radius: 5px;
  cursor: pointer;
}
#header .right .num {
  width: 16px;
  height: 16px;
  background: #d9534f;
  display: block;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  position: absolute;
  left: 44px;
  top: 11px;
  display: none;
}
#header .right .text {
  display: none;
}
#header .right.on {
  background: #fff;
  color: #CC6E1F;
}
#header .slider {
  width: 100%;
  position: absolute;
  display: none;
  padding: 50px 0;
  justify-content: center;
  background-color: transparent;
  background-image: radial-gradient(at center center, #FFFFFF 0%, #D9D9D8 80%);
}
#header .slider.on {
  display: flex;
}
#header .slider img {
  width: 134px;
  height: 200px;
  margin-right: 100px;
}
#header .slider .item {
  width: 285px;
}
#header .slider .item .t {
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 29px;
  color: #000;
  margin-bottom: 20px;
}
#header .slider .item a {
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  line-height: 27px;
  color: #FF994A;
  display: block;
}
#cartSliderBox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all 0.5s;
}
#cartSliderBox.on {
  right: 0;
}
#cartSliderBox .cartSilder {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  max-width: 350px;
  background: #fff;
  position: relative;
  box-sizing: border-box;
  padding: 50px 20px;
}
#cartSliderBox .cartSilder .close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  color: #000;
}
#cartSliderBox .cartSilder .item {
  box-sizing: border-box;
  padding-right: 30px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}
#cartSliderBox .cartSilder .item .top {
  position: relative;
  display: flex;
}
#cartSliderBox .cartSilder .item .top .del {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  font-size: 26px;
}
#cartSliderBox .cartSilder .item .top img {
  width: 70px;
  margin-right: 20px;
}
#cartSliderBox .cartSilder .item .top .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
}
#cartSliderBox .cartSilder .item .top .info .t {
  font-size: 14px;
}
#cartSliderBox .cartSilder .subTotal {
  padding: 0px 0 20px;
  border-bottom: 1px solid #000;
  text-align: center;
  margin-bottom: 20px;
}
#cartSliderBox .cartSilder .subTotal strong {
  margin-right: 10px;
}
#cartSliderBox .cartSilder .btns {
  display: flex;
  justify-content: space-between;
}
#cartSliderBox .cartSilder .btns .btn {
  width: 48%;
  line-height: 41px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
}
#cartSliderBox .cartSilder .btns .btn:hover {
  opacity: 0.8;
}
#mHeader {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
}
#mHeader .cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 10px 0;
}
#mHeader .cont .menu {
  width: 50px;
}
#mHeader .cont .logo img {
  height: 70px;
}
#mHeader .cont .right {
  color: #fff;
  position: relative;
  padding: 10px 20px;
  border-radius: 5px;
}
#mHeader .cont .right .num {
  width: 16px;
  height: 16px;
  background: #d9534f;
  display: block;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  position: absolute;
  left: 28px;
  top: 6px;
  display: none;
}
#mHeader .cont .right .text {
  display: none;
}
#mHeader .cont .right.on {
  background: #fff;
  color: #CC6E1F;
}
#menuSliderBox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  display: flex;
  background: rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all 0.5s;
}
#menuSliderBox.on {
  left: 0;
}
#menuSliderBox .menuSlider {
  max-width: 350px;
  box-sizing: border-box;
  padding: 0 20px;
  background: #000;
  height: 100%;
  width: 100%;
}
#menuSliderBox .menuSlider .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
#menuSliderBox .menuSlider .top .logo {
  width: 120px;
}
#menuSliderBox .menuSlider .top .close {
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
#menuSliderBox .menuSlider .a {
  line-height: 40px;
  color: #fff;
  display: block;
  cursor: pointer;
}
#banner .swiper-slide {
  padding: 85px 0;
}
#banner .swiper-button-next:after,
#banner .swiper-button-prev:after {
  display: none;
}
#banner .swiper-button-prev,
#banner .swiper-button-next {
  color: #fff;
  font-size: 40px;
}
#banner .bg1 {
  background-image: url(../img/banner1.webp);
  background-position: center center;
  background-size: cover;
}
#banner .bg2 {
  background-image: url(../img/banner2.webp);
  background-position: top center;
  background-size: cover;
}
#banner .bg3 {
  background-image: url(../img/banner3.webp);
  background-position: bottom center;
  background-size: cover;
}
#banner .bg4 {
  background-image: url(../img/banner4.webp);
  background-position: center center;
  background-size: cover;
}
#banner .cont {
  display: flex;
}
#banner .cont .img {
  width: 415px;
}
#banner .cont .img img {
  width: 280px;
}
#banner .cont .info {
  flex: 1;
  padding-right: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#banner .cont .info .t {
  color: #fff;
  font-family: 'dharma-gothic-e', Sans-serif;
  font-size: 93px;
  font-weight: 400;
  line-height: 84px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.54);
}
#banner .cont .info .b {
  margin: 20px 0;
  color: #FFFFFF;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 38px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
#banner .cont .info .btn {
  text-align: left;
}
#banner .cont .info .btn a {
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #000000;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #000000;
  padding: 12px 30px 12px 30px;
  border-radius: 10px;
  display: inline-block;
}
#bannerImg {
  position: relative;
}
#bannerImg img {
  width: 100%;
}
#bannerImg.bg1 {
  background: url(../img/ourBanner.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
#bannerImg.bg2 {
  background: url(../img/customBanner.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#bannerImg.bg3 {
  background-image: url(../img/contactBananer.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
#bannerImg.bg4 {
  background-image: url(../img/productBanner.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
#bannerImg .cont {
  height: 380px;
  display: flex;
  align-items: flex-end;
}
#bannerImg .cont p {
  color: #FFFFFF;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 93px;
  font-weight: 600;
  line-height: 84px;
  margin-bottom: 20px;
}
#indexBottom .bg1 {
  height: 588px;
  background-image: url(../img/plants.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
#indexBottom .bg2 {
  height: 588px;
  background-image: url(../img/banner1.webp);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}
#indexBottom .bg3 {
  height: 588px;
  background-image: url(../img/banner3.webp);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
}
#indexBottom .bg4 {
  height: 588px;
  background-image: url(../img/woman.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
#indexBottom .item1 {
  padding: 280px 120px 100px 120px;
}
#indexBottom .item1 .t {
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 20px;
}
#indexBottom .item1 .b {
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
}
#indexBottom .item2 {
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 20px;
}
#indexBottom .item2 .textShadow {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.69);
}
#indexBottom .item2 .img {
  width: 40%;
}
#indexBottom .item2 .info {
  color: #fff;
  flex: 1;
}
#indexBottom .item2 .info .p {
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 20px;
}
#indexBottom .item2 .info .t {
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 57px;
  font-weight: 600;
  line-height: 51px;
  margin-bottom: 20px;
}
#indexBottom .item2 .info .b {
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
#indexBottom .item2 .info a {
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #000000;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #000000;
  border-radius: 8px 8px 8px 8px;
  padding: 12px 30px 12px 30px;
}
#indexBottom2 {
  background: url(../img/majestic.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  position: relative;
}
#indexBottom2 .shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
#indexBottom2 .col-6 {
  position: relative;
}
#indexBottom2 .item {
  color: #fff;
  padding: 70px 120px 70px 120px;
}
#indexBottom2 .item img {
  width: 90px;
}
#indexBottom2 .item p.t {
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 40px;
  margin: 20px 0;
}
#indexBottom2 .item p.b {
  color: #FFFFFF;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
}
#footer {
  background: #262626;
}
#footer .top {
  padding: 50px 20px 50px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .top img {
  width: 215px;
}
#footer .top .text {
  color: #ffffff;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 49px;
}
#footer .top .text span {
  color: #CC6E1F;
}
#footer .center {
  padding: 25px 25px 50px 25px;
}
#footer .center a {
  display: block;
  color: #fff;
  line-height: 35px;
  font-size: 15px;
}
#footer .bottom {
  border-top: 1px solid #000000;
  padding: 25px 20px 25px 20px;
  color: #555555;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
#footer .botText {
  text-align: center;
  padding: 25px 20px 25px 20px;
  color: #fff;
  font-size: 12px;
}
#ourStory {
  margin: 40px 0;
}
#ourStory p.t {
  color: #131313;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 20px;
}
#ourStory p.b {
  color: #131313;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 20px;
}
#ourStory .bottom {
  margin-top: 40px;
}
#ourStory .bottom .img1 {
  text-align: center;
  margin-bottom: 20px;
}
#ourStory .bottom .img1 img {
  width: 224px;
}
#ourStory .bottom .tt {
  margin-bottom: 4px;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 28px;
}
#ourStory .bottom .bb {
  text-align: center;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  color: #000;
}
#ourStory .bottom .imgs {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
#ourStory .bottom .imgs img {
  width: 100px;
  height: 100px;
  margin: 0 50px;
}
#customer {
  padding: 40px 0;
}
#customer .box {
  width: 90%;
  max-width: 560px;
  margin: 0 auto;
}
#customer .box .t {
  color: #131313;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 61px;
  font-weight: 600;
  line-height: 55px;
}
#customer .box .b {
  color: #131313;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  margin: 30px 0;
}
#customer .box input {
  height: 45px;
  border: 1px solid #dddddd;
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0 10px;
  margin-top: 10px;
}
#customer .box .lbtn {
  display: inline-block;
  color: #FFFFFF;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  background-color: #13BD75;
  padding: 12px 30px 12px 30px;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 40px;
}
#contact {
  padding: 20px 0 50px;
}
#contact .cont {
  display: flex;
  justify-content: space-between;
}
#contact .left {
  width: 40%;
}
#contact .left .top {
  border-bottom: 2px solid #BEC0BC;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
#contact .left .top .t {
  color: #131313;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 20px;
}
#contact .left .top .b {
  color: #131313;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 61px;
  font-weight: 600;
  line-height: 55px;
  margin-bottom: 20px;
}
#contact .left .top a {
  color: #FF994A;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-decoration: underline;
  line-height: 34px;
}
#contact .left .bottom .t {
  color: #131313;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 20px;
}
#contact .left .bottom .tit {
  color: #131313;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 61px;
  font-weight: 600;
  line-height: 55px;
  margin-bottom: 20px;
}
#contact .left .bottom .item .q {
  margin: 0;
  padding: 15px 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  outline: none;
  position: relative;
}
#contact .left .bottom .item .q img {
  position: absolute;
  right: 0;
  width: 15px;
}
#contact .left .bottom .item .a {
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  padding: 15px 20px;
  display: none;
}
#contact .right {
  width: 50%;
}
#contact .right iframe {
  width: 100%;
  height: 300px;
}
#contact .right .t {
  color: #131313;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 20px;
  margin-top: 50px;
}
#contact .right .b {
  color: #131313;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
}
#product {
  display: flex;
  flex-wrap: wrap;
}
#product .bg1 {
  background: #35C692 url(../img/goodBg1.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg2 {
  background: #9BC443 url(../img/goodBg2.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg3 {
  background: #FF751C url(../img/goodBg3.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg4 {
  background: #3054B9 url(../img/goodBg4.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg5 {
  background: #D8BD8B url(../img/goodBg5.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg6 {
  background: #F75634 url(../img/goodBg6.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg7 {
  background: #6695F5 url(../img/goodBg7.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg8 {
  background: #35A6D3 url(../img/goodBg8.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg9 {
  background: #A1735E url(../img/goodBg1.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg10 {
  background: #1C8C9F url(../img/goodBg10.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg11 {
  background: #5441CE url(../img/goodBg11.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg12 {
  background: #FC524C url(../img/goodBg8.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg13 {
  background: #01A3B3 url(../img/goodBg11.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg14 {
  background: #E6A4C3 url(../img/goodBg14.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg15 {
  background: #7A9BBF url(../img/goodBg15.webp);
  background-position: 450px 0px;
  background-repeat: no-repeat;
}
#product .bg16 {
  background: url(../img/goodBg.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center!important;
}
#product .goodItem {
  width: 50%;
  padding: 80px 20px 80px 20px;
  display: flex;
}
#product .goodItem .img {
  width: 40%;
}
#product .goodItem .info {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#product .goodItem .info p.p {
  color: #FFFFFF;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 20px;
}
#product .goodItem .info p.t {
  color: #FFFFFF;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 57px;
  font-weight: 600;
  line-height: 51px;
  margin-bottom: 20px;
}
#product .goodItem .info p.d {
  color: #FFFFFF;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
#product .goodItem .info a.btn {
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  display: block;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #000000;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #000000;
  border-radius: 8px 8px 8px 8px;
  padding: 12px 0px 12px 0px;
  width: 157px;
  text-align: center;
}
#product .goodItem .info a.btn:hover {
  opacity: 0.8;
}
#goodsDetail .top {
  background: #139552;
  padding: 116px 0 80px;
}
#goodsDetail .content {
  display: flex;
}
#goodsDetail .content .left .swiper-button-next:after,
#goodsDetail .content .left .swiper-button-prev:after {
  display: none;
}
#goodsDetail .content .left .swiper-button-prev,
#goodsDetail .content .left .swiper-button-next {
  color: #fff;
  font-size: 40px;
}
#goodsDetail .content .left img {
  width: 100%;
}
#goodsDetail .content .right p.t {
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 20px;
  color: #000000;
}
#goodsDetail .content .right .goodsNanme {
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 62px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 55px;
  margin-bottom: 20px;
}
#goodsDetail .content .right .variant {
  overflow: hidden;
  margin-top: 20px;
}
#goodsDetail .content .right .variant a {
  float: left;
  border: 1px solid #556260;
  color: #556260;
  padding: 10px 15px;
  border-radius: 4px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: block;
  font-size: 16px;
}
#goodsDetail .content .right .variant a.on {
  background: #556260;
  color: #fff;
}
#goodsDetail .content .right .subscripte {
  margin-top: 20px;
  overflow: hidden;
  color: #556260;
}
#goodsDetail .content .right .subscripte .item {
  display: flex;
  align-items: flex-start;
  padding: 10px 20px;
  position: relative;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
}
#goodsDetail .content .right .subscripte .item .info select {
  width: 100%;
  border: none;
  padding: 5px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  margin-left: -10px;
}
#goodsDetail .content .right .subscripte .item input {
  width: 20px;
  height: 20px;
}
#goodsDetail .content .right .subscripte .item label {
  margin-left: 20px;
  display: block;
  font-size: 18px;
  flex: 1;
  margin-bottom: 0px;
  position: relative;
}
#goodsDetail .content .right .subscripte .item label .sPrice {
  position: absolute;
  right: 15px;
  top: 0px;
  font-size: 20px;
}
#goodsDetail .content .right .subscripte .item label .sPrice del {
  color: #ccc;
  margin-left: 10px;
}
#goodsDetail .content .right .subscripte .month {
  background: #e5e5e5;
  border-radius: 20px;
  margin-bottom: 15px;
}
#goodsDetail .content .right .number {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: space-between;
}
#goodsDetail .content .right .number .numOpero {
  width: 160px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #ccc;
}
#goodsDetail .content .right .number .numOpero i {
  font-size: 20px;
  cursor: pointer;
}
#goodsDetail .content .right .number .numOpero input {
  font-size: 20px;
  flex: 1;
  width: 80px;
  border: none;
  outline: none;
  text-align: center;
}
#goodsDetail .content .right .number .btns {
  display: flex;
  flex: 1;
}
#goodsDetail .content .right .number .addBtn {
  border: 1px solid #000;
  color: #000;
  line-height: 50px;
  text-align: center;
  flex: 1;
  border-radius: 25px;
  cursor: pointer;
  font-size: 20px;
  margin-right: 20px;
}
#goodsDetail .content .right .number .addBtn:hover {
  background: #000;
  color: #fff;
  margin-right: 20px;
}
#goodsDetail .content .right .number .buyBtn {
  background: #000;
  color: #fff;
  line-height: 50px;
  text-align: center;
  flex: 1;
  border-radius: 25px;
  cursor: pointer;
  font-size: 20px;
}
#goodsDetail .content .right .number .buyBtn:hover {
  box-shadow: 0 0 10px 3px #000;
}
#goodsDetail .content .right .freeTit {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  color: #556260;
}
#goodsDetail .content .right .freeRules {
  margin-bottom: 20px;
}
#goodsDetail .content .right .freeRules .item {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  margin-top: 10px;
  font-weight: 400;
}
#goodsDetail .content .right .freeRules .item img {
  width: 100px;
  margin-right: 20px;
}
#goodsDetail .content .right .freeRules .item .in {
  flex: 1;
  box-sizing: border-box;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
#goodsDetail .content .right .freeRules .item .in .name {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}
#goodsDetail .content .right .freeRules .item .in .b {
  font-size: 18px;
}
#goodsDetail .content .right .price {
  margin-bottom: 20px;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 40px;
}
#goodsDetail .content .right .text {
  color: #000000;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}
#goodsDetail .content .right .inputBox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
#goodsDetail .content .right .inputBox input {
  background-color: #f7f7fb;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #eeeef5;
  border-radius: 3px 3px 3px 3px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
  padding: 9px 0px 9px 0px;
  outline: none;
  width: 100px;
  height: 47px;
  text-align: center;
}
#goodsDetail .content .right .inputBox .btn {
  display: inline-block;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 23px;
  margin-left: 20px;
  color: #ffffff;
  background-color: #000000;
  border-style: solid;
  border-color: #000000;
  border-radius: 3px 3px 3px 3px;
  padding: 12px 30px 12px 30px;
}
#goodBottom #faq {
  font-family: 'SF Pro Display', sans-serif;
  line-height: 2;
}
#goodBottomImg {
  display: flex;
}
#goodBottomImg img {
  display: block;
  width: 33.333%;
}
#promise .top {
  border-bottom: 1px solid #000;
  padding: 40px 0;
}
#promise .top .tit {
  color: #131313;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 61px;
  font-weight: 600;
  line-height: 55px;
  margin-bottom: 20px;
}
#promise .top .b {
  color: #131313;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}
#promise .text {
  padding: 40px 0;
}
#promise .text .tit {
  color: #131313;
  font-family: "dharma-gothic-e", Sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 20px;
}
#promise .text p.b {
  color: #131313;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 1em;
}
#promise .text p.li {
  color: #131313;
  font-family: "neue-haas-unica", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  padding-left: 15px;
  position: relative;
}
#promise .text p.li::before {
  content: "•";
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0px;
}
