blockquote, body, button, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, input, ul, li, ol, p, pre, td, textarea, th, header, footer, nav, section, aside, article, main, a {
  box-sizing: border-box;
}
:root {
  --primary: rgba(38, 98, 174, 1);
  --orange: rgba(255, 87, 51, 1);
}
html {
  min-width: 680px;
}
@media screen and (max-width: 800px) {
  .l-form {
    width: 100% !important;
  }
  .text-wrap {
    display: block !important;
  }
  .t-aside {
    margin-top: 24px;
    margin-left: 0 !important;
    display: flex !important;
  }
}
body {
  touch-action: pan-x pan-y;
  -webkit-user-drag: none;
  margin: auto;
  background-color: rgba(246, 246, 246, 1);
  font-size: 14px;
  color: #383838;
}
img, video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
input, button, select, textarea {
  outline: none;
  border: none;
  background-color: transparent;
}
button:hover {
  opacity: 0.8;
}

.pr {
  position: relative;
}
.f-13 {
  font-size: 13px;
}
.f-15 {
  font-size: 15px;
}
.f-17 {
  font-size: 17px;
}
.f-b {
  font-weight: bold;
}
.t-c {
  text-align: center;
}
.t-sw {
  font-weight: 500;
}

.flex {
  display: flex;
}
.flex-d-col {
  flex-direction: column;
}
.flex-y-c {
  display: flex;
  align-items: center;
}
.flex-x-c {
  justify-content: center;
}
.flex-x-b {
  justify-content: space-between;
}
.flex-1 {
  flex: 1;
  overflow: hidden;
}
.ml-x {
  margin-left: auto;
}
.m-auto {
  margin: auto;
}
.pr {
  position: relative;
}
.primary-bg {
  background-color: #03539a;
  color: #fff;
}
.orange-bg {
  background-color: rgba(255, 141, 26, 1);
}
.plain {
  background-color: rgba(0, 132, 209, 0.1);
  color: var(--primary);
}
.primary-bd {
  background-color: inherit;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.t-primary {
  color: var(--primary) !important;
}
.t-white {
  color: #fff !important;
}
.t-gray {
  color: #808080;
}
.t-a6 {
  color: #a6a6a6;
}
.t-333 {
  color: #333;
}
.t-555 {
  color: #555;
}
.t-777 {
  color: #777;
}
.t-999 {
  color: #999;
}
.t-success {
  color: #43cf7c !important;
}
.t-warning {
  color: rgba(255, 87, 51, 1) !important;
}

.bgc-white {
  background-color: #fff;
}
.bgc-primary {
  background-color: var(--primary);
}
.bgc-gray {
  background-color: rgba(249, 249, 249, 1);
}
.r-fill {
  border-radius: 999px;
}

/* 头部 */
.header {
  width: 100%;
  height: 90px;
  padding: 0 50px;
  box-shadow: 0 3px 9px rgba(41, 41, 41, 0.05);
}
.logo1 {
  /*width: 96px;*/
  /*height: 46px;*/
  font-size: 0;
}
.logo2 {
  width: 54px;
  height: 54px;
  font-size: 0;
  margin-left: 10px;
  margin-right: 25px;
}
.name {
  font-size: 20px;
  font-weight: 700;
}

.main {
  min-height: calc(100vh - 90px);
}
.f-hover {
  cursor: pointer;
}
.f-hover:hover {
  opacity: 0.8;
}