:root {
  --bg-color: #FAFCFF;
  --theme-color: #0067F4;
  --card-shadow: 0 0 30px rgba(100, 100, 100, .2);
  --theme-color-dark: #0251bc;
}

html, body {
  margin: 0;
  color: #282c33;
  /*font-family: "PingFang SC", "微软雅黑", cursive;*/
  font-size: 16px;
  background-color: #FAFCFF;
  scroll-behavior: smooth;
  min-height: 100vh;
  min-width: 1200px;
  position: relative;
  clear: both;
}

div,input,li, header, a, :before, :after {
  box-sizing: border-box;
}

a {
  color: currentColor;
  text-decoration: none;
}
a:hover {
  color: var(--theme-color);
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  user-select: none;
  vertical-align: middle;
}

p {
  margin: 0 0 10px;
}

label {
  user-select: none;
  vertical-align: middle;
  font-weight: normal;
}
label[required]:before {
  content: '*';
  color: red;
  margin-right: 10px;
}
input, select, textarea {
  border: none;
  outline: none;
  background-color: transparent;
}
input[type=checkbox] {
  margin-right: 3px;
}

input[type=button],input[type=submit] {
  background-color: var(--theme-color);
  color: #fff;
  border: var(--theme-color) 1px solid;
  position: relative;
  transition: background-color .2s;
  padding: 0.5em 1em;
}

input[type=button]:hover,input[type=submit]:hover {
  background-color: var(--theme-color-dark);
}

input[type=button][plain] {
  background-color: transparent;
  border: #69a6ff 1px solid;
  color: #69a6ff;
}

input[type=button][plain]:hover {
  border-color: #267eff;
  color: #267eff;
}

input[type=button][plain-text] {
  background-color: transparent;
  color: var(--theme-color);
  border: none;
  padding: 0;
}

input[type=button][plain-text]:hover {
  font-weight: bold;
}

input[type=text],input[type=password], input[type=tel], input[type=email],input[type=date],input[type=url], select, textarea {
  width: 100%;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.justify-center {
  display: inline-block;
  transform: translateX(-50%);
  position: relative;
  left: 50%;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix {
  clear: both;
}

/** S:输入框 */
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
  font-size: 0.9em;
}

/*
// 清除表单自动填充的样式
input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important;
}*/

.cv-input, .cv-verify-input {
  outline: #eee 1px solid;
  border-radius: 5px;
  padding: 7px 10px;
}

.cv-input:focus, .cv-verify-input:focus {
  outline: #62a1ff 2px solid;
}

.cv-input.error {
  outline: #ff6b6b 2px solid;
}

.cv-input+label, input[type=file]+label {
  margin-top: 8px;
}

.cv-input+label.error, input[type=file]+label.error {
  color: red;
}

.cv-verify-input:invalid {
  outline: #ff6b6b 2px solid;
}

/*.cv-verify-input input:valid {
  outline: #5cd73a 2px solid;
}*/
/** E:输入框 */
/** S:顶部导航样式 */
.comp-header {
  position: fixed;
  top: 0;
  min-width: 1200px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  white-space: nowrap;
  padding: 0 50px;
  text-align: center;
  background-color: rgba(255,255,255,.5);
  z-index: 1005;
  transition: background-color .5s;
}
.comp-header.blur {
  background-color: rgba(255,255,255,.8);
  backdrop-filter: blur(30px);
}
.comp-header:hover, .blur:hover {
  background-color: #fff;
}
.comp-header .logo {
  display: inline-block;
  width: 250px;
  position: relative;
  bottom: 3px;
}
@keyframes scaleY-in {
  from {
    transform: scaleY(0) translateX(-50%);
  }
  to {
    transform: scaleY(1) translateX(-50%);
  }
}
.comp-header nav>ul>li{
  display: inline-block;
  margin-left: 35px;
  position: relative;
}
.comp-header nav>ul>li:hover .secondary-nav{
  animation: scaleY-in .3s;
  display: block;
}
.comp-header nav .secondary-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: top;
  background: var(--theme-color);
  color: #fff;
  line-height: 45px;
  font-size: 14px;
  display: none;
}
.secondary-nav>li {
  padding: 0 20px;
  position: relative;
  background-color: transparent;
  transition: all .2s;
}
.secondary-nav>li a {
  padding: 0 10px;
  border-bottom: rgba(238, 238, 238, 0.2) 1px solid;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.secondary-nav>li:last-child>a{
  border: none;
}
.secondary-nav>li:hover {
  background-color: #eef5fc;
}
.secondary-nav>li:hover>a {
  color: var(--theme-color);
  font-weight: bold;
}
.secondary-nav>li:hover>.tertiary-nav {
  display: block;
}
.tertiary-nav {
  display: none;
  background-color: #eef5fc;
  color: #484c53;
  position: absolute;
  top: 0;
  left: 100%;
  padding: 0 20px;
}
.tertiary-nav>li>a:hover {
  font-weight: bold;
}
.header-search-btn {
  margin-right: 20px;
}
.header-search-btn:hover {
  color: var(--theme-color);
}
.header-search-btn+input {
  position: fixed;
  line-height: 2em;
  background-color: #fff;
  right: 50px;
  top: 80px;
  width: 250px;
  transition: transform .3s;
  transform-origin: top;
  transform: scale(0);
  visibility: hidden;
}
.header-search-btn+input[active] {
  transform: scale(1);
  visibility: visible;
}
.login-btn {
  display: none;
}
.userStatus {
  cursor: pointer;
}
.userStatus:hover>.userControls {
  display: block;
}
.userStatus>.userControls {
  position: fixed;
  right: 20px;
  top: 70px;
  display: none;
  background: #fff;
  box-shadow: rgba(200,200,200,.1) 0 0 10px;
  border-radius: 10px;
  line-height: 1.8em;
}
.userControls a{
  display: block;
  margin: 20px;
}
.userStatus>.userControls:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  height: 10px;
  width: 100%;
}
/** E:顶部导航样式 */
/** S:页尾样式 */
.comp-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: block;
  clear: both;
  font-size: 12px;
  padding: 20px 0;
  text-align: center;
  z-index: 1001;
}
/** E:页尾样式 */
/** S:子页面公共样式 */
.sub-page-header {
  position: relative;
  /*height: 300px;*/
  text-align: center;
  /*background: #dfe4ea;*/
  margin-top: 60px;
  padding-bottom: 25px;
  height: 400px;
  width: 100%;
  background: #fefefe;
  background-position: center;
  background-size: 85%;
  background-repeat: no-repeat;
}
.sub-page-header:before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub-page-header>div {
  position: relative;
  top: 120px;
  font-weight: bold;
  width: 100%;
}
.sub-page-header .header-title {
  font-size: 40px;
}
.sub-page-bar {
  position: sticky;
  top: 60px;
  z-index: 1003;
  background-color: rgba(255,255,255,.6);
  backdrop-filter: blur(5px);
  text-align: center;
  width: 100%;
  line-height: 60px;
  display: table;
  word-spacing: -1em;
  box-shadow: rgba(200,200,200,.1) 0 0 10px;
  margin-bottom: 20px;
  white-space: nowrap;
  transition: background-color .5s;
}
.sub-page-bar:hover {
  background-color: #fff;
}
.sub-page-bar a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.sub-page-bar ul li {
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin: 0 30px;
}
.sub-page-bar ul li:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 100%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%) scaleX(0);
  border-bottom: var(--theme-color) 3px solid;
  transition: transform .3s;
}
.sub-page-bar ul li:hover:before {
  transform: translateX(-50%) scaleX(1);
}
.sub-page-bar ul li[active=true] a {
  color: var(--theme-color);
}
.sub-page-bar ul li[active=true]:before {
  transform: translateX(-50%) scaleX(1);
}
.sub-page-ctn {
  width: 1200px;
  margin: auto;
  padding-bottom: 60px;
}

