﻿* {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(#fcfcfc, #ececec);
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.btn {
  background-color: #1251B5;
  border-radius: 50px;
  color: #fafafa;
  font-size: 16px;
  height: 41px;
  border: 0;
  padding: 0 12px;
  box-sizing: border-box;
  outline: 0;
  position: relative;
  margin: 5px 0;
}

.btn:active {
  background-color: #104aa5;
  /* opacity: 0.8; */
  /* box-shadow: none; */
  /* left: 3px; */
  /* top: 3px; */
}

.btn:disabled {
  background-color: rgba(18, 81, 181, 0.6);
  text-shadow: none;
}

.btn-plain {
  /* border: 1px solid #1251B5; */
  color: #1251B5;
  background-color: transparent;
  text-shadow: 0 0 1px #aaaaaa;
  box-shadow: 1px 1px 5px #1251B5;
}

.btn-plain:active {
  background-color: rgba(170, 170, 170, 0.1);
}

.btn-small {
  height: 33px;
  margin: 0;
  font-size: 14px;
}

.btn-link {
  color: #1251B5;
  font-size: 16px;
  border: 0;
  background-color: inherit;
  outline: 0;
}

.page-header {
  height: 55px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  border-bottom: 1px solid #dedede;
  /* box-shadow: 0 1px 5px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23); */
  /* background-color: #1251B5; */
  background-color: #fcfcfc;
  padding: 0 10px;
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1; */
}

.container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.page-footer {
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #9b9b9b;
}

.page {
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.page-desc {
  color: #777777;
  font-size: 14px;
  line-height: 20px;
  margin: 20px 0;
}

.page-label {
  color: #777777;
  padding: 0 10px;
  display: block;
}

.page-group {
  margin: 0 -15px 20px -15px;
}

.page-header-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex: auto;
}

.page-header-title .page-header-title-logo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../logo/Volvo_iron_mark_RGB_70x70px.png');
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.page-header-title .page-header-title-text {
  /* color: #fafafa; */
  /* text-shadow: 0 0 10px #333333; */
}

.page-header-title-icon-home {
  font-size: 22px;
  color: #333333;
  /* text-shadow: 0 0 10px #333333; */
}

.page-img-wrapper {
  margin: 5px 0;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-img {
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 2px 2px 8px #333333;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  margin: 5px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.icon-btn i {
  font-size: 20px;
  color: #333333;
  text-shadow: 0 0 5px #777777;
}

.icon-btn span {
  font-size: 12px;
  margin-top: 5px;
  color: #333333;
  text-shadow: 0 0 5px #777777;
}