@charset "UTF-8";
* {
  box-sizing: border-box; }

/* 移除input元素的高亮边框 */
input:focus {
  outline: none;
  /* 去除默认的轮廓线 */
  border-color: transparent;
  /* 可选：去除边框颜色 */
  box-shadow: none;
  /* 可选：去除阴影效果 */ }

select:focus {
  outline: none;
  /* 去除默认的轮廓线 */
  border-color: transparent;
  /* 可选：去除边框颜色 */
  box-shadow: none;
  /* 可选：去除阴影效果 */ }

/* 如果你想要对所有input类型使用统一的样式，可以使用 */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none; }

.login-body {
  background: url(../img/bg_login.jpg) no-repeat left top;
  background-size: 100% auto;
  height: 100%; }

.form-body {
  background: #0c0c0c url(../img/bg_form.jpg) no-repeat left top;
  background-size: 100% auto;
  height: 100%; }

.login-warp {
  width: 100%;
  height: 100%; }

.logo-wrap {
  position: absolute;
  left: 140px;
  top: 50px;
  z-index: 9; }

.login-wrap {
  position: fixed;
  right: 14%;
  top: 50%;
  transform: translate(0, -45%);
  background: #2A2A2A;
  width: 630px;
  height: 560px;
  padding: 80px 60px; }
  .login-wrap .title {
    text-align: center;
    color: #fff;
    font-size: 30px;
    line-height: 24px; }
  .login-wrap .form-wrap {
    margin-top: 60px; }
  .login-wrap .form-item {
    border: 1px solid #F1B31E;
    background: #23221F;
    height: 66px;
    border-radius: 5px;
    width: 510px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 10px; }
  .login-wrap .input-text {
    background: rgba(0, 0, 0, 0);
    border: 0;
    width: 100%;
    height: 60px;
    color: #fff;
    font-size: 16px; }
  .login-wrap .tips {
    padding: 27px 0 0;
    text-align: right; }
    .login-wrap .tips a {
      font-size: 14px;
      color: #F1B31E; }

.btn-sub {
  width: 100%;
  height: 58px;
  line-height: 58px;
  border-radius: 100px;
  background: #F1B31E;
  font-size: 18px;
  color: #000000;
  display: block;
  text-align: center; }

#scope {
  display: none; }

