html {
  font-size: 16px;
}

.clear-float::after {
  clear: both;
}

/* 头部样式 */
header {
  height: 90px;
  width: 100%;
  min-width: 1200px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  z-index: 100;
}

.header-box {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  justify-content: space-around;
  justify-content: space-between;
}

.header-logo {}

.header-main {
  display: flex;
  align-items: center;
  font-size: 16px;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.header-navs {
  position: relative;
}

.header-navsbox {
  /* position: relative; */
}

.header-nav {
  float: left;
  padding: 15px 35px;
  transition: all 0.2s ease-out 0s;
  position: relative;
}

.header-nav-box {
  position: absolute;
  display: none;
  background: #62625f;
  padding: 10px 15px;
  z-index: 1;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 10px);
}

.header-nav-box__li {
  white-space: nowrap;
  padding: 4px 0;
  cursor: pointer;
}

.header-nav a {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.header-nav.active>a {
  color: #156eca;
  font-weight: 600;
}

/* .header-nav:hover, */
.header-nav:hover>a{
  color: #156eca;
  transition: all 0.2s ease-out 0s;
}
.header-nav-box__li:hover a{
  color: #2a86e2;
  transition: all 0.2s ease-out 0s;
}


.header-nav:hover .header-nav-box {
  display: block;
}

.nav-active {
  display: none;
  background-color: #156eca;
  height: 2px;
  min-width: 20px;
  position: absolute;
  bottom: 0;
  transition: all 0.2s ease-out 0s;
}

.nav-active::before {
  content: "";
  border: 5px solid;
  border-color: transparent;
  border-bottom-color: #156eca;
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
}

.header-tzpp {
  background-color: #1b7de0;
  padding: 7px 15px;
  border-radius: 15px;
  font-size: 14px;
  margin: 0 20px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.header-tzpp::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 1px;
  background-color: white;
  top: 10%;
  left: -20px;
}

.header-phone {
  display: flex;
  align-items: center;
}

.header-number {
  font-size: 20px;
  font-weight: 600;
  margin-left: 6px;
}

.layout-placeholder {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 15%);
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  z-index: 100000;
}

.layout-placeholder .layout-box {
  width: 630px;
  height: 450px;
  min-height: 200px;
  max-height: 580px;
  /*设定最大最小高度,在这个之间的高度可以自适应*/
  position: fixed;
  background-color: #fff;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  z-index: 999999;
}

.layout-placeholder .layout-box.active {
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.layout-placeholder .layout-box .layout-main {
  width: 100%;
  height: 100%;
  background: url(/img/layout/layer-bg.png) no-repeat center bottom scroll;
  background-size: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
}

.layout-placeholder .layout-box .layout-close {
  width: 3vw;
  height: 3vw;
  background: url(/img/layout/layer-close.png) no-repeat center center scroll;
  background-size: 100%;
  position: absolute;
  right: -1.5vw;
  top: -1.5vw;
}

.layout-resize {
  position: absolute;
  width: 3vw;
  height: 3vw;
  background: url(/img/layout/layer-resize-small.png) no-repeat center center scroll;
  background-size: auto;
  top: -1.5vw;
  left: -1.5vw;
  cursor: pointer;
  background-color: #3498ff;
  border-radius: 50%;
  border: 2px solid #fff;
  box-sizing: border-box;
  background-color: gray;
  border: none;
  left: auto;
  right: 2vw;
  top: auto;
  bottom: 2vw;
  opacity: 0.8;
}

.layout-resize.active {
  background-image: url(/img/layout/layer-resize-big.png);
  /* top: -1.5vw; */
}

.animate-close {
  display: none;
  position: fixed;
  width: 3vw;
  height: 3vw;
  background: url(/img/layout/layer-close.png) no-repeat center center scroll;
  background-size: 100%;
  z-index: 2;
}

.animate-close.active {
  top: 0;
  left: 0;
  transition: all 0.8s ease 0s;
  animation: closexz 0.8s ease 1;
}

@keyframes closexz {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }

  100% {
    transform: rotate(1440deg) scale(0.6);
    opacity: 0.5;
  }
}

/* 弹框 精准匹配 style */
.condition-header {
  height: 80px;
  display: flex;
  align-items: center;
}

.condition-header span {
  font-size: 1.2rem;
  margin-left: 1rem;
}

.condition-main {
  height: calc(100% - 140px);
  overflow: auto;
}

.condition-footer {
  height: 60px;
  border-top: 1px solid #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.condition-footer button {
  background-color: #1b7de0;
  color: #fff;
  border: none;
  padding: 0.6rem 3.5rem;
  border-radius: 3px;
  font-size: 1.2rem;
}

.condition-info {
  width: 100%;
}

.condition-info table {
  width: 100%;
}

.condition-info .info-item {
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.condition-info .info-title {
  margin-right: 1rem;
}

.condition-info .info-content {
  background-color: #f2f2f2;
  flex: 1 1 auto;
  height: 3rem;
  display: flex;
  align-items: center;
}

.condition-info .info-content .layui-form-select {
  flex: 1;
}

.condition-info .info-content input,
.condition-info .info-content textarea {
  background-color: transparent;
  width: 100%;
  border: none;
  height: 100%;
  padding: 0 1rem;
}

.condition-info .info-content textarea {
  padding: 10px 1rem;
  resize: none;
  box-sizing: border-box;
}

/* 匹配内容 弹窗 */
.mainlist {
  width: 100%;
  border-bottom: 1px solid #e3e3e3;
}

.mainlist>li {
  float: left;
  margin-right: 2rem;
  position: relative;
}

.mainlist>li span {
  margin: 0;
  display: inline-block;
  padding-bottom: 0.6rem;
}

.mainlist>li span.active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #156eca;
  bottom: 0;
  transition: all 0.5s ease 0s;
}

