﻿/* Rewritten CSS for Mobile Website */

/* Utility Classes */
.move-touch {
  -webkit-overflow-scrolling: touch;
}

.auto-center ul li .pict {
  display: table;
  width: 100%;
  text-align: center;
}

.auto-center ul li .pict i {
  vertical-align: middle;
  display: table-cell;
}

.vague {
  -webkit-filter: blur(2px);
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.rogate {
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.rogate:hover {
  transform: rotate(90deg);
}

.arrow {
  position: relative;
  line-height: 1;
  margin-left: 0.1rem;
}

.arrow:before {
  content: "";
  position: absolute;
  top: -0.02rem;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 0.08rem solid;
  border-right: 0.08rem solid transparent;
  border-top: 0.08rem solid transparent;
  border-left: 0.08rem solid transparent;
}

.arrow:after {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 0;
  height: 0;
  border-top: 0.08rem solid;
  border-right: 0.08rem solid transparent;
  border-bottom: 0.08rem solid transparent;
  border-left: 0.08rem solid transparent;
}

.arrow.one:before {
  display: none;
}

.arrow.one:after {
  top: 0.14rem;
}

.border-top:before {
  background: #dadada;
  content: "";
  position: absolute;
  height: 1px;
  transform-origin: 0 0;
  transform: scale(0.5, 0.5);
  -webkit-transform: scale(0.5, 0.5);
  -moz-transform: scale(0.5, 0.5);
  width: 200%;
  top: 0;
  left: 0;
}

.border-bottom:after {
  background: #dadada;
  content: "";
  position: absolute;
  height: 1px;
  transform-origin: 0 0;
  transform: scale(0.5, 0.5);
  -webkit-transform: scale(0.5, 0.5);
  -moz-transform: scale(0.5, 0.5);
  width: 200%;
  bottom: -1px;
  left: 0;
}

.flex-slide {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.flex-slide > * {
  flex-shrink: 0;
}

.box-space-between {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.box-space-between > * {
  flex-shrink: 0;
}

.touch-state {
  position: relative;
}

.touch-state label {
  position: relative;
  background: #fff;
  display: block;
  width: 0.9rem;
  height: 0.45rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.touch-state label:after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  width: 0.41rem;
  height: 0.41rem;
  background: #fff;
  box-shadow: 0 0 0.1rem rgba(0,0,0,0.4);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.touch-state input {
  position: absolute;
  z-index: 0;
  opacity: 0;
  left: 45%;
  top: 20%;
}

.touch-state input:checked + label {
  background: #47b92c;
  border-color: #47b92c;
}

.touch-state input:checked + label:after {
  left: calc(100% - 0.41rem);
}

.swiper-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  display: -webkit-box;
  position: relative;
}

.swiper-slide {
  flex-shrink: 0;
  position: relative;
}

.mohu {
  filter: blur(1px);
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
  -ms-filter: blur(1px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=1, MakeShadow=false);
}

.fixed-top {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 2;
  background: #fff;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #fff;
}

.column {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.column > * {
  column-count: 1;
  flex-grow: 1;
  flex-shrink: 0;
  text-align: center;
}

/* Reset Styles */
a, body, button, dd, dl, dt, h1, h2, h3, h4, h5, i, img, input, li, p, select, span, strong, textarea, ul {
  margin: 0;
  padding: 0;
}

b, h1, h2, h3, h4, h5, h6, strong {
  font-weight: 400;
}

table {
  border-spacing: 0;
}

body {
  font-family: "microsoft yahei", Arial;
  font-size: 0.26rem;
  line-height: 1;
  color: #333;
  -webkit-user-select: none;
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

li {
  list-style-type: none;
  float: left;
}

a {
  text-decoration: none;
  color: #333;
  outline: 0;
}

img {
  border: none;
  vertical-align: middle;
}

em, i, var {
  font-style: normal;
}

button {
  font-family: "microsoft yahei", Arial;
  outline: 0;
  cursor: pointer;
  font-size: 0.26rem;
  border: none;
}

iframe {
  border: none;
}

input, select, textarea {
  outline: 0;
  font-family: "microsoft yahei", Arial;
  font-size: 0.26rem;
  border-radius: 0;
  border: none;
  background: 0 0;
}

input:disabled {
  opacity: 1;
  color: #333;
}

button, input[type=button], input[type=date], input[type=number], input[type=password], input[type=reset], input[type=submit], input[type=text], textarea {
  -webkit-appearance: none;
  border: none;
  background: 0 0;
}

textarea {
  resize: none;
}

.ico {
  display: inline-block;
  vertical-align: middle;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  zoom: 1;
}

.hide {
  display: none !important;
}

/* Main Layout */
.mobile-wrap {
  position: relative;
  min-height: 100vh;
  width: 100%;
  float: left;
  background-color: #02091d;
}

body, html {
  width: 100%;
  height: 100%;
}

.head {
  width: 100%;
  height: 1rem;
  background-color: #13182b;
  padding: 0 0.18rem;
  display: flex;
  justify-content: space-between;
}

.head .logo {
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.head .logo img {
  height: 1rem;
}

.head .txts {
  line-height: 1rem;
  font-size: 0.26rem;
  color: #fff;
}

.banner {
  width: 100%;
}

.banner img {
  width: 100%;
}

.notice {
  width: 100%;
  height: 0.5rem;
  background-color: #171d2e;
  display: flex;
  justify-content: space-between;
}

.notice .ico {
  width: 0.62rem;
  height: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notice .ico img {
  width: 0.3rem;
}

.notice .txt {
  width: calc(100% - 0.62rem);
  line-height: 0.5rem;
  color: #fff;
  height: 0.5rem;
}

.notice .txt marquee {
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  display: inline-block;
  font-size: 18px;
}

.product {
  width: 100%;
  background-color: #02091d;
  float: left;
  padding-top: 0.3rem;
}

.product .title {
  width: 100%;
  text-align: center;
  height: 1.12rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product .title img {
  width: 4.56rem;
}

.product .list {
  width: 100%;
  padding: 0 0.18rem;
}

.product .list ul {
  width: 100%;
}

.product .list ul li {
  width: 100%;
  padding: 0.13rem 0;
  position: relative;
  float: left;
}

.product .list ul li:after {
  content: "";
  position: absolute;
  right: -0.04rem;
  top: 0.08rem;
  width: 0.88rem;
  height: 0.88rem;
  background: url(../image/f81cc2_78x78.png) center no-repeat;
  background-size: 0.88rem 0.88rem;
}

.product .list ul li .cont {
  width: 100%;
  background-color: #171d2e;
  border-radius: 0.06rem;
  border-left: 0.06rem solid #77c8b7;
  padding: 0.18rem;
  display: flex;
  justify-content: space-between;
}

.product .list ul li .cont .image {
  width: 1.6rem;
  height: 1.6rem;
}

.product .list ul li .cont .image img {
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  margin-top: 7px;
}

.product .list ul li .cont .text {
  width: calc(100% - 1.6rem);
  padding-left: 0.2rem;
  display: flex;
  justify-content: space-between;
}

.product .list ul li .cont .text .btns {
  width: 1.56rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product .list ul li .cont .text .btns button {
  display: inline-block;
  width: 100%;
  height: 0.6rem;
  margin-top: 15px;
  background-color: #77c8b7;
  text-align: center;
  line-height: 0.6rem;
  color: #333;
  border-radius: 0.06rem;
  letter-spacing: 0.04rem;
  -webkit-animation: myfirst 1s infinite;
  animation: myfirst 1s infinite;
}

.product .list ul li .cont .text .intr {
  width: calc(100% - 1.56rem);
}

.product .list ul li .cont .text .intr .tits {
  width: 100%;
  line-height: 0.44rem;
  font-size: 0.32rem;
  color: #fff;
}

.product .list ul li .cont .text .intr .score {
  width: 100%;
  height: 0.36rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.product .list ul li .cont .text .intr .score img {
  width: 1.14rem;
  margin: 0 0.1rem;
}

.product .list ul li .cont .text .intr .score span {
  color: #fff;
  font-size: 0.2rem;
}

.product .list ul li .cont .text .intr .score em {
  font-size: 0.26rem;
  color: #f6ff6e;
  position: relative;
  top: 0.02rem;
}

.product .list ul li .cont .text .intr .nums {
  width: 100%;
  line-height: 0.3rem;
  font-size: 0.22rem;
  color: #fff;
}

.product .list ul li .cont .text .intr .txts {
  color: #fff !important;
  font-size: 0.2rem;
  line-height: 0.34rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product .list ul li .imgs {
  width: 100%;
}

.product .list ul li .imgs img {
  width: 100%;
}

.footer {
  width: 100%;
  text-align: center;
  line-height: 1.44rem;
  font-size: 0.26rem;
  color: #fff;
  font-family: arial;
}

/* Animations */
@-webkit-keyframes myfirst {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

@keyframes myfirst {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
