:root {
	--colo: #fff;
}
.deals {
  display: flex;
  justify-content: space-between;
}
.deals .item {
  flex-basis: 30%;
  transition: 0.3s;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1em;
  position: relative;
}
.deals span {
  position: absolute;
  font-size: 1.6rem;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
.deals img {
  width: 100%;
}

.deals .item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
@media (max-width: 1083px) {
  .deals span {
    width: 2rem;
  }
}
@media (max-width: 768px) {
  /*.deals {
    flex-direction: column;
  }*/
  .deals .item{ width: 32%; }
  .deals span{ font-size: .75rem; }
}

.prod_title h2 {
  align-items: center;
  margin: 1em 0;
  padding-left: 15px;
  font-size: 30px;
  font-weight: bold;
  border-left: 3px solid #fbc72e;
  line-height: 1;
  text-transform: uppercase;
}

.prod_one_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 1em;
  border-radius: 10px;
  transition: 0.3s;
  max-height: 520px;
  background-color: white;
  background-size: cover;
  background-position: center;
  padding: 1em;
  box-sizing: border-box;
  transition: 1s;
}
.prod_one_box img {
  transition: 1s;
}

.prod_one_box:hover {
  background-color: #e5e5e5;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-image: none !important;
}
.prod_one_box:hover img {
  opacity: 1;
}

.prod_one_box .pro_name a{ color: white; }
.pro_name a {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
}
.pro_price {
  line-height: 2em;
  font-size: 2em;
  color: #dd0b25;

  font-weight: bold;
}

.pro_price del {
  color: #7d7d7d;
  font-size: 1rem;
  font-weight: 100;
}

.prod_one_box .pro_desc{ color: black; }
.pro_desc {
  font-size: 1.5em;
}

.text-white {
  color: white;
}

.prod_one_box img {
  min-height: 262px;
}

@media (min-width: 1025px) {
  .s59-pro {
    color: black;
  }
  .s59-pro .pro_name a {
	  color: black;
  }
  .s59-pro:hover .pro_name a {
    color: white;
  }
  .s59-pro:hover .pro_desc {
    color: white;
  }
}

@media (max-width: 1024px) {
  .prod_one_box {
    /*flex-direction: column-reverse;*/
    /*background-image: none !important;*/
    text-align: center;
    padding: 2em 0;
    height: auto;
  }
  .prod_one_box img {
    opacity: 1;
    margin-bottom: 1em;
    min-height: unset;
    max-height: 20vh;
  }
}
@media (min-width: 2400px) {
  .prod_one_box {
    height: 500px;
  }
}

.prod_triple {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  text-align: center;
  /*gap: 1em;*/
}

.prod_triple .item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  /*flex: 1;*/
  width: 32%;
}
.prod_triple .item .bg img {
  width: 100%;
  object-fit: cover;
}
.prod_triple .item .bg {
  position: absolute;
  width: 100%;
  height: 30%;
  top: 0;
  left: 0;
  z-index: 1;
}
.prod_triple .item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.prod_triple .item:hover .bg img {
  transform: scale(1.05);
}
.prod_triple .item:hover .prod_img {
  transform: translateY(-2px);
}
.prod_triple .item:hover .prod_info {
  transform: translateY(-2px);
}

.prod_triple img {
  transition: 0.5s;
}
.prod_triple .prod_img {
  margin-top: 30%;
  padding: 1em;
  position: relative;
  z-index: 2;
  transition: 0.5s;
  display: inline-block;
}
.prod_triple .prod_img a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.prod_triple .prod_img img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.prod_triple .prod_img img:first-child {
  position: relative;
  z-index: 3;
}
.prod_triple .prod_img img:nth-child(2) {
  z-index: 2;
}

.prod_triple .prod_img img:last-child {
  z-index: 1;
}

.prod_triple .prod_img:hover img:first-child {
  transform: translateX(20%);
}

.prod_triple .prod_img:hover img:last-child {
  transform: translateX(-20%);
}

.prod_triple .s61_img img:first-child {
  position: relative;
  z-index: 4;
}
.prod_triple .s61_img img:nth-child(2) {
  z-index: 3;
}
.prod_triple .s61_img img:nth-child(3) {
  z-index: 2;
}

