/*
 * Copyright (c) 2020 ZOLOZ PTE.LTD.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

body {
  padding: 0;
  margin: 0;
  color: #282828;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
}
.routerView {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.routerView .zNavigationBar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  background-color: #0064FF;
  color: #ffffff;
  font-size: 18px;
  line-height: 44px;
}
.routerView .mainContainer {
  flex: 1;
  padding: 16px 16px 0;
}

.routerView .mainContainer .cellContainer {
  position: relative;
  /* font-weight: 600; */
  border: none;
  width: 100%;
}
.routerView .mainContainer .cellContainer .zListContent {
  padding: 16px 0 4px;
  border: none;
  border-bottom: 1px solid #aaa;
  width: 100%;
  height: 55px;
  font-weight: 600;
  font-size: 16px;
}

.routerView .mainContainer .cellContainer .zSelector {
  background: url("./../image/selectoricon.png") no-repeat 96%;
  background-size: 12px;
  -webkit-tap-highlight-color: rgba(255,255,255,0);
  /* selector右边小三角去除 */
  -webkit-appearance: none;
}
.routerView .mainContainer .cellContainer .zListLabel {
  font-size: 1rem;
  font-weight: 400;
  color: #787878;
  position: absolute;
  left: 0;
  right: 0;
  top: 1rem;
  pointer-events: none;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.routerView .mainContainer .cellContainer .zHelperMsg {
  font-size: 14px;
  height: 16px;
  line-height: 16px;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

.routerView .mainContainer .tipHeader {
  padding: 4px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.routerView .mainContainer .tipText {
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.5;
}
.routerView .mainContainer .docGuideImage {
  padding: 10px 0;
  width: 100%;
}
.routerView .footer {
  display: flex;
  align-items: center;
  justify-content: center;  
  padding: 4px 5% 16px;
}
.routerView .footer .zBottomButton {
  width: 100%;
  border: 2px solid #0064FF;
  background-color: #0064FF;
  color: white;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  font-weight: bold;
}

/* 选中时黄色框去除 */
:focus{
  outline: 0;
}