.nav-page,
.inside-roof {
  display: none;
}

#goTopBtn {
  display: none;
  position: fixed;
  width: 30px;
  bottom: 35px;
  height: 33px;
  cursor: pointer;
  right: 0;
}

#goTopBtn img {
  width: 100%;
  height: 100%;
}

/* menu */
.nav {
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 9;
  top: 0;
  width: 100%;
  padding: 0 5%;
  height: 130px;
  background-color: rgba(255, 255, 255, .9);
}

.nav .logo {
  width: 9%;
}

.nav .logo img {
  width: 100%;
}

.nav .menu {
  flex: 1;
  position: absolute;
  top: 0;
  left: 14%;
  right: 22%;
  justify-content: space-between;
}

.nav .menu .menu-item {
  flex: 1;
  margin: 0 2px;
  text-align: center;
  height: 130px;
}

.nav .menu .menu-item>h1>a {
  display: block;
  font-size: 18px;
  line-height: 130px;
  color: #000;
}

.nav .menu .nav-active>h1>a {
  font-weight: bold;
  color: #fff;
  background-color: #009ae7;
}

.nav .menu .menu-item>h1>a:hover {
  font-weight: bold;
  color: #fff;
  background-color: #009ae7;
}

.nav .menu .menu-item>a {
  display: block;
  font-size: 18px;
  line-height: 130px;
  color: #000;
}

.nav .menu .nav-active>a {
  font-weight: bold;
  color: #fff;
  background-color: #009ae7;
}

.nav .menu .menu-item>a:hover {
  font-weight: bold;
  color: #fff;
  background-color: #009ae7;
}

.nav .menu .menu-item ul {
  display: none;
  background-color: rgba(255, 255, 255, .9);
  text-align: center;
  line-height: 50px;
}

.nav .menu .menu-item ul li a {
  display: block;
  font-size: 16px;
  border-top: 1px solid #ddd;
}

.nav .menu .menu-item ul li a:hover {
  color: #fff;
  background-color: #009ae7;
}

/*banner*/
.swiper-container {
  width: 100%;
  margin-top: 130px !important;
}

.swiper-container img {
  width: 100%;
}

.swiper-pagination {
  justify-content: center;
  bottom: 40px !important;
}

.swiper-pagination .my-bullet {
  margin: 0 6px;
  width: 25px;
  height: 6px;
  border-radius: 2px;
  background-color: #fff;
}

.swiper-pagination .my-bullet-active {
  width: 25px;
  height: 6px;
  border-radius: 2px;
  background-color: #009ae7;
}


/* 首页常用标题 */
.index-title {
  width: 100%;
  position: relative;
  height: 200px;
  padding-top: 50px;
  text-align: center;
  color: #000;
  transition: all .2s linear;
}

.index-title h3 {
  font-size: 30px;
}

.index-title h3 span {
  font-weight: lighter;
}

.index-title p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 140px;
  font-size: 16px;
}

.index-title::before {
  position: absolute;
  top: 120px;
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #eee;
}

.index-title::after {
  position: absolute;
  top: 114px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cacaca;
}

/* index-title */
.index_title {}

.index_title h4 {
  font-family: "微软雅黑";
  font-weight: bold;
  font-size: 40px;
  line-height: 60px;
  color: #009ae7;
}

.index_title span {
  display: inline-block;
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background-color: #e50012;
}

.index_title p {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: #000;
}

.center {
  text-align: center;
}

/* product */
.product_wrapper {
  padding: 60px 5% 100px;
}

