body,
div,
ul,
ol,
p,
span,
a,
img,
header,
nav,
article,
section,
footer,
h1,
dd {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  /* 自定义主色调 */
  --colorBase: #1676fe;
}
body {
  font-size: 0.14rem;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: inset 0 0 0 1000px #fff;
}

/* 按钮规范 */
.btn_block {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}
.btnRed,
.btnRed:hover,
.btnRed:active {
  color: #fff;
  border-color: #d9001b;
  background-color: #d9001b;
  min-width: 100px;
  height: 40px;
}

/* 主要用于提交类 */
.btnBlur,
.btnBlur:hover {
  color: #fff;
  border-color: var(--colorBase) !important;
  background-color: var(--colorBase) !important;
  min-width: 100px;
  height: 40px;
  line-height: 1;
}
.btnBlur:active {
  background-color: #3b89f7 !important;
  border-color: #3b89f7 !important;
}
/* 主要用于表单类 */
.btnInput,
.btnInput:hover {
  background-color: #fff;
  color: #bcbcbc;
  border-color: #bcbcbc;
  min-width: 100px;
  height: 40px;
}
.btnInput:active {
  color: #fff;
  border-color: var(--colorBase);
  background-color: var(--colorBase);
}

/* 主要用于侧边下拉菜单栏 */
.btnAside {
  background-color: #fff;
  color: #000;
  border-color: #000;
  min-width: 100px;
  height: 40px;
}
.btnAside:hover {
  background-color: #dcebff;
  color: #000;
  border-color: #dcebff;
}
.btnAside:active {
  background-color: #c7deff;
  color: #000;
  border-color: #c7deff;
}
/* 首页的按钮 */
.btnIndex,
.btnIndex:hover {
  background-color: #fff;
  color: var(--colorBase);
  border-color: #fff;
  min-width: 100px;
  height: 40px;
}
.btnIndex:active {
  color: #fff;
  border-color: var(--colorBase);
  background-color: var(--colorBase);
}
/* 用于登录，注册页面的按钮 */
/* 不可点击的按钮颜色 */
.disdown,
.disdown.hover,
.disdown:hover,
.disdown:active {
  border: #b8d6ff;
  background-color: #b8d6ff;
  color: #fff;
  min-width: 100px;
  height: 40px;
}

.btnBlurBtn,
.btnBlurBtn:hover {
  border-color: var(--colorBase) !important;
  background-color: var(--colorBase) !important;
  color: #fff !important;
}
.btnBlurBtn:active {
  color: #fff;
  border-color: #3b89f7 !important;
  background-color: #3b89f7 !important;
}

.btnInputBtn,
.btnInputBtn:hover {
  border-color: rgba(22, 119, 255, 0.3) !important;
  background-color: rgba(22, 119, 255, 0.3) !important;
  color: #fff;
}
.btnInputBtn:active {
  color: #fff;
  border-color: var(--colorBase) !important;
  background-color: var(--colorBase) !important;
}

/* 输入框 */
.input_type,
input.enterInput {
  border: 1px solid #bcbcbc;
  border-radius: 5px;
  text-indent: 1em;
  outline: none;
  height: 35px;
}
input.enterInput:focus {
  border-color: var(--colorBase);
}

/* 文本域 */
textarea.enterInput {
  border: 1px solid #bcbcbc;
  border-radius: 5px;
  text-indent: 1em;
  outline: none;
  height: 70px;
  resize: none;
}
textarea.enterInput:focus {
  border-color: var(--colorBase);
}

/* 下拉框 */

