/*start reset*/
:root {
  /*color 不兼容ie，仅用于建站统一参考*/
  --primary-color: #248BFF;
  --background-color: #f6f6f6;
  --text-color-primary: #111111;
  --text-color-secondary: #565656;
  --font-family-sans-serif: "Microsoft YaHei", "Source Han Sans CN", sans-serif;
  --min-width: 1260px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(25,27,31,0);
  font-family: sans-serif;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  min-width: 1260px;
  font-family: "Microsoft YaHei", "Source Han Sans CN", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  color: #111111;
  text-align: left;
  background-color: #f6f6f6;
}

a {
  color: #111111;
  text-decoration: none;
}

a:hover {
  color: #248BFF;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

/*end reset*/


/*start common*/

/*start 页头*/
.page-header {
  height: 462px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header-container {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}
.page-header-logo {
  display: flex;
  justify-content: center;
  padding-top: 113px;
}
.page-header-logo img {
  width: 131px;
  height: 131px;
  user-select: none;
}
.page-header-title {
  display: flex;
  justify-content: center;
}
.page-header-title img {
  margin: 13px 0 0 0;
  width: 342px;
  height: 89px;
  user-select: none;
}
.page-header-search{
  display: flex;
  justify-content: center;
  margin-top: 11px;
}
.page-header-search--wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 468px;
  height: 43px;
  padding: 5px 6px 5px 20px;
  background: #FFFFFF;
  border-radius: 21px;
  overflow: hidden;
  user-select: none;
}
.page-header-search--wrap input {
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 20px;
  color: #858585;
}
.page-header-search--wrap input::placeholder {
  font-size: 20px;
  color: #858585;
}
.page-header-search-icon {
  width: 23px;
  height: 23px;
  margin-right: 14px;
}
.page-header-search-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 106px;
  height: 34px;
  background: #248BFF;
  border-radius: 17px;
  font-weight: bold;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 2px;
  cursor: pointer;
  overflow: hidden;
}
.page-header-search-btn span {
  position: relative;
}
.page-header-search-btn:active::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.page-header-slogan {
  position: absolute;
  top: 53px;
  left: 50px;
}
.page-header-slogan img {
  width: 315px;
  height: 43px;
}
.page-header-about-us {
  position: absolute;
  top: 109px;
  left: 50px;
}
.page-header-about-us a{
  display: flex;
  align-items: center;
  width: 142px;
  height: 38px;
  padding: 4px;
  background: #FFFFFF;
  border-radius: 17px;
}
.page-header-about-us img {
  width: 31px;
  height: 31px;
  margin-right: 7px;
}
.page-header-about-us span {
  font-size: 20px;
  color: #248BFF;
  letter-spacing: 1px;
  user-select: none;
}
.page-header-position {
  position: absolute;
  display: flex;
  align-items: center;
  top: 48px;
  right: 50px;
}
.page-header-city {
  margin-right: 14px;
  font-weight: bold;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 22px;
  letter-spacing: 1px;
}
.page-header-county {
  position: relative;
  display: flex;
  align-items: center;
  width: 174px;
  height: 41px;
  padding: 10px 36px 10px 14px;
  background: #FFFFFF;
  border-radius: 19px;
  cursor: pointer;
  user-select: none;
}
.county-triangle-down::after {
  position: absolute;
  top: 14px;
  right: 19px;
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 14px solid #248BFF;
}
.page-header-county-text {
  width: 100%;
  font-size: 20px;
  color: #248BFF;
  line-height: 21px;
  text-align: center;
  user-select: none;
}
.page-header-county-list {
  position: absolute;
  top: 51px;
  right: 0;
  width: 174px;
  height: 330px;
  padding: 13px 0;
  border-radius: 19px;
  background: #FFFFFF;
}
.page-header-county-list--scroll{
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.page-header-county-item {
  display: block;
  width: 100%;
  padding: 21px 0;
  font-size: 20px;
  color: #858585;
  text-align: center;
}
.page-header-county-item.active,.page-header-county-item:hover {
  color: #248BFF;
  background-color: #eef6fd;
}
/*end 页头*/

/*页主体*/
.page-main {
  margin-top: 28px;
}

.page-main-container {
  max-width: 1200px;
  margin: 0 auto;
}

/*页脚*/
.page-footer {
  margin-top: 28px;
  background-color: #fff;
}

.page-footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-footer-info {
  padding: 21px 0 27px 22px;
  margin: 0;
}

.page-footer-info div {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  color: #3B3B3B;
  line-height: 22px;
}

.page-footer-container p >a {
  color: #3B3B3B;
}

.page-footer-container p >a:hover {
  color: #248BFF;
}

.flex-div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.beian-link {
  display: inline-flex;
  align-items: center;
}

.beian-link img {
  width: 18px;
  height: 20px;
  margin-right: 5px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

/*置灰*/
.color-gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
  _filter:none;
}

/*清除浮动*/
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/*单行文本截断*/
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*2行文本省略*/
.text-truncate-2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*3行文本省略*/
.text-truncate-2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*flex 文本省略: 需设置父级元素width及overflow*/
.flex-text-truncate{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

/*响应式图片*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

/*缩略图*/
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

/*滚动条*/
@-moz-document url-prefix(){
  .scroll-bar{
    /* firefox 滚动条 */
    scrollbar-width: thin;
    scrollbar-color: #cae0f1 #ffffff; /* 滚动条颜色和轨道颜色 */
  }
}

.scroll-bar::-webkit-scrollbar {
  width: 8px;
}

.scroll-bar::-webkit-scrollbar-thumb {
  background-color: #cae0f1;
  border-radius: 4px;
}

.scroll-bar::-webkit-scrollbar-track {
  background-color: #ffffff;
  border-radius: 4px;
}
/*end common*/