.prod_triple .s61_img img:last-child {
  z-index: 1;
}

.prod_triple .s61_img:hover img:first-child {
  transform: translateX(30%);
}
.prod_triple .s61_img:hover img:nth-child(2) {
  transform: translateX(10%);
}
.prod_triple .s61_img:hover img:nth-child(3) {
  transform: translateX(-10%);
}

.prod_triple .s61_img:hover img:last-child {
  transform: translateX(-30%);
}

/* .prod_triple .item:hover .prod_img{
	transform: translateX(20%);
}

.prod_triple .item:hover .prod_img img:nth-child(2){
	transform: translateX(-20%);
}

.prod_triple .item:hover .prod_img img:last-child{
	transform: translateX(-40%);
} */

.prod_triple .prod_info {
  padding: 1em 1em 2em;
  transition: 0.3s;
}

.prod_triple .pro_desc {
  font-size: 1.5em;
}

.prod_triple .pro_color i {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background-color: var(--color);
  margin: 1em 0.5em 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .prod_triple .pro_name a{ font-size: 1.25rem; }
  .prod_triple .pro_desc{ font-size: .75em; }
  .prod_triple .pro_price{ font-size: 1.25em; line-height: 1.25rem; }
  .prod_triple .pro_color i{ width: 1rem; margin: 1em 0.125em 0; }
}
@media (max-width: 600px) {
  /*.prod_triple {
    flex-direction: column;
  }*/
}

.video_box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.video_box .item {
  position: relative;
  border-radius: 10px;
  width: 33.333%;
  overflow: hidden;
}
.video_box .item iframe {
  min-height: 300px;
}
.video_box .item:nth-child(2) {
  margin: 0 1em;
}

.video_box img {
  width: 100%;
}
.video_box .item .box1 {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video_box .item a {
  display: inline-block;
  width: 70px;
  height: 40px;
  border-radius: 40px;
  border: 2px solid white;
  cursor: pointer;
  background-image: url(/static/themes/default/images/index/play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}

.video_box .item a:hover {
  background-color: #198aff;
  border-color: #198aff;
}

@media (max-width: 768px) {
  .video_box {
    /*flex-direction: column;*/
    margin-bottom: 1em;
  }
  .video_box .item {
    margin: 0 0 1em !important;
    width: 32%;
  }
  .video_box .item i{ width: 30px; height: 30px; background-size: 20px; }
}

.sns-box {
  display: flex;
  /*gap: 1em;*/
  flex-wrap: wrap;
  justify-content: space-between;
}

.sns-box .group {
  /*flex: 1;*/
  width: 24%;
}
.sns-box img {
  width: 100%;  
  transition: .5s;
}
.sns-box .item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1em;
}

.sns-box .item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 1em;
  left: 0;
  background-color: black;
  transition: 0.3s;
  cursor: pointer;
  opacity: 0;
  border-radius: 10px;
}
/* .sns-box .item:hover::after {
  opacity: 0.3;
} */
.sns-box .item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  /*.sns-box .group {
    flex: 0 0 calc(50% - 0.5em);
  }*/
}

/***************************宽屏样式(end)***************************/

.review_star span {
  margin-right: 0;
}
/*广告图*/
#banner {
	width: 100%;
	height: 100%;
}
#banner img {
	width: 100%;
}
#banner .carousel-item {
  position: relative;
  height: 100%;
}
#banner .carousel-caption {
	top: 4%;
	max-width: 66rem;
	color: #fff;
	text-align: left;
}
#banner .carousel-caption >*{
	display: block;
}
#banner .carousel-caption h2 {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 1rem;
  line-height: 1;
}
#banner .carousel-caption h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  line-height: 1;
}
#banner .carousel-caption p {
  line-height: 1.5;
  font-size: 16px;
}
@media (min-width:1083px){
  #banner .carousel-caption {
    top: 20%;
  }
  #banner .carousel-caption h2 {
    font-weight: bold;
    font-size: 62px;
    margin-bottom: 1rem;
    line-height: 1;
  }
  #banner .carousel-caption h3 {
    font-size: 32px;
    margin-bottom: 1rem;
    line-height: 1;
  }
  #banner .carousel-caption p {
    line-height: 1.5;
    font-size: 20px;
  }
}