select.pullDown {
  border: 1px solid #bcbcbc;
  border-radius: 5px;
  text-indent: 1em;
  outline: none;
  height: 35px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
option:hover {
  background-color: var(--colorBase);
}
/* 边框的颜色（错误的颜色） */
.bdColRed {
  border: #f00;
}

a.authBook {
  color: var(--colorBase);
}
a.authBook:hover,
a.authBook.hover {
  color: #373737;
}

a.jump {
  color: var(--colorBase);
}
a.jump:hover,
a.jump.hover {
  color: #cfe3fe;
}

/* 图片需要一个盒子包起来 */
img.img {
  width: 100%;
  height: 100%;
}
img.toImg {
  cursor: pointer;
}

/* 布局开始 */
.disflex {
  display: flex;
  display: -webkit-flex;
}
.dicCol {
  flex-direction: column;
}
.flexW {
  flex-wrap: wrap;
}
.flexD {
  flex-direction: column;
}
.js {
  justify-content: start;
}
.jed {
  justify-content: flex-end;
}
.jc {
  justify-content: center;
  -webkit-justify-content: center;
}
.jsb {
  justify-content: space-between;
}
.jsa {
  justify-content: space-around;
}
.jfe {
  justify-content: flex-end;
}
.ac {
  align-items: center;
  -webkit-align-items: center;
}
.afe {
  align-items: flex-end;
}
.afd {
  align-self: flex-start;
}
.selac {
  align-self: center;
}
.selafe {
  align-self: flex-end;
}

.col_01 {
  flex: 0 0 100%;
}
.col_02 {
  flex: 0 0 50%;
}
.col_03_1 {
  flex: 0 0 33.3%;
}
.col_03_2 {
  flex: 0 0 33.4%;
}
.col_04 {
  flex: 0 0 25%;
}
.col_05 {
  flex: 0 0 20%;
}
.col_06_01 {
  flex: 0 0 16.6%;
}
.col_06_02 {
  flex: 0 0 16.7%;
}
.col_100_01 {
  flex: 0 0 1%;
}
.col_100_40 {
  flex: 0 0 40%;
}
.col_10 {
  flex: 0 0 10%;
}
.flex01 {
  flex: 1;
  flex-grow: 1;
}
/* 布局结束 */

/* 题目的标记开始 */
.title_line {
  padding-bottom: 6px;
  display: flex;
}
.title_line .left {
  width: 65px;
  height: 9px;
  border-bottom: 3px solid #202020;
}

.title_line .right {
  position: relative;
  height: 9px;
  width: 17px;
  border-bottom: 3px solid #202020;
  background-color: transparent;
}
.title_line .right:before {
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  bottom: 0;
  border-bottom: 9px solid #000;
  border-left: 17px solid transparent;
  content: "";
}

.title_line .right:after {
  position: absolute;
  left: 3px;
  right: 0;
  top: 3px;
  bottom: 0;
  border-bottom: 7px solid white;
  border-left: 15px solid transparent;
  content: "";
}
/* 题目的标记结束 */

/* 旋转开始 */
.rotateX90 {
  transform: rotateX(90deg);
}
.rotateX180 {
  transform: rotateX(180deg);
}
.rotateX270 {
  transform: rotateX(270deg);
}

.rotateY90 {
  transform: rotateY(90deg);
}
.rotateY180 {
  transform: rotateY(180deg);
}
.rotateY270 {
  transform: rotateY(270deg);
}

.rotateZ90 {
  transform: rotateZ(90deg);
}
.rotateZ180 {
  transform: rotateZ(180deg);
}
.rotateZ270 {
  transform: rotateZ(270deg);
}

.rotateX180Y180 {
  transform: rotateY(180deg) rotateX(180deg);
}
/* 旋转结束 */

/* 颜色设置 开始 */
.black_01 {
  color: #373737 !important;
}
.blur_01 {
  color: #1676fe !important;
}
.gray_01 {
  color: #bcbcbc !important;
}

.blur_02:hover > a,
.blur_02:hover > span {
  color: #1676fe !important;
}

.gray_02:hover {
  color: #202020 !important;
}

/* 颜色设置 结束 */

/* 背景颜色的设置 开始 */
.bgblur_01 {
  background-color: rgba(22, 118, 254, 0.2) !important;
}
/* 背景颜色的设置 结束 */

/* ? 开始 */
.selectCircle {
  position: relative;
}
span.circle {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #bcbcbc;
}

/* 提交表单的弹出窗 */
.submitAudit {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
}
.submitAudit .bg {
  padding: 0 40px 27px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 702px;
  height: 236px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.submitAudit .bg .btn_div {
  align-self: flex-end;
  display: flex;
  height: 80px;
}
.submitAudit .bg .btn_div > div {
  margin-left: 20px;
  display: flex;
  align-items: flex-end;
}

.overHide {
  overflow: hidden !important;
}

/* 信息的提示 */

.message-success {
  position: fixed;
  left: 50%;
  top: 82px;
  transform: translate(-50%, 0);
  padding: 15px 20px;
  display: none;
  background-color: #f0f9eb;
  border: 1px solid #e1f3d8;
  color: #67c23a;
  min-width: 400px;
  border-radius: 5px;
}

.message-lose {
  position: fixed;
  left: 50%;
  top: 82px;
  transform: translate(-50%, 0);
  padding: 15px 20px;
  display: none;

  background-color: #fef0f0;
  border: 1px solid #fde2e2;
  color: #f56c6c;
  min-width: 400px;
  border-radius: 5px;
}

/* 放大图片的大小 */
.bigbg {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  height: 100%;
}
.bigbg .bigbgImg {
  width: 90%;
  height: 95%;
  overflow-y: auto;
  z-index: 10001;
  /* background-color: #fff; */
  transform: translate(-50%, -50%);
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

/* 返回按钮的位置 */
.lastStep {
  position: absolute;
  top: -15px;
  left: 35px;
  color: var(--colorBase);
  cursor: pointer;
}
.lastStep .iconfont {
  margin: 0;
}

/* 表单上的a标签的显示 */
tr a.colblur {
  color: var(--colorBase);
}
tr a.colblur:hover {
  color: #cfe3fe;
}
#tBody tr:nth-child(even) {
  background-color: #fff;
}
#tBody tr:hover {
  /* background-color: #F8F8F8; */
  /* background-color: #f3f8ff; */
  /* background-color: #f7f9fa; */
  /* background-color: #eaeaea; */
  background-color: #f7f9fa;
}

/* 布局 样式 开始 */
.el_layout_main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.el_layout_main .el_layout_top {
  height: 65px;
  flex: 0 0 100%;
  /* background-color: aqua; */
  border-bottom: 1px solid #ccc;
}

.el_layout_main .el_layout_bottom {
  height: calc(100vh - 65px);
  flex: 0 0 100%;
  /* background-color: chartreuse; */
  display: flex;
  justify-content: space-between;
}

.el_layout_main .el_layout_left {
  height: 100%;
  /* background-color: blue; */
  width: 220px;
  overflow: hidden;
}

.el_layout_main .el_layout_right {
  height: 100%;
  width: calc(100vw - 220px);
  /* background-color: blueviolet; */
}
/* 布局 样式 结束 */

.ifmChange {
  width: 100vw;
  height: 100vh;
  padding: 65px 0 0 220px;
}

.bgf1F1 {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #373737;
}
.bgf1F1 th {
  color: #373737 !important;
}

.h100w40 {
  height: 40px;
  width: 100px;
}
.w100 {
  width: 100px;
}
.w120 {
  width: 120px;
}

.w77_5 {
  width: 77%;
}

/* 字体设置 开始 */
.fontS14 {
  font-size: 14px;
  font-size: 0.14rem !important;
}
.fontS16 {
  font-size: 16px;
  font-size: 0.16rem !important;
}
.fontS18 {
  font-size: 18px;
  font-size: 0.18rem !important;
}
.fontS20 {
  font-size: 20px;
  font-size: 0.2rem !important;
}
.fontS22 {
  font-size: 22px;
  font-size: 0.22rem !important;
}
.fontS24 {
  font-size: 24px;
  font-size: 0.24rem !important;
}
.fontS30 {
  font-size: 30px;
  font-size: 0.3rem !important;
}
.fontS32 {
  font-size: 32px;
  font-size: 0.32rem !important;
}
.fontS34 {
  font-size: 34px;
  font-size: 0.34rem !important;
}
.fontS36 {
  font-size: 36px;
  font-size: 0.36rem !important;
}
.fontS40 {
  font-size: 40px;
  font-size: 0.4rem !important;
}
.fontS50 {
  font-size: 50px;
  font-size: 0.5rem !important;
}
.fontS60 {
  font-size: 60px;
  font-size: 0.6rem !important;
}
.fontS65 {
  font-size: 65px;
  font-size: 0.65rem !important;
}
.fontS80 {
  font-size: 80px;
  font-size: 0.8rem !important;
}
.fontS95 {
  font-size: 95px;
  font-size: 0.95rem !important;
}
.fontS144 {
  font-size: 144px;
  font-size: 1.44rem !important;
}
/* 字体设置 结束 */

/* 管理后台的设置 开始 */
.back_end {
  min-width: 1200px;
  width: 100%;
  height: 100%;
  /* background-color: tomato; */
}
.back_end .back_end_top {
  width: 100%;
  height: 65px;
  /* background-color: rosybrown; */
}
.back_end .back_end_button {
  display: flex;
}
.back_end .back_end_left {
  width: 230px;
  height: calc(100vh - 65px);
  /* background-color: yellowgreen; */
}
.back_end .back_end_right {
  width: calc(100vw - 230px);
  height: calc(100vh - 65px);
  /* background-color: blueviolet; */
}
@media (max-width: 1200px) {
  .back_end .back_end_right {
    width: calc(1200px - 230px);
  }
}
/* 管理后台的设置 结束 */

/* 官网的动态 开始 */
.posR {
  position: relative;
}
.text_sliceUp {
  position: relative;
  /* position: absolute; */
  top: 100%;
  left: 0;
  opacity: 0;
}
.left_sliceUp {
  position: relative;
  /* position: absolute; */
  top: 0;
  left: 100%;
  opacity: 0;
}
.right_sliceUp {
  position: relative;
  /* position: absolute; */
  top: 0;
  right: 100%;
  opacity: 0;
}
.lucency_show {
  opacity: 0;
}
/* 官网的动态 结束 */


.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: #8b8d8f; */
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal .little-square {
  /* background: #fff; */
  /* width: 17vw; */
  /* height: 17vw; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal .little-square .outer_text {
  margin-top: 5px;
  color: #fff;
}

.modal .little-square .outer {
  width: 16vw;
  height: 16vw;
  position: relative;
  animation: moveover 2s ease-out infinite;
}

.modal .little-square .outer .box1 {
  position: absolute;
  width: 8vw;
  height: 16vw;
  border-radius: 8vw 0 0 8vw;
  background: linear-gradient(#444, #999);
  z-index: 2;
}

.modal .little-square .outer .box2 {
  position: absolute;
  width: 8vw;
  height: 16vw;
  border-radius: 0 8vw 8vw 0;
  left: 50%;
  background: linear-gradient(#eee, #999);
  z-index: 1;
}

.modal .little-square .outer .box3 {
  position: absolute;
  width: 12vw;
  height: 12vw;
  top: 2vw;
  left: 2vw;
  border-radius: 50%;
  /* background: #fff; */
  background: #333;
  z-index: 3;
}