.out-container {
  position: relative;
}
.bg-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.white-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  z-index: -99;
}
.page-head {
  height: 296px;
  width: 1200px;
  color: #fff;
  background: url(../../img/bg-net.png) no-repeat -480px -139px;
  background-size: 200% 300%;
  background-position: -740px -100px;
}
.page-head .help {
  height: 48px;
  line-height: 48px;
  font-size: 16px;
}
.page-head .help a {
  color: #fff;
  text-decoration: none;
}
.page-head .help span {
  margin-right: 20px;
}
article {
  width: 1200px;
  margin: auto;
}
.title-wrapper {
  height: 164px;
  display: flex;
  color: #fff;
}
.title-wrapper > div {
  width: 50%;
  height: 164px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.title-wrapper .text-right {
  justify-content: flex-end;
}
.title-wrapper .text-right:last-child {
  text-align: left;
}
.title-wrapper .text-right input {
  border-radius: 0;
  display: inline-block;
  width: 427px;
  font-size: 14px;
}
.title-wrapper .text-right input:focus,
.title-wrapper .text-right input:active {
  outline: none;
  box-shadow: none;
}
.title-wrapper .text-right button {
  border-radius: 5px;
  border: none;
  background: #fff;
  color: #2E80F4;
}
.title-wrapper .text-right button a:link,
.title-wrapper .text-right button a:hover,
.title-wrapper .text-right button a:focus,
.title-wrapper .text-right button a:active,
.title-wrapper .text-right button a:visited {
  text-decoration: none;
  color: #2E80F4;
}
.title-wrapper .head-title {
  display: inline-block;
}
.title-wrapper .head-title .big-title {
  font-size: 35px;
  margin-left: 40px;
  letter-spacing: 2px;
}
.title-wrapper .head-title .title-desc {
  margin-left: 40px;
  letter-spacing: 1px;
}
.title-wrapper .btn-wrapper {
  position: relative;
}
.title-wrapper .btn-wrapper img {
  position: absolute;
  top: 90px;
  right: 185px;
  pointer-events: none;
}
.title-wrapper .btn-wrapper button {
  border: none;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 600;
}
.title-wrapper .btn-wrapper button:last-child {
  margin-left: 20px;
  margin-right: 30px;
}
.title-wrapper .btn-wrapper i {
  font-size: 22px;
}
.setps-wrapper {
  display: flex;
  color: #000;
}
.setps-wrapper .step-item {
  width: 33%;
  display: flex;
  align-items: center;
}
.setps-wrapper .step-item .step-text {
  width: 66%;
  margin-left: 10px;
}
.setps-wrapper .step-item .step-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2875f2;
}
.setps-wrapper .step-item .step-text p {
  font-size: 14px;
  margin-top: 10px;
}
.setps-wrapper .step-item .step-text .doing {
  color: #fca81d;
  display: none;
}
.setps-wrapper .step-item .step-text .doing.active {
  display: inline;
}
.setps-wrapper .step-item .step-text .pending {
  color: #aaa;
  display: none;
}
.setps-wrapper .step-item .step-text .pending.active {
  display: inline;
}
.setps-wrapper .step-item .step-text .finish {
  color: #2875f2;
  display: none;
}
.setps-wrapper .step-item .step-text .finish.active {
  display: inline;
}
.setps-wrapper .step-item .step-angle {
  height: 60%;
}
.content-container {
  width: 860px;
  margin: auto;
}
.content-container .content-title {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
}
.content-container .box-with-shadow {
  box-shadow: 0 0 15px #cfdff9;
  padding: 20px;
  border-radius: 5px;
}
.content-container .box-with-shadow .question-title {
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
}
.question-wrapper {
  padding: 16px 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.question-wrapper .item {
  position: relative;
  width: 48%;
  display: flex;
  margin: 0 0 20px;
}
.question-wrapper .item:nth-child(odd) {
  margin-right: 4%;
}
.question-wrapper .item:hover > label {
  background: #c7dcfd;
}
.question-wrapper .item:hover > input:checked + label {
  background: #286ed0;
}
.question-wrapper .item > label {
  display: inline-block;
  padding: 10px 24px 10px;
  height: 100%;
  width: 100%;
  background: #E3EEFF;
  color: #2E80F4;
  transition: all 0.15s ease-in-out;
}
.question-wrapper .item > input {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}
.question-wrapper .item > input:checked + label {
  background: #2E80F4;
  color: #fff;
}
.foot-wrapper {
  width: 860px;
  margin: auto;
  height: 200px;
}
.foot-wrapper .condition-text {
  border: 1px dashed #eee;
  padding: 24px;
}
.foot-wrapper .condition-text > span {
  padding-left: 20px;
  display: inline-block;
  width: 95%;
  vertical-align: top;
  font-size: 16px;
}
.btn-submit,
.btn-next {
  background: #2E80F4;
  color: #fff;
  display: inline-block;
  min-width: 110px;
  padding: 8px 16px;
  border: none;
}
.btn-submit:hover,
.btn-next:hover,
.btn-submit:focus,
.btn-next:focus {
  background: #2769c7;
  outline: none;
}
.btn-submit:active,
.btn-next:active {
  background: #1f529a;
  outline: none;
}
.btn-submit:disabled,
.btn-next:disabled {
  background: #73abfb;
}
.btn-prev {
  background: #E3EEFF;
  color: #2769c7;
  display: inline-block;
  width: 110px;
  padding: 8px 0;
  border: none;
}
.btn-prev:hover,
.btn-prev:focus {
  background: #cedff9;
  outline: none;
}
.btn-prev:active {
  background: #b4cef7;
  outline: none;
}
.btn-prev:disabled {
  background: #dce9fd !important;
  opacity: .6;
}
.step-2 .materials-container {
  display: flex;
}
.step-2 .materials-container .guide-pic {
  width: 10%;
  padding-top: 20px;
}
.step-2 .materials-container .content-wrapper {
  width: 60%;
  padding: 16px;
}
.step-2 .materials-container .content-wrapper .content-title {
  padding: 8px 16px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  background: #E3EEFF;
  position: relative;
}
.step-2 .materials-container .content-wrapper .content-title::before {
  content: '';
  display: block;
  position: absolute;
  border-top: 15px solid transparent;
  border-right: 15px solid #E3EEFF;
  border-bottom: 15px solid transparent;
  left: -15px;
  top: 20px;
}
.step-2 .materials-container .content-wrapper .matter-group {
  margin-bottom: 20px;
}
.step-2 .materials-container .content-wrapper .matter-group-title {
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 600;
  background: #E3EEFF;
}
.step-2 .materials-container .content-wrapper .matter-group-title span {
  color: red;
  font-size: 14px;
}
.step-2 .materials-container .content-wrapper .matter-item .item-title,
.step-2 .materials-container .content-wrapper .matter-item .item-content > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-2 .materials-container .content-wrapper .matter-item .item-title {
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
  background: #f4f4f4;
  position: relative;
}
.step-2 .materials-container .content-wrapper .matter-item .simple-btn {
  font-size: 14px;
  font-weight: normal;
  width: 100px;
  text-align: center;
  color: #2875f2;
  display: inline-block;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.step-2 .materials-container .content-wrapper .matter-item .simple-btn:last-child {
  background: #dfebff;
}
.step-2 .materials-container .content-wrapper .matter-item .simple-btn:hover {
  opacity: .8;
}
.step-2 .materials-container .content-wrapper .matter-item .simple-btn.added {
  background: #2E80F4;
  color: #fff;
}
.step-2 .materials-container .content-wrapper .matter-item .item-content > div {
  padding: 16px 28px;
}
.step-2 .materials-container .content-wrapper .matter-item .item-content > div > span {
  font-size: 14px;
}
.step-2 .materials-container .content-wrapper .matter-item .item-content > div > span:nth-child(1) {
  font-size: 15px;
}
.step-2 .materials-container .content-wrapper .matter-item .item-content > div a {
  color: #2E80F4;
}
.step-2 .materials-container .content-wrapper .matter-item .item-content > div + div {
  border-top: 1px solid #eee;
}
.step-2 .materials-container .content-wrapper .trash-item {
  color: #fff;
  background: #fdb22a;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
}
.step-2 .materials-container .content-wrapper .trash-item i {
  font-size: 20px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.step-2 .materials-container .content-wrapper .trash-item i.active {
  transform: rotate(180deg);
}
.step-2 .materials-container .fqa-wrapper {
  width: 30%;
}
.step-2 .materials-container .fqa-wrapper > div {
  padding: 16px;
}
.step-2 .materials-container .fqa-wrapper .fqa-title {
  padding: 8px;
  background: #E3EEFF;
}
.step-2 .materials-container .fqa-wrapper .fqa-title + div a {
  cursor: pointer;
}
.step-2 .materials-container .fqa-wrapper .flex-box > div {
  background: #eee;
  width: 48%;
  height: 140px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-2 .materials-container .fqa-wrapper .flex-box > div p {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.step-2 .materials-container .fqa-wrapper .fast-entry {
  cursor: pointer;
}
.step-2 .materials-container .fqa-wrapper .fast-entry:hover {
  color: #2E80F4;
}
.step-2 .materials-container .fqa-wrapper .dashed-box > div {
  margin-bottom: 10px;
}
.step-2 .materials-container .box-with-shadow {
  box-shadow: 0 0 15px #cfdff9;
}
.step-2 .materials-container .flex-box {
  display: flex;
  justify-content: space-between;
}
.step-2 .materials-container .dashed-box {
  padding: 16px;
  border: 1px dashed #eee;
  border-top: none;
}
#step-3 .head-wrapper {
  position: relative;
}
#step-3 .head-wrapper .base-line {
  height: 0;
  border-top: 1px solid #eee;
  width: 65%;
  position: absolute;
  top: 50px;
  left: 17.5%;
  z-index: -1;
}
#step-3 .head-wrapper .step-circle-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 130px;
  width: 85%;
  margin: auto;
}
#step-3 .head-wrapper .step-circle-wrapper > div {
  text-align: center;
}
#step-3 .head-wrapper .step-circle-wrapper .step-circle {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  color: #888;
  background: #e4e4e4;
  line-height: 45px;
  font-size: 24px;
  font-weight: 600;
  margin: auto;
}
#step-3 .head-wrapper .step-circle-wrapper .step-circle.finish {
  background: #2E80F4;
  color: #fff;
}
#step-3 .head-wrapper .step-circle-wrapper .step-circle.finish + div {
  color: #2E80F4;
}
#step-3 .head-wrapper .step-circle-wrapper .step-circle + div {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #888;
}
#step-3 .step-title {
  background: url(../../img/double-arrow.png) no-repeat;
  background-position: 5px center;
  width: 998px;
  margin: auto;
  text-align: center;
  font-size: 20px;
  line-height: 80px;
  height: 80px;
  font-weight: 600;
}
#step-3 .content {
  width: 998px;
  padding: 16px;
  box-shadow: 0 0 15px #cfdff9;
  border-radius: 10px;
  margin-top: 20px;
}
#step-3 .content p {
  padding: 16px;
  font-size: 16px;
  margin-bottom: 0;
}
#step-3 .content p:last-child {
  text-align: center;
}
#step-3 .content p button + button {
  margin-left: 20px;
}
#step-3 .content p button:disabled {
  background: #73abfb;
}
#step-3 .content .identity tbody tr > td {
  padding: 16px;
  position: relative;
}
#step-3 .content .identity tbody tr > td > input {
  border: none;
  font-size: 15px;
}
#step-3 .content .identity tbody tr > td > input[type="text"] {
  width: 73%;
}
#step-3 .content .identity tbody tr > td > input:focus {
  outline: none;
  border-bottom: 1px solid #aaa;
}
#step-3 .content .identity tbody tr > td > select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
}
#step-3 .content .identity tbody tr > td > select > option > span {
  display: inline-block;
  padding: 12px;
}
#step-3 .content .identity tbody tr > td > span {
  display: none;
  vertical-align: middle;
  font-size: 12px;
}
#step-3 .content .identity tbody tr > td > span.wrong {
  color: red;
}
#step-3 .content .identity tbody tr > td > span.correct {
  color: green;
}
#step-3 .content .identity tbody tr > td > span.active {
  display: inline;
}
#step-3 .content .identity tbody tr > td:nth-child(odd) {
  background: #eee;
  text-align: right;
  font-weight: 600;
}
#step-3 .content .identity tbody tr > td:nth-child(even) {
  width: 362px;
}
#step-3 .img-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  right: 0;
  top: -100px;
  transition: all 1s ease-in-out;
}
#step-3 .img-btn img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
}
#step-3 .help-text-wrapper {
  width: 83%;
  margin: auto;
  position: relative;
}
#step-3 .help-text-wrapper .help-text {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 10px;
  display: inline-block;
  width: 95%;
}
#step-3 .help-text-wrapper .help-text .address-tip {
  display: none;
}
#step-3 .help-text-wrapper .help-text .address-tip.active {
  display: block;
}
#step-3 .help-text-wrapper .help-text .selected-address {
  display: none;
}
#step-3 .help-text-wrapper .help-text .selected-address > div {
  padding: 8px 0 0;
}
#step-3 .help-text-wrapper .help-text .selected-address span + span {
  margin-left: 20px;
}
#step-3 .help-text-wrapper .help-text .selected-address.active {
  display: block;
}
#step-3 .help-text-wrapper .help-text .selected-address .return {
  display: none;
}
#step-3 .help-text-wrapper .help-text .selected-address .return.active {
  display: block;
}
#step-3 .help-text-wrapper.file-list {
  border: 1px dashed #fac;
  padding: 16px;
}
#step-3 .help-text-wrapper.file-list img {
  vertical-align: top;
}
#step-3 .help-text-wrapper.file-list a {
  cursor: pointer;
  color: #337ab7;
}
#step-3 .btn-wrapper {
  margin: auto;
  text-align: center;
}
#step-3 .btn-wrapper button + button {
  margin-left: 20px;
}
#step-3 .files-list-wrapper {
  width: 998px;
  margin: auto;
}
#step-3 .files-list-wrapper .files-list-title {
  padding: 8px 16px;
  background: #2E80F4;
  color: #fff;
  font-size: 16px;
}
#step-3 .files-list-wrapper .files-list-title i {
  float: right;
  font-size: 24px;
  transition: all 0.2s ease-in-out;
}
#step-3 .files-list-wrapper .files-list-title i.rotate {
  transform: rotate(45deg);
}
#step-3 .files-list-wrapper .files-list-content {
  background: #f5f5f5;
  padding: 16px 24px;
}
#step-3 .files-list-wrapper .files-list-content > div {
  border: 1px solid #2E80F4;
  position: relative;
  padding: 16px 24px;
  background: #fff;
  width: 95%;
  margin: auto;
}
#step-3 .files-list-wrapper .files-list-content > div img {
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}
#step-3 .files-list-wrapper .files-list-content > div + div {
  margin-top: 15px;
}
#step-3 .operation-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
#step-3 .operation-btn-wrapper button {
  border: none;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  min-width: 70px;
}
#step-3 .operation-btn-wrapper button:focus,
#step-3 .operation-btn-wrapper button:active {
  outline: none;
}
#step-3 .operation-btn-wrapper button + button {
  margin-left: 15px;
}
#step-3 .operation-btn-wrapper > div {
  width: 70px;
  height: 25px;
  border: none;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  background: #337ab7;
  position: relative;
  color: #fff;
  cursor: pointer;
}
#step-3 .operation-btn-wrapper > div:focus,
#step-3 .operation-btn-wrapper > div:active {
  outline: none;
}
#step-3 .operation-btn-wrapper > div + button {
  margin-left: 20px;
}
#step-3 .operation-btn-wrapper > div > input {
  display: inline-block;
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
#step-3 .is-post {
  display: inline-block;
  height: 24px;
  width: 24px;
  padding: 2px;
  position: relative;
}
#step-3 .is-post input {
  display: block;
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  margin: 0;
}
#step-3 .is-post input:checked + label {
  background-position: 0px 0px;
}
#step-3 .is-post label {
  margin: 0;
  display: inline-block;
  height: 100%;
  width: 100%;
  background: url(../../img/checkbox.png) no-repeat;
  background-position: -29px 0px;
}
#step-3 .selector-file-list > td span {
  display: none;
}
#step-3 .selector-file-list > td span.active {
  display: inline;
}
#step-3 .selector-file-list .outline-btn a {
  display: inline-block;
  background: #fff;
  padding: 4px 10px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
