
@import "assets/css/bootstrap-grid.css"; /* Default Reset, Responsive Grid*/


.white-section {
  background: #fff;
}

.section-block {
  position: relative;
  z-index: 2;
}
.section-block, .main-header.fullwidth .container {
	padding: 0 35px;
   }
.section-space {
  width: 100%;
  height: 80px;
  position: relative;
}


.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1240px) {
  .container {
    max-width: 1090px;
  }
}

@media (min-width: 1367px) {
  .container {
    max-width: 1210px;
  }
}
.text-center { text-align: center !important; }

.section-title-wrapper .section-title {
  line-height: 24px;
}
.section-title-wrapper.text-center p {
  margin: 10px auto 15px auto;
  max-width: 700px;
}
.section-title-wrapper {
  margin: 0 0 30px 0;
}





/* Car Interest
-------------------------------------------------------------- */
.car-interest {
  text-align: center;
}
.car-img-replace {
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.car-interest-wrapper {
  display: inline-block;
  position: relative;
  margin: 0 auto;
}
.car-interest-wrapper ul {
	margin: 0;
	list-style-type: none;
}
.car-interest-wrapper > img {
  display: block;
  margin: 0 auto;
}
.interest-point {
  position: absolute;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 0;
}
.interest-point > a {
  position: relative;
  z-index: 2;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: inherit;
  background: #ce0700;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.interest-point > a::after, .interest-point > a:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.interest-point > a::after {
  height: 2px;
  width: 12px;
}
.interest-point > a::before {
  height: 12px;
  width: 2px;
}
.interest-point::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-color: transparent;
  -webkit-animation: car-pulse 2s infinite;
  -moz-animation: car-pulse 2s infinite;
  animation: car-pulse 2s infinite;
} 
.interest-point.is-open > a {
  background-color: #586a81;
}
.interest-point.is-open > a::after, .interest-point.is-open > a::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.interest-point.is-open::after {
  display: none;
}
.interest-point.is-open .car-more-info {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}

.interest-point .car-more-info h3 {
  font-size: 16px;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
.interest-point .car-more-info p {
  color: #2a2a2a;
}

@media only screen and (min-width: 600px) {
  .interest-point.is-open .car-more-info.car-left {
    right: 140%;
  }
  .interest-point.is-open .car-more-info.car-right {
    left: 140%;
  }
  .interest-point.is-open .car-more-info.car-top {
    bottom: 140%;
  }
  .interest-point.is-open .car-more-info.car-bottom {
    top: 140%;
  }
}

@-webkit-keyframes car-pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  100% {
    -webkit-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0);
  }
}
@-moz-keyframes car-pulse {
  0% {
    -moz-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  100% {
    -moz-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0);
  }
}
@keyframes car-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  100% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0);
  }
}