#banner .carousel-indicators {
  margin: auto;
}
#banner .carousel-indicators li {
	width: 4rem; 
}
#banner .carousel-caption a{
	max-width: 136px;
	display: inline-block;
  margin-top: 4rem;
  color: var(--color,#198AFF);   
	padding: 5px .5em;
	transition: .5s;
	border: 2px solid var(--color,#198AFF);
	font-size: 20px;
}
#banner .carousel-caption a:hover{
	background: var(--color,#198AFF);
	color: #fff;
	transform: translateY(-5px);
}
.carousel-control-prev span,
.carousel-control-next span{
	padding: 10%;
	display: none;
}
#banner:hover .carousel-control-prev span ,#banner:hover .carousel-control-next span{
	display: block;
}


#main {
  padding: 46px 0 0;
  background-color: #f3f3f3;
}

#main .pro_left {
  width: 238px;
  margin-right: 22px;
}
#main .pro_left .sidebar:first-child {
  margin-top: 0px;
}
#main .pro_left .ad {
  margin-top: 20px;
}
#main .pro_left .popular_search .view {
  height: 230px;
  overflow: hidden;
}
#main .pro_right {
  width: 720px;
  overflow: hidden;
}
#main .pro_right .ad {
  margin-bottom: 20px;
}

/*产品列表*/
.prod_list {
  margin-bottom: 24px;
}
.prod_list .title {
  height: 36px;
  line-height: 36px;
  text-align: center;
}
.prod_list .title h3 {
  font-size: 30px;
}

.prod_big_box {
  margin-top: 44px;
}
.prod_box {
  width: 482px;
  margin-left: 16px;
  margin-bottom: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.prod_list_sm .prod_box {
  display: unset;
  align-items: unset;
  flex-wrap: unset;
}
.prod_box .prod_box_pic {
  height: 213px;
  box-sizing: border-box;
  border: 0;
  padding: 0 10px;
}
.prod_box .prod_box_pic .thumb_hover {
  width: 160px;
  height: 160px;
}
.prod_box .prod_box_info {
  width: 210px;
  text-align: center;
  margin-top: -20px;
}
.prod_list_sm .prod_box .prod_box_info {
  width: 100%;
  margin-top: 32px;
}
.prod_box .prod_box_inner {
  padding: 0;
}
.prod_box .prod_box_inner .pro_name {
  overflow: hidden;
  line-height: 145%;
}
.prod_box .prod_box_inner .pro_name a {
  font-size: 18px;
  font-weight: bold;
}
.prod_box .prod_box_inner .pro_desc {
  margin-top: 10px;
  font-size: 16px;
}
.prod_box .prod_box_inner .pro_new {
  position: absolute;
  left: 0;
  top: 30px;
  width: 48px;
  height: 18px;
  line-height: 18px;
  background-color: #198aff;
  color: #fff;
  z-index: 999;
}
.prod_list_sm .prod_box .prod_box_inner .pro_desc {
  margin-top: 5px;
}
.prod_box .prod_box_inner .pro_price {
  line-height: 120%;
  font-size: 18px;
  color: #dd0b25;
  margin-top: 10px;
}
.prod_box .prod_box_inner del {
  font-size: 14px;
  color: #777;
  margin-left: 5px;
}
.prod_box .prod_box_inner del .currency_data,
.prod_box .prod_box_inner del .price_data {
  font-size: 12px;
  font-weight: normal;
}
.prod_box .prod_box_inner .pro_view {
  padding-top: 8px;
  padding-bottom: 8px;
}
.prod_box .prod_box_inner .pro_view .review_count {
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
}
.prod_box .prod_box_inner .favorite {
  float: right;
  position: relative;
  line-height: normal;
  margin-top: 2px;
}
.prod_box .prod_box_button .wishlist,
.prod_box .prod_box_button .compare {
  width: 51px;
}
.prod_box .add_cart_box .add_cart_bg {
  top: 125px;
  width: 159px;
}
.prod_box .add_cart_box .add_cart {
  top: 125px;
  width: 159px;
  background-position: 16px -140px;
}
.prod_box.first,
.prod_box:first-child {
  margin-left: 0;
}

.prod_box_0 {
  min-height: inherit;
}

.prod_box_1 {
  margin-bottom: 0;
}

.prod_box_2 {
  width: 159px;
  min-height: 270px;
}
.prod_box_2 .prod_box_pic {
  height: 159px;
}

.prod_box_3 {
  width: 147px;
  min-height: 260px;
}
.prod_box_3 .prod_box_pic {
  height: 143px;
}

.prod_box_4 .prod_action .addtocart {
  margin-left: 18px;
  opacity: 1;
}

.prod_box_5 {
  min-height: inherit;
}
.prod_box_5 .prod_box_pic {
  height: 150px;
  padding: 5px;
  border: 0;
}
.prod_box_5 .prod_box_pic.pic_enlarge {
  height: 160px;
  padding: 0;
}

.prod_box_6 {
  min-height: inherit;
}
.prod_box_6 .prod_box_pic {
  height: 160px;
  border: 0;
}


/*#main .middle_banner{ margin-top: 18px; }*/
#main .middle_banner .ItemBanner {
  margin-left: 18px;
}
#main .middle_banner .ItemBanner:first-child {
  margin-left: 0;
}
#main .middle_banner .sec_banner {
  margin-top: 18px;
}

