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

body {
  font-size: 14px;
  color: #282828;
  background: #f9f9f9;
  font-family: "PingFang SC", "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑,Arial", "sans-serif";
}

a {
  text-decoration: none;
  color: #000;
}

input {
  border: none;
}

input, textarea:focus {
  outline: none;
}

::-webkit-input-placeholder {
  /* WebKit browsers，webkit内核浏览器 */
  color: #ccc;
  font-size: 16px;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ccc;
  font-size: 16px;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ccc;
  font-size: 16px;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #ccc;
  font-size: 16px;
}

button {
  border: none;
  background: none;
  outline: none;
}

.HeadLogo h1 {
  font-size: 0;
}

.wrapper_1200 {
  width: 1200px;
}

#container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#Header {
  z-index: 9;
  width: 100%;
  background: #2b364a;
}

#Footer {
  z-index: 9;
  background: #393c41;
  width: 100%;
  margin-top: 100px;
}

#header {
  z-index: 9;
  width: 100%;
  background: #2b364a;
  position: relative;
  box-shadow: 10px -15px 10px 10px #b5b5b5;
}

#header .head_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 40px;
  height: 100%;
  font-size: 12px;
  margin: 0 auto;
  color: #e5e5e5;
}

#header .head_top .left_box {
  display: flex;
  align-items: center;
}

#header .head_top .left_box .home {
  margin-right: 10px;
}

#header .head_top .left_box a {
  color: #e5e5e5;
  display: flex;
  align-items: center;
}

#header .head_top .left_box a img {
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

#header .head_top .right_box {
  display: flex;
  align-items: center;
}

#header .head_top .right_box a {
  color: #e5e5e5;
}

#header .head_top .right_box .line {
  margin: 0 10px;
  color: #FFFFFF;
}

#header .head_top .right_box .login {
  cursor: pointer;
  margin-left: 15px;
  position: relative;
}

#header .head_top .right_box .login .login_out {
  display: flex;
  align-items: center;
}

#header .head_top .right_box .login .login_out img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: 8px;
}

#header .head_top .right_box .login .login_out .login_box {
  display: none;
  position: absolute;
  top: 40px;
  width: 130px;
  z-index: 2;
  background: #2b364a;
  text-align: left;
  padding: 0 25px;
  margin-left: -20px;
  color: #b4b4b4;
}

#header .head_top .right_box .login .login_out .login_box .box:hover {
  color: #FFFFFF;
}

#header .head_top .right_box .notice {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 12px;
}

#header .head_top .right_box .notice img {
  width: 20px;
  height: 20px;
}

#header .head_top .right_box .notice .num {
  font-size: 12px;
  position: absolute;
  top: -6px;
  right: -22px;
  background-color: #f56c6c;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #fff;
}

#header .head_btm {
  width: 100%;
  height: 80px;
  background: #FFFFFF;
  position: relative;
}

#header .head_btm .wrapper_1200 {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .head_btm .wrapper_1200 .logo {
  cursor: pointer;
  display: flex;
  align-items: center;
}

#header .head_btm .wrapper_1200 .logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

#header .head_btm .wrapper_1200 .nav_box {
  overflow-x: hidden;
  height: 80px;
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin: 0 20px;
}

#header .head_btm .wrapper_1200 .nav_box span {
  margin-right: 23px;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
}

#header .head_btm .wrapper_1200 .nav_box span:hover {
  color: #2a8aef;
}

#header .head_btm .wrapper_1200 .more_box {
  cursor: pointer;
  display: none;
  align-items: center;
  font-size: 15px;
  color: #007aff;
}

#header .head_btm .wrapper_1200 .more_box img {
  margin-left: 2px;
  width: 18px;
  transform: rotate(-90deg);
}

#header .head_btm .wrapper_1200 .search {
  cursor: pointer;
  width: 200px;
  height: 48px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  position: relative;
}

#header .head_btm .wrapper_1200 .search .search_hide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#header .head_btm .wrapper_1200 .search input {
  width: 150px;
  display: block;
  height: 100%;
}

#header .head_btm .wrapper_1200 .search img {
  width: 20px;
}

#header .head_btm .head_popup {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 80px;
  z-index: 9;
  background-color: #fff;
  margin: auto;
  border-bottom: 1px solid #eee;
  box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.15);
}

#header .head_btm .head_popup .head_popup_box {
  width: 865px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid #efefef;
  display: flex;
  flex-wrap: wrap;
}

#header .head_btm .head_popup .head_popup_box .box {
  cursor: pointer;
  margin: 0 23px 20px 0;
  font-size: 15px;
  color: #555;
}

#header .head_btm .head_popup .head_popup_box .box:hover {
  color: #2a8aef;
}

#header .header_popup {
  display: none;
  z-index: 10;
  position: absolute;
  width: 100%;
  height: calc(200vh - 120px);
  left: 0;
  top: 120px;
  background: rgba(0, 0, 0, 0.4);
}