#step-3 .selector-file-list .outline-btn a + a {
  margin-left: 20px;
}
#step-3 .selector-file-list .outline-btn a.text-primary {
  color: #2E80F4;
}
#step-3 .selector-file-list .outline-btn a.text-warning {
  color: #FDBB2F;
}
#step-3 .file-list.table-bordered > tbody > tr > td:nth-child(2) {
  text-align: left;
}
#file-list-modal .modal-body .help-text {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 10px;
  display: inline-block;
  width: 94%;
}
#file-list-modal .address-list > div span {
  display: inline-block;
}
#file-list-modal .address-list > div span:nth-child(1) {
  width: 5%;
}
#file-list-modal .address-list > div span:nth-child(2) {
  width: 15%;
}
#file-list-modal .address-list > div span:nth-child(3) {
  width: 45%;
}
#file-list-modal .address-list > div span:nth-child(4) {
  width: 25%;
}
#file-list-modal .address-list > div span:nth-child(5) {
  width: 5%;
  cursor: pointer;
}
#file-list-modal .address-list .default > span:nth-child(4):after {
  content: '默认';
  color: #fff;
  background: #999;
  font-size: 12px;
  padding: 2px 4px;
  margin-left: 8px;
}
#file-list-modal .address-list .more-address-list {
  padding: 0;
}
#file-list-modal .address-list .more-address-list > div {
  padding: 10px;
  border-top: 1px solid #e4e4e4;
}
#file-list-modal .address-list > p span {
  cursor: pointer;
}
#file-list-modal .poster-info-title {
  padding: 10px;
  background: #eee;
  border: 1px solid #e4e4e4;
}
#file-list-modal .address-list > div {
  border: 1px solid #e4e4e4;
  border-top: none;
  padding: 10px;
}
#file-list-modal .address-list > p {
  padding: 10px;
}
#file-list-modal .address-list > p i:hover {
  cursor: pointer;
}
.modal .modal-body {
  max-height: 440px;
  overflow: auto;
}
.bg-lgray {
  background: #f5f5f5;
}
@media (min-height: 768px) {
  .modal .modal-body {
    max-height: 700px;
    overflow: auto;
  }
}
.apply-success-info table {
  margin: 0;
}
.apply-success-info table > tbody > tr > td {
  padding: 14px;
}
.apply-success-info table > tbody > tr > td:first-child {
  font-weight: 600;
}
#file-database .modal-content table thead tr {
  font-size: 15px;
}
#file-database .modal-content table thead td {
  padding: 20px 24px;
}
#file-database .modal-content table thead td:nth-child(1) {
  background: #F3F7FF;
  text-align: center;
  width: 15%;
}
#file-database .modal-content table thead td:nth-child(2) {
  background: #267CE9;
  color: #fff;
  width: 43%;
}
#file-database .modal-content table thead td:nth-child(3) {
  background: #FDBB2E;
  color: #fff;
  width: 42%;
}
#file-database .modal-content table tbody tr {
  height: 700px;
}
#file-database .modal-content table tbody tr td {
  padding: 0;
  height: 100%;
  vertical-align: top;
}
#file-database .modal-content table tbody tr td:nth-child(1) {
  background: #E3EFFF;
}
#file-database .modal-content table tbody tr td:nth-child(2) {
  position: relative;
}
#file-database .modal-content table tbody tr td:nth-child(3) {
  background: #F7F7F7;
}
#file-database .left-nav-menu {
  padding: 16px 24px;
  font-size: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#file-database .left-nav-menu .img-icon {
  display: inline-block;
  height: 30px;
  width: 30px;
}
#file-database .left-nav-menu.active {
  background: #267CE9;
  color: #fff;
}
#file-database .left-nav-menu:nth-child(1) .img-icon {
  background: url('../../img/fj-icon1.png');
}
#file-database .left-nav-menu:nth-child(1).active .img-icon {
  background: url('../../img/fj-icon1-2.png');
}
#file-database .left-nav-menu:nth-child(2) .img-icon {
  background: url('../../img/fj-icon3.png');
}
#file-database .left-nav-menu:nth-child(2).active .img-icon {
  background: url('../../img/fj-icon3-2.png');
}
#file-database .left-nav-menu:nth-child(3) .img-icon {
  background: url('../../img/fj-icon2.png');
}
#file-database .left-nav-menu:nth-child(3).active .img-icon {
  background: url('../../img/fj-icon2-2.png');
}
#file-database .loading-wrapper {
  display: none;
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  justify-content: center;
  align-items: center;
}
#file-database .loading-wrapper.active {
  display: flex;
}
#file-database .loading-wrapper .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .6;
  background: #333;
}
#file-database .loading-wrapper i {
  color: #fff;
}
#file-database .list-wrapper {
  padding: 16px;
  height: 580px;
  max-height: 620px;
  overflow: auto;
}
#file-database .list-wrapper .list-item {
  padding: 16px;
}
#file-database .list-wrapper .list-item input,
#file-database .list-wrapper .list-item a {
  float: right;
  cursor: pointer;
}
#file-database .pagi-wrapper {
  padding: 16px;
  text-align: right;
  font-size: 14px;
}
#file-database .pagi-wrapper a {
  color: #2E80F4;
  cursor: pointer;
}
#file-database .selected-list {
  height: 550px;
  max-height: 550px;
  overflow: auto;
}
#file-database .selected-list .list-item {
  background: #fff;
}
#file-database .selected-list .list-item + div {
  margin-top: 10px;
}
#file-database .btn-wrapper {
  padding: 20px;
}
#file-database .btn-wrapper button + button {
  margin-left: 20px;
}
#check-and-submit .modal-content .title {
  height: 92px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  background: url(../../img/book-open-title-bg.png);
}
#check-and-submit .modal-content .title .btn-wrapper {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
#check-and-submit .modal-content .title .btn-wrapper span:hover {
  opacity: .9;
}
#check-and-submit .modal-content .title .btn-wrapper button {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 5px 16px;
  background: transparent;
  color: #fff;
  min-width: 70px;
}
#check-and-submit .modal-content .title .btn-wrapper button:active,
#check-and-submit .modal-content .title .btn-wrapper button:focus {
  outline: none;
}
#check-and-submit .modal-content .title .btn-wrapper button:hover {
  opacity: .9;
}
#check-and-submit .modal-content .title .loading,
#check-and-submit .modal-content .title .finish {
  display: none;
}
#check-and-submit .modal-content .title .loading.active,
#check-and-submit .modal-content .title .finish.active {
  display: inline-block;
}
#check-and-submit .content {
  padding: 16px;
  display: flex;
  justify-content: space-between;
}
#check-and-submit .content .left-wrapper .top-header {
  height: 200px;
  width: 200px;
  padding: 20px;
}
#check-and-submit .content .left-wrapper .top-header > div {
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
#check-and-submit .content .left-wrapper .top-header img {
  position: absolute;
  max-width: 100%;
}
#check-and-submit .content .left-wrapper .top-header img:last-child {
  width: 80%;
  z-index: 1;
}
#check-and-submit .content .left-wrapper .result-wrapper {
  padding-left: 24px;
  font-weight: 600;
  font-size: 15px;
}
#check-and-submit .content .left-wrapper .result-wrapper > p {
  margin-bottom: 8px;
}
#check-and-submit .content .left-wrapper .result-wrapper > p img {
  vertical-align: bottom;
}
#check-and-submit .content .left-wrapper .finish,
#check-and-submit .content .left-wrapper .loading,
#check-and-submit .content .left-wrapper .error {
  display: none;
}
#check-and-submit .content .left-wrapper .finish.active,
#check-and-submit .content .left-wrapper .loading.active,
#check-and-submit .content .left-wrapper .error.active {
  display: inline;
}
#check-and-submit .content .right-wrapper {
  width: 520px;
  margin-right: 20px;
}
#check-and-submit .content .right-wrapper > div > div {
  padding: 8px;
  border-bottom: 1px solid #c1dbff;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}