.TopTitle {
  display: inline-block;
  margin-top: 65px;
  margin-bottom: 35px;
  position: relative;
  font-size: 30px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}
.TopTitle:before {
  content: "";
  width: 344px;
  height: 1px;
  background: #e0e0e0;
  position: absolute;
  top: 50%;
  left: calc(-344px - 13px);
  margin-top: -2px;
}
.TopTitle:after {
  content: "";
  width: 344px;
  height: 1px;
  background: #e0e0e0;
  position: absolute;
  top: 50%;
  right: calc(-344px - 13px);
  margin-top: -2px;
}
#main .indexImg {
  margin-top: 10px;
  text-align: center;
}
#main .indexImg .ProLeft {
  width: 598px;
}
#main .indexImg .ProLeft .Item.first {
  margin-top: 0;
  width: 598px;
  height: 289px;
}
#main .indexImg .ProLeft .Item {
  margin-top: 1px;
  margin-left: 2px;
  width: 298px;
  height: 289px;
  position: relative;
}
#main .indexImg .ProLeft .Item:first-child,
#main .indexImg .ProLeft .Item:nth-child(2) {
  margin-left: 0;
}
#main .indexImg .ProRight {
  margin-left: 1px;
  width: 600px;
  height: 580px;
}
#main .indexImg .Item {
  *overflow: hidden;
}
#main .indexImg .Item:hover {
  box-shadow: 3px 5px 10px 1px #c4c4c4;
  z-index: 1;
}

#main .indexPro {
  text-align: center;
}
#main .indexPro .CateItem {
  padding: 0 12px 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}
#main .indexPro .CateItem.on:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #00a0e9;
  position: absolute;
  bottom: 0;
  left: 0;
}
#main .indexPro .CateItem a {
  font-size: 16px;
  color: #666;
}
#main .indexPro .ProContent {
  display: none;
  margin-top: 31px;
}
#main .indexPro .ProContent.on {
  display: block;
}
#main .indexPro .ProContent .ProRight {
  margin-left: 15px;
  width: 896px;
}
#main .indexPro .ProContent .ProRight .ProList {
}
#main .indexPro .ProContent .ProRight .ProList .ProItem {
  margin-right: 16px;
  margin-bottom: 16px;
  padding: 20px 44px 20px;
  width: 200px;
  height: 260px;
  background: #fff;
}
#main .indexPro .ProContent .ProRight .ProList .ProItem:hover {
  box-shadow: 0 0px 10px 1px #c4c4c4;
}
#main .indexPro .ProContent .ProRight .ProList .ProItem:nth-child(3n) {
  margin-right: 0;
}
#main .indexPro .ProContent .ProRight .ProList .ProItem .Pic {
  height: 200px;
  text-align: center;
}
#main .indexPro .ProContent .ProRight .ProList .ProItem .Pic img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
}
#main .indexPro .ProContent .ProRight .ProList .ProItem .Pic span {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
#main .indexPro .ProContent .ProRight .ProList .ProItem .ProTitle {
  margin-top: 17px;
  height: 14px;
  overflow: hidden;
}
#main .indexPro .ProContent .ProRight .ProList .ProItem .ProTitle a {
  font-size: 14px;
  color: #666666;
}
#main .indexPro .ProContent .ProRight .ProList .ProItem .ProPrice {
  margin-top: 15px;
  color: #f30240;
  font-size: 14px;
}

