/*Common*/
body::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 10px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
body::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  background-color: var(--primary-color);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
body::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  /*border-radius: 10px;*/
  background: #EDEDED;
}
.page__title h1.title {
  text-align: center;
}
.page__title .bread-crumb {
  justify-content: center;
}
.page__title .bread-crumb li:last-child {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
.page__title .bread-crumb li a {
  color: var(--white-color);
}
.sub__title span {
  font-weight: 600;
  color: var(--secondary-color);
}
.news-list li {
  margin-bottom: 20px;
  padding-bottom: 2.5%;
  border-bottom: 1px solid var(--border-light);
}
.news-list li a {
  display: flex;
  justify-content: space-between;
  background: #fff;
  transition: all 0.5s;
}
.news-list li a .date {
  position: relative;
  width: 20%;
  padding-top: 2%;
  text-align: center;
}
.news-list li a .date p {
  font-size: 32px;
  color: var(--theme-color);
  font-weight: bold;
  font-family: arial;
  transition: all 0.5s;
  text-align: center;
}
.news-list li a .date span {
  font-size: 16px;
  color: var(--light-secondary-color);
}
.news-list li a .date::before {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  content: '';
  width: 1px;
  height: 100%;
  background-color: var(--border-light);
}
.news-list li a .text-content {
  width: 80%;
  padding-left: 20px;
  border-left: 1px solid var(--border-light);
}
.news-list li a .text-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--higer-secondary-color);
  margin-bottom: 6px;
  line-height: 24px;
}
.news-list li a .text-content .mutil-line-ellipsis {
  height: 40px !important;
  line-height: 20px;
  overflow: hidden;
  position: relative;
}
.news-list li a .text-content .mutil-line-ellipsis p {
  line-height: inherit;
  color: var(--higer-secondary-color);
  font-size: 14px;
}
.news-list li a .text-content .mutil-line-ellipsis::before {
  content: '';
  float: left;
  width: 5px;
  /*缩小宽度为5px，其余属性不变*/
  height: 40px;
}
.news-list li a .text-content .mutil-line-ellipsis::after {
  content: '...';
  color: var(--higer-secondary-color);
  box-sizing: content-box;
  float: right;
  position: relative;
  width: 11px;
  height: 20px;
  top: -20px;
  /*等于高度的负值，就是文字的行高*/
  left: 100%;
  /*设置margin-left。padding-right。则是为了让realend元素的盒模型的最终宽度计算为5px。*/
  margin-left: -11px;
  padding-right: 5px;
  font-size: 13px;
  text-align: left;
  background: #fff;
}
.news-list li:hover a .date p {
  color: var(--secondary-color);
}
.news-list li:hover a .date span {
  color: var(--secondary-color);
}
.news-list li:hover a .text-content h6 {
  color: var(--theme-color);
}
/*Top*/
.main-header .logo-box img {
  width: auto;
}
.main-header.style-three .btn-1 {
  background: var(--secondary-color);
}
.main-header .sticky-header .main-menu .navigation > li a {
  color: var(--higer-secondary-color) !important;
}
.main-header .sticky-header .main-menu .navigation > li a:hover {
  color: var(--secondary-color) !important;
}
/*Banner*/
.banner__one h1 {
  font-weight: 500;
  font-size: 70px;
  margin-bottom: 6%;
}
.banner__one h5 {
  font-size: 40px;
  margin-bottom: 10%;
}
.banner__one .image-layer-01 {
  background-image: url(../image/banner-bg.png);
}
.banner__one .image-layer-02 {
  background-image: url(../image/shape-02.png);
}
.banner__one .anim-icon .icon-01 {
  background-image: url(../image/icon-01.svg);
}
.banner__one .anim-icon .icon-02 {
  background-image: url(../image/icon-02.svg);
}
.banner__one .banner__one__content .banner__one__left {
  padding: 280px 0 153px 0;
}
.banner__one .more_link a {
  width: 170px;
  padding-left: 50px;
}
/*About*/
.about__section.two .image-column .image-box .image.image-2 img {
  left: 1px;
}
.about__section .anim-icon .icon-1 {
  background-image: url(../image/icon-06.svg);
}
.about__section .anim-icon .icon-2 {
  background-image: url(../image/icon-04.svg);
}
.about__section .normal__text {
  padding: 70px 0 20px 0;
}
.about__section .normal__text p {
  padding: 0!important;
  text-indent: 2em;
  margin-bottom: 10px;
}
.about__section .normal__text p::after {
  display: none;
}
.about__section .home__pack {
  justify-content: space-between;
}
.about__section .home__pack .icon span {
  font-size: 32px;
}
/*Propertiest*/
.propertiest__section {
  position: relative;
  height: auto;
  overflow: hidden;
  padding-bottom: 5%;
}
.propertiest__section .sec-title .sub__title span {
  color: var(--secondary-color);
}
.propertiest__section .anim-icon .icon-01 {
  background-image: url(../image/icon-12.svg);
}
.propertiest__section .wrapper-box {
  max-width: 100%;
}
.propertiest__section .propertiest__content .box {
  border-radius: 20px;
  overflow: hidden;
}
.propertiest__section .propertiest__content .box::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: -moz-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background-image: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background-image: -ms-linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.8;
}
.propertiest__section .propertiest__content .box .image img {
  width: 100%;
}
.propertiest__section .propertiest__content .box .content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 30px;
  text-align: center;
}
.propertiest__section .propertiest__content .box .text {
  width: 80%;
  font-size: 14px;
  line-height: 24px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  transition: 0.5s;
  opacity: 0;
  transform: translateY(10px);
}
.propertiest__section .propertiest__content .box .top-content {
  position: relative;
  transition: 0.5s;
}
.propertiest__section .propertiest__content .box .top-content h5 {
  position: relative;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.propertiest__section .propertiest__content .box .top-content h3 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.propertiest__section .propertiest__content .box .top-content h3::before {
  position: absolute;
  content: '';
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 80px;
  transform: translate(-50%, 97px);
  transition: 0.5s;
  background-color: var(--secondary-color);
}
.propertiest__section .propertiest__content .box:hover .top-content {
  transform: translateY(-90px);
}
.propertiest__section .propertiest__content .box:hover .text {
  opacity: 1;
  transform: translateY(0);
}
.propertiest__section::after {
  display: none;
}
.propertiest__section .primary-bg {
  position: absolute;
  width: 100%;
  height: 450px;
  background: var(--theme-color);
  display: inline-block;
  top: 0;
  z-index: -1;
}
/*News*/
.sold__section .parallax-scene {
  background-image: url(../image/city-shap.png);
}
.sold__section .sold__left__img {
  background-image: url(../image/news_tp.jpg);
  object-fit: cover;
}
.sold__section .tabs-box .tab-btns {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: -100px;
  right: 0;
}
.sold__section .tabs-box .tab-btns li {
  position: relative;
  margin-left: 20px;
}
.sold__section .tabs-box .tab-btns li span {
  font-size: 15px;
  color: var(--higer-secondary-color);
}
.sold__section .tabs-box .tab-btns li::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  display: block;
  content: '';
  transition: all 0.5s;
  background-color: var(--secondary-color);
}
.sold__section .tabs-box .tab-btns li:hover {
  cursor: pointer;
}
.sold__section .tabs-box .tab-btns li:hover::before {
  width: 100%;
}
.sold__section .tabs-box .tab-btns li:hover span {
  color: var(--secondary-color);
}
.sold__section .tabs-box .tab-btns li.active-btn::before {
  width: 100%;
}
.sold__section .tabs-box .tab-btns li.active-btn span {
  color: var(--secondary-color);
}
.main-footer .icon-layer {
  background-image: url(../image/shape-02.png);
}
.main-footer .widget-title h4 {
  font-size: 16px;
}
.main-footer .widget-title h4 a {
  color: var(--white-color);
  font-size: 16px;
}
.main-footer .widget-content h5 {
  color: var(--white-color);
  margin-bottom: 15px;
  line-height: 20px;
}
.main-footer .widget-content li {
  margin-bottom: 10px;
}
.main-footer .footer-widget.left .widget-content li span {
  top: 0;
  font-size: 24px;
  color: var(--secondary-color);
}
.main-footer .footer-bottom {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--theme-color);
}
.main-footer .footer-bottom p a {
  color: var(--white-color) !important;
}
.main-footer .footer-bottom p a:hover {
  color: var(--secondary-color) !important;
}
.main-footer .footer-bottom p img {
  max-height: 22px;
}
.scroll-top.scroll-to-target {
  transform: rotate(0deg);
}
.scroll-top.scroll-to-target span {
  font-size: 24px;
}
.scroll-top.scroll-to-target:hover {
  transform: rotate(360deg);
}
/*Nav*/
#main-nav {
  overflow: hidden;
  margin: 20px 0;
}
#main-nav ul {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid var(--border-light);
}
#main-nav ul li {
  position: relative;
}
#main-nav ul li::before {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 0;
  background: var(--secondary-color);
  border-radius: 8px 8px 0 0;
  left: 0;
  bottom: -1px;
  transition: all 0.5s;
}
#main-nav ul li a {
  display: block;
  padding: 12px 0;
  color: var(--higer-secondary-color);
  font-size: 16px;
  transition: all 0.5s;
}
#main-nav ul li:hover a {
  color: var(--secondary-color);
}
#main-nav ul li:hover::before {
  height: 5px;
}
#main-nav ul li.active a {
  color: var(--secondary-color);
}
#main-nav ul li.active::before {
  height: 5px;
}
/* _timeline.css */
.timeline {
  position: relative;
  padding-top: 4%!important;
}
.timeline .title {
  font-size: 36px;
  color: rgba(var(--secondary-color), 0.5);
  font-weight: 600;
  text-align: left;
  margin-bottom: 7%;
  text-align: center;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 4px;
  height: 89%;
  background-color: #dde2e8;
}
@media (min-width: 800px) {
  .timeline::before {
    left: 35%;
    margin-left: -2px;
  }
}
.timeline__item {
  margin-bottom: 0;
  position: relative;
}
.timeline__item::after {
  content: "";
  clear: both;
  display: table;
}
.timeline__item:nth-child(2n) .timeline__item__content {
  float: left;
  margin-left: 40%;
  margin-top: -4%;
}
.timeline__item:nth-child(2n) .timeline__item__station {
  margin-top: -4%;
}
.timeline__item:nth-child(2n) .timeline__item__content::before {
  content: '';
  right: 60%;
  top: -38%;
}
@media (min-width: 800px) {
  .timeline__item:nth-child(2n) .timeline__item__content::before {
    left: inherit;
  }
}
.timeline__item:nth-child(2n) .timeline__item__content__description {
  color: var(--higer-secondary-color);
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__item-bg {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  color: #fff;
}
.timeline__item-bg:nth-child(n) .timeline__item__content {
  background-color: #e3e4ec;
}
.timeline__item-bg:nth-child(n) .timeline__item__content .timeline__item__content__date {
  border-color: #4054a4;
  background-color: #4054a4;
  color: #fff;
}
.timeline__item-bg:nth-child(2n) .timeline__item__station {
  background: #ffe8e6;
}
.timeline__item-bg:nth-child(2n) .timeline__item__content::before {
  background: #ffe8e6;
}
.timeline__item-bg:nth-child(2n) .timeline__item__content__description {
  color: #fff;
}
.timeline__item-bg:nth-child(2n) .timeline__item__content {
  background: #ffe8e6;
}
.timeline__item-bg:nth-child(2n) .timeline__item__content .timeline__item__content__date {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: #fff;
}
.timeline__item-bg .timeline__item__station {
  background-color: #e3e4ec;
}
.timeline__item-bg .timeline__item__content::before {
  background-color: #e3e4ec;
}
.timeline__item-bg .timeline__item__content__description {
  color: #fff;
  margin-bottom: 0!important;
}
.timeline__item__station {
  background-color: #fff;
  width: 40px;
  height: 40px;
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  top: 8px;
  left: 10%;
  margin-left: -33px;
  border: 2px solid #dde2e8;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 20;
}
@media (min-width: 800px) {
  .timeline__item__station {
    left: 35.8%;
    margin-left: -30px;
    width: 30px;
    height: 30px;
    padding: 15px;
    border-width: 6px;
  }
}
.timeline__item__content {
  width: 80%;
  background: #f7f7f7;
  padding: 20px 30px;
  border-radius: 6px;
  float: right;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 800px) {
  .timeline__item__content {
    width: 30%;
    float: inherit;
    padding: 15px 20px;
  }
}
.timeline__item__content::before {
  content: '';
  position: absolute;
  left: 10%;
  background: #dde2e8;
  top: 2%;
  width: 5%;
  height: 4px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
}
@media (min-width: 800px) {
  .timeline__item__content::before {
    left: 30%;
    top: 30px;
    height: 4px;
    margin-top: -2px;
  }
}
.timeline__item__content__date {
  margin: 0;
  padding: 6px 12px;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--higer-secondary-colo);
  display: inline-block;
  border-radius: 4px;
  border: 2px solid #dde2e8;
  letter-spacing: 1px;
}
.timeline__item__content__description {
  margin: 0!important;
  padding: 0;
  font-size: 16px;
  line-height: 24px!important;
  font-weight: 300;
}
@media (min-width: 800px) {
  .timeline__item__content__description {
    font-size: 19px;
    line-height: 24px!important;
    margin-bottom: 0!important;
  }
}
/*Main*/
#banner_d::before {
  background: var(--theme-color);
}
#banner_d .bread-crumb li a span {
  font-size: 22px;
}
#main {
  padding-top: 20px;
  padding-bottom: 50px;
}
#main h5 {
  font-weight: bold;
  margin-bottom: 15px;
}
#main p {
  font-size: 16px;
  color: var(--higer-secondary-color);
  line-height: 30px;
  margin-bottom: 10px;
}
#main img {
  width: 100%;
  height: auto;
  margin: 15px 0;
}
#main .sec-title {
  margin-bottom: 30px;
}
#main .sec-title span {
  letter-spacing: 4px;
  font-size: 14px;
}
#main .sec-title h2 {
  font-size: 28px;
  line-height: 28px;
}
#main .sec-title h2::after {
  background-size: 50%;
}
#main .sec-title p {
  color: var(--secondary-color);
}
#main .news-list li {
  margin-bottom: 20px;
}
#main .news-list li a {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 2.5%;
  transition: all 0.5s;
}
#main .news-list li a .date {
  width: 10%;
  text-align: center;
  padding-top: 0;
}
#main .news-list li a .date p {
  font-size: 32px;
  color: var(--theme-color);
  font-weight: bold;
  font-family: arial;
  transition: all 0.5s;
  text-align: center;
}
#main .news-list li a .date span {
  font-size: 16px;
  color: var(--higer-secondary-color);
}
#main .news-list li a .text-content {
  width: 90%;
  padding-left: 20px;
  border-left: 1px solid var(--border-light);
}
#main .news-list li a .text-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--higer-secondary-color);
  margin-bottom: 10px;
  line-height: 32px;
  border-bottom: 1px solid var(--border-light);
}
#main .news-list li a .text-content .mutil-line-ellipsis {
  height: 40px !important;
  line-height: 20px;
  overflow: hidden;
  position: relative;
}
#main .news-list li a .text-content .mutil-line-ellipsis p {
  line-height: inherit;
  color: var(--higer-secondary-color);
  font-size: 14px;
}
#main .news-list li a .text-content .mutil-line-ellipsis::before {
  content: '';
  float: left;
  width: 5px;
  /*缩小宽度为5px，其余属性不变*/
  height: 40px;
}
#main .news-list li a .text-content .mutil-line-ellipsis::after {
  content: '...';
  color: var(--higer-secondary-color);
  box-sizing: content-box;
  float: right;
  position: relative;
  width: 11px;
  height: 20px;
  top: -20px;
  /*等于高度的负值，就是文字的行高*/
  left: 100%;
  /*设置margin-left。padding-right。则是为了让realend元素的盒模型的最终宽度计算为5px。*/
  margin-left: -11px;
  padding-right: 5px;
  font-size: 13px;
  text-align: left;
  background: #fff;
  /* W3C */
}
#main .news-list li a .text-content .mutil-line-ellipsis > :first-child {
  float: right;
  width: 100%;
  margin-left: -5px;
  word-break: break-all;
  padding-right: 10px;
  box-sizing: border-box;
  text-align: justify;
}
#main .news-list li:hover a {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(-5px);
}
#main .news-list li:hover a .date p {
  color: var(--secondary-color);
}
#main .news-list li:hover a .text-content h6 {
  color: var(--secondary-color);
}
#main .news-title {
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  color: var(--higer-secondary-color);
  font-weight: bold;
}
#main .news_d-title {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
#main .news_d-title li {
  display: flex;
  float: left;
  font-size: 14px;
  color: var(--higer-secondary-color);
  margin: 0 10px;
}
#main .news_d-title li i {
  font-size: 20px;
  color: var(--secondary-color);
  margin-right: 4px;
}
#main .mainNav {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
#main .mainNav .navlink {
  width: 50%;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  float: left;
  font-weight: 600;
  color: var(--higer-secondary-color);
}
#main .mainNav .navlink a {
  color: var(--light-secondary-color);
  font-weight: 500;
}
#main .mainNav .navlink:first-child {
  text-align: left;
  padding-right: 15px;
}
#main .mainNav .navlink:last-child {
  text-align: right;
  padding-left: 15px;
}
#main .left__site__info .contact__icon span {
  font-size: 46px;
}
#main .right__site__info h5 {
  margin-bottom: 0;
  color: var(--higer-secondary-color);
}
#main .right__site__info a {
  font-size: 26px;
}
#main .right__site__info.two a {
  color: var(--primary-color);
}
#main .right__site__info.three a {
  color: var(--light-secondary-color);
}
/*Responsive*/
@media only screen and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .sec-title h2:after {
    background-size: 60%;
  }
  .page__title .bread-crumb li:last-child {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
  }
  .banner__one .banner__one__content {
    margin: 0 20px!important;
  }
  .banner__one h5 {
    font-size: 22px;
  }
  .about__section .normal__text {
    padding: 40px 0 20px 0;
  }
  .about__section.two .image-column {
    margin-top: 40px;
  }
  .timeline::before {
    left: 6%;
  }
  .timeline__item__content::before {
    top: 23%;
  }
  .timeline__item {
    margin-bottom: 15px;
  }
  .timeline__item:nth-child(2n) .timeline__item__content {
    float: right;
    margin-left: 0;
  }
  .timeline__item:nth-child(2n) .timeline__item__content {
    margin-top: 0;
  }
  .timeline__item:nth-child(2n) .timeline__item__station {
    margin-top: 0;
  }
  .timeline__item:nth-child(2n) .timeline__item__content::before {
    content: '';
    right: 60%;
    top: 23%;
  }
  .propertiest__section .bussiness-box {
    padding-right: calc(var(--bs-gutter-x) * 0.75);
    padding-left: calc(var(--bs-gutter-x) * 0.75);
  }
  .propertiest__section .propertiest__content .box {
    margin-bottom: 15px;
  }
  .sold__section .tabs-box .tab-btns {
    position: relative;
    top: 0;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .news-list li a .date span {
    font-size: 13px;
  }
  .news-list li a .text-content h6 {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .news-list li a .text-content .mutil-line-ellipsis p {
    font-size: 13px;
  }
  .footer-column h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .footer-widget .widget-title h4 {
    margin-bottom: 15px;
  }
  #main .sec-title {
    margin: 40px 0 0 0;
  }
  #main .news-list li a .date {
    width: 20%;
  }
  #main .news-list li a .text-content {
    width: 80%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