#check-and-submit .content .right-wrapper > div > div > span.finish,
#check-and-submit .content .right-wrapper > div > div > span.loading {
  display: none;
}
#check-and-submit .content .right-wrapper > div > div > span.active {
  display: inline;
}
#check-and-submit .content .right-wrapper .exist-file {
  border-bottom: 1px dashed #c1dbff;
}
#package-list .content {
  box-shadow: 0 0 15px #cfdff9;
  border-radius: 0 3px 3px 0;
  border-left: 10px solid #2E80F4;
}
#package-list .content .header {
  display: flex;
  align-items: center;
  padding: 0px 24px;
}
#package-list .content .header .left {
  width: 47%;
  display: flex;
  align-items: center;
}
#package-list .content .header .left .status {
  margin-left: 20px;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 18px;
}
#package-list .content .header .left .status.doing {
  background: #FDBB2F;
  color: #fff;
}
#package-list .content .header .left .status.finish {
  background: #2E80F4;
  color: #fff;
}
#package-list .content .header .left .status > span {
  display: none;
}
#package-list .content .header .left .status > span.active {
  display: inline;
}
#package-list .content .header .middle {
  width: 47%;
  text-align: right;
}
#package-list .content .header .middle p > span {
  display: none;
}
#package-list .content .header .middle p > span.active {
  display: inline;
}
#package-list .content .header .right {
  width: 6%;
  cursor: pointer;
}
#package-list .content .header .right i {
  transition: all 0.2s ease-in-out;
}
#package-list .content .header .right i.up {
  transform: rotate(180deg);
}
#package-list .content-wrapper .item {
  background: #F2F9FF;
}
#package-list .content-wrapper .item + .item {
  border-top: 1px solid #ddd;
}
#package-list .content-wrapper .item .detail-up {
  font-size: 18px;
  padding: 15px 20px;
  border-bottom: 1px dashed #e6e6e6;
}
#package-list .content-wrapper .item .detail-up .name {
  margin-left: 20px;
}
#package-list .content-wrapper .item .detail-up .status {
  float: right;
  color: #2875f2;
  padding: 0 20px;
}
#package-list .content-wrapper .item .detail-down {
  padding: 15px 20px;
  color: #888;
  font-size: 14px;
}
#package-list .content-wrapper .item .detail-down span + span {
  margin-left: 50px;
}
#package-list .content-wrapper .item .bg-circle {
  display: inline-block;
  background: #2E80F4;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 18px;
}
