.header {
    height: 60px;
    background: #232b47;
    user-select: none;
}

.header.shadow {
    box-shadow: 0px -4px 32px -6px #0a0a0a;
}

.header .nav {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.header .nav .logo {
    padding-top: 10px;
}

.header .nav .logo img{
    width: 160px;
}

.header .nav-right {
    font-size: 14px;
    line-height: 60px;
    color: #fff;
}

.header .nav-right i {
    padding: 0 10px;
}

.header .nav-right p {
    display: inline-block;
    color: #fff;
    cursor: pointer;
}

.header .nav-right p:hover {
    color: #d4dce4;
}

.main .main-container {
     width: 1300px;
     margin: 0 auto;
 }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding:6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
  border-color: #84b330; /*bcdd7d  66afe9*/
  outline: 0;
}

.title {
    font-size: 26px;
    line-height: 40px;
    padding-left: 14px;
    border-bottom: 2px solid #dedede;
    color: #333;
}

.loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: #fff;
}

.loading.active {
    display: block;
}

.loading .position {
    width: 180px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}


/**/

.loading .circular {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    right: 50%;
    animation: loading-rotate 2s linear infinite
}

.loading .path {
    animation: loading-dash 1.5s ease-in-out infinite;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-width: 2;
    stroke: #20a0ff;
    stroke-linecap: round
}

@keyframes loading-rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40px
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120px
    }
}