#main .indexUser {
  text-align: center;
}
#main .indexUser .UserContent {
}
#main .indexUser .UserContent .UserItem {
  margin-left: 16px;
  padding-bottom: 32px;
  width: 288px;
  text-align: left;
  background: #fff;
}
#main .indexUser .UserContent .UserItem:first-child {
  margin-left: 0;
}
#main .indexUser .UserContent .UserItem:hover {
  box-shadow: 0 0px 10px 1px #c4c4c4;
}
#main .indexUser .UserContent .UserItem .Pic {
  text-align: center;
}
#main .indexUser .UserContent .UserItem .Pic img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
}
#main .indexUser .UserContent .UserItem .Pic span {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
#main .indexUser .UserContent .UserItem .brief {
  max-width: 260px;
  margin: 20px auto 0;
  height: 110px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
}
#main .indexUser .UserContent .UserItem .brief a {
  font-size: 14px;
  color: #666666;
}
#main .indexUser .UserContent .UserItem .Price {
  margin: 35px auto 0;
  max-width: 260px;
}
#main .indexUser .UserContent .UserItem .Price .title {
  width: 185px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#main .indexUser .UserContent .UserItem .Price .title a {
  font-size: 14px;
  color: #666666;
}
#main .indexUser .UserContent .UserItem .Price .price_0 {
  color: #ff3806;
  font-size: 14px;
}

#main .indexVideo {
  text-align: center;
}
#main .indexVideo .VideoContent {
}
#main .indexVideo .VideoContent .VideoItem {
  margin-left: 18px;
  width: 388px;
  height: 312px;
  position: relative;
}
#main .indexVideo .VideoContent .VideoItem:first-child {
  margin-left: 0;
}
#main .indexVideo .VideoContent .VideoItem iframe,
#main .indexVideo .VideoContent .VideoItem video {
  max-height: 100%;
  max-width: 100%;
  height: 100%;
}
#main .indexVideo .VideoContent .VideoItem a {
  cursor: default;
}
#main .indexVideo .VideoContent .VideoItem a.Open {
  cursor: pointer;
}
#main .indexVideo .VideoContent .VideoItem .Content {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#main .indexVideo .VideoContent .VideoItem .Content .Open {
  margin: 0 auto;
  width: 63px;
  height: 40px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.3) url(../images/VideoStar_icon.png)
    no-repeat center center;
  border-radius: 35px;
  display: block;
  transition: all 0.5s;
}
#main .indexVideo .VideoContent .VideoItem .Content .Open.noclick {
  cursor: default;
}
#main .indexVideo .VideoContent .VideoItem .Content .title {
  margin-top: 30px;
}
#main .indexVideo .VideoContent .VideoItem .Content .title a {
  color: #fff;
  font-size: 14px;
}
#main .indexVideo .VideoContent .VideoItem:hover .Content .Open {
  background-color: #00a0e9;
  border-color: #00a0e9;
}

