/*通配符*/
* {
  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: 470px;
  background: url("../image/banner.png") no-repeat top;
  background-size: 100% 100%;
  position: relative;
}

/*头部logo块*/
.header-logo {
  width: 1160px;
  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;
}


/*头部logo 图片*/
.title-logo img {
  width: 359px;
}


/*搜索块样式*/
.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-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: 70px;
  height: 53px;
  background: #fff;
  border-radius: 0px 10px 10px 0px;
  color: #FFF;
  cursor: pointer;
}

.header-search .search-btn .hr {
  border-left: 1px solid #0664CA;
  height: 30px;
  padding-right: 10px;
}

/*搜索按钮 图片样式*/
.header-search .search-btn .search-btn-img {
  width: 25px;
  height: 25px;
  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: 135px;
  height: 53px;
  line-height: 53px;
  cursor: pointer;
  background-image: url('../image/select.png');
  background-size: 100% 100%;
  color: #fff;
}

/*竖线*/
.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: 133px;
  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: 100%;
  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: #4982EB;
}

.header-nav .on {
  background: #C53128;
}

.top_nav_left,
.top_nav_right {
  width: 235px;
  height: 100%;
  background: #4982EB;
}

/* .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: 76px;
  text-align: center;
  line-height: 76px;
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  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;
  min-width: 182px;
  /*width: 90%;*/
  height: 76px;
  line-height: 60px;
}

.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;
  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;
}

@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 {
    /*width: 1280px;*/
    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;
  }

}