.interest-point .car-more-info {
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 9;
  width: 100%;
  height: calc( 100vh - 80px );
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
.interest-point .car-more-info::before {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  display: none;
  border: 8px solid transparent;
}
.interest-point .car-more-info h3 {
  font-size: 16px; font-weight: bold;
  letter-spacing: -0.5px; color: #666;
  margin-bottom: 30px;
}
.interest-point .car-more-info p {
  color: #2a2a2a;
}
.interest-point .car-more-info .car-more-image {
  position: absolute; background: #fff;
  top: 50%;
  left: -326px; display: block;padding: 0;
  width: 350px;
  z-index: -1;
  border: 10px solid #f0f0f0;
  border-radius: 0.25em;margin: 0;
  margin-top: -120px;
  box-shadow: 0 0 14px 2px rgba(0, 0, 0, 0.23);
}
.interest-point.is-open .car-more-info .car-right .car-more-image {
  right: -126px;
  left: auto;
}

@media only screen and (min-width: 600px) {
  .interest-point .car-more-info {
    position: absolute;
    width: 320px;
    height: 240px;
    padding: 1em;
    overflow-y: visible;
    line-height: 1.4;
    border-radius: 0.25em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  .interest-point .car-more-info::before {
    display: block;
  }
  .interest-point .car-more-info.car-left, .interest-point .car-more-info .car-right {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .interest-point .car-more-info.car-left::before, .interest-point .car-more-info .car-right::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .interest-point .car-more-info.car-left {
    right: 160%;
    left: auto;
  }
  .interest-point .car-more-info.car-left::before {
    border-left-color: rgba(255, 255, 255, 0.95);
    left: 100%;
  }
  .interest-point .car-more-info .car-right {
    left: 160%;
  }
  .interest-point .car-more-info car-right.car-right::before {
    border-right-color: rgba(255, 255, 255, 0.95);
    right: 100%;
  }
  .interest-point .car-more-info.car-top, .interest-point .car-more-info.car-bottom {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .interest-point .car-more-info.car-top::before, .interest-point .car-more-info.car-bottom::before {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .interest-point .car-more-info.car-top {
    bottom: 160%;
    top: auto;
  }
  .interest-point .car-more-info.car-top::before {
    border-top-color: rgba(255, 255, 255, 0.95);
    top: 100%;
  }
  .interest-point .car-more-info.car-bottom {
    top: 160%;
  }
  .interest-point .car-more-info.car-bottom::before {
    border-bottom-color: rgba(255, 255, 255, 0.95);
    bottom: 100%;
  }
  .interest-point .car-more-info h3 { 
    font-size: 16px;
    margin-bottom: 10px;
  }
  .interest-point .car-more-info p {
    font-size: 14px;
  }
}

.interest-close-info {
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
}
.interest-close-info::after, .interest-close-info:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  background-color: #475f74;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.interest-close-info::after {
  height: 2px;
  width: 16px;
}
.interest-close-info::before {
  height: 16px;
  width: 2px;
}
@media only screen and (min-width: 600px) {
  .interest-close-info {
    display: none;
  }
}




@media (max-width: 769px){
.white-section { display: none;}
}





.pronewmobile{ margin:0 auto; padding:30px 0; width: 100%; height: auto; display: none;}
.pronewmobile .miaoshu{margin:0 auto; padding: 0; width: 100%; height: auto;font-size:14px; color:#666; text-align:left; line-height:30px; font-weight: normal;}
.pronewmobile .miaoshu img{padding:0 20px; max-width: 100%; height: auto;}
.pronewmobile .cj{ margin:0 auto; padding: 0; width: 100%; height: auto;}
.pronewmobile .cj ul{ margin:0 auto; padding: 0; width: 100%; height: auto;}
.pronewmobile .cj ul li{ margin:2%; padding: 0; width: 46%; height: auto; float: left; background: #f3f3f3;}
.pronewmobile .cj ul li img{ max-width: 100%; height: auto; padding: 0;}
.pronewmobile .cj ul li .txt{ margin:0; padding:3%; width: 94%; height: auto; float: left; min-height: 100px; }
.pronewmobile .cj ul li .txt .t1{ margin:0; padding:0; width: 100%; height: auto; float: left; font-size: 16px; font-weight: bold; color: #000; line-height: 30px; text-align: left;}
.pronewmobile .cj ul li .txt .t2{ margin:0; padding:5px 0; width: 100%; height: auto; float: left; font-size: 14px; font-weight: normal; color: #666; line-height: 20px; text-align: left;}
.mobile{ display:none;}


@media (max-width: 769px){
.pronewmobile{ display: block;}
	.mobile{ display:none;}	
	
}


@media (max-width: 640px){
.pronewmobile .cj ul li{ margin:2%; padding: 0; width: 96%; height: auto; float: left; background: #f3f3f3;}
	.pronewmobile .cj1 ul li{ margin:2%; padding: 0; width: 96%; height: auto; float: left; background: #f3f3f3;}

}

@media (max-width: 480px){
.pronewmobile .cj ul li{ margin:2%; padding: 0; width: 96%; height: auto; float: left; background: #f3f3f3;}

}

