/*通配符*/
* {
  margin: 0;
  padding: 0;
}

input[class="h-inp"]::-webkit-input-placeholder {
  color: #dadada;
}

input[class="h-inp"]::-moz-placeholder {
  color: #dadada;
}

input[class="h-inp"]::-moz-placeholder {
  color: #dadada;
}

input[class="h-inp"]::-ms-input-placeholder {
  color: #dadada;
}

.draw-right input::-webkit-input-placeholder {
  color: #dadada;
}

.draw-right input::-moz-placeholder {
  color: #dadada;
}

.draw-right input::-moz-placeholder {
  color: #dadada;
}

.draw-right input::-ms-input-placeholder {
  color: #dadada;
}

/*去除input默认样式*/
input {
  background: none;
  outline: none;
  border: none;
}


/*去除a标签默认样式*/
a {
  text-decoration: none;
  color: #226ebc;
}

/*body {*/
/*    width: 1920px;*/
/*}*/


/*去除默认样式*/
html,
body,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img,
dl,
dt,
dd,
iframe,
span {
  margin: 0;
  padding: 0;
  border: 0;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}


/*后台em标签样式*/
em {
  color: #BD1A2D;
  font-style: normal;
}


/*样式开始*/

/*头部大块样式*/
.header {
  width: 100%;
  height: 600px;
  background: url("../image/top_bg1.png") no-repeat top;
  background-size: 100% 600px;
  position: relative;
}

/*头部logo块*/
.header-logo {
  width: 1260px;
  padding: 30px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*头部logo 图片*/
.header-logo img {
  width: 384px;
}

/*头部logo块*/
.title-logo {
  width: 1260px;
  margin: 0 auto;
  padding-bottom: 30px;
  text-align: center;
  margin-top: 70px;
}


/*头部logo 图片*/
.title-logo img {
  width: 260px;
  /* height: 62px; */
}


/*搜索块样式*/
.header-search {
  display: flex;
  width: fit-content;
  height: 53px;
  border-radius: 10px;
  /*background: #FFF;*/
  margin: 0 auto;
  margin-bottom: 60px;
}

/*首页搜索输入块样式*/
.header-search .search-input {
  border: 2px solid #C4C7CE;
  border-right: none;
  border-radius: 10px 0px 0px 10px;
  display: flex;
  align-items: center;
  background: #FFF;
}

/*首页搜索input样式*/
.header-search .search-input input {
  width: 450px;
  padding-left: 12px;
  box-sizing: border-box;
  height: 53px;
  line-height: 44px;
  border-radius: 10px 0px 0px 10px;
  font-size: 16px;
}

/*首页搜索语音按钮样式*/
.header-search .search-input .search-input-image {
  width: 12px;
  height: 20px;
  margin-top: -3px;
  margin-left: 15px;
  margin-right: 20px;
  cursor: pointer;
  background-size: 100% 100%;
}

/*搜索按钮样式*/
.header-search .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 53px;
  background: #226ebc;
  border-radius: 0px 10px 10px 0px;
  color: #FFF;
  cursor: pointer;
}

/*搜索按钮 图片样式*/
.header-search .search-btn .search-btn-img {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  background: url("../image/search.png");
  background-size: 100% 100%;
}

/*下拉框定位*/
.search-select {
  position: relative;
}

/*搜索框下拉框*/
.search-select-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 46px;
  line-height: 46px;
  cursor: pointer;
}

/*竖线*/
.search-line {
  width: 1px;
  height: 25px;
  background: #ECECEC;
}

/*搜索框下拉框图片*/
.search-select-img {
  width: 17px;
  height: 9px;
  margin-left: 7px;
  background: url("../image/jiantou.png");
  background-size: 100% 100%;
}

/*下拉icon旋转*/
.search-select .on .search-select-img {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}


/*下拉框内容*/
.search-select-option {
  position: absolute;
  width: 160px;
  background: #FFFFFF;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3000);
  border-radius: 4px;
  margin-top: 4px;
  z-index: 2;
  padding: 10px 0px;
  display: none;
}

/*单个选择框*/
.option-item {
  height: 35px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #8E8E8E;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  border: unset;
  padding: unset;
}

.option-item:hover {
  color: #226ebc;
  background: #F1F1F1;
}


/*头部导航*/
.header-nav {
  width: 1830px;
  height: 76px;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  justify-content: space-between;
  /* background: #1659a0; */
  background: url(../image/top_nav.png) no-repeat center;
  background-size: 74.5% 100%;
}

