.mobile-header {
  display: none;
}
.mobile-footer-box {
  display: none;
}
.fixed-mobile-right-item {
  display: none;
}
@media screen and (max-width: 750px) {
  body {
    padding-top: 50px;
  }
  .header.black {
    display: none;
  }
  .footer-box {
    display: none;
  }
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 50px;
    background-color: #555555;
    z-index: 9999999;
  }
  .mobile-header .nav-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .mobile-header .nav-box .logo {
    width: 86px;
  }
  .mobile-header .nav-box .logo img {
    width: 100%;
    display: block;
  }
  .mobile-header .nav-box .right-part {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
  .mobile-header .nav-box .right-part .search-btn {
    display: block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    background-image: url(../image/mobile_search_btn.png);
  }
  .mobile-header .nav-box .right-part .language-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
  }
  .mobile-header .nav-box .right-part .language-switch .zh-btn,
  .mobile-header .nav-box .right-part .language-switch .en-btn {
    font-size: 14px;
    color: #fff;
  }
  .mobile-header .nav-box .right-part .language-switch .zh-btn.active,
  .mobile-header .nav-box .right-part .language-switch .en-btn.active {
    color: #4A90E2;
  }
  .mobile-header .nav-box .right-part .language-switch > span {
    display: block;
    margin: 0 9px;
    height: 14px;
    width: 1px;
    background-color: #aaaaaa;
    opacity: 0.3;
  }
  .mobile-header .nav-box .right-part .menu-btn {
    display: block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url(../image/mobile_menubtn.png);
  }
  .mobile-header .nav-box .right-part .menu-btn.active {
    background-image: url(../image/mobile_menubtn_close.png);
  }
  .mobile-header .menu-list {
    position: absolute;
    top: 50px;
    left: 0;
    display: none;
    width: 100%;
    z-index: 99998;
  }
  .mobile-header .menu-list .ul-box {
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-header .menu-list .ul-box .item {
    width: 100%;
    border-top: 1px solid #e5e5e5;
  }
  .mobile-header .menu-list .ul-box .item:first-child {
    border-top: none;
  }
  .mobile-header .menu-list .ul-box .item:last-child {
    border-bottom: 1px solid #e5e5e5;
  }
  .mobile-header .menu-list .ul-box .item .item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 43px;
    padding: 0 15px;
    background-color: #fff;
    box-sizing: border-box;
  }
  .mobile-header .menu-list .ul-box .item .item-title h2 {
    font-weight: bold;
    font-size: 15px;
    color: #333;
  }
  .mobile-header .menu-list .ul-box .item .item-title > .arrow {
    display: block;
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../image/mobile_listitem_arrow.png);
    transform: rotate(0deg);
    transition: transform 0.2s;
  }
  .mobile-header .menu-list .ul-box .item .item-title > .arrow.active {
    transform: rotate(180deg);
  }
  .mobile-header .menu-list .ul-box .item > ul {
    display: none;
    width: 100%;
  }
  .mobile-header .menu-list .ul-box .item > ul > li {
    width: 100%;
  }
  .mobile-header .menu-list .ul-box .item > ul > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    background-color: #F4F4F4;
    font-size: 14px;
    color: #333;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .mobile-footer-box {
    display: block;
    width: 100%;
    background-color: #333;
  }
  .mobile-footer-box .footer-menu-list .item {
    width: 100%;
    border-top: 1px solid rgba(238, 238, 238, 0.05);
  }
  .mobile-footer-box .footer-menu-list .item:first-child {
    border-top: none;
  }
  .mobile-footer-box .footer-menu-list .item:last-child {
    border-bottom: 1px solid rgba(238, 238, 238, 0.05);
  }
  .mobile-footer-box .footer-menu-list .item .item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 43px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .mobile-footer-box .footer-menu-list .item .item-title h2 {
    font-weight: bold;
    font-size: 15px;
    color: #aaa;
  }
  .mobile-footer-box .footer-menu-list .item .item-title > .arrow {
    display: block;
    width: 9px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: 7px 13px;
    background-position: center;
    background-image: url(../image/mobile_footer_arrow.png);
    transform: rotate(0deg);
    transition: transform 0.2s;
  }
  .mobile-footer-box .footer-menu-list .item .item-title > .arrow.active {
    transform: rotate(90deg);
  }
  .mobile-footer-box .footer-menu-list .item > ul {
    display: none;
    width: 100%;
  }
  .mobile-footer-box .footer-menu-list .item > ul > li {
    width: 100%;
    border-top: 1px solid rgba(238, 238, 238, 0.02);
  }
  .mobile-footer-box .footer-menu-list .item > ul > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    font-size: 14px;
    color: #aaa;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .mobile-footer-box .phone-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .mobile-footer-box .phone-box .phone-icon {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15px 15px;
    background-image: url(../image/mobile_footer_phone_icon.png);
  }
  .mobile-footer-box .phone-box h2 {
    padding-left: 7px;
    font-size: 18px;
    color: #777;
  }
  .mobile-footer-box .pop-hot-code {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .mobile-footer-box .pop-hot-code .pop-hot-code-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 75px;
  }
  .mobile-footer-box .pop-hot-code .pop-hot-code-item > img {
    display: block;
    width: 75px;
    height: 75px;
  }
  .mobile-footer-box .pop-hot-code .pop-hot-code-item .tit {
    margin-top: 10px;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
    color: #777777;
  }
  .mobile-footer-box .pop-hot-code .pop-hot-code-item + .pop-hot-code-item {
    margin-left: 10px;
  }
  .mobile-footer-box .bottom-text-group {
    margin-top: 50px;
    width: 100%;
    padding-bottom: 18px;
  }
  .mobile-footer-box .bottom-text-group p {
    text-align: center;
    font-size: 11px;
    color: #555;
  }
  .mobile-footer-box .bottom-text-group .bottom-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 11px;
  }
  .mobile-footer-box .bottom-text-group .bottom-box > a {
    line-height: 12px;
    font-size: 11px;
    color: #555;
  }
  .mobile-footer-box .bottom-text-group .bottom-box > .line {
    width: 1px;
    height: 11px;
    margin: 0 11px;
    background-color: #555;
  }
  .search-box-wrap {
    top: 50px;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    z-index: 99999999;
  }
  .search-box-wrap .search-bg {
    width: 100%;
    height: auto;
  }
  .search-box-wrap .search-bg .search-box-input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
  }
  .search-box-wrap .search-bg .search-box-input i {
    position: unset;
    width: 18px;
    height: 18px;
    font-size: 18px;
  }
  .search-box-wrap .search-bg .search-box-input > input {
    margin-left: 15px;
    padding: 0;
    font-size: 18px;
  }
  .contact-us-box {
    display: none;
  }
  .fixed-mobile-right-item {
    position: fixed;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 4px 0 0 4px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 35px auto;
    background-color: #555555;
    z-index: 9999;
  }
  .fixed-mobile-right-item.icon-1 {
    bottom: 200px;
    right: 0;
    background-image: url(../image/icon_weixin2.png);
  }
  .fixed-mobile-right-item.icon-1 .qr-img-box {
    display: none;
  }
  .fixed-mobile-right-item.icon-1:hover .qr-img-box {
    position: absolute;
    top: -20px;
    right: 53px;
    display: block;
    width: 100px;
    height: 100px;
  }
  .fixed-mobile-right-item.icon-1:hover .qr-img-box img {
    display: block;
    width: 100%;
  }
  .fixed-mobile-right-item.icon-2 {
    bottom: 140px;
    right: 0;
    background-image: url(../image/icon_phone.png);
  }
  .fixed-mobile-right-item.icon-3 {
    bottom: 80px;
    right: 0;
    background-image: url(../image/icon_benzi.png);
  }
}
.mobile-home-banner {
  display: none;
}
.mobile-star-products {
  display: none;
}
.mobile-case-success {
  display: none;
}
.mobile-partner-box {
  display: none;
}
.mobile-contact-us {
  display: none;
}
@media screen and (max-width: 750px) {
  .home-banner .banner-img {
    display: none;
  }
  .star-products {
    display: none;
  }
  .case-success {
    display: none;
  }
  .partner-box {
    display: none;
  }
  .contact-us {
    display: none;
  }
  .mobile-home-banner {
    display: block;
    width: 100%;
    height: 250px;
  }
  .mobile-home-banner .swiper-container {
    width: 100%;
    height: 100%;
  }
  .mobile-home-banner .swiper-container .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .mobile-home-banner .swiper-container .swiper-slide .black-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 0;
  }
  .mobile-home-banner .swiper-container .swiper-slide .t1 {
    position: relative;
    z-index: 1;
    width: 80%;
    height: 19px;
    text-align: center;
    font-size: 15px;
    line-height: 19px;
    color: #fff;
  }
  .mobile-home-banner .swiper-container .swiper-slide .t2 {
    position: relative;
    z-index: 1;
    width: 80%;
    height: 30px;
    text-align: center;
    margin: 18px 0;
    font-weight: bold;
    font-size: 25px;
    line-height: 30px;
    text-transform: uppercase;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .mobile-home-banner .swiper-container .swiper-slide .t3 {
    position: relative;
    z-index: 1;
    width: 80%;
    height: 19px;
    text-align: center;
    font-size: 15px;
    line-height: 19px;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .mobile-home-banner .swiper-container .swiper-slide > a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    width: 90px;
    height: 30px;
    font-size: 12px;
    color: #fff;
    border: 1px solid #fff;
  }
  .mobile-home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet {
    border: 1px solid #333;
    background-color: #fff;
    opacity: 1;
    transform: scale(0.8);
  }
  .mobile-home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    border: 1px solid #00C8FD;
    background-color: #00C8FD;
    transform: scale(0.85);
  }
  .mobile-star-products {
    display: block;
    margin-top: 35px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }
  .mobile-star-products .products-title {
    width: 100%;
  }
  .mobile-star-products .products-title > h2 {
    font-weight: bold;
    font-size: 18px;
    line-height: 19px;
    color: #333;
    letter-spacing: 5px;
  }
  .mobile-star-products .products-title > h4 {
    margin-top: 9px;
    font-size: 12px;
    line-height: 13px;
    color: #333;
  }
  .mobile-star-products .carousel {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
  .mobile-star-products .carousel .swiper-container .swiper-slide .pic-img {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .mobile-star-products .carousel .swiper-container .swiper-slide h2 {
    margin-top: 15px;
    height: 15px;
    width: 100%;
    padding: 0 5px;
    font-size: 14px;
    line-height: 15px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .mobile-star-products .carousel .swiper-container .swiper-slide p {
    width: 100%;
    margin: 0;
    margin-top: 5px;
    padding: 0 5px;
    font-size: 12px;
    line-height: 18px;
    color: #999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .mobile-star-products .carousel .swiper-pagination {
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  .mobile-star-products .carousel .swiper-pagination .swiper-pagination-bullet {
    border: 1px solid #333;
    background-color: #fff;
    opacity: 1;
    transform: scale(0.8);
  }
  .mobile-star-products .carousel .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 8px;
  }
  .mobile-star-products .carousel .swiper-pagination .swiper-pagination-bullet-active {
    border: 1px solid #00C8FD;
    background-color: #00C8FD;
    transform: scale(0.85);
  }
  .mobile-case-success {
    display: block;
    padding: 0 15px;
    margin-top: 35px;
  }
  .mobile-case-success .products-title {
    width: 100%;
  }
  .mobile-case-success .products-title > h2 {
    font-weight: bold;
    font-size: 18px;
    line-height: 19px;
    color: #333;
    letter-spacing: 5px;
  }
  .mobile-case-success .products-title > h4 {
    margin-top: 9px;
    font-size: 12px;
    line-height: 13px;
    color: #333;
  }
  .mobile-case-success .swiper-container {
    width: 100%;
    margin-top: 20px;
  }
  .mobile-case-success .swiper-container .swiper-slide .pic-img-one {
    position: relative;
    width: 100%;
    height: 195px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .mobile-case-success .swiper-container .swiper-slide .pic-img-one .position-box {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 140px;
    padding: 0 16px;
    padding-top: 25px;
    background-color: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
  }
  .mobile-case-success .swiper-container .swiper-slide .pic-img-one .position-box > h4 {
    font-size: 13px;
    line-height: 14px;
    color: #fff;
  }
  .mobile-case-success .swiper-container .swiper-slide .pic-img-one .position-box > h2 {
    margin-top: 8px;
    font-size: 16px;
    line-height: 17px;
    color: #fff;
  }
  .mobile-case-success .swiper-container .swiper-slide .pic-img-one .position-box > p {
    margin: 0;
    height: 35px;
    margin-top: 15px;
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #fff;
    opacity: 0.5;
  }
  .mobile-case-success .swiper-container .swiper-slide .pic-img-one .position-box > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 30px;
    border: 1px solid #fff;
    font-size: 12px;
    line-height: 13px;
    color: #fff;
  }
  .mobile-case-success .swiper-container .swiper-slide .ul-group {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
  }
  .mobile-case-success .swiper-container .swiper-slide .ul-group .item {
    position: relative;
    width: 48.8%;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .mobile-case-success .swiper-container .swiper-slide .ul-group .item .bottom-box {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: 100%;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
  }
  .mobile-case-success .swiper-container .swiper-slide .ul-group .item .bottom-box > span {
    display: block;
    width: 4px;
    height: 4px;
    background-color: #fff;
  }
  .mobile-case-success .swiper-container .swiper-slide .ul-group .item .bottom-box > h2 {
    padding-left: 5px;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
  }
  .mobile-case-success .page-button-group {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 11px;
  }
  .mobile-case-success .page-button-group .swiper-pagination .swiper-pagination-bullet {
    border: 1px solid #333;
    background-color: #fff;
    opacity: 1;
    transform: scale(0.8);
  }
  .mobile-case-success .page-button-group .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 5px;
  }
  .mobile-case-success .page-button-group .swiper-pagination .swiper-pagination-bullet-active {
    border: 1px solid #00C8FD;
    background-color: #00C8FD;
    transform: scale(0.85);
  }
  .mobile-partner-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 15px;
    margin-top: 40px;
  }
  .mobile-partner-box .item {
    position: relative;
    width: 48.8%;
  }
  .mobile-partner-box .item img {
    display: block;
    width: 100%;
  }
  .mobile-partner-box .item .text-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
  }
  .mobile-partner-box .item .text-box > h2 {
    font-weight: bold;
    font-size: 12px;
    line-height: 13px;
    color: #fff;
    letter-spacing: 5px;
  }
  .mobile-partner-box .item .text-box > h4 {
    margin-top: 6px;
    font-size: 10px;
    line-height: 12px;
    color: #fff;
  }
  .mobile-contact-us {
    display: block;
    margin-top: 35px;
    padding: 0 15px;
    padding-bottom: 35px;
    box-sizing: border-box;
  }
  .mobile-contact-us .part-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-contact-us .part-row .item {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .mobile-contact-us .part-row .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #E5E5E5;
    border-radius: 100%;
  }
  .mobile-contact-us .part-row .item .icon img {
    display: block;
    width: 40px;
  }
  .mobile-contact-us .part-row .item > h2 {
    margin-top: 11px;
    font-size: 12px;
    line-height: 13px;
    color: #666;
  }
  .mobile-contact-us .part-row .arrow {
    position: relative;
    top: -12px;
    display: block;
    width: 14px;
  }
  .mobile-contact-us .part-row .arrow.arrow-center {
    margin: 0 25px;
  }
  .mobile-contact-us .bottom-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
  }
  .mobile-contact-us .bottom-box > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 30px;
    border: 1px solid #D2D2D2;
    font-size: 12px;
    color: #666;
  }
}
@media screen and (max-width: 750px) {
  .pop {
    width: 86% !important;
  }
  .pop .pop-content .pop-box {
    margin-top: 0 !important;
    padding-top: 90px !important;
    padding-bottom: 50px !important;
    overflow: scroll !important;
  }
  .pop .pop-content .pop-box .bg .top .banner {
    height: 120px;
  }
  .pop .pop-content .pop-box .bg .top .banner .text-box .text-en {
    font-size: 20px !important;
    line-height: 21px !important;
  }
  .pop .pop-content .pop-box .bg .top .banner .text-box .text {
    margin-left: 9px !important;
    font-size: 12px !important;
    line-height: 13px !important;
  }
  .pop .pop-content .pop-box .bg .pop-hot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
  }
  .pop .pop-content .pop-box .bg .pop-hot .pop-hot-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 25px;
  }
  .pop .pop-content .pop-box .bg .pop-hot .pop-hot-line span {
    font-size: 12px;
    line-height: 13px;
  }
  .pop .pop-content .pop-box .bg .pop-hot .pop-hot-line a {
    width: 102px;
    margin-top: 10px;
  }
  .pop .pop-content .pop-box .bg .pop-hot .pop-hot-line a img {
    display: block;
  }
  .pop .pop-content .pop-box .bg .pop-hot .pop-hot-code {
    display: flex;
    justify-content: center;
    border-left: none;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .pop .pop-content .pop-box .bg .pop-hot .pop-hot-code .pop-hot-code-item {
    margin: 0;
    width: 70px;
  }
  .pop .pop-content .pop-box .bg .pop-hot .pop-hot-code .pop-hot-code-item img {
    width: 100%;
    display: block;
    margin: 0;
  }
  .pop .pop-content .pop-box .bg .pop-hot .pop-hot-code .pop-hot-code-item p {
    width: auto;
    padding: 0;
    margin-top: 7px;
    font-size: 12px;
    line-height: 13px;
  }
  .pop .pop-content .pop-box .bg .pop-hot .pop-hot-code .pop-hot-code-item + .pop-hot-code-item {
    margin-left: 10px;
  }
  .pop .pop-content .pop-box .bg .text-right {
    padding: 0 20px;
  }
  .pop .pop-content .pop-box .bg .text-right .ul-tit-box {
    margin-top: 42px;
    padding-bottom: 15px;
  }
  .pop .pop-content .pop-box .bg .text-right .ul-tit-box .ul-title {
    font-size: 16px;
    line-height: 17px;
    padding: 0;
    border-bottom: none;
  }
  .pop .pop-content .pop-box .bg .text-right .ul-tit-box .ul-title-en {
    margin-left: 7px;
    font-size: 12px;
    line-height: 13px;
  }
  .pop .pop-content .pop-box .bg .text-right .group-item .item-list {
    margin: 17px 0;
  }
  .pop .pop-content .pop-box .bg .text-right .group-item .item-list .item-list-top img {
    display: block;
    width: 20px;
  }
  .pop .pop-content .pop-box .bg .text-right .group-item .item-list .item-list-top h4 {
    padding-left: 2px;
    font-size: 12px;
    line-height: 13px;
  }
  .pop .pop-content .pop-box .bg .text-right .group-item .item-list .item-list-desc {
    margin-top: 2px;
    font-size: 12px;
    line-height: 20px;
  }
  .pop .pop-content .pop-box .bg .text-right .group-item-prompt {
    margin: 0;
    margin-top: 12px;
    font-size: 12px;
    line-height: 18px;
  }
  .pop .pop-content .pop-box .bg .text-right .contact-now {
    padding-top: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .pop .pop-content .pop-box .bg .text-right .contact-now a {
    margin-top: 0;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 30px;
    font-size: 12px;
    color: #fff;
  }
  .pop .pop-content .pop-box .bg > form {
    padding: 0 20px;
    padding-top: 25px;
    padding-bottom: 20px;
    margin-bottom: 163px;
  }
  .pop .pop-content .pop-box .bg > form .form-tit {
    font-size: 16px;
    line-height: 22px;
  }
  .pop .pop-content .pop-box .bg > form .d-flex {
    width: 100%;
    margin-top: 15px;
    align-items: center;
    flex-direction: column;
  }
  .pop .pop-content .pop-box .bg > form .d-flex .pop-input {
    width: 100%;
    height: 35px;
    margin: 0;
  }
  .pop .pop-content .pop-box .bg > form .d-flex .pop-input input {
    margin: 0;
    padding: 0;
    padding: 0 10px;
    font-size: 12px;
    line-height: 13px;
  }
  .pop .pop-content .pop-box .bg > form .d-flex .pop-input #serviceType {
    margin: 0;
    padding: 0;
    margin-right: 10px;
    padding-left: 10px;
    height: 100%;
    font-size: 12px;
    line-height: 30px;
  }
  .pop .pop-content .pop-box .bg > form .d-flex .pop-input:first-child {
    margin-bottom: 15px;
  }
  .pop .pop-content .pop-box .bg > form .d-flex .pop-input .type-ul {
    top: 33px;
  }
  .pop .pop-content .pop-box .bg > form .d-flex .pop-input .type-ul li {
    font-size: 12px;
    line-height: 35px;
    padding: 0 15px;
  }
  .pop .pop-content .pop-box .bg > form .contactType {
    margin-top: 15px;
  }
  .pop .pop-content .pop-box .bg > form .contactType .contactType-span {
    height: 35px !important;
    line-height: 35px !important;
    font-size: 12px;
    width: 27% !important;
    margin-left: 0 !important;
    padding-left: 15px !important;
  }
  .pop .pop-content .pop-box .bg > form .contactType .chooseLabel {
    font-size: 12px;
  }
  .pop .pop-content .pop-box .bg > form .contactType .type-ul {
    top: 35px;
  }
  .pop .pop-content .pop-box .bg > form .contactType .type-ul li {
    padding: 0 15px;
    font-size: 12px;
    line-height: 35px;
  }
  .pop .pop-content .pop-box .bg > form .sayContent {
    margin-top: 21px;
    padding: 10px;
    height: 120px;
  }
  .pop .pop-content .pop-box .bg > form .sayContent .textarea {
    font-size: 12px;
  }
  .pop .pop-content .pop-box .bg > form #submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    margin-top: 20px;
  }
  .pop .pop-content .pop-box .bg > form .tip-p {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 14px;
  }
  .pop .pop-content .pop-box .bg > form .icon-close {
    width: 22px;
    margin-top: 0;
  }
  .pop .pop-content .pop-box .bg > form .icon-close img {
    display: block;
    width: 100%;
  }
}