.page-nav {
  display: flex;
  gap: 10px;
  padding: 20px 0;
  flex-wrap: wrap;
  user-select: none;
}

.page-nav > li {
  position: relative;
  background-color: #e9ebef;
  box-shadow: #eff2fa 0 0 10px;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-nav > li:hover {
  box-shadow: none;
  background-color: #dde0e6;
}

.page-nav > li.active {
  color: #fff;
  background-color: var(--theme-color);
}
/** E:子页面公共样式 */
/** S:空状态 */
.empty-result {
  clear: both;
  background: center/100% url("../../images/portal/empty.png");
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  top: 24px;
  text-align: center;
}
/** E:空状态 */
/** S:图标集 */
svg {
  position: relative;
  bottom: -0.125em;
}
i {
  display: inline-block;
  vertical-align: text-bottom;
  width: 1em;
  height: 1.2em;
  background: no-repeat center/100%;
}
.i-down-arrow-simple {
  background-image: url("../../images/portal/icons/i-down-arrow-simple.svg");
}
.i-up-arrow-simple {
  background-image: url("../../images/portal/icons/i-up-arrow-simple.svg");
}
.i-down-arrow-simple-white {
  background-image: url("../../images/portal/icons/i-down-arrow-simple-white.svg");
}
.i-search {
  width: 20px;
  height: 20px;
  background-image: url("../../images/portal/icons/i-search.svg");
}
.i-arrow-right {
  background-image: url("../../images/portal/icons/i-arrow-right.svg");
}
.i-clock-outline {
  background-image: url("../../images/portal/icons/i-clock-outline.svg");
}
.i-language {
  background-image: url("../../images/portal/icons/i-language.svg");
}
.i-phone {
  background-image: url("../../images/portal/icons/i-phone.svg");
}
.i-photo-album {
  background-image: url("../../images/portal/icons/i-photo-album.svg");
}
.i-menu {
  background-image: url("../../images/portal/icons/i-menu.svg");
}
.i-info {
  background-image: url("../../images/portal/icons/i-info.svg");
}
.i-delete {
  background-image: url("../../images/portal/icons/i-delete-circle.svg");
}
.i-success {
  background-image: url("../../images/portal/icons/i-success.svg");
}
.i-error {
  background-image: url("../../images/portal/icons/i-error.svg");
}
.i-user {
  background-image: url("../../images/portal/icons/i-user.svg");
}
.i-city {
  background-image: url("../../images/portal/icons/i-city.svg");
}
.i-newspaper {
  background-image: url("../../images/portal/icons/i-newspaper.svg");
}
/** E:图标集 */