/*
 * footer default style
 */

.footer-select {
  width: 100%;
  height: 150px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #16325C;
  margin-top: -10px;
}

.footer-select .footer-select-label {
  margin-right: 30px;
}

.footer-select .footer-select-label:last-child {
  margin-right: 0;
}

.footer-select .footer-select-item {
  display: none;
}

.footer-select .ui-selectmenu-button {
  background-color: #16325C;
  border: 1px solid #296BE3;
  color: #fff;
  font-size: 16px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
  padding-top: 12px;
  padding-bottom: 12px;
}

.footer-select .ui-selectmenu-button-closed .ui-icon {
  width: 20px;
  height: 20px;
  background: url(../../img/footer/down.png) no-repeat center;
  background-size: contain;
}

.footer-select .ui-selectmenu-button-open .ui-icon {
  width: 20px;
  height: 20px;
  background: url(../../img/footer/upward.png) no-repeat center;
  background-size: contain;
}

.footer-navigation {
  width: 100%;
  height: auto;
  display: inline-block;
  background-color: #102648;
}

.footer-navigation .footer-remark {
  width: 100%;
  height: auto;
  display: none;
}

.footer-navigation .footer-remark .footer-remark-item {
  color: #666;
  font-size: 16px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
  margin-left: 20px;
}

.footer-navigation .footer-remark .footer-remark-item:first-child {
  margin-left: 0;
}

.footer-navigation .footer-operate {
  width: 100%;
  height: 150px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #fff;
}

