* {
  padding: 0;
  margin: 0;
  resize: none;
  border: none;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
  --f5: #F6F8FA;
  --cl: #fff;
  --c3: #333;
  --c9: #999;
  --bc: #1CC87A;
  --bc1: #0D633C;
  --bc2: #F0FFF8;
  --ce: #eee;
  --cc: #ccc;
  --rd: #FF0000;
  --og: #F88D30;
}
*::-webkit-scrollbar{
  display: none;
}
body {
  padding-top: 2.75rem;
  background-color: var(--f5);
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}
a {
  display: block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.bgc {
  background-color: var(--cl);
}
input {
  background-color: transparent;
}
.single {
  overflow: hidden;
  white-space: nowrap;
  text-overflow:ellipsis;
}
.multi {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
input[type=checkbox], input[type=radio] {
  display: none;
}
.layui-icon {
  font-size: inherit;
}
.hide-top {
  padding-top: 0;
}

/* header */
.header {
  top: 0;
  width: 100%;
  height: 2.75rem;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  background-color: var(--cl);
  font-size: 1rem;
}
.header i {
  height: 100%;
  width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
}
.header p {
  color: var(--c6);
  padding: 0 .5rem;
  font-size: 0.625rem;
  position: absolute;
  right: 0;
}

.header span{
  height: 100%;
  width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
}

/* carousel */
.swiper {
  height: 10rem;
}
.swiper-container {
  height: 100%;
}
.carousel .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* notice */
.notice {
  height: 2.5rem;
  border: 1px solid var(--c3);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
}
.notice > img {
  width: 1.75rem;
  height: 1.75rem;
  margin: 0 0.8125rem;
}
.notice-list {
  height: 100%;
  flex: 1;
}
.notice-list .swiper-slide {
  width: 100%;
  line-height: 38px;
}

/* footer */
.footer {
  bottom: 0;
  width: 100%;
  display: flex;
  position: fixed;
  height: 3.125rem;
  font-size: 0.625rem;
  align-items: center;
  background-color: var(--cl);
  box-shadow: 0px -1px 6px 1px rgba(0,0,0,0.05);
}
.footer li {
  flex: 1;
}
.footer li a {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.footer img {
  width: 1.25rem;
  height: 1.25rem;
}
.footer .active a {
  color: var(--bc);
}

/* model */
.model {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  display: none;
  background-color: rgba(0, 0, 0, .4);
  z-index: 3;
}
.agreement-mdl {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16.875rem;
  border-radius: .5rem;
  background-color: var(--cl);
}
.agreement-mdl .title {
  line-height: 2.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
}
.agreement-mdl div {
  font-size: 0.75rem;
  color: var(--c6);
  padding: 0.8125rem;
  height: 30vh;
  overflow: auto;
}

/* picker */
.picker {
  background-color: var(--cl);
  border-radius: 1rem 1rem 0 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.picker-title {
  height: 2.625rem;
  padding: 0 0.8125rem;
  font-size: 0.8125rem;
  color: var(--c9);
  border-bottom: 1px solid var(--ce);
}
.picker-title span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c3);
}
.picker-title p:last-child {
  color: var(--bc);
}
.picker-news {
  height: 30vh;
  padding: 0.8125rem;
  display: flex;
  align-items: center;
}
.picker-list {
  width: 100%;
  color: var(--c9);
  height: 2.5625rem;
  overflow: initial;
  border-top: 1px solid var(--ce);
  border-bottom: 1px solid var(--ce);
}
.picker-list .swiper-slide-active {
  color: var(--c3);
}

/* stepper */
.stepper {
  display: flex;
  align-items: center;
}
.stepper span {
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--f5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stepper input {
  width: 2.5rem;
  /*margin: 0 .5rem;*/
  height: 1.25rem;
  text-align: center;
}

.save {
  background-color: var(--bc);
  border-radius: 1.375rem;
  color: var(--cl);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  height: 2.75rem;
  justify-content: center;
  margin: 0.9375rem;
  width: calc(100% - 1.875rem);
}

.layui-flow-more {
  display: block;
  width: 100%;
  text-align: center;
}

.save-fixed {
  position: fixed;
  bottom: 1.875rem;
  left: 0.9375rem;
  margin: 0;
}

.new-record {
  background-color: #fff;
}

.new-record p {
  font-weight: initial !important;
  font-size: 13px !important;
}

.new-record-li {
  padding: .7rem 0;
  border-top: 1px solid #eeeeee;
  margin: 0 .9rem;
}

.new-record-li:first-child {
  border-top: none !important;
}

.new-record .new-record-li .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .4rem
}


.new-record .new-record-li .top .top-text {
  font-weight: 600 !important;
  font-size: .9rem !important;
}

.new-record .new-record-li .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new-record .new-record-li .bottom .times {
  color: #aaaaaa;
}

.new-record .new-record-li .bottom .sour {
  color: #aaaaaa;
}

.new-record .new-record-li .top .color-red {
  color: red;
}

.new-record .new-record-li .top .color-blue {
  color: #06b206;
}

.new-record .layui-flow-more {
  margin: 0 !important;
  background-color: #F6F8FA !important;
  padding-top: 10px;
}