.product_title {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.pro_class {}

.pro_class a {
  width: 150px;
  height: 52px;
  line-height: 52px;
  border: 1px solid #e6e6e6;
  text-align: center;
}

.pro_class a:not(:first-of-type) {
  border-left: none;
}

.pro_class a:hover {
  color: #fff;
  background-color: #009ae7;
  border: 1px solid #009ae7;
  border-bottom: 3px solid #e50012;
}

.product_content {
  justify-content: space-between;
}

.pro_item {
  width: calc(25% - 35px);
  height: auto;
  flex-direction: column;
  border: 1px solid #f2f2f2;
  border-bottom: none;
  transition: all 100ms linear;
}

.pro_item:hover {
  transform: translateY(-10px);
  border: 1px solid transparent;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.pro_item a.proItem_img {
  width: 100%;
  justify-content: center;
  align-items: center;
}

.pro_item a.proItem_img img {
  width: 100%;
  height: auto;
}

.pro_item .proItem_t {
  position: relative;
  align-items: center;
  height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  line-height: 28px;
  background-color: #f2f2f2;
  transition: all 100ms linear;
}

.pro_item .proItem_t a {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  padding: 0 30px;
}

.pro_item:hover .proItem_t a {
  color: #fff;
  padding: 0 110px 0 30px;
}

.pro_item .proItem_t i {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 100px;
  background-color: #009ae7;
  transition: all 200ms linear;
}

.pro_item .proItem_t i::after {
  position: absolute;
  content: '';
  width: 0;
  height: 100px;
  right: 0;
  background-image: url('../images/jiantou.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: #e50012;
  transition: all 100ms linear;
}

.pro_item:hover .proItem_t i {
  width: 100%;
}

.pro_item:hover .proItem_t i::after {
  width: 100px;
}

/* advantage */
.advantage {
  width: 100%;
  justify-content: space-between;
}

.advantage_left,
.advantage_right {
  flex: 1;
  width: 100%;
  /* height: 740px; */
  /* background-repeat: no-repeat;
background-position: center;
background-size: cover; */
}

.advantage_left img,
.advantage_right img {
  width: 100%;
}

/* .advantage_left {
  flex: 1 1 48.125%;
  color: #fff;
  background-image: url('../images/youshi_bg.png');
}

.advantage_right {
  flex: 1 1 51.875%;
  background-image: url('../images/pro_r.jpg');
}

.advantage_title {
  margin-top: 105px;
  margin-bottom: 70px;
}

.advantage_title h4 {
  font-family: "黑体";
  width: 390px;
  height: 120px;
  padding-top: 10px;
  padding-left: 10%;
  font-size: 40px;
  line-height: 50px;
  background-color: rgba(0, 154, 231, 0.7);
}

.advantage_title span {
  margin-top: 10px;
  margin-left: 10%;
  margin-bottom: 25px;
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background-color: #e50012;
}

.advantage_title p {
  padding-left: 10%;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
}

.advantage_content {
  width: 100%;
}

.advantage_content .advantage_item {
  position: relative;
  width: 100%;
  min-height: 72px;
  margin-bottom: 50px;
  cursor: pointer;
}

.advantage_content .advantage_item div {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 0 2% 0 10%;
  align-items: center;
  justify-content: space-between;
}

.advantage_content .advantage_item div p {
  width: 20%;
}

.advantage_content .advantage_item div span {
  width: 80%;
  padding: 0 0 0 5%;
  font-size: 18px;
  line-height: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.advantage_content .advantage_item::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 154, 231, 0.7);
  transition: all 300ms linear;
  transform: rotateY(90deg);
}

.advantage_content .advantage_item:hover::after {
  transform: rotateY(0);
} */

/* solutions */
.solutions_wrapper {
  padding: 60px 5% 0;
}

.solutions_content {
  width: 100%;
  margin-top: 55px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.solutions_item {
  position: relative;
  width: 260px;
  height: 180px;
  padding: 10px;
  margin-bottom: 35px;
  background-color: #f2f2f2;
}

.solutions_item::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background-color: #009ae7;
  transition: all 200ms linear;
}

.solutions_item:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.solutions_item div {
  position: absolute;
  z-index: 1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  flex-direction: column;
  transition: all 200ms linear;
  border: 1px dashed transparent;
}

.solutions_item:hover div {
  border: 1px dashed #fff;
}

.solutions_item div img {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 200ms linear;
}

.solutions_item div img:first-of-type {
  opacity: 1;
}

.solutions_item:hover div img:first-of-type {
  opacity: 0;
}

.solutions_item div img:last-of-type {
  opacity: 0;
}

.solutions_item:hover div img:last-of-type {
  opacity: 1;
}

.solutions_item div p {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  color: #000;
  transition: all 200ms linear;
}

.solutions_item:hover div p {
  color: #fff;
}

/* case */
.case_wrapper {
  padding: 25px 5% 0;
}

.case_content {
  width: 100%;
  margin-top: 55px;
  justify-content: space-between;
}

.case_item {
  width: 24.8%;
  position: relative;
  overflow: hidden;
}

.case_item::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 200ms linear;
}

.case_item:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.case_item a {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 18px;
  color: #fff;
  opacity: 0;
}

.case_item i {
  position: absolute;
  z-index: 1;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  display: block;
  width: 70px;
  height: 70px;
  background-image: url('../images/case_on.png');
  background-size: cover;
  opacity: 0;
}

.case_item:hover a,
.case_item:hover i {
  opacity: 1;
}

.case_item img {
  width: 100%;
  height: auto;
}

.case_more {
  width: 160px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  margin: 70px auto 100px;
  transition: all 200ms linear;
}

.case_more:hover {
  border: 1px solid transparent;
  background-color: #009ae7;
}

.case_more:hover a {
  color: #fff;
}

/* about */
.about_wrapper {
  width: 100%;
  background-color: #f3f3f3;
}

.about_left {
  flex: 1 1 54.75%;
  width: 100%;
  /* height: 633px; */
  padding: 70px 4% 0 5%;
}

.about_content {
  line-height: 36px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about_more {
  width: 160px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  margin: 50px 0 0;
  transition: all 200ms linear;
}

.about_more:hover {
  border: 1px solid transparent;
  background-color: #009ae7;
}

.about_more:hover a {
  color: #fff;
}

.about_right {
  flex: 1 1 45.25%;
  width: 100%;
  /* height: 633px;
  background-image: url("../images/workroom.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
}

.about_right img {
  width: 100%;

}

/* news */
.news_wrapper {
  padding: 60px 5% 100px;
}

.news_content {
  justify-content: space-between;
  margin-top: 55px;
}

.news_left {
  width: 52.79%;
}

.commend_img {
  width: 60%;
}

.commend_img img {
  width: 100%;
  height: auto;
  max-height: 390px;
}

.commend_item {
  width: 40%;
  padding: 40px 35px 0;
  background-color: #f3f3f3;
}

.commend_item .commend_title {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commend_item .commend_time {
  font-size: 12px;
  line-height: 50px;
  color: #9b9b9b;
}

.commend_item .commend_info {
  line-height: 30px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.commend_item .commend_more {
  width: 160px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  margin: 30px 0 0;
  transition: all 200ms linear;
}

.commend_item .commend_more:hover {
  border: 1px solid transparent;
  background-color: #009ae7;
}

.commend_item .commend_more:hover a {
  color: #fff;
}

.news_right {
  width: 44%;
  flex-direction: column;
  justify-content: space-between;
}

.news_item {}

.news_item .news_title {
  margin-bottom: 10px;
}

.news_item .news_title::before {
  display: inline-block;
  content: '';
  width: 3px;
  height: 14px;
  background-color: #e50012;
}

.news_item .news_title a {
  padding-left: 15px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
}

.news_item .news_main {
  justify-content: space-between;
}

.news_item .news_main .news_info {
  width: 79%;
  line-height: 30px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news_item .news_main .news_time {
  width: 8%;
  color: #000;
  transition: all 200ms linear;
}

.news_item:hover .news_main .news_time {
  color: #009ae7;
}

.news_item .news_main .news_time span {
  font-size: 20px;
  font-weight: bold;
}

.news_item .news_main .news_time b {
  font-size: 28px;
  font-weight: bold;
}

/* 首页联系我们 */
.contact_wrapper {}

.message {
  position: relative;
  flex: 1 1 52.5%;
  height: 676px;
  background-color: #009ae7;
}

.message-content {
  position: absolute;
  top: 60px;
  left: 10%;
  width: 106%;
  height: 555px;
  padding: 45px 8.5% 0;
  background-color: #fff;
}

.message_title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 35px;
}

.message_main {}

.message_main .message_form {}

.message_main .message_form .message_top {
  justify-content: space-between;
  margin-bottom: 20px;
}

.message_main .message_form .message_top div label {
  width: 50px;
  line-height: 40px;
}

.message_main .message_form .message_top div input {
  width: 155px;
  height: 40px;
  padding: 0 10px;
  background-color: #f3f3f3;
  border: none;
}

.message_main .message_form .message_middle {
  justify-content: space-between;
  margin-bottom: 20px;
}

.message_main .message_form .message_middle label {
  width: 50px;
  line-height: 40px;
}

.message_main .message_form .message_middle textarea {
  width: 100%;
  flex: 1;
  height: 135px;
  padding: 10px;
  background-color: #f3f3f3;
  border: none;
}

.message_main .message_form .messae_bottom {
  margin-left: 50px;
}

.message_main .message_form .messae_bottom input {
  width: 100px;
  height: 40px;
  background-color: #f3f3f3;
  border: none;
  line-height: 40px;
  padding: 0 10px;
}

.message_main .message_form .messae_bottom img {
  height: 40px;
  margin: 0 10px;
}

.message_main .message_form .messae_bottom button {
  width: 135px;
  height: 40px;
  background-color: #009ae7;
  border: none;
  font-size: 16px;
  line-height: 40px;
  font-weight: bold;
  color: #fff;
}

.contact {
  flex: 1 1 47.5%;
  padding: 75px 0 0 13%;
  height: 676px;
  background-image: url('../images/contact.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-color: #0f212b;
  color: #fff;
}

.contact .contact_title {
  vertical-align: bottom;
}

.contact .contact_phone {
  margin: 15px 0 30px;
  font-size: 30px;
  font-weight: bold;
}

.contact .contact_code {
  margin-bottom: 30px;
}

.contact .contact_info_title {
  margin-bottom: 10px;
}

.contact .contact_info_title h3 {
  font-weight: bold;
  font-size: 16px;
}

.contact .contact_info_title h6 {
  font-size: 12px;
  transform: scale(0.84) translateX(-60px);
  *font-size: 10px;
  -webkit-text-size-adjust: none;
}

.contact .contact_info {
  line-height: 30px;
  font-size: 16px;
}

/* 网站底部网站地图 */
.bottom_wrapper {
  padding: 45px 5% 40px;
  background-color: #e0e0e0;
  justify-content: space-between;
}

.bottom_item {
  border-right: 1px solid #cacaca;
}

.bottom_item:nth-of-type(1) {
  width: 30%;
}

.bottom_item:nth-of-type(2) {
  width: 27%;
}

.bottom_item:nth-of-type(3) {
  width: 18%;
}

.bottom_item:nth-of-type(4) {
  width: 8%;
  border-right: none;
}


.bottom_item .bottom_item_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}

.bottom_item .bottom_item_list {
  flex-wrap: wrap;
}

.bottom_item .bottom_item_list a {
  width: 150px;
  font-size: 16px;
}

/* footer */
.footer {
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  padding: 0 5%;
  height: 74px;
  font-size: 16px;
  line-height: 74px;
  color: #fff;
  background-color: #4e4e56;
}

.footer a {
  color: #fff;
}

/* ny-public */
.ny-banner {
  width: 100%;
}

.ny-banner img {
  width: 100%;
}

.crumbs {
  padding: 25px 0;
  margin: 0 5% 25px;
  border-bottom: 1px dashed #ddd;
}

.crumbs-info {
  border-left: 5px solid #009ae7;
  padding-left: 10px;
  font-size: 16px;
  color: #000;
}

.inside-margin-bottom {
  margin-bottom: 70px;
}

/* inside-main */
.inside-main {
  width: 100%;
  padding: 0 5%;
  margin-bottom: 70px;
}

.inside-single-page {
  width: 100%;
  padding: 0 5%;
  margin-bottom: 70px;
  line-height: 32px;
}

/* list */
.inside-main-list {
  width: 17%;
}

.main-list-title {
  background-color: #009ae7;
  height: 80px;
}

.main-list-title h3 {
  height: 75px;
  font-size: 24px;
  font-weight: normal;
  line-height: 75px;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
}

.phone-list-click {
  display: none;
}

.main-list-info {
  margin-bottom: 30px;
}

.main-list-info>ul>li {
  font-size: 16px;
  line-height: 50px;
  border-bottom: 1px solid #fff;
}

.main-list-info>ul>li>a {
  position: relative;
  padding-left: 25px;
  font-weight: bold;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #dcdcdc;
}

.main-list-info>ul>li>a::after {
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url('../images/arrow.png');
  background-repeat: no-repeat;
  transition: all .2s linear;
}

.main-list-info>ul>li>a:hover {
  transform: translateX(10px);
  background-color: #fff;
}

.main-list-info>ul>li>a:hover::after {
  background-image: url('../images/arrow1.png');
}

.main-list-info ul li ul li {
  /* font-size: 14px; */
  line-height: 40px;
  border-top: 1px solid #fff;
}

.main-list-info ul li ul li a {
  position: relative;
  padding-left: 30px;
  display: block;
  background-color: #eee;
}

.main-list-info ul li ul li a:hover {
  transform: translateX(10px);
  background-color: #fff;
}

/* inside-list-contact */
.main-list-contact {
  height: 140px;
  background: url('../images/contact-z1.jpg') no-repeat;
  background-size: cover;
  color: #000;
  padding-top: 37px;
}

.main-list-contact p {
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  padding-left: 100px;
  background-image: url('../images/contact-z1_tel.png');
  background-repeat: no-repeat;
  background-position: 75px center;
}

.main-list-contact span {
  display: block;
  height: 30px;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  padding-left: 75px;
}

/* inside rigth */
.inside-main-content {
  width: 80%;
}

/* inside product */
.inside-product {}

.inside-pro-item {
  width: 23.875%;
  margin-right: 1.5%;
  margin-bottom: 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: all .2s linear;
}

.inside-pro-item:nth-of-type(4n) {
  margin-right: 0;
}

.inside-pro-item:hover {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(129, 129, 129, .3);
}

.inside-pro-item .pro-img {
  width: 100%;
  overflow: hidden;
}

.inside-pro-item .pro-img img {
  width: 100%;
}

.inside-pro-item:hover .pro-img img {
  transform: scale(1.05);
}

.inside-pro-item .pro-text {
  height: 70px;
  font-size: 16px;
  line-height: 70px;
  text-align: center;
  transition: all .2s linear;
  border-top: 1px solid #ddd;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.inside-pro-item:hover .pro-text {
  color: #fff;
  background-color: #009ae7;
}

.inside-pro-item:hover a {
  color: #fff;
}

/* inside-partner */
.inside-partner {}

.inside-partner-item {
  width: 18.8%;
  margin-right: 1.5%;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  transition: all .2s linear;
}

.inside-partner-item:hover {
  box-shadow: 0 0 20px rgba(129, 129, 129, .3);
}

.inside-partner-item:nth-of-type(5n) {
  margin-right: 0;
}

.inside-partner-item .inside-partner-item-img {
  width: 100%;
  overflow: hidden;
}

.inside-partner-item img {
  width: 100%;
}

.inside-partner-item:hover img {
  transform: scale(1.05);
}

.inside-partner-item span {
  display: block;
  width: 100%;
  height: 70px;
  font-size: 16px;
  line-height: 70px;
  text-align: center;
  transition: all .2s linear;
  border-top: 1px solid #ddd;
}

.inside-partner-item:hover span {
  color: #fff;
  background-color: #009ae7;
}

/* inside-news */
.inside-news {}

.inside-news-item {
  width: 100%;
  border: 1px solid #ddd;
  padding: 20px;
  transition: all .2s linear;
  margin-bottom: 30px;
}

.inside-news-item:hover {
  background-color: #fafafa;
  box-shadow: 0 0 20px rgba(129, 129, 129, .3);
}

.inside-news-item .inside-news-item-img {
  width: 240px;
  /*height: 170px;*/
  margin-right: 30px;
}

.inside-news-item .inside-news-item-img img {
  width: 100%;
  height: auto;
}

.inside-news-item .inside-news-item-info {
  flex-direction: column;
  flex: 1;
}

.inside-news-item .inside-news-item-info h3 {
  font-size: 22px;
  line-height: 44px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.inside-news-item .inside-news-item-info h3 a {
  color: #000;
}

.inside-news-item .inside-news-item-info span {
  color: #999;
  line-height: 24px;
}

.inside-news-item .inside-news-item-info p {
  line-height: 24px;
  width: 100%;
  color: #777;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 5px;
}

.inside-news-item .inside-news-item-info>a {
  display: block;
  text-align: center;
  width: 100px;
  color: #777;
  border: 1px solid #e0e0e0;
  height: 32px;
  /* font-size: 14px; */
  line-height: 32px;
}

.inside-news-item .inside-news-item-info:hover>a {
  border: 1px solid #009ae7;
  color: #fff;
  width: 120px;
  background-color: #009ae7;
}

/* inside-news-detail */
.inside-news-detail {}

.inside-news-detail-title {
  font-size: 24px;
  padding-bottom: 35px;
  margin-top: 50px;
  color: #000;
}

.inside-news-detail-main {
  line-height: 32px;
}

.inside-news-detail-left {
  width: 70%;
}

.inside-news-detail-left-info {
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.inside-news-detail-left-art-content {
  padding-top: 20px;
  line-height: 32px;
}

.inside-news-detail-left-art-content img {
  width: 100%;
}

.inside-news-detail-right {
  width: 25%;
}

.inside-news-detail-right h3 {
  padding-bottom: 20px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
}

.inside-news-detail-right ul li {
  border-bottom: 1px dashed #ddd;
  line-height: 24px;
  padding: 15px 30px;
  background-image: url('../images/arrow_small.png');
  background-repeat: no-repeat;
  background-position: 10px center;
}

/* inside-crosswise-list */
.inside-crosswise-list-wrapper {
  padding: 0 5%;
}

.inside-crosswise-list {}

.inside-crosswise-list a {
  flex: 1;
  height: 55px;
  font-size: 16px;
  line-height: 55px;
  text-align: center;
  border-right: 1px solid #d8d8d8;
  background-color: #f4f4f4;
}

.inside-crosswise-list a:last-of-type {
  border: none;
}

.inside-crosswise-list a:hover {
  position: relative;
  color: #fff;
  background-color: #009ae7;
}

.inside-crosswise-list a:hover::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border: 10px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
}

.inside-crosswise-list a.cross-active {
  position: relative;
  color: #fff;
  background-color: #009ae7;
}

.inside-crosswise-list a.cross-active::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border: 10px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
}

/* inside contact */
.inside-contact {
  width: 100%;
  padding: 0 10% 70px;
}

.inside-contact-item {
  width: 25%;
  flex: 1;
  text-align: center;
  background: url('../images/contact_xian.jpg') no-repeat right 20px;
}

.inside-contact-item:last-child {
  background: none;
}

.inside-contact-item img {
  width: 86px;
  height: 86px;
  margin-bottom: 40px;
}

.inside-contact-item:hover img {
  transform: rotateY(360deg);
}

.inside-contact-item h2 {
  font-size: 18px;
  line-height: 28px;
  color: #999;
}

.inside-contact-item h2 b {
  display: block;
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 10px;
  color: #000;
  transition: all .2s linear;
}

.inside-contact-item:hover h2 b {
  font-size: 28px;
}

.inside-map {
  padding-bottom: 70px;
}

.inside-message {
  width: 100%;
  padding: 0 10% 70px;
}

.message-left {
  width: 30%;
}

.message-left>div {
  width: 100%;
  margin-bottom: 20px;
}

.message-left>div label {
  width: 15%;
  margin-bottom: 7px;
}

.message-left>div input {
  border: 1px solid #ddd;
  width: 87%;
  height: 34px;
  padding: 0 10px;
  transition: all .2s linear;
}

.message-left>div input:hover {
  box-shadow: 0 0 5px rgba(129, 129, 129, .3);
}

.message-right {
  width: 65%;
}

.message-right textarea {
  border: 1px solid #ddd;
  width: 100%;
  height: 196px;
  max-width: 100%;
  max-height: 196px;
  min-width: 100%;
  min-height: 196px;
  padding: 10px;
  vertical-align: top;
  margin-bottom: 20px;
  resize: none;
  /* font-size: 14px; */
  transition: all .2s linear;
}

.message-right textarea:hover {
  box-shadow: 0 0 5px rgba(129, 129, 129, .3);
}

.message-right button {
  width: 205px;
  height: 44px;
  border: none;
  color: #fff;
  background-color: #009ae7;
  /* font-size: 14px; */
  transition: all .2s linear;
}

.message-right button:hover {
  width: 230px;
  box-shadow: 0 0 5px rgba(129, 129, 129, .3);
}

/* inside-trait */
.inside-trait {}

.inside-trait-item {
  margin-bottom: 50px;
}

.inside-serve-trait-title {
  height: 44px;
  line-height: 44px;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.inside-serve-trait-title span {
  position: relative;
  display: inline-block;
  padding: 0 50px;
  background-color: #009ae7;
}

.inside-serve-trait-title span::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 44px;
  left: 5px;
  background-color: #fff;
}

.inside-serve-trait-title span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  right: -22px;
  border: 22px solid #fff;
  border-right-color: transparent;
  border-left-color: transparent;
}

.inside-trait-item .inside-trait-info {
  line-height: 32px;
}

/* inside-serve */
.inside-serve {}

.inside-serve-item {
  margin-bottom: 50px;
}

.inside-serve-item .inside-serve-info {
  line-height: 32px;
}

.inside-serve-main {
  height: 315px;
  margin-bottom: 30px;
}

.inside-serve-main .inside-serve-main-img {
  width: 50%;
}

.inside-serve-main .inside-serve-main-img img {
  width: 100%;
  height: 315px;
}

.inside-serve-main .inside-serve-main-text {
  position: relative;
  width: 50%;
  background-color: #f4f4f4;
}

.inside-serve-main .inside-serve-main-text p {
  position: absolute;
  top: 50%;
  right: 10%;
  left: 10%;
  font-size: 20px;
  transform: translateY(-50%);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.inside-serve-list {
  width: 100%;
}

.inside-serve-list .inside-serve-list-item {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 30px;
  width: 31.33%;
  margin-right: 3%;
  transition: all .2s linear;
}

.inside-serve-list .inside-serve-list-item:hover {
  box-shadow: 0 0 10px rgba(129, 129, 129, .3);
  background-color: #f9f9f9;
}

.inside-serve-list .inside-serve-list-item:nth-of-type(3n) {
  margin-right: 0;
}

.inside-serve-list .inside-serve-list-item h3 {
  color: #000;
  font-size: 18px;
  line-height: 45px;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 8px;
}

.inside-serve-list .inside-serve-list-item p {
  line-height: 32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: 100px;
  transition: all .2s linear;
}

/* inside project detail */
.inside-project-main {
  width: 100%;
  border: 1px solid #ddd;
  padding: 20px;
  cursor: pointer;
}

.inside-project-main-img {
  width: 35%;
  height: auto;
  overflow: hidden;
  border: 1px solid #eee;
  background-color: #fafafa;
}

.inside-project-main-img img {
  width: 100%;
  /*height: 100%;*/
}

.inside-project-main:hover .inside-project-main-img img {
  transform: scale(1.1);
}

.inside-project-main-info {
  width: 61%;
  flex-direction: column;
}

.inside-project-main-info h3 {
  font-size: 28px;
  height: 15%;
  color: #000;
  border-bottom: 1px dashed #ddd;
}
.inside-project-main-info h1 {
  font-size: 28px;
  height: 15%;
  color: #000;
  border-bottom: 1px dashed #ddd;
}

.inside-project-main-info .inside-project-main-info-text {
  line-height: 32px;
  padding: 20px 0;
  height: 60%;
  border-bottom: 1px dashed #ddd;
}

.inside-project-main-info .inside-project-main-info-more {
  padding: 20px 0;
  height: 25%;
}

.inside-project-main-info .inside-project-main-info-more img {
  width: 41px;
  height: 41px;
  margin-right: 20px;
}

.inside-project-main:hover .inside-project-main-info .inside-project-main-info-more img {
  transform: rotateY(360deg);
  margin-right: 20px;
}

.inside-project-main-info .inside-project-main-info-more p a {
  font-size: 18px;
  line-height: 40px;
  flex: 1;
}

.inside-project-main-info .inside-project-main-info-more p span {
  color: #c02125;
  font-size: 36px;
  font-weight: bold;
}

.inside-project-main-info .inside-project-main-info-more a {
  width: 200px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  background-color: #009ae7;
  height: 60px;
  line-height: 60px;
}

.inside-project-main:hover .inside-project-main-info .inside-project-main-info-more a {
  width: 250px;
}

.inside-project-item-wrapper {
  width: 100%;
  padding: 0 5%;
}

.inside-project-item {
  padding: 20px;
  border: 1px solid #ddd;
  margin-top: 55px;
  transition: all .2s linear;
}

.inside-project-item:hover {
  box-shadow: 0 0 5px rgba(129, 129, 129, .3);
}

.inside-project-item .inside-project-item-title {
  border-bottom: 2px solid #eee;
  color: #000;
  font-size: 24px;
  line-height: 36px;
}

.inside-project-item .inside-project-item-title span {
  display: inline-block;
  border-bottom: 2px solid #c02125;
  margin-bottom: -2px;
}

.inside-project-item .inside-project-item-info {
  font-size: 16px;
  line-height: 32px;
  padding: 20px 0 0 0;
}

/* inside-product-message */
.inside-product-message {
  margin-top: 55px;
  padding: 3%;
  background-color: #f2f2f2;
}

.solutions_wrapper_inside {
  padding: 0 5%;
}

.big-album {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: rgba(0, 0, 0, .7);
}

.big-album img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 80%;
  transform: translate(-50%, -50%);
}

.phone-call-top {
  display: none;
}

.phone-call {
  display: none;
}