* {
	box-sizing: border-box;
}

html,
body {
	position: relative;
	height: 100%;
}

body {
	background: #f6f7f8;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #333;
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none; 
	color: #333;
}
/* 导航栏 */
.nav-wrapper, .theme-nav-bar {
	position: fixed;
	z-index: 999;
	height: 44px;
	width: 100%;
  background: #fff;
  padding: 0 12px;
}

.nav-content {;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-left{
  display: flex;
  align-items: center;
}
.nav-left span{
  font-size: 16px;
  padding-left: 12px;
  font-weight: bold;
}
.nav-wrapper .nav-left span{
  color: #fff;
}
.nav-logo {
	width: 32px;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
	width: 100%;
  object-fit: contain;
}

.bar-text {
	margin: 6px;
	color: rgba(255, 255, 255, 0.7);
	padding: 8px 0;
	position: relative;
  font-size: 14px;
}

.bar-text:hover {
	cursor: pointer;
	color: #fff;
}

.bar-text::after {
	content: '';
	width: 0;
	height: 0;
	border-bottom: 2px solid #fff;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: .3s;
}

.active-bar {
	color: #fff;
}

.active-bar::after {
	width: 100%;
}

.theme-nav-bar{
  /* display: none; */
}
.grey{
  color: #312E33;
}
.active-theme-bar{
  color: #8272EF;
}
.active-theme-bar::after{
  width: 100%;
}
.grey::after{
  border-bottom: 2px solid #8272EF;
}
.grey:hover {
	cursor: pointer;
	color: #8272EF;
}

.search-bar{
  position: fixed;
  top: 44px;
  height: 54px;
  width: 100%;
  padding: 0 15px;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.search{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  background-color: #F6F6F6;
  border-radius: 20px;
  flex: 1;
}
.search input {
  border: none;
  text-align: center; 
  background: transparent;
  outline: none;
  width: 100%;
}
.search img{
  width: 32px;
  height: 32px;
}

.filter-wrapper{
  position: fixed;
  top: 98px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 42px;
  border-bottom: 1px solid #e5e5e5;
}
.filter-item{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-item-title{
  font-size: 14px;
  color: #615C66;
}
/* .filter-item input {
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  font-size: 14px;
} */
.filter-item img{
  width: 14px;
  height: 14px;
  margin-left: 4px;
}
.dakai{
  transition: transform .3s;
}
.dakai-kuang{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg); 
}

.choose-wrapper{
  position: fixed;
  top: 140px;
  background-color: #fff;
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
  transition: .3s max-height;
  box-shadow: 0 2px 4px #ECECEC;
}
.choose-item{
  padding: 12px 0;
  font-size: 14px;
  color: #615C66;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkmark-img{
  width: 16px;
  height: 16px;
  display: none;
}
.city{
  max-height: 0px;
}
.type{
  max-height: 0px;
}
.choose-item-active{
  color: #8272EF;
}
.show-checkmark{
  display: block !important;
}
.show{
  visibility: visible;
  -webkit-animation: fadeIn .4s;
  animation: fadeIn .4s;
}
@-webkit-keyframes fadeIn {
    from {scale: 0;} 
    to {scale: 1;}
}

@keyframes fadeIn {
    from {scale: 0;}
    to {scale: 1 ;}
}

.position-contianer{
  padding-top: 152px;
  padding-left: 15px;
  padding-right: 15px;
}
.position-list{
  background-color: #fff;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 15px;
}
.empty-status{
  font-size: 15px;
  color: #928A99;
  display: none;
}
.list-title{
  font-size: 16px;
  font-weight: bold;
  color: #312E33;
}
.list-desc, .list-date{
  font-size: 12px;
  color: #928A99;
}
.list-desc{
  padding-top: 8px;
  padding-bottom: 4px;
}
.line-v{
  padding: 0 6px;
}