#header .header_popup .header_classify {
  cursor: pointer;
  margin: 0 auto;
  padding: 30px;
  width: 1200px;
  background: #fefefe;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0px 5px 10px -5px #c7c7c7;
  display: flex;
}

#header .header_popup .header_classify .item_tleft {
  width: 30%;
  display: flex;
  flex-direction: column;
}

#header .header_popup .header_classify .item_tleft .item_tleft_title {
  color: #fa6a17;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

#header .header_popup .header_classify .item_tleft .item_tleft_list {
  display: flex;
  flex-direction: column;
}

#header .header_popup .header_classify .item_tleft .item_tleft_list .item_box {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}

#header .header_popup .header_classify .item_tleft .item_tleft_list .item_box img {
  margin-right: 10px;
  width: 12px;
  height: 12px;
}

#header .header_popup .header_classify .item_tleft .item_tleft_list .item_box:hover {
  color: #fa6a17;
}

#footer {
  background: #393c41;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#footer .footer_box {
  width: 1200px;
  padding-top: 52px;
  padding-bottom: 36px;
  margin: 0 auto;
  display: flex;
}

#footer .footer_box .footer_box_item {
  flex: 1;
  display: flex;
}

#footer .footer_box .footer_box_item .box:first-of-type {
  margin-left: 0;
}

#footer .footer_box .box {
  margin-left: 60px;
  display: flex;
  flex-direction: column;
}

#footer .footer_box .box .name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

#footer .footer_box .box .item_box {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

#footer .footer_box .box .item_box img {
  margin-top: 10px;
  width: 102px;
  height: 102px;
}

#footer .footer_box .box .item_box a {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

#footer .footer_box .box .item_box a span {
  color: #6aa6ff;
}

#footer .footer_box .box .item_box a:hover {
  color: #FFFFFF;
}

#footer .footer_box .box .item_box p {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

#footer .footer_box .box .item_box p span {
  color: #6aa6ff;
}

#footer .footer_box .box .enterprise {
  margin-top: 6px;
  text-align: center;
  padding-top: 20px;
  display: flex;
  color: #ccc;
  width: 250px;
  margin-left: -20px;
}

#footer .footer_box .box .enterprise img {
  width: 50px;
  height: 50px;
  color: rgba(255, 0, 0, 0.739);
  display: inline-block;
  margin-left: 10px;
}

#footer .footer_box .box .enterprise .font {
  margin-left: 10px;
  text-align: left;
  font-size: 15px;
  margin-top: 5px;
}

#footer .footer_box .box .enterprise .font .num {
  display: inline-block;
  margin-top: 5px;
  color: #7c7878;
}

#footer .friend-link {
  width: 1200px;
  margin: 0 auto;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 13px;
  color: #ccc;
  display: flex;
  border-top: 1px solid #494d53;
}

#footer .friend-link .box {
  flex: 1;
  font-size: 13px;
  color: #ccc;
}

#footer .friend-link .box a {
  font-size: 13px;
  color: #ccc;
  margin-right: 25px;
}

#footer .copyright {
  width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #494d53;
  height: 50px;
  font-size: 12px;
  color: #ccc;
  display: flex;
  align-items: center;
}

#popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: transparent;
  display: none;
  user-select: none;
}

#popup .Popup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#popup .loading {
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 40%;
  right: 0;
  margin: auto;
  max-width: 12.5rem;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  padding: .625rem;
  flex-wrap: nowrap;
  display: none;
}

#popup .loading img {
  width: 45px;
  margin-right: 10px;
}

#popup .toast {
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 40%;
  right: 0;
  margin: auto;
  max-width: 12.5rem;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  padding: .625rem;
  display: none;
}

#popup .toast img {
  width: 20px;
  margin-right: 10px;
}

#popup .modal {
  z-index: 1000;
  width: 420px;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #ebeef5;
  margin-bottom: 20px;
}

#popup .modal .modal_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #303133;
  padding: 15px 15px 10px;
}

#popup .modal .modal_top .cancel {
  cursor: pointer;
  font-size: 28px;
}

#popup .modal .modal_top .cancel:hover {
  cursor: pointer;
  font-size: 28px;
  color: #ea3f30;
}

#popup .modal .modal_center {
  padding: 10px 15px;
  color: #606266;
  font-size: 14px;
}

#popup .modal .modal_btm {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 5px 15px 10px;
  font-size: 12px;
}

#popup .modal .modal_btm .modal_btm_btn {
  cursor: pointer;
  padding: 7px 15px;
  border-radius: 3px;
  border: 1px solid #dcdfe6;
  color: #606266;
}

#popup .modal .modal_btm .cancel:hover {
  color: #e93323;
  border-color: #f8c2bd;
  background-color: #fdebe9;
}

#popup .modal .modal_btm .confirm {
  margin-left: 10px;
  color: #fff;
  background-color: #e93323;
  border-color: #e93323;
}

#popup .modal .modal_btm .confirm:hover {
  background: #ed5c4f;
  border-color: #ed5c4f;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  #container, #header, #footer {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  #container, #header, #footer {
    width: 1300px;
  }
}