.header-nav .on {
  background: #034881;
  border-radius: 12px 12px 12px 12px;
}

.header_bottom {
  height: 40px;
  background: #2662b5;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.top_nav_left,
.top_nav_right {
  width: 330px;
  height: 100%;
}

.top_nav_left {
  /* background: url(../image/top_nav_left.jpg) #1659a0 no-repeat left; */
}

.top_nav_right {
  /* background: url(../image/top_nav_right.jpg) #1659a0 no-repeat right; */
}

/*单个导航样式*/
.header-nav .nav-item {
  width: unset;
  margin: 0px 10px;
  height: 45px;
  text-align: center;
  line-height: 76px;
  font-size: 20px;
  font-family: SourceHanSansCN, SourceHanSansCN;
  color: #FFFFFF;
  line-height: 76px;
  cursor: pointer;
}

.header-nav .nav-item a {
  color: #FFFFFF;
}

/*导航home标样式*/
.nav-home {
  width: 25px;
  height: 25px;
  background: url("../image/home.png");
  background-size: 100% 100%;
}

.header-nav .nav-item:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  line-height: 60px;
  padding: 0 10px;
  /* margin: 0 20px; */
}

.nav-item:hover {
  /*background: #226ebc;*/
}

.nav-line {
  width: 1px;
  height: 45px;
  background: #FFFFFF;
}

/* 下拉 */
.search-input-div {
  position: relative;
}

.search-input-bottom {
  display: none;
  position: absolute;
  width: 501px;
  box-sizing: border-box;
  padding: 15px 0;
  background-color: #FFFFFF;
  z-index: 99;
}

.search-input-bottom .head-search-item {
  padding: 5px 24px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #666666;
  margin-bottom: 5px;
  cursor: pointer;
}

.search-input-bottom .head-search-item:hover {
  color: #BD1A2D;
  background: #EFEFEF;
}

/*新增*/
.advanced-search-btn {
  height: 53px;
  line-height: 53px;
  text-align: center;
  width: 100px;
  background: #226ebc;
  border-radius: 10px;
  color: #FFFFFF;
  margin-left: 10px;
  cursor: pointer;
}


.draw {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: #333;
  box-shadow: 0px 0px 18px 0px #bfbfbf;
}

.search-draw-div {
  margin: 0 auto;
  height: fit-content;
  width: 1000px;
  margin-top: 12%;
  z-index: 9;
  background: #ffffff;
  padding: 30px;
}

.search-draw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DCDCDC;
  padding-bottom: 10px;
}

.head-left {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}