#main .index_banner {
  text-align: center;
  position: relative;
}
#main .index_banner .bx-wrapper,
#main .index_banner .bx-wrapper .bx-viewport {
  min-height: 595px;
}
#main .index_banner .bx-wrapper .bx-viewport img {
  max-width: unset;
  opacity: 0;
}
#main .index_banner .bx-wrapper .bx-viewport {
  border: none;
  left: 0;
  box-shadow: unset;
}
#main .index_banner .bx-wrapper .bx-pager,
#main .index_banner .bx-wrapper .bx-controls-auto {
  bottom: -25px;
}
#main .index_banner .bx-wrapper .bx-pager.bx-default-pager a {
  width: 50px;
  height: 4px;
  background: #c4c4c4;
  border-radius: 0;
}
#main .index_banner .bx-wrapper .bx-pager.bx-default-pager a:hover,
#main .index_banner .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #00a0e9;
}
#main .index_banner .bx-wrapper .bx-controls-direction a {
  width: 39px;
  height: 75px;
}
.w_1200 #main .index_banner .bx-wrapper .bx-prev {
  left: calc((100vw - 1200px) / 2);
  background: url(../images/turn_left.png) no-repeat center;
}
.w_1200 #main .index_banner .bx-wrapper .bx-next {
  right: calc((100vw - 1200px) / 2);
  background: url(../images/turn_right.png) no-repeat center;
}
#main .index_banner .bx-wrapper .bx-prev {
  left: 25px;
  background: url(../images/turn_left.png) no-repeat center;
}
#main .index_banner .bx-wrapper .bx-next {
  right: 25px;
  background: url(../images/turn_right.png) no-repeat center;
}
#main .index_banner .Content {
  padding-top: 95px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#main .index_banner .Content .Pic {
  text-align: center;
}
#main .index_banner .Content .Pic img {
  margin: 0 auto;
}
#main .index_banner .Content .title {
  max-width: 80%;
  margin: 35px auto 0;
  line-height: 60px;
  font-size: 48px;
  color: #fff;
  text-transform: uppercase;
}
#main .index_banner .Content .brief {
  max-width: 60%;
  margin: 30px auto 0;
  line-height: 32px;
  color: #fff;
  font-size: 16px;
}
#main .index_banner .Content .subTitle {
  margin-top: 50px;
  color: #fff;
  font-size: 16px;
}
#main .index_banner .Content .Url {
  margin: 30px auto 0;
  width: 158px;
  height: 40px;
  line-height: 40px;
  display: block;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  transition: all 0.5s;
}
#main .index_banner .Content .Url:hover {
  background: #00a0e9;
  border: 1px solid #00a0e9;
}

#main .indexFind {
  text-align: center;
}
#main .indexFind .TopTitle {
  margin-bottom: 20px;
}
#main .indexFind .SubTitle {
  font-size: 16px;
  color: #666;
}
#main .indexFind .FindContent {
  margin-top: 35px;
}
#main .indexFind .FindContent .ItemList {
  margin-left: 16px;
  width: 288px;
  height: 645px;
}
#main .indexFind .FindContent .ItemList:first-child {
  margin-left: 0;
}
#main .indexFind .FindContent .ItemList.once .Item:nth-child(2) .Icon {
  margin-top: 60%;
}
#main .indexFind .FindContent .ItemList.sec .Item:nth-child(1) .Icon {
  margin-top: 60%;
}
#main .indexFind .FindContent .ItemList .Item {
  position: relative;
}
#main .indexFind .FindContent .ItemList .Item:first-child {
  margin-bottom: 16px;
}
#main .indexFind .FindContent .ItemList .Item .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
  box-shadow: 0 5px 8px 1px rgba(0, 0, 0, 0.3);
}
#main .indexFind .FindContent .ItemList .Item:hover .shadow {
  opacity: 1;
}
#main .indexFind .FindContent .ItemList .Item .shadow .Icon {
  margin-top: 64px;
  display: inline-block;
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}
#main .indexFind .FindContent .ItemList .Item .shadow .Icon.platform0 {
  background: url(../images/global/icon_follow_0.png) no-repeat center 4px;
}
#main .indexFind .FindContent .ItemList .Item .shadow .Icon.platform1 {
  background: url(../images/global/icon_follow_0.png) no-repeat center -36px;
}
#main .indexFind .FindContent .ItemList .Item .shadow .Icon.platform2 {
  background: url(../images/global/icon_follow_0.png) no-repeat center -76px;
}
#main .indexFind .FindContent .ItemList .Item .shadow .Icon.platform3 {
  background: url(../images/global/icon_follow_0.png) no-repeat center -116px;
}
#main .indexFind .FindContent .ItemList .Item .shadow .Icon.platform4 {
  background: url(../images/global/icon_follow_0.png) no-repeat center -156px;
}
#main .indexFind .FindContent .ItemList .Item .shadow .Icon.platform5 {
  background: url(../images/global/icon_follow_0.png) no-repeat center -196px;
}
#main .indexFind .FindContent .ItemList .Item .shadow .Icon.platform6 {
  background: url(../images/global/icon_follow_0.png) no-repeat center -236px;
}
#main .indexFind .FindContent .ItemList .Item .shadow .Icon.platform7 {
  background: url(../images/global/icon_follow_0.png) no-repeat center -276px;
}
#main .indexFind .FindContent .ItemList .Item .shadow .title {
  margin-top: 15px;
  font-size: 14px;
  color: #fff;
  display: block;
}

