/* #region 初始化 */
* {
  margin: 0;
  padding: 0;
}

* {
  font-family: text;
  font-family: 'Weiruan Yahei';
}
a {
  text-decoration: none;
  color: #000000;
  display: block;
}
div,
a {
  box-sizing: border-box;
}
input {
  border: none;
  outline: none;
}
li {
  list-style: none;
}
.clearfloat {
  zoom: 1;
}

.clearfloat:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.flex_row {
  display: flex;
}
.flex_col {
  display: flex;
  flex-direction: column;
}
.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex_space_between {
  display: flex;
  justify-content: space-between;
}

.position_center-x {
  left: 50%;
  transform: translate(-50%);
}
.position_center-y {
  top: 50%;
  transform: translateY(-50%);
}
.cursor {
  cursor: pointer;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img {
  display: block;
  /* image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor; */
}

.textone {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.texttwo {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.swiper-container {
  width: 100%;
}

/* #endregion */

/* #region  公用*/
.width {
  width: 89.6%;
  margin: 0 auto;
}
.header {
  padding: 1rem 0;
  z-index: 10;
  background: #fff;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
.header .width {
  display: flex;
}
.index_header {
  background: none;
}

.logo {
  width: 20%;
}
.logo img {
  width: 100%;
}

.header_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  /* padding-bottom: 0.5rem; */
}

.language {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #0b6360;
}
.language a {
  color: #0b6360;
  transition: 0.2s;
}
.language a:hover {
  color: #333;
}
.language span {
  margin: 0 0.6rem;
}
.language a img{
  float: left;
  margin-right: 5px;
}
.language a p{
  float: left;
  line-height: 28px;
}

.nav {
  display: flex;
  position: relative;
}
.nav_item {
  margin-left: 3.5rem;
  position: relative;
}
.nav_item:first-of-type {
  margin-left: 0;
}
.nav_href {
  font-size: 0.9rem;
  line-height: 1;
  color: #003331;
  transition: 0.2s;
}
.nav_choose,
.nav_href:hover {
  opacity: 0.8;
}
.nav_bg {
  position: absolute;
  left: 0;
  top: 1.9rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.659);
  display: none;
}

.nav_bg,
.nav_children {
  height: 3.2rem;
}

.nav_childrenp {
  display: none;
  position: absolute;
  top: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.nav_select {
  width: 0;
  height: 0;
  border: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #ffffff;
  margin: 0 auto;
  transform: rotate(180deg) translateY(-40%);
}

.nav_children {
  display: flex;
  align-items: center;
}
.nav_children a {
  margin: 0 1.04rem;
  font-size: 0.8rem;
  color: #6d6d6d;
  white-space: nowrap;
  transition: 0.2s;
}
.nav_children .nav_active,
.nav_children a:hover {
  color: #0b6360;
}

.footer {
  background: #004442;
  padding: 1.5rem 0;
}
.footer .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_left img {
  width: 12.7rem;
}

.footer_center {
  font-size: 0.8rem;
  line-height: 1.8rem;
  color: #ffffff;
  margin: 0 10% 0 5%;
}

.footer_center a {
  display: inline;
  color: #ffffff;
}

.footer_right img {
  width: 7.5rem;
}

/* #endregion */

/* #region  首页*/
.banner_swiper img {
  width: 100%;
}
.banner_dot {
  position: absolute;
  left: 0;
  bottom: 1.6rem !important;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.banner_dot .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #dcdcdc;
  opacity: 1;
  margin: 0 0.5rem !important;
}
.banner_dot .swiper-pagination-bullet-active {
  background: #3f6665;
}

.index_main1 {
  padding-top: 3.6rem;
}
.index_title {
  text-align: center;
  color: #036c69;
  font-weight: bold;
}
.index_t1 {
  font-size: 2.4rem;
}
.index_hr {
  width: 2rem;
  height: 0.2rem;
  background: #036c69;
  margin: 0.6rem auto 0 auto;
  border-radius: 5px;
}
.index_t2 {
  font-size: 0.9rem;
  margin-top: 0.78rem;
  text-transform: Uppercase;
}
.index1_row {
  width:80%;
  margin:0 auto;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}
.index1_left {
  width: 60%;
}

.index1_center img,
.index1_left img {
  width: 100%;
}

.index1_center {
  width: 27%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.index1_right {
  width: 39%;
  background: url(../images/index_img4.png) no-repeat;
  background-size: cover;
  padding: 1.3rem 1.74% 1.9rem 1.74%;
  font-size: 0.8rem;
  line-height: 1.9rem;
  color: #ffffff;
}
.index1_right a {
  width: 7.8rem;
  height: 2rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-top: 2.3rem;
  font-size: 0.8rem;
  color: #3f6665;
  background: #ebebeb;
  transition: 0.3s;
}
.index1_right a:hover {
  opacity: 0.85;
}
.index_main2 {
  padding-top: 4.6rem;
}
.index2_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.5rem;
}

.index2_left {
  width: 39.53%;
  font-size: 0.9rem;
  line-height: 2rem;
  color: #282828;
}
.index2_left div{
  font-size: 0.8rem!important;
  line-height: 1.9rem!important;
}

.index2_left span {
  font-size: 0.8rem!important;
}

.index2_left p:nth-child(1) span:nth-child(1){
  font-size: 1.2rem!important;
}

.index2_right {
  width: 58.47%;
}
.index2_right img {
  width: 100%;
}

.index2_list {
  display: flex;
  margin-top: 2.7rem;
}
/* .index2_item {
  width: 19.24%;
  margin-right: 0.95%;
}
.index2_item:last-of-type {
  margin-right: 0;
} */
.index2_img {
  width: 100%;
  border: 1px solid #eeeeee;
  overflow: hidden;
}
.index2_img img {
  width: 100%;
  transition: 0.5s;
}

.index2_title {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  font-size: 0.8rem;
  color: #282828;
  background: #bebebe;
  margin-top: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  padding: 0 1rem;
  transition: 0.3s;
}
.index2_item:hover .index2_img img {
  transform: scale(1.05);
}
.index2_item:hover .index2_title {
  color: #fff;
  background: #387c5d;
}

.index_main3 {
  background: url(../images/index3_bg.png) no-repeat;
  background-size: cover;
  padding: 3.1rem 0 4.5rem 0;
  margin-top: 4.1rem;
}
.index_main3 .index_title {
  color: #fff;
}
.index_main3 .index_hr {
  background: #fff;
}

.index3_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.8rem;
}

.index3_left {
  width: 43.2%;
  color: #fff;
  font-size: 0.8rem!important;
  line-height: 2.3rem!important;
}
.index3_left p:nth-child(1) span {
  font-size: 1.4rem;
}
.index3_left span {
  font-size: 0.8rem;
}
.index3_right {
  width: 56.1%;
}
.index3_right img {
  width: 100%;
}
.index_main4 {
  padding-top: 2.2rem;
}
.index4_row {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.index4_left {
  width: 36%;
}
.index4_left img {
  width: 100%;
}
.index4_right {
  width: 64%;
  display: flex;
  flex-wrap: wrap;
}
.index4_list {
  width: 48.2%;
  margin-left: 1.8%;
  margin-top: 0.9rem;
  background: #f8f8f8;
  padding: 0.7rem 0.7rem 0.8rem 0.7rem;
  position: relative;
}
.index4_list i {
  position: absolute;
  width: 100%;
  height: 0;
  background: #387c5d;
  z-index: 1;
  left: 0;
  top: 0;
  overflow: hidden;
  transition: height 0.5s;
}
.index4_list div,
.index4_list span {
  position: relative;
  z-index: 10;
  transition: 0.3s;
}
.index4_list:nth-of-type(1),
.index4_list:nth-of-type(2) {
  margin-top: 0;
}
.index4_list div {
  font-size: 0.9rem;
  line-height: 1.5rem;
  /* height: 3rem; */
  color: #3b3b3b;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.index4_list span {
  display: block;
  font-size: 0.8rem;
  color: #828282;
  margin-top: 0.3rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.index4_list:hover i {
  height: 100%;
}
.index4_list:hover span,
.index4_list:hover div {
  color: #fff;
}
.index_main5 {
  background: url(../images/index5_bg.png) no-repeat;
  background-size: cover;
  padding: 2.5rem 0 5.3rem 0;
  margin-top: 2.9rem;
}
.index_main5 .index_title {
  color: #fff;
}
.index_main5 .index_hr {
  background: #fff;
}

.index5_row {
  width: 100%;
  position: relative;
  margin-top: 3.3rem;
  padding-left: 6.62%;
}
.index5_left {
  width: 49.4%;
  background: #f0f0f0;
  padding: 4.3rem 15% 3.2rem 3%;
  color: #202020;
}
.index5_right {
  position: absolute;
  top: 8.8%;
  right: 0;
  height: 82.4%;
  width: 54.76%;
  overflow: hidden;
}
.index5_left,
.index5_right {
  box-shadow: 0px 0px 0.9rem 0px rgba(0, 0, 0, 0.28);
}
.index5_right img {
  /* width: 100%; */
  height: 100%;
}
.index5_title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.index5_item {
  padding: 1.3rem 0;
  display: flex;
  font-size: 0.9rem;
  line-height: 1.15rem;
  border-bottom: 1px solid #c8c8c8;
}
.index5_item img {
  width: 1.15rem;
  height: 1.15rem;
  margin-right: 0.5rem;
}

.index_main6 {
  background: #f0f0f0;
  padding: 1.4rem 0;
}

.index_main6 .width {
  /* display: flex; */
  align-items: center;
}

.index6_left {
  font-size: 0.9rem;
  color: #003331;
  flex: 1;
  overflow: hidden;
  display: flex;
}
.index6_left div {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
.index6_left i,
.index6_left a {
  color: #595959;
  transition: 0.2s;
}
.index6_left i:last-of-type {
  display: none;
}

.index6_right {
  width:100%;
  /* display: flex; */
  text-align: center;
}
.index6_right a {
  display: inline-block;
  font-size: 0.9rem;
  margin-left: 3.4rem;
  color: #003331;
  transition: 0.2s;
}

.index6_left a:hover,
.index6_right a:hover {
  color: #387c5d;
}

.index1_right div {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;

}

.index1_right div {
  -webkit-line-clamp: 8;
  line-clamp: 8;
}
.modal,
.nav_icon {
  display: none;
}
/* #endregion */

/* #region  关于我们*/
.banner2 img {
  width: 100%;
}

.se_title {
  font-weight: 600;
  line-height: 1;
  position: relative;
  text-align: center;
  padding-bottom: 0.96rem;
}
.se_title div {
  font-size: 3.06rem;
  text-transform: Uppercase;
  color: #ebebeb;
}
.se_title span {
  font-size: 2.4rem;
  color: #036c69;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.about_main1 {
  padding-top: 3.5rem;
}
.about1_row {
  width:80%;
  margin:0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.about1_left {
  width: 57%;
}
.about1_right {
  width: 39%;
  font-size: 0.8rem;
  line-height: 1.9rem;
  color: #1e1e1e;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 35px;
}
.about1_left img {
  width: 100%;
}
.about1_right div {
  width: 100%;
  margin-bottom: 2.5rem;
}
.about1_right img {
  width: 48.8%;
}
.about1_row img {
  box-shadow: 0px 0px 0.55rem 0px rgba(0, 0, 0, 0.57);
  margin-top:45px;
}
.about_main2 {
  padding: 4.8rem 0 6rem;
}
.about2_text {
  font-size: 0.8rem!important;
  line-height: 1.9rem!important;
  color: #1e1e1e!important;
  margin-top: 2.1rem;
  text-align: center;
}
.about2_imgs {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.about2_imgs img {
  height: 21.1rem;
  margin: 0 1.05rem;
}
/* #endregion */

/* #region  产品中心*/
.product_top {
  padding: 1.3rem 0 1.4rem 0;
  border-bottom: 1px solid #036c69;
}
.product_top .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ptite_tab {
  display: flex;
}
.ptite_tab a {
  font-size: 1.1rem;
  color: #373737;
  margin: 0 1.5rem;
  transition: 0.2s;
}
.ptite_tab .ptitle_active {
  color: #036c69;
}
.ptitle_nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 16px;
  color: #373737;
}
.ptitle_nav img {
  width: 22px;
  margin-right: 6px;
}
.ptitle_nav span {
  margin: 0 8px;
  color: #aeaeae;
}
.ptitle_nav a {
  color: #373737;
  transition: 0.2s;
}
.ptite_tab a:hover,
.ptitle_nav a:hover {
  color: #036c69;
}
.product_main {
  padding: 4.2rem 0 9.2rem 0;
}
.product_row {
  display: flex;
  align-items: center;
  background: #ebebeb;
  margin-top: 4.5rem;
}

.product_right,
.product_left {
  width: 50%;
}
.product_left img {
  width: 100%;
}
.product_right {
  font-size: 0.9rem;
  line-height: 2.3rem;
  padding: 1rem;
}

.product_right span:nth-child(1) {
  font-size: 1.5rem!important;
}

.product_row2 {
  display: flex;
  align-items: center;
  margin-top: 8.5rem;
}

.product_left2 {
  width: 43.6%;
}
.product_right2 {
  width: 55.46%;
}
.product_right2 img {
  width: 100%;
}
.product_title2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.product_item2 span {
  font-size: 0.9rem!important;
  line-height: 3rem!important;
}

/* #endregion */

/* #region  产品答疑*/
.product_answering {
  padding-top: 4.4rem;
}
.answering_list {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
}
.answering {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 1.7rem;
  border-radius: 5px;
  box-shadow: 0px 0px 0.55rem 0px rgba(0, 0, 0, 0.27);
  padding: 1.4rem 1.45% 1.8rem 1.45%;
  font-size: 0.9rem;
}
.answering:nth-of-type(3n + 3) {
  margin-right: 0;
}
.answering_t1 {
  color: #333333;
}
.answering_t2 {
  color: #606060;
  margin-top: 0.7rem;
  font-size: 0.8rem;
  line-height: 1.9rem;
}

.answering_t1 span,
.answering_t2 span {
  color: #036c69;
}

/* #endregion */

/* #region  产品配件*/
.product_parts {
  padding-top: 4.4rem;
}
.parts_list {
  margin-top: 4.7rem;
  display: flex;
  flex-wrap: wrap;
}
.parts {
  width: 19.24%;
  margin-right: 0.95%;
  margin-bottom: 1rem;
}
.parts:nth-of-type(5n + 5) {
  margin-right: 0;
}
.parts_img {
  width: 100%;
  border: 1px solid #eeeeee;
  overflow: hidden;
}
.parts_img img {
  width: 100%;
  transition: 0.5s;
}

.parts_txt {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  font-size: 0.8rem;
  color: #282828;
  background: #bebebe;
  margin-top: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  padding: 0 1rem;
  transition: 0.3s;
}
.parts:hover .parts_img img {
  transform: scale(1.05);
}
.parts:hover .parts_txt {
  color: #fff;
  background: #387c5d;
}

.pages {
  display: flex;
  justify-content: center;
}
.pages a {
  padding: 0 12px;
  height: 34px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #333333;
  margin: 0 8px;
  transition: 0.3s;
}

.pages a:hover,
.pages .page_active {
  background: #036c69;
  color: #fff;
}

/* #endregion */

/* #region  服务中心*/
.service {
  padding: 4.3rem 0 5.5rem 0;
}
.service_main {
  font-size: 1rem;
  line-height: 2.7rem;
  color: #2a2a2a;
  text-align: center;
}
.service_t1 {

  margin-top: 3.8rem;
}
.service_t2 {
  color: #3a3a3a;
  font-size: 0.9rem!important;
  line-height: 1.9rem!important;
  margin-top: 3.8rem;
}


.service_t3 {
  font-size: 0.9rem!important;
  line-height: 1.9rem!important;
  margin-top: 0.3rem;
}
.service_t3,
.service_t4 {
  color: #3a3a3a;
  font-size: 0.9rem!important;
  line-height: 1.9rem!important;
}
.service_t4 {
  margin: 2rem;
}

.service_main img {
  width: 68%;
  margin: 2rem auto 0 auto;
}

/* #endregion */

/* #region  联系我们*/
.contact {
  padding-top: 4.2rem;
}
.contact_row {
  display: flex;
  margin-top: 4.4rem;
}
.contact_left {
  width: 53.75%;
}
.contact_left img {
  width: 100%;
}
.contact_right {
  width: 46.25%;
  padding: 2.8rem 8.8% 0 7.6%;
}
.contact_title {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  padding-left: 1rem;
}
.contact_right input {
  width: 100%;
  height: 2.7rem;
  padding: 0 1.4rem;
}

.contact_right textarea {
  height: 8.34rem;
  padding: 0.4rem 1.4rem;
  resize: none;
  margin: 0.5rem 0;
}

.contact_right input,
.contact_right textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  color: #b2b2b2;
  border: 1px solid #b3b3b3;
  box-sizing: border-box;
  outline: none;
}
.contact_right textarea:-ms-input-placeholder,
.contact_right input:-ms-input-placeholder {
  color: #b2b2b2;
}
.contact_right textarea::-webkit-input-placeholder,
.contact_right input::-webkit-input-placeholder {
  color: #b2b2b2;
}
.contact_right textarea::-moz-placeholder,
.contact_right input::-moz-placeholder {
  color: #b2b2b2;
}
.contact_right textarea:-moz-placeholder,
.contact_right input:-moz-placeholder {
  color: #b2b2b2;
}
.contact_right textarea:-moz-placeholder,
.contact_right input:-moz-placeholder {
  color: #b2b2b2;
}
.contact_right button {
  width: 7.2rem;
  height: 2.8rem;
  background: #75b9fe;
  color: #e2e5e8;
  font-size: 1.26rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-top: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}
.contact_right button:hover {
  opacity: 0.85;
}
/* #endregion */

/* #region 动画*/

.contact_right input:nth-of-type(1),
.index5_item:nth-of-type(2),
.index4_list:nth-of-type(2),
.index2_swiper .swiper-slide:nth-of-type(2),
.index1_center img:nth-of-type(1),
.index_hr {
  animation-delay: 0.2s;
}
.contact_right textarea,
.se_title span,
.index5_item:nth-of-type(3),
.index4_list:nth-of-type(3),
.index2_swiper .swiper-slide:nth-of-type(3),
.index1_center img:nth-of-type(2),
.index_t2 {
  animation-delay: 0.4s;
}
.contact_right input:nth-of-type(2),
.index5_item:nth-of-type(4),
.index4_list:nth-of-type(4),
.index2_swiper .swiper-slide:nth-of-type(4),
.index1_right {
  animation-delay: 0.6s;
}
.contact_right button,
.index5_item:nth-of-type(5),
.index4_list:nth-of-type(5),
.index2_swiper .swiper-slide:nth-of-type(5) {
  animation-delay: 0.8s;
}
.index4_list:nth-of-type(6) {
  animation-delay: 1s;
}
.index4_list:nth-of-type(7) {
  animation-delay: 1.2s;
}
.index4_list:nth-of-type(8) {
  animation-delay: 1.4s;
}

.fadeRight2 {
  animation-name: fadeRight2;
}
.fadeLeft2 {
  animation-name: fadeLeft2;
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
.fadeInUp3 {
  animation-name: fadeInUp3;
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeLeft2 {
  0% {
    opacity: 0;
    transform: translate3d(-2rem, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeRight2 {
  0% {
    opacity: 0;
    transform: translate3d(2rem, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp3 {
  0% {
    opacity: 0;
    transform: translate3d(0, 2rem, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* #endregion */

/* #region  修改*/
.parts_list {
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

.parts_xz {
  width: 48.4%;
  display: flex;
  align-items: flex-start;
  background: #f4f4f4;
  margin-bottom: 2.5rem;
}
.parts_left {
  width: 40%;
  overflow: hidden;
}
.parts_left img {
  width: 100%;
  transition: 0.5s;
}
.parts_right {
  width: 60%;
  padding: 1rem 1.5rem 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.9rem;
  color: #323232;
}

.parts_right span {
  font-size: 1.2rem;
  transition: 0.2s;
}
.parts_xz:hover img {
  transform: scale(1.05);
}
.parts_xz:hover .parts_right span{
  color: #036c69;
}

.parts_right div{
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
}



/* #endregion */