.head-right img {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.draw-main {
  padding: 20px 0 10px 0;
}

.draw-searchResult,
.draw-order,
.draw-place,
.draw-time,
.draw-theme,
.draw-source,
.draw-document-no {
  display: flex;
  margin-bottom: 10px;
}

.order-lable,
.place-lable,
.time-lable {
  margin-right: 20px;
  font-size: 16px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #222222;
  line-height: 38px;
  cursor: pointer;
}

.draw-select-div {
  position: relative;
  margin-right: 10px;
}

.draw-top {
  display: flex;
  align-items: center;
  width: 160px;
  height: 28px;
  border: 1px solid #DCDCDC;
  justify-content: space-between;
  padding: 0 10px;
}

.draw-top img {
  width: 14px;
  height: 7px;
}

.draw-bottom {
  width: 180px;
  border: 1px solid #DCDCDC;
  z-index: 9;
  position: absolute;
  background: #FFFFFF;
  display: none;
}

.draw-bottom-item {
  width: 180px;
  height: 30px;
  padding-left: 10px;
  line-height: 30px;
  box-sizing: border-box;
  cursor: pointer;
}

.draw-bottom-item:hover {
  background: #F0F0F0;
}

.draw-left {
  text-align: left;
  width: 90px;
  height: 38px;
  font-size: 16px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #222222;
  line-height: 38px;
}

.draw-right {
  display: flex;
  flex-wrap: wrap;
  flex: 8;
  align-items: center;
}

.search-bigDiv {
  display: flex;
  width: 335px;
  height: 38px;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  margin-right: 30px;
  margin-bottom: 20px;
}

.search-small-left {
  flex: 1;
  margin: 8px 0px 8px 13px;
  padding-right: 13px;
  font-size: 16px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #222222;
  line-height: 20px;
  border-right: 1px solid #dfdfdf;
}

.search-small-right {
  flex: 1.5;
  margin: 8px 13px 8px 13px;
  font-size: 16px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #222222;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-small-right input {
  border: none;
}

.time-search-div input {
  text-align: center;
}

.time-search-div {
  display: none;
}

.draw-theme input,
.draw-document-no input {
  width: 180px;
  height: 28px;
  border: 1px solid #DCDCDC;
  line-height: 28px;
  padding-left: 10px;
  margin-right: 10px;
}

.mobile-btn-div {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.mobile-btn-div>div {
  width: 120px;
  height: 40px;
  background: #226ebc;
  border-radius: 5px;
  text-align: center;
  line-height: 40px;
  color: #FFFFFF;
  cursor: pointer;
}

.mobile-btn-noagree {
  background: #FFFFFF !important;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  color: #333333 !important;
}

.mobile-btn-agree {
  margin-right: 20px;
}

.draw-select-div .open img {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.search-bigDiv:nth-child(3),
.search-bigDiv:nth-child(4) {
  margin-bottom: 0;
}

.radio-div span {
  margin-right: 20px;
  font-size: 16px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #222222;
  line-height: 38px;
  cursor: pointer;

}


.radio-btn {
  display: inline-block;
  line-height: 36px;
  float: left;
  padding-left: 20px;
  margin-right: 25px;
  background: url(../image/radio.png) 0 10px no-repeat;
  background-size: 16px;
}

.radio-div .on {
  background: url(../image/radio-choosee.png) 0 10px no-repeat;
  background-size: 16px;
}


.h-inp {
  width: 370px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #DCDCDC;
  padding-left: 11px;
}

/* 上方导航条 */
.index-fr {
  margin: 0 auto;
  /* padding-top: 40px; */
  width: 1200px;
  color: #ffffff;
  text-align: right;
}

.index-fr ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.index-fr .index-wap:hover p {
  display: block;

}

.index-fr ul li.index-wap a {
  background: url(../image/index-wap.png) center no-repeat;
  background-size: 60%;
}

.index-fr ul li a {
  padding: 10px 6px;
  width: 25px;
  height: 30px;
  font-size: 14px;
  color: #ffffff;
  display: inline-block;
}

.index-fr ul li p {
  position: absolute;
  bottom: -120px;
  padding: 6px;
  background: #0064b5;
  margin-left: -24px;
  display: none;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
}

.index-fr ul li b {
  position: absolute;
  bottom: -38px;
  padding: 6px;
  background: #0064b5;
  margin-left: -40px;
  display: none;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  font-weight: normal;
  width: 100px;
}

.index-fr .index-wx:hover b {
  display: block;
}

.index-fr .index-wb:hover b {
  display: block;
}

.index-fr ul li p em {
  background: url(../image/sanjiao.png) center no-repeat;
}

.index-fr ul li p em {
  position: absolute;
  top: -6px;
  left: 38px;
  width: 12px;
  height: 6px;
}

.index-fr ul li b em {
  background: url(../image/sanjiao.png) center no-repeat;
}

.index-fr ul li b em {
  position: absolute;
  top: -6px;
  left: 50px;
  width: 12px;
  height: 6px;
}

.index-fr ul li p img {
  margin-top: 0;
  width: 80px;
  height: 80px;
  max-width: none;
}

img {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: 0;
}

.index-fr ul li.index-login a {
  width: 30px;
  line-height: 26px;
}
.index-fr ul li a {
  padding: 10px 6px;
  width: 25px;
  height: 30px;
  font-size: 14px;
  color: #ffffff;
  display: inline-block;
}

.index-fr ul li.bc-index-top {
  background: #dfeaf9;
  font-weight: bold;
  margin-right: 10px;
}

.index-fr ul li.bc-index-top a {
  color: #0064b5;
  display: inline-block;
  height: auto;
  width: auto;
  padding: 5px 6px;
}

.index-fr ul li.index-wx a {
  background: url(../image/index-wx1.png) center no-repeat;
}

.index-fr ul li.index-wb a {
  background: url(../image/weibo.png) center no-repeat;
  background-size: 30px;
}

.index-fr ul .bc-ipv6 {
  background: #dfeaf9;
  height: 27px;
  line-height: 30px;
  color: #0064b5;
  text-align: center;
  width: 119px;
}

.ny-top {
  background: #ffffff;
  height: 130px;
}

.ny-main {
  margin: 0 auto;
  width: 1200px;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.ny-fl {
  float: left;
}

.ny-fl img {
  margin-top: 28px;
}

.ny-top-fr {
  position: relative;
  z-index: 999;
}

.ny-top-fr .ipv6s {
  float: right;
  background: #dfeaf9;
  height: 30px;
  margin-top: 30px;
  line-height: 30px;
  color: #0064b5;
  text-align: center;
  width: 135px;
}

.ny-fr ul {
  float: right;
  margin-right: 5px;
}
.ny-fr ul {
  margin-top: 30px;
}
.ny-fr ul li {
  position: relative;
  display: inline-block;
}
.ny-fr ul li a {
  padding: 5px 5px;
  font-size: 14px;
  color: #003E7F;
}

.ny-fr ul li p {
  position: absolute;
  bottom: -135px;
  padding: 6px;
  background: #0064b5;
  margin-left: -24px;
  display: none;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  width: 80px;
}

.ny-fr ul li:hover p {
  display: block;
}

.ny-fr ul li p img {
  margin-top: 0;
  width: 99px;
  height: 80px;
}

.ny-fr ul li p em {
  background: url(../image/sanjiao.png) center no-repeat;
}

.ny-fr ul li p em {
  position: absolute;
  top: -6px;
  left: 38px;
  width: 12px;
  height: 6px;
  display: block;
}

.hidden-xs {
  width: 100px;
  border: 1px solid #003E7F;
  border-radius: 100px;
  height: 32px;
  line-height: 32px;
  display: block;
  margin-top: 30px;
  float: left;
  margin-right: 15px;
  text-align: right;
}
.search-icon {
  margin-top: 15px !important;
  position: absolute;
  right: 0px;
  top: 61px;
}

.hidden-xs span {
  padding: 0 15px 0 5px;
}

.hidden-xs span img {
  width: 20px;
}

.ny-top-fr .ny-search {
  margin-top: 30px;
  display: none;
  margin-right: 60px;
}

.sc_sliderdown {
  position: absolute;
  background: #eeeeee;
  border: 1px solid #eeeeee;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  margin-left: 20px;
  right: 0;
}

.ny-search .input {
  position: relative;
  float: left;
  width: 78%;
  height: 39px;
  line-height: 39px;
}

.ny-top-fr .ny-search .input input[type="text"] {
  width: 100%;
}

.ny-search {
  float: right;
  margin-top: 10px;
  width: 295px;
  height: 39px;
  border: #0064b5 solid 2px;
}

.ny-search .input input[type="text"] {
  padding: 0 10px;
  border: 0;
  outline: none;
  box-sizing: border-box;
  user-select: none;
  box-sizing: border-box;
}
.ny-search .search-txt {
  width: 164px;
  background: none;
}

.search-btn {
  float: right;
  width: 64px;
  height: 39px;
  line-height: 34px;
  text-align: center;
}
.bc-top {
  background: #dfeaf9;
  padding: 5px 5px;
  font-weight: bold;
}

.ny-fr ul li:hover b {
  display: block;
}
.ny-fr ul li b {
  position: absolute;
  bottom: -38px;
  padding: 6px;
  margin-left: -40px;
  display: none;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  font-weight: normal;
  width: 100px;
}

.ny-nav {
  height: 60px;
  background: #0064b5;
}
.ny-main {
  margin: 0 auto;
  width: 1200px;
}
.ny-nav ul {
  position: relative;
  float: left;
  width: 100%;
}
.ny-nav ul > li {
  float: left;
  height: 60px;
}
.wza-main .box ul, li {
  list-style: none;
}
.ny-nav ul > li > a {
  padding: 0 35px;
  font-size: 18px;
  color: #ffffff;
  line-height: 60px;
  display: block;
}
.ny-nav ul > li:hover > a, .ny-nav ul > li.hover > a, .ny-nav ul > li > span > a:hover {
  color: #ffffff;
  background: #003e7f;
}
.ny-nav ul > li:hover > span {
  display: block;
}
.ny-nav ul > li > span {
  position: absolute;
  left: 2em;
  bottom: -44px;
  width: 100%;
  height: 44px;
  line-height: 44px;
  display: none;
  overflow: hidden;
}
.ny-nav ul > li > span a {
  margin: 5px 10px;
  padding: 0 10px;
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
}

@media (max-width: 1700px) {
  .header-nav .nav-item:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 182px; */
    width: 90%;
    /* height: 76px; */
    line-height: 60px;
    font-size: 18px;
  }

  .header-nav {
    min-width: 1350px;
    /* width: 100%; */
    height: 76px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }


  .top_nav_left,
  .top_nav_right {
    /* width: 100%; */
    background-position-x: right;
  }

  .top_nav_right {
    background-position-x: left;
  }

}