.mainlist>li span:hover,
.mainlist>li span.active {
  color: #156eca;
  font-weight: 600;
}

.maindetail {
  width: 100%;
  height: 100%;
}

.maindetail-conditions {
  width: 100%;
}

.maindetail-conditions__item {
  width: 100%;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.maindetail-conditions__item .maindetail-conditions__box {
  margin-bottom: 0;
}

.maindetail-conditions__head {
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.conditions__head-title {
  text-align: left;
  display: flex;
}

.conditions__head-tool {}

.conditions__head-tool .title-slide {
  height: 20px;
  width: 20px;
  cursor: pointer;
  transition: all 1s ease 0s;
}

.conditions__head-tool .title-slide.active {
  transform: rotate(180deg);
}

.maindetail-conditions__head .conditions__head-title span {
  display: inline-block;
  width: 4px;
  height: 20px;
  background: #168aff;
  margin-right: 6px;
}

.maindetail-conditions__item .maindetail-conditions__row {
  width: 50%;
  float: left;
}

.maindetail-conditions__item .maindetail-conditions__title {
  width: 150px;
  text-align: left;
  padding-left: 10px;
}

.maindetail-conditions__item .maindetail-conditions__items {
  width: calc(100% - 160px);
}

/* .maindetail-conditions__items label input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
} */
.maindetail-conditions__item .maindetail-conditions__items label input[type="radio"],
.maindetail-conditions__item .maindetail-conditions__items label input[type="checkbox"] {
  padding: 0;
  position: relative;
  margin-right: 5px;
}

.maindetail-conditions__item .maindetail-conditions__items label input[type="radio"]::before,
.maindetail-conditions__item .maindetail-conditions__items label input[type="checkbox"]::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 22px;
  line-height: 1;
  background: #fff url(/img/layout/icon-cond-uncheck.jpg) no-repeat center center scroll;
  position: absolute;
  top: 0;
}

.maindetail-conditions__item .maindetail-conditions__items label input[type="radio"]:checked::before,
.maindetail-conditions__item .maindetail-conditions__items label input[type="checkbox"]:checked::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 22px;
  line-height: 1;
  background: #fff url(/img/layout/icon-cond-checked.png) no-repeat center center scroll;
  position: absolute;
  top: 0;
}

.maindetail-conditions__item .maindetail-conditions__items label input[type="radio"]:disabled::before,
.maindetail-conditions__item .maindetail-conditions__items label input[type="checkbox"]:disabled::before {
  filter: grayscale(1) brightness(0.95);
  cursor: not-allowed;
}

.maindetail-conditions__box {
  margin-bottom: 1rem;
  border: 1px solid #f2f2f2;
}

.maindetail-conditions__row {
  text-align: left;
  display: flex;
  border-bottom: 1px dashed #cccccc;
}

.maindetail-conditions__row:last-child {
  border-bottom: none;
}

.maindetail-conditions__row .layui-form-select {
  margin-right: 5px;
}


.maindetail-conditions__title {
  display: inline-block;
  width: 80px;
  /* text-align: right; */
  line-height: 35px;
  background: #f6f6f6;
  text-align: center;
  padding: 0.2rem 0.1rem;
}

.maindetail-conditions__items {
  line-height: 35px;
  display: inline-block;
  width: calc(100% - 100px);
  margin-left: 10px;
  padding: 0.2rem 0.1rem;
}

.maindetail-conditions__items a {
  padding: 0px 10px;
  white-space: nowrap;
  box-sizing: border-box;
  color: #666;
}

.maindetail-conditions__items a.active {
  border: 1px solid;
  border-radius: 3px;
  background-color: rgb(21 110 202 / 20%);
  color: #156eca;
}

.maindetail-conditions__items input {
  height: 1rem;
  border: 1px solid #d3d3d3;
  margin: 0 auto;
  padding: 5px;
  background: #fff;
}

.maindetail-conditions__items button {
  background-color: #166fcb;
  border: none;
  color: #fff;
  padding: 4px 1rem;
  cursor: pointer;
}

.maindetail-conditions__items button:active {
  opacity: 0.9;
}

.maindetail-main {
  /* float: left; */
  height: calc(100% - 4.5rem);
  border: 1px solid #156eca;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.maindetail-left {
  float: left;
  height: 100%;
  width: 300px;
}

.maindetail-right {
  float: right;
  height: 100%;
  width: calc(100% - 320px);
  border: 1px solid #156eca;
  box-sizing: border-box;
}

