﻿@charset "UTF-8";
/* 引入字体 */
@font-face {
  font-family: "Alimama_ShuHeiTi_Bold";
  src: url("./fonts/Alimama_ShuHeiTi_Bold/Alimama_ShuHeiTi_Bold.ttf") format("truetype");
}

/* yui3 reset.css */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
  vertical-align: top;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%;
}

legend {
  color: #000;
}

iframe {
  display: block;
}

/* yui3 fonts */
body {
  color: #333;
  font-family: system-ui, -apple-system, Segoe UI, Rototo, Helvetica, Arial, sans-serif;
  font-size: 14px;
  background: #EFF3F8;
  min-width:1300px;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

a {
  text-decoration: none;
}

input,
button,
textarea {
  border: 0;
  outline: 0;
}

input[type=text]::-ms-clear,
input[type=password]::-ms-reveal {
  display: none;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #58606c;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
   color: #58606c;
}

textarea:-moz-placeholder,
input:-moz-placeholder {
  color: #58606c;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #58606c;
}

.placeholder {
  color: #58606c;
}

/* utilities */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}

.clearfix:after {
  clear: both;
}

.l {
  float: left !important;
}

.r {
  float: right !important;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

.trans {
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.text-overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 通用样式 */
.container {
  width: 1200px;
  margin: 0 auto;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}




/* 头部 */
.header {
  position: relative;
  height: 402px;
  z-index: 99;
}
.header::before {
  position: absolute;
  top: 32px;
  content: "";
  display: block;
  width: 100%;
  height: 550px;
  background: #ecf2fd url("../images/header_bg.png") no-repeat center;
  background-size: 100% 100%;
  z-index: -1;
}
.header.active:before  {
     background: #ecf2fd url("../images/header_bg_newyear.png") no-repeat center;
}
.header-top {
  height: 32px;
  line-height: 32px;
  color: #fff;
  background-color: #333;
}
.header-top span {
  margin-right: 8px;
}
.header-top .city {
  margin-left: 18px;
}
.header-top .weather {
  padding-left: 29px;
  background: url("../images/weather.png") no-repeat left center;
}
.header-center {
  height: 310px;
  padding-top: 45px;
}
.header-location {
  position: relative;
  margin: 29.5px 0 0 20px;
}
.header-location > span {
  display: inline-block;
  line-height: 34px;
  height: 34px;
  padding: 0 14px 0 40px;
  border-radius: 31px;
  color: #fff;
  background: #3f88f5 url("../images/header_loc.png") no-repeat 17px center;
  cursor: pointer;
  vertical-align: top;
  font-size: 16px;
}
.header-location.active > span {
  color: #fff;
  background-color: #2b64e9;
  background-image: url("../images/header_loch.png");
}
.header-site {
  display: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% + 14px);
  width: 127px;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}
.header-site-item + .header-site-item {
  margin-top: 6px;
}
.header-site-item > a {
    display: block;
    height: 42px;
    color: #333;
    background-color: #fff;
    line-height: 42px;
    text-align: center;
}
.header-site-item.active > a, .header-site-item:hover > a {
  color: #fff;
  background-color: #2b64e9;
}
.header-search {
  width: 545px;
}
.header-search-slogan {
  margin-top: 40px;
  padding-left: 150px;
}
.header-search-input {
  width: calc(100% - 80px);
  height: 46px;
  line-height: 46px;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 4px 0px 0px 4px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(4.5px);
          backdrop-filter: blur(4.5px);
}
.header-search-btn {
  width: 80px;
  height: 46px;
  border-radius: 0 4px 4px 0;
  background: url("../images/header_search.png") no-repeat center, -webkit-gradient(linear, left top, left bottom, from(#2b64e9), to(#739dff));
  background: url("../images/header_search.png") no-repeat center, linear-gradient(to bottom, #2b64e9, #739dff);
}
.header-type-list {
  margin-left: 8px;
  margin-bottom: 1px;
}
.header-type-item {
  height: 34px;
  line-height: 34px;
  padding: 0 10px;
  border-radius: 4px 4px 0 0;
  color: #85a9d9;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(240, 246, 255, 0.8)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(240, 246, 255, 0.8));
  cursor: pointer;
}
.header-type-item + .header-type-item {
  margin-left: 10px;
  padding: 0 20px;
}
.header-type-item.active {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#2b64e9), to(#739dff));
  background: linear-gradient(to bottom, #2b64e9, #739dff);
}
.header-slogan-list {
  margin-top: 44px;
}
.header-slogan-item {
  height: 40px;
  line-height: 40px;
  font-size: 36px;
  color: #001d3e;
}
.header-slogan-item + .header-slogan-item:before {
  display: inline-block;
  content: "/";
  font-size: 20.87px;
  padding: 0 12px;
  margin-top: -2px;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
}
.header-nav {
  height: 60px;
}
.header-nav .container {
  background-color: #2b64e9;
}
.header-nav-item {
  width: 15.88%;
}
.header-nav-item > a {
  display: block;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.header-nav-item.active > a, .header-nav-item:hover > a {
  font-weight: 800;
  background-color: #588aff;
}
.header-nav-item:first-child, .header-nav-item:last-child {
  width: 10.3%;
}

/* 底部 */
.footer {
  line-height: 22px;
  padding: 26px 0;
  background-color: #333;
}


.footer-link-item > a {
  color: #fff;
}

.footer-link-item + .footer-link-item:before {
  content: '|';
  padding: 0 4px 0 6px;
  color: #fff;
}

.footer-info {
  width: calc(100% - 100px);
}

.footer-info-p p {
  color: #ADADAD;
  margin-top: 6px;
}

.footer-info-p span {
  margin-right: 30px;
}

.footer-info-p a {
  margin-right: 30px;
  color: #ADADAD;
}

.footer-info-p .policy {
  padding-left: 18px;
  background: url("../images/footer_ico.png") no-repeat left center;
}

/* 通用列表 */
.news-item > a {
  width: calc(100% - 100px);
  font-size: 16px;
  color: #333;
}

.news-item .date {
  width: 100px;
  text-align: right;
  color: #8D8F98;
}

.news-item:hover {
  background-color: #EFF4FF;
}

.news-item:hover a,
.news-item:hover .date {
  color: #2B5AB1;
}

/*2023-06-02*/
/*位置*/
.location {
  font-size: 14px;
  line-height: 30px;
  height: 54px;
  padding: 12px 12px 12px 16px;
  color: #858F9B;
  background: url(../images/location_ico.png) no-repeat left center;
}

.location-item {
  color: #858F9B;
  margin: 0 4px;
}

.location span {
  color: #344153;
  margin: 0 4px;
  font-weight: 600;
}

.main-content {
  padding-bottom: 24px;
}

/*二三级页公共样式*/
.sub-title {
  border-bottom: 1px solid #ECECEC;
  padding: 12px 0 11px 0;
}

.sub-title-name {
  height: 43px;
  line-height: 43px;
  padding-left: 47px;
  font-weight: 700;
  font-size: 20px;
  color: #333;
  background: url(../images/column_ico3.png) no-repeat left center;
}

.sub-search {
  background: #FFFFFF;
  border: 1px solid #DBDDE2;
  border-radius: 4px;
  width: 250px;
  height: 30px;
}

.sub-search-input {
  padding: 0 11px;
  height: 28px;
  line-height: 28px;
  border-radius: 4px;
  width: calc(100% - 30px);
}

.sub-search-input::-webkit-input-placeholder {
  color: #999;
}

.sub-search-input:-ms-input-placeholder {
  color: #999;
}

.sub-search-input::-ms-input-placeholder {
  color: #999;
}

.sub-search-input::placeholder {
  color: #999;
}

.sub-search-btn {
  width: 30px;
  height: 30px;
  margin-top: -1px;
  background: #3A6FEE url(../images/header_search.png) no-repeat center;
  border-radius: 4px;
  background-size: 14px 14px;
}

.sub-pager {
  padding: 25px 0;
}

.sub-pager .pager {
  margin-top: 0;
}

.sub-pager .m-pagination-page > li {
  margin-right: 8px;
}

.sub-pager .m-pagination-page > li > a,
.sub-pager .m-pagination-size > select,
.sub-pager .m-pagination-group > input,
.sub-pager .m-pagination-group > button {
  border-color: #E6E6E6;
}

.sub-pager .m-pagination-page > li > a {
  height: 30px;
  line-height: 30px;
  background: #fff;
  border-radius: 3px;
  padding: 0 11px;
  color: #666666;
}

.sub-pager .m-pagination-page > li > a .btn {
  margin-top: 10px;
}

.sub-pager .m-pagination-page > li > a .btn.next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sub-pager .m-pagination-page > li.active > a {
  background: #2B64E9;
  border-color: #2B64E9;
  color: #fff;
}

.sub-pager .m-pagination-page > li:hover > a,
.sub-pager .m-pagination-group > button:hover {
  border-color: #2B64E9;
}

.sub-pager .m-pagination-page,
.sub-pager .m-pagination-info,
.sub-pager .m-pagination-size,
.sub-pager .m-pagination-jump {
  padding-right: 16px;
}

.sub-pager .m-pagination-size {
  position: relative;
  z-index: 10;
}

.sub-pager .m-pagination-size:after {
  position: absolute;
  content: "条/页";
  color: #666;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  top: 0;
  right: 36px;
  z-index: 0;
}

.sub-pager .m-pagination-size > select {
  width: 91px;
  height: 32px;
  line-height: 32px;
  border-radius: 3px;
  padding: 0 32px 0 7px;
  color: #666;
  font-size: 14px;
}

.sub-pager .m-pagination-info {
  float: left;
  height: 32px;
  line-height: 32px;
  color: #666;
}

.sub-pager .m-pagination-info span {
  color: #666;
  font-weight: normal;
}

.sub-pager .m-pagination-size,
.sub-pager .m-pagination-page,
.sub-pager .m-pagination-jump {
  float: right;
  color: #666;
}

.sub-pager .m-pagination-jump {
  width: 116px;
  padding-left: 32px;
  position: relative;
}

.sub-pager .m-pagination-jump:before {
  position: absolute;
  content: "跳至";
  height: 32px;
  line-height: 32px;
  color: #666;
  left: 0;
  top: 0;
}

.sub-pager .m-pagination-group > input {
  width: 46px;
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
}

.sub-pager .m-pagination-group > button {
  border: none;
  height: 32px;
  line-height: 32px;
  padding: 0 0 0 4px;
  color: #666;
}

.subheader {
  height: 420px;
}

.subheader .header-search-slogan {
  margin-top: 36px;
}

.subheader .header-search {
  display: none;
}

.subheader .header-center {
  height: 326px;
  padding-top: 40px;
  background-size: 100% 100%;
}

.subheader .header-slogan-list {
  float: none !important;
  text-align: center;
  height: 40px;
  margin-top: 0;
}

.subheader .header-slogan-item {
  float: none !important;
  display: inline-block;
  vertical-align: top;
}

.subheader .header-slogan-item + .header-slogan-item:before {
  padding: 0 36px;
}

/*20230628 公共样式新增*/
/* 像搜索结果页面那样样式的表头样式：*/
.resultheader {
  height: 420px;
}

.resultheader .header-slogan-list {
  display: none;
}

.resultheader .header-search {
  margin-left: 142px;
}

.resultheader .header-search-slogan {
  margin-top: 18px;
}

.resultheader .header-center {
  height: 326px;
  padding-top: 40px;
  background-size: 100% 100%;
}

/*收起展开：*/
.pack-box {
  position: absolute;
  right: 0;
  bottom: 20px;
}

.pack-btn {
  cursor: pointer;
  height: 30px;
  line-height: 30px;
  padding: 0 29px 0 10px;
}

.pack-btn:after {
  position: absolute;
  content: "";
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 6px;
  background: url(../images/pack_ico.png) no-repeat center;
}

.pack-btn.fold:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/*筛选条件公共样式：*/
.filter-box {
  padding: 24px 0 4px 0;
  border-bottom: 1px solid #ECECEC;
  position: relative;
}

.trade-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 30px;
}

.trade-search .trade-type {
  width: 70px;
  color: #333;
}

.trade-search .trade-type-wrap {
  width: calc(100% - 70px - 67px);
}

.trade-search .trade-type-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.trade-search .trade-type-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0 9px;
  margin-bottom: 20px;
  cursor: pointer;
  border: 1px solid transparent;
}

.trade-search .trade-type-item:not(:last-child) {
  margin-right: 10px;
}

.trade-search .trade-type-item.active, .trade-search .trade-type-item.current {
  color: #3A6FEE;
  border-radius: 4px;
  background-color: #fff;
  border-color: #3A6FEE;
}

/*table 公共表格样式：*/
.public-table {
  table-layout: fixed;
  width: 100%;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333333;
  border-left: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB;
}

.public-table th {
  height: 36px;
  line-height: 36px;
  background: #F0F0F0;
  padding: 0 12px;
}

.public-table td {
  height: 48px;
  line-height: 48px;
  border-bottom: 1px solid #EBEBEB;
  padding: 0 12px;
}

.public-table td > a {
  display: block;
  color: #333333;
}

.subheader.header::before {
    height: calc(100% - 32px);
}

.subheader.header .header-nav {
  background-color: #2b64e9;
}