@media (max-width: 1296px) {
  .prod_box {
    width: 482px;
    height: auto;
    margin-left: 16px;
  }
  .prod_box .prod_box_pic {
    width: 263px;
  }
  .prod_box .prod_box_info {
    width: 172px;
  }
  .prod_list_sm .prod_box {
    width: 233px;
  }
  .prod_list_sm .prod_box .prod_box_pic {
    width: 100%;
    margin-top: 40px;
  }

  #newsletter_form .text {
    padding: 0 42px;
  }
}

@media (max-width: 1023px) {
  .prod_box {
    width: 49%;
    margin-left: 2%;
  }
  .prod_box .prod_box_pic {
    width: 54.5762%;
  }
  .prod_box .prod_box_info {
    width: 42%;
  }
  .prod_list_sm .prod_box {
    width: 24%;
    margin-left: 1%;
  }

  .banner_footer .ban_foo_info {
    left: 50%;
    top: calc(50% + 30px);
  }
  .banner_footer .ban_foo_info .title {
    font-size: 40px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  #main {
    padding-top: 30px;
  }

  .prod_big_box {
    margin-top: 20px;
  }
  .prod_box .prod_box_pic {
    width: 100%;
  }
  .prod_box .prod_box_info {
    width: 100%;
    margin-top: 0;
  }
  .prod_list_sm .prod_box {
    width: 49%;
    margin-left: 2%;
  }
  .prod_list_sm .prod_box:nth-child(odd) {
    margin-left: 0;
  }

  .banner_footer{
    display: none;
  }

}
.banner_footer{ background-color: #fff; margin-top: 1rem; position: relative;}
.banner_footer img { min-height: 176px;}
.banner_footer .ban_foo_info{ position: absolute; left: calc(50% + 10px); top: calc(50%); transform: translate(-50%, -50%); }
.banner_footer .ban_foo_info .title{ color: #fff; }
.banner_footer .ban_foo_info .link{  border: 1px solid #fff; margin-left: 8px; margin-top: 16px;color: #fff;width: 85px; height: 31px;display: block; box-sizing: border-box; text-align: center; line-height: 29px; font-size: 12px; margin-left: 4px; margin-top: 11px; border-radius: 25px; }
.banner_footer .ban_foo_info .link:hover{ transition:.5s;border: 2px solid orange;color: orange;}

.follow-us {
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow-us .item {
  margin: 1rem 5px;
}

.follow-us img {
  width: 35px;    
}


@media (max-width: 600px) {
  .prod_box {
    width: 100%;
    margin-left: 0;
  }
  .prod_list_sm .prod_box {
    width: 100%;
    margin-left: 0;
  }

}


@media (min-width: 1083px) {
	.banner_footer .ban_foo_info{ left: calc(50% + 120px); top: calc(50% + 53px); }
  .banner_footer .ban_foo_info .title{ font-size: 60px; line-height: 68px; }
  .banner_footer .ban_foo_info .link{ color: #fff;  width: 125px; height: 46px; line-height: 44px; font-size: 18px; }

}