.maindetail-title {
  color: #7adffd;
  background: url(/img/layout/content-title.png) no-repeat center center scroll;
  background-size: 100% 100%;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.maindetail-title strong {
  color: #ff9422;
}

.maindetail-list {
  height: calc(100% - 35px);
  overflow-y: auto;
}

.maindetail-list>ul {}

.maindetail-list>ul>li {}

.maindetail-name {
  border-bottom: 1px solid #eaeaea;
  font-size: 18px;
  text-align: left;
  padding: 0.6rem;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}

.maindetail-name::after {
  position: absolute;
  content: "";
  border: 5px solid;
  border-color: transparent;
  border-left-color: #666;
  right: 0;
  top: 50%;
  margin-top: -5px;
  transition: all 0.5s ease 0s;
  transform: rotate(0deg);
}

.maindetail-name:hover {
  color: #156eca;
}

.maindetail-name:hover::after {
  border-left-color: #156eca;
}

.maindetail-name.active::after {
  transform: rotate(90deg);
}

.maindetail-info {
  display: none;
}

.maindetail-info>ul {
  border-bottom: 1px solid #eaeaea;
  padding: 0 0.6rem 0 1.2rem;
}

.maindetail-info>ul>li {
  border-bottom: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 0.6rem 0;
  text-align: left;
  color: #aaa;
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}

.maindetail-info>ul>li:last-child {
  border-bottom: none;
}

.maindetail-main .pagelist .home-newsbox-content__title {
  text-align: left;
}

.maindetail-main .pagelist .home-newsbox-item {
  padding-bottom: 0;
}

.laymap {
  width: 100%;
  height: 100%;
}

.laymap-legend {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 200px;
  background-color: #fff;
  text-align: left;
  z-index: 10;
  padding: 5px;
}

.map-legend-item {}

.map-legend__title {
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}

.map-legend-item span {
  margin: 2px 0;
  display: inline-block;
}

/* 人才弹框 */
.layout-placeholder .layout-box.layout-box__rcdetail {
  max-width: 900px;
  height: 80%;
}

/* 产业链单位列表 */
.cyunit {
  border: 1px solid #ddd;
  padding: 0 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.cyunit-head {
  /* border-bottom: 1px solid #ddd; */
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}

.cyunit-head h2 {
  font-size: 18px;
  font-weight: bold;
}

.cyunit-body {
  padding: 15px;
  font-size: 16px;
  background: #f4faff;
  /* margin: 5px 0; */
}

.cyunit-tip {
  font-size: 12px;
  font-weight: 100;
  border: 1px solid #156eca;
  padding: 0 3px;
  color: #156eca;
  margin-left: 10px;
}

.scode-all {
  display: flex;
  padding: 2px 0;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.scode-all__star {
  color: #ff0000;
  margin-left: 10px;
}

.scode-all__star-good {
  color: #ffc800;
}

.scode-all__star-gread {
  color: #1c70fd;
}

.cyunit-info {
  width: 100%;
  margin-bottom: 12px;
  /* display: flex;
    justify-content: space-between; */
}

.cyunit-info__item {
  /* width: 25%; */
  float: left;
  display: flex;
  margin-right: 30px;
}

.cyunit-info__item-title {
  padding-right: 8px;
  color: #666;
  white-space: nowrap;
}

.cyunit-info__item-content {
  color: #333;
  /* opacity: .8; */
  text-align: left;
}

.cyunit-scode {
  display: flex;
  justify-content: space-between;
}

.cyunit-scode span {
  /* opacity: .8; */
}

.condition-head__dlbtns {
  width: 100%;
  height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.condition-head__dlbtn {
  background-color: #166fcb;
  border: none;
  color: #fff;
  padding: 6px 1rem;
  cursor: pointer;
}

.report-box {
  padding: 1vw;
  text-align: left;
}

.report-box__title {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.report-box__title img {}

.report-box__main {
  display: flex;
  justify-content: space-around;
  justify-content: space-evenly;
}

.report-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1vw;
}

.report-item__img {
  width: 80px;
}

.report-item__content {
  margin-left: 10px;
}

.report-item__count {
  font-size: 16px;
}

.report-item__count span {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(249, 156, 23);
}

.report-item__title {
  font-size: 16px;
}

.cypp-box {
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.cypp-content {
  height: calc(100% - 40px);
  display: inherit !important;
  overflow: auto;
}

.cypp-btns {
  height: 40px;
  display: inherit !important;
  text-align: center;
}

.cypp-btn {
  padding: 5px 15px;
  margin: 0 5px;
  color: #fff;
  background: #1a7adb;
  border: none;
  border-radius: 3px;
}

.cypp-btn__close {
  padding: 5px 15px;
  margin: 0 5px;
  color: #fff;
  background: #acacac;
  border: none;
  border-radius: 3px;
}

/* 左侧工具 */
.tool-right {
  background-color: #fff;
  width: 90px;
  position: fixed;
  right: 1vw;
  top: 50%;
  box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
}

.tool-right>ul {}

.tool-right>ul>li {
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #ebebeb;
  cursor: pointer;
}

.tool-right>ul>li:hover .righttool-img {
  transform: scale(1.1);
}

.righttool-img {}

.righttool-title {
  color: #333333;
  font-size: 14px;
}

.more-people {
  position: relative;
}

.more-people:hover .more-peoplebox {
  display: block;
}

.more-peoplebox {
  display: none;
  position: absolute;
  right: 100%;
  background-color: #0171c0;
  width: 225px;
  min-height: 200px;
  top: 36%;
  transform: translate(0, -50%);
  padding: 1vw;
  box-sizing: border-box;
}

.peoplebox-cell {
  display: flex;
  align-items: flex-start;
  padding: 5px 0;
}

.peoplebox-cell>img {
  width: 30px;
  margin-right: 5px;
}

.peoplebox-cell .content {
  text-align: left;
  letter-spacing: 1px;
}

.peoplebox-cell .content span {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
}

/* 底部样式 */
footer {
  color: #858585;
  background-color: #333333;
  height: 45px;
  width: 100%;
  min-width: 1200px;
}

.footer-box {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  justify-content: space-around;
  justify-content: space-between;
  font-size: 14px;
}

.footer-nav {
  float: left;
  padding: 10px 25px;
  position: relative;
}

.footer-nav:first-child {
  padding-left: 0;
}

.footer-nav::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 40%;
  background-color: white;
  right: 0;
  top: 30%;
  opacity: 0.35;
}

.footer-nav:last-child::after {
  opacity: 0;
}

.footer-nav a {
  color: #858585;
  cursor: pointer;
  text-decoration: none;
}

.footer-nav:hover {
  color: #fff;
}

.footer-copyright {}

/* 百度地图弹窗 */
.BMap_bubble_title {
  background: url(/img/inner/bg-map-title.png) no-repeat left center scroll;
  background-size: contain;
  color: #fff !important;
}

.BMap_bubble_title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 100%;
  vertical-align: bottom;
  background: url(/img/inner/icon-map-title.png) no-repeat center center scroll;
}

.mapinfo-zdcy {
  color: #156eca;
}

.mapinfo-btn {
  background-color: #156eca;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 2px 10px;
  margin-left: 10px;
  cursor: pointer;
}

.mapinfo-ss {
  color: #156eca;
  cursor: pointer;
  margin-left: 5px;
}

.mapinfo-zdcy__doc {
  padding: 15px;
  padding-bottom: 0;
  font-size: 16px;
  /* color: #333; */
}

.mapinfo-zdcyxq {}

.mapinfo-zdcyxq__detail {
  padding: 15px;
  font-size: 16px;
  color: #333;
}

.mapinfo-zdcyxq__title {
  font-weight: 600;
  margin-bottom: 5px;
}

.mapinfo-zdcyxq__detail pre {}


/* 内部banner */
.inner-banner {
  height: 430px;
  background: #333333 no-repeat center center scroll;
  position: relative;
}

.inner-banner__policy {
  background-image: url(/img/banner/banner-policy.png);
}

.inner-banner__zspp {
  background-image: url(/img/banner/banner-zs.jpg);
}

.inner-banner__zspp-yzz {
  height: 280px;
  background-image: url(/img/banner/banner-zs-yzz.jpg);
}

.inner-banner__news {
  background-image: url(/img/banner/banner-new.png);
}

.inner-banner__project {
  background-image: url(/img/banner/banner-project.png);
}

.inner-banner__about {
  background-image: url(/img/banner/banner-about.png);
}

.inner-banner__talents {
  background-image: url(/img/banner/banner-rc.jpg);
}

.inner-banner__yzz {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-banner__yzz-pp {
  height: 560px;
}

.inner-banner__yzz.inner-banner__zspp {
  /* background-image: url(/img/banner/banner-tzpp.jpg); */
  background-image: url(/img/banner/banner-tzpp2.jpg);
}

.inner-banner__yzz.inner-banner__project {
  background-image: url(/img/banner/banner-cydt.jpg);
}

.inner-banner__yzz.inner-banner__policy {
  background-image: url(/img/banner/banner-tzzc.jpg);
}

.inner-navsnew {
  position: absolute;
  width: 1200px;
  top: 380px;
  background-color: #1b7de0;
  color: #fff;
  left: 50%;
  margin-left: -600px;
  height: 50px;
  display: flex;
  align-items: center;
}

.wrap-auto__yzz {
  top: 330px;
}

.inner-navs {
  position: absolute;
  width: 1200px;
  bottom: 0;
  background-color: #1b7de0;
  color: #fff;
  left: 50%;
  margin-left: -600px;
  height: 50px;
  display: flex;
  align-items: center;
}

.inner-nav {}

.inner-navcell {
  float: left;
  padding: 0 1.5rem;
  opacity: 0.7;
  position: relative;
  cursor: pointer;
}

.inner-navcell::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 6px;
  background: #fff;
  top: 50%;
  right: 0;
  margin-top: -3px;
}

.inner-navcell:last-child::after {
  content: none;
}

.inner-navcell:hover,
.inner-navcell.active {
  opacity: 1;
  font-weight: 600;
}

.inner-search {
  width: 750px;
  height: 2.5rem;
  border: 1px solid #d3d3d3;
  margin: 0 auto;
  padding: 5px;
  background: #fff;
  display: flex;
  margin-bottom: 2rem;
}

.inner-search input {
  border: none;
  flex: 1 1 auto;
  padding: 0 2rem;
  outline: none;
  background: url(/img/inner/icon-search.png) no-repeat 1rem center scroll;
  padding-left: 3rem;
}

.inner-search button {
  background-color: #166fcb;
  border: none;
  color: #fff;
  padding: 10px 1rem;
  cursor: pointer;
}

.empty-list {
  text-align: center;
  padding: 1rem;
  opacity: 0.8;
}

.page-title__yzz {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

.wrap-auto__right {
  width: 950px;
  margin: 50px;
}

.wrap-auto__right>.wrap-auto__inner {
  width: 850% !important;
  max-width: fit-content;
  min-width: initial;
  margin: 0 auto;
}

.wrap-auto__right>.wrap-auto__inner .pagelist-list {
  width: 900px;
  max-width: none;
}

.wrap-auto__right .inner-update {
  width: 935px;
}

.wrap-auto__right .inner-update .inner-navcell {
  padding: 0 .5rem;
}

.wrap-content {
  width: 100%;
}

.wrap-auto__right>.wrap-auto {
  display: block;
}

.cyl-doc {
  font-size: 16px;
  margin: 30px 0;
  line-height: 24px;
  padding-right: 15px;
  color: #666;
}

.cyl-table {
  width: 100%;
}

.cyl-table__jhcn {
  width: 100%;
}

.cyl-table__jhcn tr {
  border-left: 1px solid #333;
  border-top: 1px solid #333;
}

.cyl-table__jhcn tr td,
.cyl-table__jhcn tr th {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 5px
}

.tzpp-row {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.tzpp-row input {
  height: 35px;
  width: 250px;
  padding: 0 10px;
  font-size: 16px;
}

.tzpp-row button {
  margin-left: 10px;
  padding: 0 15px;
  background: #1b7de0;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/*---------------------------------------主体部分---------------------------------------*/
main {
  display: block;
  min-height: calc(100% - 45px);
  width: 100%;
  min-width: 1200px;
}

.main-1p {
  height: calc(100% - 45px);
}

.main-2p {
  height: 128px;
}

.main-bg__white {
  background-color: white;
}

.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-color: black;
}

.banner-img {
  width: 100%;
}

.swiper-style1 .swiper-pagination {
  color: #fff;
  width: 50px;
  top: calc(90% - 10px);
  left: auto;
  right: 190px;
}

.swiper-style1 .swiper-button-prev,
.swiper-style1 .swiper-button-next {
  background-color: #fff;
  width: 44px;
  background-size: 11px 19px;
  top: 90%;
}

.swiper-style1 .swiper-button-prev {
  background-image: url(/img/index/icon-banner-left.png);
  left: auto;
  right: 296px;
}

.swiper-style1 .swiper-button-next {
  background-image: url(/img/index/icon-banner-right.png);
  right: 250px;
}

.swiper-container__project .swiper-slide>img.banner-img {
  width: 100%;
  min-height: 100%;
}

.swiper-container__project .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  color: #fff;
}

.swiper-container__project .swiper-pagination-bullet {
  opacity: 0.6;
}

.swiper-container__project .swiper-pagination-bullet-active {
  opacity: 1;
}

.ppt {
  height: 100%;
  width: 100%;
}

.ppt .swiper-slide {
  text-align: center;
}

.ppt .swiper-slide .banner-img {
  /* max-width: 100%; */
  max-height: 100%;
  width: auto;
}

/* page 首页 */
.home-banners {
  height: 82%;
  width: 100%;
}

.home-video {
  width: 100%;
  height: 100vh;
  background-color: black;
  position: relative;
}

.home-video video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.home-video__fill {
  position: absolute;
  right: 1vw;
  bottom: 1vw;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url(/img/index/voice-false.png) no-repeat center center scroll;
  background-image: url(/img/index/s-full.png);
  background-size: cover;
}

.home-video__fill.active {
  background-image: url(/img/index/voice-true.png);
  background-image: url(/img/index/s-full.png);

  opacity: .2;
}

.home-video__fill:hover {
  opacity: 1;
}

.home-news {
  height: 18%;
  width: 100%;
}

.main-2p .home-news {
  height: 100%;
}

.main-2p .home-newstit {
  bottom: 0;
}

.home-newstit {
  height: 100%;
  width: 20%;
  background: url(/img/index/img-new.png) no-repeat center center scroll;
  background-size: contain;
  position: absolute;
  bottom: 20%;
  z-index: 1;
  left: -2.8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4.5%;
  box-sizing: border-box;
}

.home-newsbox {
  width: 84%;
  height: 100%;
  float: right;
  display: -ms-grid;
  display: grid;
  display: flex;
  -ms-grid-template-columns: repeat(2, 50%);
  grid-template-columns: 50% 50%;
  align-items: center;
}

.home-newstit__big {
  color: #fde674;
  font-size: 25px;
}

.home-newstit__label {
  color: #fde674;
  text-transform: uppercase;
  margin: 10px 0px;
}

.home-newstit__more {
  color: #fff;
  text-decoration: underline;
  margin-top: 10px;
  cursor: pointer;
}

.home-newsbox-item {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
}

.home-newsbox-time {
  font-weight: 600;
  margin: 0 2rem;
  margin-left: 40px;
}

.home-newsbox-time__day {
  color: #156eca;
  text-align: center;
  font-size: 40px;
  line-height: 1;
}

.home-newsbox-time__date {
  color: #156eca;
}

.home-newsbox-content {
  flex: 1 1 auto;
  overflow: hidden;
}

.home-newsbox-content__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.home-newsbox-content__title,
.home-newsbox-content__label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  padding: 6px 0;
}

.home-newsbox-content__title {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.home-newsbox-content__label {
  opacity: 0.7;
  font-size: 14px;
}

.home-newsbox-item:hover .home-newsbox-content__title,
.home-newsbox-item:hover .home-newsbox-content__label {
  color: #156eca;
}

.pagelist {}

.new-detail {
  width: 1200px;
  background-color: #fff;
  box-shadow: 0px 0px 5px 3px rgb(0 0 0 / 5%);
  padding: 2rem 120px;
  box-sizing: border-box;
}

.new-detail table td {
  border: 1px solid #666;
}

.talents-detail {
  width: 1200px;
  position: relative;
  color: #666;
}

.pagelist-list {
  max-width: 1200px;
  margin: 0 auto;
}

.list-cell {
  background: #fff;
  padding: 1.8rem 2rem;
  box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
  margin-bottom: 2rem;
}

.pagelist-default {
  background-color: #fff;
}

.talents-info {
  box-sizing: border-box;
  width: 880px;
  padding: 2rem 20px;
  background-color: #fff;
}

.talents-photo {
  float: left;
}

.talents-infodetail {
  width: 540px;
  margin-left: 280px;
}

.talents-infocell {
  padding: 0.5rem 0;
}

.talents-infodetail__name {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.talents-infodetail__name>strong {
  font-size: 22px;
  color: #333;
}

.talents-infodetail__info {
  color: #999;
  padding: 5px 0;
}

.talents-infodetail__info>p {
  padding: 5px 0;
}

.talents-infodetail__info-title {
  display: inline-block;
  color: #666;
  text-align-last: justify;
  text-align: justify;
  text-justify: distribute-all-lines;
  width: 65px;
}

.talents-infodetail__title {
  margin: 10px 0;
  position: relative;
}

.talents-infodetail__title>strong {
  font-size: 16px;
  background: #fff;
  color: #333;
}

.talents-infodetail__title::before {
  content: "";
  width: calc(100% - 75px);
  height: 1px;
  border-bottom: 1px dashed #ddd;
  display: block;
  top: 50%;
  position: absolute;
  right: 0;
}

.talents-infodetail__about {
  line-height: 1.5;
}

.talents-infodetail__technology {}

.talents-technology__title {
  color: #333;
}

.talents-technology__cell {
  background-color: #fafafa;
  border: 1px solid #ddd;
  margin: 1rem 0;
  border-left-color: #297bcf;
  padding: 1rem;
}

.talents-technology__cell .talents-technology__title {
  color: #297bcf;
}

.talents-technology__content {
  display: flex;
  justify-content: space-between;
}

.talents-technology__item {
  display: flex;
}

.talents-technology__name {}

.talents-technology__val {}

.talents-infodetail__award {}

.talents-other {
  width: 300px;
  background-color: #fff;
  min-height: 110px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  box-sizing: border-box;
}

.talents-other__title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.talents-other__title>strong {
  color: #333;
  font-size: 15px;
}

.talents-other__cell {
  margin-top: 1rem;
  float: left;
  width: 100%;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.talents-other__cell:hover {
  background-color: #f4f4f4;
  border: 1px solid #1a7ee0;
}

.talents-other__photo {
  width: 75px;
  height: 90px;
  background: #eee;
  float: left;
  overflow: hidden;
}

.talents-other__info {
  float: right;
  width: calc(100% - 90px);
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  height: 90px;
}

.talents-other__info-name {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.talents-other__info-add {}

.home-cell {
  width: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
}

.home-cell__gray {
  background-color: #f5f5f5;
}

.home-cell__box {}

.home-cell__title {
  margin-bottom: 2rem;
}

.home-cell__name {
  margin: 0 auto;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #333;
}

.home-cell__sub {
  margin: 0 auto;
  text-align: center;
  color: #333;
  opacity: 0.7;
  text-transform: uppercase;
  padding: 2px;
  font-size: 16px;
}

.home-cell__wrap {
  width: 100%;
}

.home-cell__wrap-project {
  height: 440px;
}

.home-cell__wrap-news {
  height: 500px;
}

.project-hdp {
  float: left;
  width: 580px;
  height: 100%;
}

.project-news {
  float: right;
  background-color: #fff;
  height: 100%;
  width: calc(100% - 600px);
}

.home-new {
  float: left;
  width: calc((100% - 4rem) / 3);
  margin-right: 2rem;
  height: 100%;
  transition: all 0.8s ease 0s;
}

.home-new:not(.home-new__list):hover {
  background-color: #f2f2f2;
}

.home-new:hover .home-news__title {
  /* color: #156ec8; */
}

.home-new:hover .home-news__img img {
  transform: scale(1.2);
}

.home-new:last-child {
  margin-right: 0;
}

.home-news__img {
  height: 270px;
  overflow: hidden;
  width: 100%;
  background: #f2f2f2;
  margin-bottom: 20px;
}

.home-news__img img {
  width: 100%;
  min-height: 100%;
  transition: all 0.8s ease 0s;
}

.home-news__time {
  color: #666;
  line-height: 30px;
  font-weight: 600;
  font-size: 15px;
}

.home-news__title {
  color: #333;
  font-weight: 600;
  font-size: 18px;
  line-height: 45px;
  cursor: pointer;
}

.home-news__content {
  color: #333;
  height: 66px;
  line-height: 1.5;
  overflow: hidden;
  opacity: 0.9;
}

.home-news__more {
  color: #156ec8;
  font-weight: 600;
  font-size: 16px;
  margin-top: 1rem;
}

.home-new__cell {
  height: 135px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 2rem;
  cursor: pointer;
}

.home-new__cell:hover {
  background-color: #f2f2f2;
}

.home-new__cell:hover .home-new__cell-title {
  color: #156ec8;
}

.home-new__list {
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
}

.home-new__cell:last-child {
  border-bottom: none;
}

.home-new__cell-title {
  color: #333;
  font-weight: 600;
  font-size: 16px;
}

.home-new__cell-time {
  color: #666;
  line-height: 30px;
  font-weight: 600;
  font-size: 15px;
}

/* 走进安宁 */
.content-title {
  margin: 0 auto;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #333;
}

.content-label {
  margin: 0 auto;
  text-align: center;
  color: #333;
  opacity: 0.7;
  text-transform: uppercase;
  padding: 1rem;
}

.content-desc {
  color: #666;
  text-align: center;
  line-height: 2rem;
  padding: 1rem 0;
}

.content-about-item {
  margin-top: 2rem;
  background-color: #e8e8e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-about-cont {
  padding: 3rem;
  color: #666;
}

.content-about-img {
  width: 580px;
  height: 380px;
  overflow: hidden;
  flex-shrink: 0;
}

.content-about-img>img {
  transition: all 0.8s ease 0s;
}

.content-about-img>img:hover {
  transform: scale(1.1);
}

.content-about-cont__title {
  display: flex;
  align-items: center;
  color: #156fca;
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.content-about-cont__title-icon {
  margin-right: 0.5rem;
}

.content-about-cont__title-icon img {
  float: left;
}

.content-about-cont__title-name {}

.content-about-cont__desc {
  line-height: 1.5;
  font-size: 14px;
  letter-spacing: 1px;
}

.about-bmap {
  width: 100%;
  height: 80vh;
  background-color: #f2f2f2;
  position: relative;
}

.map-legend {
  position: absolute;
  right: 2vw;
  box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
  width: 10vw;
  background-color: #fff;
  top: 10%;
}

.map-legend__ns {}

.map-legend__detail {}

/* 土地资源 */
.ghlist {
  position: absolute;
  top: 2vh;
  background-color: #fff;
  left: 3vw;
}

.ghlist-head {
  background-color: #156eca;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ghlist-head img {
  width: 1vw;
  cursor: pointer;
}

.ghlist-head img:active {
  opacity: 0.8;
}

.ghlist-item {
  padding: 1rem;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ghlist-item:hover {
  background-color: #f2f2f2;
}

.ghlist-name {}

.ghlist-item.active .ghlist-name {
  color: #156eca;
}

.supermap-wind__title {
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #999;
  margin-bottom: 6px;
  padding-bottom: 5px;
}

.layui-icon-file:before {
  content: none;
}

.node-img {
  width: 12px;
  margin-right: 2px;
}

/* 招商项目 */
.list-cell.list-cell__project {
  margin-bottom: 0;
  box-shadow: none;
  padding-bottom: 0;
}

.list-cell__project .home-newsbox-item {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 1rem;
  /* padding: 10px 0; */
  margin-bottom: 1rem;
}

.list-cell__project .home-newsbox-content__title {
  font-size: 16px;
  width: 80%;
  font-weight: inherit;
}

.list-cell__project .list-time {
  opacity: 0.8;
  white-space: nowrap;
}

.list-cell__project .home-newsbox-content__box {
  position: relative;
  padding-left: 15px;
}

.list-cell__project .home-newsbox-content__box::before {
  content: "";
  border: 5px solid;
  border-color: transparent;
  border-left-color: #666;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
}

.list-cell__project:hover .home-newsbox-content__box::before {
  border-left-color: #156eca;
}

.list-cell__project:hover .list-time {
  color: #156eca;
}

/* 投资列表页 */
.list-cell__policy .home-newsbox-time {
  margin-left: 0;
  position: relative;
}

.list-cell__policy .home-newsbox-time::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #eee;
  top: 0%;
  right: -2rem;
}

.list-cell__policy .home-newsbox-content {
  padding: 0 1.5rem;
}

.list-cell__policy .home-newsbox-content__box {
  width: 90%;
}

.list-cell__policy .tomore {
  width: 2rem;
  height: 2rem;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: url(/img/inner/icon-news-detail.png) no-repeat center center scroll;
  border: 1px solid #bbb;
  background-size: 25%;
}

.list-cell.list-cell__policy:hover {
  background-color: #166fcb;
  color: #fff;
}

.list-cell.list-cell__policy:hover .home-newsbox-time__day,
.list-cell.list-cell__policy:hover .home-newsbox-time__date,
.list-cell.list-cell__policy:hover .home-newsbox-content__title,
.list-cell.list-cell__policy:hover .home-newsbox-content__label {
  color: #fff;
}

/* 新闻列表页 */
.list-cell.list-cell__news {
  padding: 0;
  display: flex;
  background-color: #f5f5f5;
  min-height: 10rem;
}

.list-cell__news .home-newsbox-item {
  padding: 1.8rem 2rem;
  width: 70%;
}

.newlist-img {
  background: url(/img/inner/img-news-list.png) no-repeat center center scroll;
  width: 30%;
  background-size: cover;
  /* flex: 1 0 0%; */
  transition: all 0.6s ease 0s;
}

.newlist-img:hover {
  transform: scale(1.1);
}

.list-cell.list-cell__news .home-newsbox-content__title {
  font-size: 18px;
}

.list-cell.list-cell__news .home-newsbox-content__label {
  white-space: normal;
}

.list-cell__news .home-newsbox-time {
  position: relative;
}

.list-cell__news .home-newsbox-time::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #ebebeb;
  top: 0%;
  left: -2rem;
}

.list-cell.list-cell__news .home-newsbox-time__day,
.list-cell.list-cell__news .home-newsbox-time__date {
  color: #666;
}

.list-cell.list-cell__news:hover {
  background-color: #166fcb;
  color: #fff;
}

.list-cell.list-cell__news:hover .home-newsbox-time__day,
.list-cell.list-cell__news:hover .home-newsbox-time__date,
.list-cell.list-cell__news:hover .home-newsbox-content__title,
.list-cell.list-cell__news:hover .home-newsbox-content__label {
  color: #fff;
}

/* 新闻详情 */
.new-title {
  font-size: 1.5rem;
  text-align: center;
  /* color: #156eca; */
  font-weight: 600;
  /* border-bottom: 3px solid; */
  /* padding-bottom: 1rem; */
  /* margin-bottom: 1rem; */
}

.new-subtitle {
  font-size: 14px;
  color: #999;
  text-align: center;
  padding: 1.2rem;
  border-bottom: 1px solid #f0f0f0;

}

.new-subtitle__line {
  margin: 0 10px;
}

.new-content {
  min-height: 30vh;
  padding: 30px 0;
}

.new-content img {
  max-width: 100%;
}

.new-fooder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .3rem;
  background-color: #f2f2f2;
}

.new-fooder__cell {}

/* 人才信息列表 */
.rc-cell {
  height: 126px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  box-sizing: border-box;
  color: #666;
  width: calc(50% - 0.5rem);
  float: left;
  border: 1px solid #e4e4e4;
}

.rc-cell:nth-child(2n) {
  float: right;
}

.rc-cell:hover {
  background-color: #f4f4f4;
  border: 1px solid #1a7ee0;
  box-sizing: border-box;
}

.rc-maininfo {
  flex: 1;
  text-align: left;
}

.rc-maininfo__photo {
  width: 90px;
  float: left;
}

.rc-maininfo__info {
  float: right;
  width: calc(100% - 110px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  justify-content: space-evenly;
}

.rc-maininfo__name {
  font-size: 20px;
  color: #333;
}

.rc-maininfo__name-tip {
  color: #ff7100;
  font-size: 9px;
  padding: 1px 4px;
  border: 1px solid;
  border-radius: 3px;
  margin-left: 5px;
}

.rc-maininfo__addr {
  padding: 5px 0;
}

.rc-maininfo__tip {}

.rc-right {
  width: 90px;
  text-align: right;
  margin-left: 2rem;
  display: flex;
  align-items: flex-end;
}

.rc-right__unit {
  font-size: 16px;
  color: #2e86e1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rc-right__more {
  margin-top: 14px;
  color: #fff;
  background: #2e86e1;
  width: 80px;
  float: right;
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 1rem;
  cursor: pointer;
}

.rc-maininfo__tip-ry {
  font-style: normal;
  font-size: 12px;
  border: 1px solid;
  border-radius: 2px;
  padding: 0px 3px;
  color: #ff7100;
  margin-right: 5px;
}

.talents-other__info-tip {
  margin-left: 0;
  padding: 0 2px;
  margin: 5px 0;
}

/* 分页 */
.pagelist-page {
  text-align: center;
}

.pagelist-default .pagelist-page {
  /* padding: 1rem 0; */
  width: 100%;
  float: left;
}

.pagelist-page .layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: #166fcb;
}

.pagelist-page .layui-laypage a:hover {
  color: #166fcb;
}

/* layer layui 样式覆写 */
.layui-form-select dl dd.layui-this {
  background-color: #1b7de0;
}

.maindetail-conditions-select .layui-form-item {
  display: inline-block;
}

.maindetail-conditions-select .layui-form-item .layui-input-inline {
  float: inherit;
}

.layui-form-select dl {
  max-height: 200px;
}

.map-legendn {
  width: 600px;
  min-height: 50px;
  position: absolute;
  right: 1vw;
  background-color: #ffffffaa;
  /* height: 140px; */
  box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 10%);
  top: 120px;
  z-index: 9999;
}

.map-legendn .map-legend__title {
  font-size: 16px;
  text-align: center;
  color: #156fca;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}

.map-legendn .map-legend__body {
  padding: 0.5vw 1vw;
  box-sizing: border-box;
}

.map-legendn .map-legend__body ul {}

.map-legendn .map-legend__body ul li {
  width: 33.33%;
  float: left;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.map-legendn .map-legend__body ul.flex-2 li {
  width: 50%;
}

.map-legendn .map-legend__body .map-legend__style {
  width: 50px;
}

.map-legendn .map-legend__body .map-legend__style>img {
  width: 100%;
}

.map-legendn .map-legend__body .map-legend__name {
  padding-left: 5px;
}

.map-legendn .map-legend__body .map-legend__style.map-legend__style-icon {
  width: 30px;
}

.map-legendn .map-legend__body .map-legend__style.map-legend__style-icon>img {
  width: 24px;
}

.legend-style {
  width: 100%;
  height: 15px;
  border: 1px dashed;
  margin: 5px 0;
}

.legend-style__cyy {
  background-color: #f4bd96;
  border-color: #000;
}

.legend-style__gyy {
  background-color: #c7d9f1;
  border-color: #3988fc;
}

.legend-style__tdgh {
  background-color: #86c762;
  border-color: #65c234;
  border-style: solid;
}

.map-legend__title-img {}

.map-legend__title-img:last-child {
  transform: rotate(180deg);
}

/* 地图单位搜索相关 */
.map-unitsearch {
  /* width: 600px; */
  height: 50px;
  position: absolute;
  right: 1vw;
  top: 100px;
  z-index: 99999;
}

.map-unitsearch .inner-search {
  width: 350px;
  margin-bottom: 0;
  height: 2rem;
}

.map-unitsearch .inner-search button {
  padding-top: 7px;
}

.search-result {
  background-color: #fff;
  padding: 5px 0;
  position: absolute;
  top: 100%;
  width: 100%;
  max-height: 320px;
  overflow: auto;
}

.search-iteminfo {
  padding: 8px 10px;
  cursor: pointer;
}

.search-iteminfo img {
  height: 20px;
}

/* 天地图覆写 */
.tdt-label.tdt-clickable {
  box-shadow: none;
}

.ppt-img__item {
  margin-bottom: 25px;
  box-shadow: 0px 5px 8px 4px rgba(0, 0, 0, .1);
}

.ppt-img__img {
  width: 100%;
}

/* -------------------------------- 媒体查询 --------------------------------- */

@media screen and (max-width: 1600px) {
  .wrap-auto {
    max-width: 1300px;
    min-width: 1200px;
  }

  .header-nav {
    padding-left: 25px;
    padding-right: 25px;
  }

  .inner-banner__yzz {
    height: 350px;
  }

  .inner-banner__yzz-pp {
    height: 480px;
  }

  .wrap-auto__yzz {
    top: 300px;
  }
}

@media screen and (max-width: 1366px) {
  .wrap-auto {
    width: 1200px;
  }

  .header-nav {
    padding-left: 25px;
    padding-right: 25px;
  }

  .inner-banner {
    height: 360px;
  }

  .layout-placeholder .layout-box.tocontent {
    height: 80%;
  }

  .layout-placeholder .layout-box.active {
    height: 100%;
  }

  .inner-banner__yzz {
    height: 280px;
  }

  .inner-banner__yzz-pp {
    height: 380px;
  }

  .wrap-auto__yzz {
    top: 230px;
  }
}