.footer-navigation .footer-operate .footer-operate-button {
  width: 50%;
  height: 150px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-navigation .footer-operate .footer-operate-button .footer-operate-button-item {
  cursor: pointer;
  color: #4F8DFE;
  font-size: 18px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
  border-right: 1px solid #4F8DFE;
  padding-right: 20px;
  margin-left: 20px;
}

.footer-navigation .footer-operate .footer-operate-button .footer-operate-button-item:first-child {
  margin-left: 0;
}

.footer-navigation .footer-operate .footer-operate-button .footer-operate-button-item:last-child {
  border-right: none;
  padding-right: 0;
}

.footer-navigation .footer-operate .footer-operate-image {
  width: 50%;
  height: 150px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-navigation .footer-operate .footer-operate-image .footer-operate-image-item {
  width: auto;
  height: auto;
  display: inline-block;
  margin-right: 30px;
}

.footer-navigation .footer-introduce {
  width: 100%;
  height: 80px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}

.footer-navigation .footer-introduce .footer-introduce-item {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  box-sizing: border-box;
  -webkit-flex: 1 1 25%;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-navigation .footer-introduce .footer-introduce-item .footer-introduce-item-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.footer-navigation .footer-introduce .footer-introduce-item .footer-introduce-item-text {
  color: #fff;
  font-size: 16px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
}

/* 模态框的基础样式 */
.modal {
  display: none; /* 默认隐藏 */
  position: fixed; /* 固定定位 */
  z-index: 1; /* 置于顶层 */
  left: 0;
  top: 0;
  width: 100%; /* 宽度100% */
  height: 100%; /* 高度100% */
  overflow: auto; /* 启用滚动条 */
  background-color: rgb(0,0,0); /* 背景色 */
  background-color: rgba(0,0,0,0.4); /* 背景色半透明 */
}

/* 模态内容框样式 */
.modal-mask {
  background-color: #fefefe;
  margin: 15% auto; /* 15% 顶部和自动水平居中 */
  padding: 20px;
  width: 30%; /* 宽度 */
}

.modal-mask .modal-tips {
  width: 100%;
  height: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.modal-mask .modal-tips .modal-title {
  width: 100%;
  text-align: center;
  height: auto;
  display: inline-block;
  color: #333;
  font-size: 20px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
  text-shadow: 6px 6px 4px #999;
}

.modal-mask .modal-tips .modal-close {
  color: #aaa;
  float: right;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  top: -10px;
  right: 0;
}

.modal-mask .modal-tips .modal-close:hover, .modal-mask .modal-tips .modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-mask .modal-content {
  width: 100%;
  height: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  font-size: 16px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
}

.modal-mask .modal-operate {
  width: 100%;
  height: auto;
  display: none;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.modal-mask .modal-operate .modal-sure-btn {
  width: 50%;
  text-align: center;
  height: auto;
  display: none;
  color: #2996e3;
  float: right;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px 0;
}

.modal-mask .modal-operate .modal-sure-btn:hover, .modal-mask .modal-operate .modal-sure-btn.active {
  background-color: #2996e3;
  color: #fff;
}

.modal-mask .modal-operate .modal-cancel-btn {
  width: 50%;
  text-align: center;
  height: auto;
  display: none;
  color: #999;
  float: right;
  font-size: 16px;
  border-left: 1px dashed #ddd;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px 0;
}

.modal-mask .modal-operate .modal-cancel-btn:hover {
  background-color: #2996e3;
  color: #fff;
}

/* 进度框的基础样式 */
.loading {
  display: none; /* 默认隐藏 */
  position: fixed; /* 固定定位 */
  z-index: 1; /* 置于顶层 */
  left: 0;
  top: 0;
  width: 100%; /* 宽度100% */
  height: 100%; /* 高度100% */
  overflow: auto; /* 启用滚动条 */
  background-color: rgb(0,0,0); /* 背景色 */
  background-color: rgba(0,0,0,0.4); /* 背景色半透明 */
}

/* 进度内容框样式 */
.loading-mask {
  margin: 15% auto; /* 15% 顶部和自动水平居中 */
  width: 100%; /* 宽度 */
  height: 200px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.loading-mask .loading-tips {
  width: 100%;
  height: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.loading-mask .loading-tips .loading-title {
  width: 100%;
  text-align: center;
  height: auto;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
  position: absolute;
  top: 46%;
  left: 0;
  z-index: 999;
}

/* 模态框的基础样式 */
.preview {
  display: none; /* 默认隐藏 */
  position: fixed; /* 固定定位 */
  z-index: 1; /* 置于顶层 */
  left: 0;
  top: 0;
  width: 100%; /* 宽度100% */
  height: 100%; /* 高度100% */
  overflow: auto; /* 启用滚动条 */
  background-color: rgb(0,0,0); /* 背景色 */
  background-color: rgba(0,0,0,0.4); /* 背景色半透明 */
}

/* 模态内容框样式 */
.preview-mask {
  background-color: #fefefe;
  margin: 15% auto; /* 15% 顶部和自动水平居中 */
  padding: 20px;
  width: 30%; /* 宽度 */
}

.preview-mask .preview-tips {
  width: 100%;
  height: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.preview-mask .preview-tips .preview-title {
  width: 100%;
  text-align: center;
  height: auto;
  display: inline-block;
  color: #333;
  font-size: 20px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
  text-shadow: 6px 6px 4px #999;
}

.preview-mask .preview-tips .preview-close {
  color: #aaa;
  float: right;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  top: -10px;
  right: 0;
}

.preview-mask .preview-tips .preview-close:hover, .preview-mask .preview-tips .preview-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.preview-mask .preview-content {
  width: 100%;
  height: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  font-size: 16px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
}

.preview-mask .preview-content .preview-hide-icon {
  width: 300px;
  height: 150px;
  display: none;
  border-radius: 10px;
}

.preview-mask .preview-content .preview-content-icon {
  width: 300px;
  height: 150px;
  display: inline-block;
  border-radius: 10px;
}

.preview-mask .preview-operate {
  width: 100%;
  height: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.preview-mask .preview-operate .preview-sure-btn {
  width: 50%;
  text-align: center;
  height: auto;
  display: inline-block;
  background-color: #2996e3;
  color: #fff;
  float: right;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px 0;
}

/* 模态框的基础样式 */
.result {
  display: none; /* 默认隐藏 */
  position: fixed; /* 固定定位 */
  z-index: 1; /* 置于顶层 */
  left: 0;
  top: 0;
  width: 100%; /* 宽度100% */
  height: 100%; /* 高度100% */
  overflow: auto; /* 启用滚动条 */
  background-color: rgb(0,0,0); /* 背景色 */
  background-color: rgba(0,0,0,0.4); /* 背景色半透明 */
}

/* 模态内容框样式 */
.result-mask {
  background-color: #fefefe;
  margin: 15% auto; /* 15% 顶部和自动水平居中 */
  padding: 20px;
  width: 30%; /* 宽度 */
}

.result-mask .result-tips {
  width: 100%;
  height: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.result-mask .result-tips .result-title {
  width: 100%;
  text-align: center;
  height: auto;
  display: inline-block;
  color: #333;
  font-size: 20px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
  text-shadow: 6px 6px 4px #999;
}

.result-mask .result-tips .result-close {
  color: #aaa;
  float: right;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  top: -10px;
  right: 0;
}

.result-mask .result-tips .result-close:hover, .result-mask .result-tips .result-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.result-mask .result-content {
  width: 100%;
  height: auto;
  display: inline-block;
}

.result-mask .result-content .result-content-success, .result-mask .result-content .result-content-fail {
  width: 100%;
  height: auto;
  display: none;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
}

.result-mask .result-content .result-content-success .result-content-icon, .result-mask .result-content .result-content-fail .result-content-icon {
  width: 25px;
  height: 25px;
}

.result-mask .result-content .result-content-success .result-content-msg, .result-mask .result-content .result-content-fail .result-content-msg {
  color: #666;
  font-size: 18px;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
  margin-left: 10px;
}

.result-mask .result-content .result-content-success:first-child, .result-mask .result-content .result-content-fail:first-child {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.result-mask .result-operate {
  width: 100%;
  height: auto;
  display: none;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.result-mask .result-operate .result-sure-btn {
  width: 50%;
  text-align: center;
  height: auto;
  display: inline-block;
  background-color: #2996e3;
  color: #fff;
  float: right;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px 0;
}

.ui-selectmenu-button.ui-button {
  font-size: 16px !important;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif !important;
}

.ui-menu-item-wrapper {
  padding: 10px 16px !important;
  font-size: 16px !important;
  font-family: 'SimSun', 'Microsoft YaHei', sans-serif !important;
}

.ui-selectmenu-menu {
  max-height: 200px !important;
  overflow-y: auto !important;
}

@media screen and (min-width:300px) and (max-width:1200px) {
  .footer-select {
    width: 100%;
    text-align: center;
    height: auto;
    display: inline-block;
    padding-bottom: 20px;
  }

  .footer-select .footer-select-label {
    margin-right: 0;
  }

  .footer-select .ui-selectmenu-button {
    margin-top: 20px;
  }

  .footer-select .ui-selectmenu-button-closed .ui-icon {
    width: 20px;
    height: 20px;
    background: url(../../img/footer/down.png) no-repeat center;
    background-size: contain;
  }

  .footer-select .ui-selectmenu-button-open .ui-icon {
    width: 20px;
    height: 20px;
    background: url(../../img/footer/upward.png) no-repeat center;
    background-size: contain;
  }

  .footer-navigation .footer-operate {
    height: auto;
    display: inline-block;
  }

  .footer-navigation .footer-operate .footer-operate-button {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #fff;
  }

  .footer-navigation .footer-operate .footer-operate-button .footer-operate-button-item {
    font-size: 16px;
  }

  .footer-navigation .footer-operate .footer-operate-button .footer-operate-button-item:first-child {
    margin-left: 0;
  }

  .footer-navigation .footer-operate .footer-operate-button .footer-operate-button-item:last-child {
    border-right: none;
    padding-right: 0;
  }

  .footer-navigation .footer-operate .footer-operate-image {
    width: 100%;
    height: 30px;
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .footer-navigation .footer-operate .footer-operate-image .footer-operate-image-item {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .footer-navigation .footer-introduce {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }

  .footer-navigation .footer-introduce .footer-introduce-item {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    box-sizing: border-box;
    -webkit-flex: 1 1 80%;
    -ms-flex: 1 1 80%;
    flex: 1 1 80%;
    margin-top: 20px;
  }

  .footer-navigation .footer-introduce .footer-introduce-item:first-child {
    margin-top: 0;
  }

  .footer-navigation .footer-introduce .footer-introduce-item .footer-introduce-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .footer-navigation .footer-introduce .footer-introduce-item .footer-introduce-item-text {
    font-size: 12px;
  }

  /* 模态内容框样式 */
  .modal-mask {
    width: 80%;
  }

  /* 进度框的基础样式 */
  .loading {
    display: none; /* 默认隐藏 */
    position: fixed; /* 固定定位 */
    z-index: 1; /* 置于顶层 */
    left: 0;
    top: 0;
    width: 100%; /* 宽度100% */
    height: 100%; /* 高度100% */
    overflow: auto; /* 启用滚动条 */
    background-color: rgb(0,0,0); /* 背景色 */
    background-color: rgba(0,0,0,0.4); /* 背景色半透明 */
  }

  /* 进度内容框样式 */
  .loading-mask {
    margin: 15% auto; /* 15% 顶部和自动水平居中 */
    width: 100%; /* 宽度 */
    height: 200px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .loading-mask .loading-tips {
    width: 100%;
    height: auto;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  .loading-mask .loading-tips .loading-title {
    width: 100%;
    text-align: center;
    height: auto;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
    position: absolute;
    top: 46%;
    left: 0;
    z-index: 999;
  }

  .preview-mask {
    width: 80%;
  }

  .result-mask {
    width: 80%;
  }
}

@media screen and (min-width:900px) and (max-width:1200px) {
  .footer-select .ui-selectmenu-button {
    margin-right: 20px;
  }

  .footer-select-label:last-child  .ui-selectmenu-button:last-child{
    margin-right: 0;
  }

  .footer-navigation .footer-operate .footer-operate-button {
    height: 80px;
  }

  .footer-navigation .footer-operate .footer-operate-image {
    height: 60px;
  }

  .footer-navigation .footer-operate .footer-operate-image .footer-operate-image-item {
    width: 120px;
    height: 60px;
  }

  .footer-navigation .footer-operate .footer-operate-image .footer-operate-image-item:first-child {
    width: 120px;
    height: 60px;
  }

  .footer-navigation .footer-introduce .footer-introduce-item {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    box-sizing: border-box;
    -webkit-flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    margin-top: 20px;
  }

  .footer-navigation .footer-introduce .footer-introduce-item:nth-child(2) {
    margin-top: 0;
  }

  .footer-navigation .footer-introduce .footer-introduce-item .footer-introduce-item-icon {
    width: 30px;
    height: 30px;
  }

  .footer-navigation .footer-introduce .footer-introduce-item .footer-introduce-item-text {
    font-size: 14px;
  }

  /* 模态内容框样式 */
  .modal-mask {
    width: 50%;
  }

  /* 进度框的基础样式 */
  .loading {
    display: none; /* 默认隐藏 */
    position: fixed; /* 固定定位 */
    z-index: 1; /* 置于顶层 */
    left: 0;
    top: 0;
    width: 100%; /* 宽度100% */
    height: 100%; /* 高度100% */
    overflow: auto; /* 启用滚动条 */
    background-color: rgb(0,0,0); /* 背景色 */
    background-color: rgba(0,0,0,0.4); /* 背景色半透明 */
  }

  /* 进度内容框样式 */
  .loading-mask {
    margin: 15% auto; /* 15% 顶部和自动水平居中 */
    width: 100%; /* 宽度 */
    height: 200px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .loading-mask .loading-tips {
    width: 100%;
    height: auto;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  .loading-mask .loading-tips .loading-title {
    width: 100%;
    text-align: center;
    height: auto;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-family: 'SimSun', 'Microsoft YaHei', sans-serif;
    position: absolute;
    top: 46%;
    left: 0;
    z-index: 999;
  }

  .preview-mask {
    width: 50%;
  }

  .result-mask {
    width: 50%;
  }
}