.scope-wrap {
  padding: 48px 50px;
  background: #2A2A2A;
  color: #fff; }
  .scope-wrap .scope-item {
    margin-bottom: 40px; }
  .scope-wrap .title {
    color: #F1B31E;
    font-size: 30px;
    margin-bottom: 14px; }
  .scope-wrap .text {
    font-size: 14px;
    line-height: 24px; }
  .scope-wrap .text-item {
    position: relative;
    margin-bottom: 14px;
    padding-left: 23px;
    line-height: 24px; }
  .scope-wrap .circle {
    background: #F1B31E;
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    left: 8px;
    top: 9px;
    border-radius: 50%; }

.enter-wrap {
  color: #fff;
  width: 1200px;
  margin: 0 auto;
  padding: 180px 0 100px; }
  .enter-wrap .nav-list {
    display: flex;
    justify-content: space-between;
    width: 715px;
    margin: 35px auto 53px; }
    .enter-wrap .nav-list .nav-item {
      width: 342px;
      border: 1px solid #F1B31E;
      height: 48px;
      line-height: 46px;
      text-align: center; }
      .enter-wrap .nav-list .nav-item.active {
        background: #F1B31E; }
      .enter-wrap .nav-list .nav-item a {
        display: block;
        color: #fff;
        font-size: 18px;
        font-weight: bold; }

.enter-top {
  text-align: center; }
  .enter-top .title {
    font-size: 36px;
    font-weight: bold;
    line-height: 24px;
    color: #F1B31E;
    margin-bottom: 20px; }
  .enter-top .text {
    font-size: 24px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 20px; }
  .enter-top .tips {
    font-size: 14px; }
    .enter-top .tips a {
      color: #F1B31E;
      margin-left: 12px; }

.enter-form {
  background: rgba(42, 42, 42, 0.9);
  padding: 38px 50px; }
  .enter-form .ibox {
    margin-bottom: 50px; }
    .enter-form .ibox .title {
      height: 22px;
      line-height: 22px;
      color: #F1B31E;
      font-size: 18px;
      font-weight: bold;
      display: flex;
      align-items: center;
      margin-bottom: 24px; }
    .enter-form .ibox .icon {
      display: block;
      width: 4px;
      height: 16px;
      border-radius: 6px;
      background: #F1B31E;
      margin-right: 8px; }
  .enter-form .form-item {
    margin-bottom: 12px;
    border-bottom: 1px solid #4D4D4D;
    min-height: 40px;
    line-height: 30px;
    display: flex;
    justify-content: space-between; }
    .enter-form .form-item .label {
      font-weight: bold; }
      .enter-form .form-item .label .re {
        color: #F1B31E;
        margin-left: 3px; }
    .enter-form .form-item .value {
      width: 500px;
      border-bottom: 2px solid #F1B31E;
      text-align: right; }
    .enter-form .form-item .label {
      line-height: 30px;
      display: block;
      height: 30px; }
    .enter-form .form-item .input-text {
      width: 100%;
      height: 30px;
      border: 0;
      text-align: right;
      font-weight: bold;
      color: #fff;
      background: rgba(0, 0, 0, 0); }
      .enter-form .form-item .input-text::placeholder {
        color: #fff; }
  .enter-form .btnbox {
    width: 510px;
    margin: 0 auto; }

.up-list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #4D4D4D;
  padding-bottom: 15px; }

.webuploader-pick {
  background: none;
  color: rgba(0, 0, 0, 0);
  background: url(../img/up.png) no-repeat;
  width: 95px;
  height: 95px; }

.up-wrap .tit {
  padding: 5px 0;
  margin-bottom: 15px; }

.label-wrap {
  display: block;
  text-align: right; }
  .label-wrap .label-item {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    margin-left: 20px; }
  .label-wrap input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0; }
  .label-wrap .icon-checkbox {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url("../img/checked.png") no-repeat;
    margin-right: 6px; }
  .label-wrap input[type="checkbox"]:checked + .icon-checkbox {
    background-image: url("../img/checkeds.png"); }

.checked-wrap .checked-cont {
  padding: 10px 0; }
  .checked-wrap .checked-cont .title {
    display: block;
    background-color: #F1B31E;
    color: #000;
    text-align: center;
    font-size: 18px;
    width: 294px;
    height: 47px;
    line-height: 47px;
    margin: 0 auto;
    font-weight: bold; }

.fileBoxUl2 {
  display: flex;
  width: 1000px;
  flex-wrap: wrap; }
  .fileBoxUl2 li {
    margin-right: 12px; }

.icon-home {
  position: absolute;
  right: 100px;
  top: 50px;
  z-index: 99; }

.enter-list .enter-item {
  border: 1px solid #F1B31E;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px; }

/*# sourceMappingURL=form.css.map */


div .login-wrap{
	background: rgba(126, 48, 141, 0.6);
}
div .btn-sub{
	/* background: #966AA1; */
	background: #7E308D;
	color: #fff;
}
div .login-wrap .tips a{
	color: #fff;
}

div .login-wrap .form-item{
	/* background: rgba(255, 255, 255, 0.3); */
	background: rgba(255, 255, 255, 0.6);
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border: 0;
}
div	.login-wrap .input-text{
	color: #fff;
}

	div	.login-wrap .input-text::placeholder{
			  color: #fff;
			
		}
		
		
		div .enter-wrap{
			/* padding: 400px; */
			margin-top: 740px;
			background: #fff;
			padding: 120px;
		}
		div .enter-top{
			color: #7E308D;
		}
		
		div .enter-form .form-item .value{
			border-bottom: 3px solid #7E308D;
		}
		div .enter-form .ibox .title{
			color: #7E308D;
		}
		div .enter-form .ibox .icon{
			background: #7E308D;
		}
		
		div .enter-form .form-item .label{
			color: #050505;
		}
		
		div .enter-form .form-item .label{
			color: #050505;
		}
		
		div .enter-form{
			background: #fff;
		}
		
		div .enter-form .form-item{
			border-color: #ddd;
		}
		
		div .enter-form .form-item .value{
			color: #050505;
		}
		
		body.form-body{
			background-color: #f9f9f9;
			background-size: 1920px auto;
			background-position: center top;
		}
		
		
		div .enter-top .title{
			color: #7E308D;
		}
		
		div .scope-wrap{
			background: #fff;
			color: #000;
		}
		div .scope-wrap .title{
			color: #7E308D;
		}
		div .scope-wrap .text{
			color: #000;
		}
		div .scope-wrap .circle{
			background: #7E308D;
		}
		div .enter-wrap .nav-list .nav-item.active{
			background: #7E308D;
			border-color: #7E308D;
		}
		
		div .enter-wrap .nav-list .nav-item{
			color: #7E308D;
			border: 1px solid #7E308D;
			border-radius:5px;
		}
		div .enter-wrap .nav-list .nav-item a{
			color: #7E308D;
		}
		div .enter-top .tips a{
			color: #7E308D;
		}
		
		div .enter-form .form-item .input-text{
			color: #000;
		}
		
		div .enter-form .form-item .input-text::placeholder{
			color: #333;
		}
		
		div .el-input--small .el-input__inner{
			color: #000;
		}
		
		div .enter-wrap .nav-list .nav-item.active a{
			color: #fff;
		}
		
		div.login-wrap{
			border-radius: 20px;
		}
		
		div .checked-wrap .checked-cont .title{
			background: #7E308D;
			color: #fff;
		}
		
		div .login-wrap2{
			background: rgba(0, 0, 0, 0);
			right: 50%;
			transform: translate(50%,-65%);
			width: 760px;
			height: auto;
			padding: 0;
		}
		div .login-wrap2 .form-wrap{
			/* background: rgba(126, 48, 141, 0.8); */
			background: rgba(126, 48, 141, 0.6);
			display: flex;
			padding: 30px;
			border-radius: 10px;
			margin-top: 35px;
		}
		
		div .login-wrap2.login-wrap .form-item{
			width: 80%;
			border-radius: 10px 0 0 10px;
			background: rgba(255, 255, 255, 0.6);
			border: 0;
			margin-bottom: 0;
		}
		div .login-wrap2 .btn-sub{
			width: 20%;
			box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
			background: #7E308D;
			border-radius: 0 50px 50px 0;
			color: #fff;
			height: 66px;
			line-height: 66px;
		}
		
		
		div .login-wrap2 .tips{
			display: none;
		}
		
		
		.login-wrap.login-wrap2 .title{
			font-size:40px;
		}
		
		.logo-wrap{
			display: none;
		}
		.icon-home{
			display: none;
		}
		
		