/* 布局样式 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    font-size: 62.5%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container-box {
    width: 100%;
    max-width: 1430px;
    margin: 0 auto;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.align-between {
    align-items: space-between;
}



/* 公共 -> 头部 */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 90px;
    margin: 0;
    background-color: rgba(255, 255, 255, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(60px);
    transition: .3s ease-in-out;
}

.page-header.white-bg {
    background-color: #ffffff;
    border-bottom-color: rgba(0, 0, 0, .1);
    transition: .3s ease-in-out;
}

.page-header.white {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.nav-box .pure-menu {
    width: auto;
}

.nav-logo img {
    display: block;
    float: left;
    height: 6rem;

}

.nav-logo .gap-line {
    width: 1px;
    height: 5.4rem;
    margin: 0 2.5rem;
    background-color: rgba(0, 0, 0, .2);
}

.brand-info {
    display: block;
    float: left;

}

.brand-info span {
    display: block;
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: .4rem;
    font-weight: bold;
    color: #222222;
}

.brand-info p {
    margin: .4rem 0 0;
    padding: .4rem 1rem;
    font-size: 1.2rem;
    background-color: #e30713;
    color: #ffffff;
    border-radius: 4rem;
}

.menu-head {
    display: none;
}

.menu-icon {
    display: none;
}

.pure-menu-list {
    margin-left: 6rem;
}

.pure-menu-item {
    margin: 0 3rem;
    position: relative;
}

.pure-menu-item a {
    background-color: transparent !important;
}

.pure-menu-item::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -0.5px;
    left: 0;
    z-index: 11;
    width: 100%;
    height: 3px;
    background-color: #e30713;
    transform: scaleX(0);
    opacity: 0;
    transition: .3s ease-in-out;
}

.pure-menu-item.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.pure-menu-item:hover::after {
    transform: scaleX(1);
    opacity: 1;
    transition: .3s ease-in-out;
}

.pure-menu-link {
    line-height: 90px;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 500;
    color: #222222;
}

.nav-btns .btn-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.3rem;
    line-height: 1.3rem;
    padding: 0 2rem;
    text-decoration: none;
    font-size: 1.4rem;
    color: #222222;
}

.nav-btns .btn-item+.btn-item {
    border-left: 1px solid rgba(0, 0, 0, .2);
}

.nav-btns .btn-item:first-child .btn-icon {
    background: rgba(0, 0, 0, .2) url("https://www.hglaser.com/resources/web/img/language_icon_2.gif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
}

.nav-btns .btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 6px;
    margin-bottom: -3px;
}

/* 首页 */
.banner-box {
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.banner-item {
    width: 2000px;
    height: 100%;
    list-style: none;
    overflow: hidden;
}

.banner-item .layer {
    width: 100%;
    height: 100%;
}

.banner-item .layer:nth-child(1) img {
    transform: scale(1.04);
    transform-origin: center bottom;
}

.banner-item .layer:nth-child(2) img {
    transform: scale(1.06);
    transform-origin: center bottom;
}

.apply-section-box {
    padding: 8rem 0;
    background-color: #ffffff;
}

.section-header {
    margin-bottom: 2rem
}

.section-header .header-left {
    flex: 1;
    padding-right: 40px;
}

.section-subtitle {
    margin: 0;
    font-size: 5.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: #e30713;
}

.section-title {
    position: relative;
    z-index: 2;
    margin: 5px 0 0;
    font-size: 3.8rem;
    font-weight: 300;
    letter-spacing: .4rem;
    color: #222222;
}

.apply-list {
    flex-wrap: wrap;
}

.section-line {
    width: 12rem;
    height: 1rem;
    margin: -1rem 0 0 .1rem;
    background-color: #e30713;
}

.section-desc {
    margin: 15px 0 0;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #888888;
}

.apply-list .apply-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    width: calc(33.33333% - 30px);
    text-decoration: none;
    border: 1px solid transparent;
}

.apply-list .apply-item:hover img {
    transform: scale(1.1);
    filter: saturate(150%);
}


.apply-item .img-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}



.apply-item .img-box:after {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-bottom: 50%;
}

.apply-item .img-box img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s ease-in-out;
}

.apply-item span {
    margin-top: 1rem;
    font-size: 1.8rem;
    color: #222222;
    font-weight: 600;
}

.product-section-box {
    padding: 8rem 0 10rem;
    background: #f4f5f8;
}

.product-section-box .section-header {
    padding-bottom: 20px;
}

.header-right a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #222222;
}

.header-right a:hover {
    color: #e30713;
}

.header-right span {
    margin: 0 2px;
    opacity: .6;
}



.product-list {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.product-list .product-item {
    position: relative;
    width: calc(25% - 25px);
    background: linear-gradient(to top, rgba(0, 0, 0, .1), #fefefe);
    overflow: hidden;
    transition: .3s ease-in-out;
}

.product-item:hover {
    transform: scale(1.04);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, .1), -8px -8px 20px #fff;
    transition: .3s ease-in-out;
}

.product-list .product-item::after {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-bottom: 166.666666%;
}

.product-item .img-cover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: .3s ease-in-out;
}

.product-item .img-cover img {
    display: block;
    width: 100%;
    height: 100%;
}

.product-item:hover .img-cover {
    transform: translateY(26px) scale(1.1);
    filter: saturate(120%);
    transition: .3s ease-in-out;
}

.product-item .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
    text-align: center;

}


.product-info h6 {
    margin: 0;
    font-size: 1.8rem;
    color: #222222;
}

.product-info span {
    width: 8rem;
    height: 3px;
    margin: 10px auto;
    background-color: #e30713;
}

.product-info p {
    margin: 0;
    font-size: 1.4rem;
    color: #333333;
}

.go-mall {
    display: block;
    width: 168px;
    line-height: 36px;
    margin: 40px auto 0;
    text-align: center;
    text-decoration: none;
    font-size: 1.4rem;
    color: #ffffff;
    border-radius: 36px;
    background-color: #e30713;
    transition: .3s ease-in-out;

}

.go-mall span {
    margin-left: .6rem;
    font-size: 1.2rem;
}

.go-mall:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px -15px #8a0209;
    transition: .3s ease-in-out;
}

.aboutus-section {
    min-height: 500px;
    padding: 14rem 0;
    background: linear-gradient(180deg, #333333, #555555);
    overflow: hidden;
}

.aboutus-container {
    position: relative;
}

.aboutus-section .bg-image {
    display: block;
    position: absolute;
    bottom: -36vw;
    right: -16vw;
    z-index: 2;
    width: 60vw;
    height: 60vw;
    opacity: .6;
}

.left-logo {
    padding: .4rem 1rem .4rem 2rem;
    border-radius: 5rem;
    background-color: #ffffff;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .6);
}

.left-logo .title-name {
    letter-spacing: .4rem;
}

.left-logo span.iconfont {

    width: 36px;
    height: 36px;
    margin-left: 10px;
    font-size: 2rem;
    color: rgba(255, 255, 255, .98);
    border-radius: 50%;
    background-color: #e30713;
}

.logo-title img {
    display: inline;
    height: 3rem;
}

.logo-title span {
    margin-left: 1.5rem;
    font-size: 3rem;
    color: #222222;
}

.right-title {
    height: 5rem;
    text-transform: uppercase;
    font-size: 8rem;
    font-weight: bold;
    letter-spacing: .4rem;
    color: rgba(255, 255, 255, .3);
}

.aboutus-body {
    width: 60%;
    margin-top: 10rem;
    text-indent: 2em;
    font-size: 1.6rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, .9);
}

.news-section-box {
    padding: 10rem 0 12rem;
}

.news-content {
    width: 100%;
    margin-top: 5rem;
}

.news-content .news-left {
    width: 45%;
    height: 560px;
    background-color: #f8f8f8;
    text-decoration: none;
    border: 1px solid #f0f0f0;
    transition: .3s ease-in-out;
}

.news-content .news-right {
    width: 55%;
    padding-left: 30px;
}

.news-left .news-cover {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
}

.news-left .news-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: .3s ease-in-out;
}

.news-left:hover {
    transform: translateY(-5px);
    background: linear-gradient(0deg, #fff, #f8f8f8 20%);
    box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, .05), -10px -10px 30px 0 #fff;
}

.news-left:hover .news-cover img {
    filter: saturate(120%);
    transition: .3s ease-in-out;
}

.news-left .news-info {

    padding: 20px 30px;
}

.news-info .news-data {
    font-size: 2rem;
    color: #e30713;
    font-weight: 300;
}

.news-info .news-data::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.8rem;
    margin: 0 28px -2px -30px;

    background-color: #e30713;
}

.news-info h6 {
    height: 5rem;
    line-height: 5rem;
    margin: 0;
    font-size: 1.8rem;
    color: #222222;
    text-overflow: ellipsis;
    white-space: no-wrap;
    overflow: hidden;
}

.news-info p {
    display: -webkit-box;
    margin: 0;
    font-size: 1.4rem;
    text-align: justify;
    line-height: 2.2rem;
    color: #666666;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}


.news-right {
    height: 560px;
}

.news-right a {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 173.333333px;
    padding: 15px 30px;
    border: 1px solid #f0f0f0;
    background-color: #f8f8f8;
    text-decoration: none;
    transition: .3s ease-in-out;
}

.news-right a h6 {
    height: 5rem;
    line-height: 5rem;
    margin: 0;
    font-size: 1.8rem;
    color: #222222;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.news-right a p {
    display: -webkit-box;
    margin: 0;
    font-size: 1.4rem;
    text-align: justify;
    line-height: 2.2rem;
    color: #666666;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.news-right a span {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 1.6rem;
    font-weight: 300;
    color: #e30713;
}

.news-right a i {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 2.4rem;
    color: #e30713;
    transform: translateX(20px);
    opacity: 0;
    transition: .3s ease-in-out;
}

.news-right a:hover {
    transform: translateY(-5px);
    background: linear-gradient(0deg, #fff, #f8f8f8);
    box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, .05), -10px -10px 30px 0 #fff;
    transition: .3s ease-in-out;
}

.news-right a:hover i {
    transform: translateX(0);
    opacity: 1;
    transition: .3s ease-in-out;
}

.steps-section-box {
    position: relative;
    background-color: #f5f6f8;
    overflow: hidden;
}

.steps-content {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding-top: 10rem;
    background-color: rgba(0, 0, 0, .05);
    background-image: url("../images/repeat-cover.png");
    background-repeat: repeat;
}

.steps-content .section-title {
    color: rgba(255, 255, 255, .98);
}

.steps-desc {
    display: flex;
    height: 4rem;
    margin-top: 2.5rem;
    padding: 0 2rem;
    font-size: 1.4rem;
    letter-spacing: .2rem;
    border-radius: 4rem;
    background-color: #e30713;
    color: rgba(255, 255, 255, .98);
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, .2);
}

.steps-bg-list {
    position: relative;
    width: 1897px;
    height: 690px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.steps-bg-list li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .6s;
}

.steps-bg-list li.active {
    opacity: 1;

    transition: .6s;
}

.steps-bg-list li img {
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1.02);
    filter: blur(10px);
}

.steps-list {
    position: relative;
    width: 100%;
    margin: 6rem 0 0;
    padding: 0 3rem;

}

.steps-list::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
}

.step-item {
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    z-index: 4;
    margin-bottom: -6rem;

}

.step-item i {
    display: none;
}

.step-item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-item .step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7.4rem;
    height: 7.4rem;
    border-radius: 50%;
    font-size: 3.6rem;
    color: #e30713;
    background: linear-gradient(160deg, #ffffff 30%, #ccc);
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .4);
    transition: .3s ease-in-out;
}

.step-item:hover {
    cursor: pointer;
}

.step-item:hover .step-icon {
    transform: scale(1.26);
    background: linear-gradient(160deg, #f35656, #e30713);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #ffffff;
    box-shadow: 0 20px 40px -20px #8a0209;
}

.step-item .arrow {
    font-size: 1.2rem;
    margin: 3.3rem 2.2rem 0;
    color: #ffffff;
}

.step-item .step-name {
    font-size: 1.5rem;
    line-height: 6rem;
    color: #ffffff;
}

.go-chat {
    margin: 10rem auto 0;
    padding: 0 3rem;
    line-height: 4rem;
    border-radius: 4rem;
    background-color: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .5);
    font-size: 1.5rem;
    text-decoration: none;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: .3s;
}

.go-chat:hover {
    background-color: #e30713;
    color: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 20px -10px #8a0209;
    transform: translateY(-2px);
}

.solution-section-box {
    padding: 10rem 0 15rem;
}

.solutions-list {
    width: 100%;
    margin-top: 6rem;
    overflow: hidden;
}

.solutions-list img {
    display: block;
    height: 340px;
    width: auto;
}

.solutions-list img.vert {
    display: none;
}

.footer-box {
    padding: 6rem 0 0;
    background-color: #333333;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-company img {
    height: 40px;
}

.footer-company span {
    margin-left: 2rem;
    font-size: 2.8rem;
    letter-spacing: .5rem;
    color: #ffffff;
}

.footer-mall a {
    text-decoration: none;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, .6);
    transition: .3s;
}

.footer-mall a:hover {
    color: rgba(255, 255, 255, .8);
}

.footer-mall i.line {
    width: 1px;
    height: 1.2rem;
    margin: 0 2rem;
    background-color: rgba(255, 255, 255, .2);
}

.footer-links {
    list-style: none;
    padding: 8rem 0 10rem;
}

.footer-links li {
    max-width: calc(25% - 15px);
}

.link-title {
    margin-bottom: 2rem;
}

.link-title span {
    font-size: 1.8rem;
    color: #ffffff;
}

.link-title .iconfont {
    margin-right: .5rem;
    color: rgba(255, 255, 255, .6);
}

.contact-tel {
    font-size: 3.6rem;
    font-weight: 500;
    color: #e30713;
    text-decoration: none;
}

.contact-addr {
    max-width: 384px;
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1.6;
    color: rgba(255, 255, 255, .6);
}

.frendly-links {
    flex-wrap: wrap;
}

.frendly-links a {
    width: 25%;
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1.6;
    color: rgba(255, 255, 255, .6);
}

.frendly-links a {
    margin-left: 2rem;


}

.frendly-links a :first-child,
.frendly-links a :nth-child(5) {
    margin-left: 0;
}

.follow-links a {
    width: 100%;
    margin-bottom: 10px;
}

.follow-links a:first-child {
    margin-right: 2rem;
}

.follow-links a span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .6);
}

.follow-links a img {
    width: 7rem;
    height: 7rem;
    margin-bottom: .6rem;
    opacity: .8;
    transition: .3s;
}

.follow-links a:hover img {
    opacity: 1;
}

.copy-right {
    padding: 1rem 0;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .4);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.copy-right a {
    text-decoration: none;
    color: rgba(255, 255, 255, .4);
}

/* 关于我们 */
.sub-baner-box {
    width: 100%;
    height: 800px;
    background-image: url("../images/banner/aboutus-banner.jpg");
    background-position: top center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.container-box.application-list {
    padding-bottom: 140px;
}

.product-section {
    display: flex;
    justify-content: space-between;
    padding: 90px 0 120px;
}

.section-title {
    display: flex;
    position: relative;
    width: 100%;
    margin: 40px auto 0;
    padding-bottom: 20px;
    text-align: center;
}

.section-title h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    font-size: 36px;
    transform: translate(-50%, -50%);
}

.section-title::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 5px;
    left: 50%;
    z-index: 2;
    height: .5px;
    width: 100%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, .1);
}

.section-title p {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    font-size: 68px;
    color: #ffc0c3;
    letter-spacing: .2em;
    background-color: #ffffff;
}

.product-section .holder-img {
    display: flex;
    width: 100%;
    height: auto;
}

.products-list {
    display: flex;
    flex-direction: column;
}

.products-list a:first-child {
    margin-bottom: 20px;
}

.left-link .half-box .box-desc {
    padding: 25px;
}

.half-box .box-desc p {
    margin-bottom: 60px;
    font-size: 28px;
    line-height: 1.6;
    color: #ffffff;
}

.half-box .box-desc span {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, .9);
    border-radius: 60px;
    font-size: 14px;
    color: #333333;
    transition: .3s;
}

.half-box .box-desc span:hover {
    background-color: #e30713;
    color: #ffffff;
    box-shadow: 0 6px 30px -15px #8a0209
}

.product-card {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 120%;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s;
}

.product-card .name {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    font-size: 18px;
    color: #333333;
    text-transform: uppercase;
}

.product-card .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background-color: #333333;
    color: #fafafa;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    transition: .3s;
}

.product-card:hover {
    background-size: 108%;

}

.product-card:hover .title {
    background-color: #e30713;
}

.w-25 {
    display: flex;
    width: calc(25% - 15px);
}


.bg-repeat {
    width: 100%;
    background-image: url("../images/repeat-cover.png");
    background-repeat: repeat;
}

.application-banner {
    height: 550px;
    background-image: url("../images/banner/application.png");
}

.product-banner {
    height: 550px;
    background-image: url("../images/banner/product-banner.jpg");
}

.solution-banner {
    height: 550px;
    background-image: url("../images/banner/solution-banner.jpg");
}

.application-box {
    width: 100%;
    max-width: 1430px;
    margin: 40px auto 0;
}

.application-box img {
    display: block;
    width: 100%;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.banner-words {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: 3;
    width: 100%;
}

.banner-words p {
    margin: 0;
    font-size: 5.6rem;
    color: #ffffff;
}

.banner-words h5 {
    margin: 1rem 0 0;
    font-size: 4.8rem;
    color: #ffffff;
}

.company-intro {
    padding: 6rem 0;
}

.company-title {
    margin-bottom: 30px;
}

.company-title h3 {
    display: flex;
    align-items: center;
    font-size: 3.2rem;
}

.company-title h3 i {
    height: 3rem;
    width: .5rem;
    margin-right: 1.5rem;
    background-color: #e30713;
}

.company-title img {
    height: 4.8rem;
}

.company-detail {
    font-size: 1.6rem;
    line-height: 2;
    text-indent: 2em;
    text-align: justify;
    color: #333333;
}

.map-content {
    padding: 0 0 12rem;
}

.left-map {
    width: calc(100% - 460px);
    height: 420px;

}

.right-address {
    list-style: none;
    box-sizing: border-box;
    width: 440px;
    height: 420px;
    margin: 0;
    padding: 0 30px;
    border: 1px solid #f0f0f0;
    background-color: #f8f8f8;
}

.right-address li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 30%;

}

.right-address li:last-child {
    height: 40%;
}

.right-address li+li {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.address-info {
    box-sizing: border-box;
}

.tel-info {
    box-sizing: border-box;

}

.info-tite {
    font-size: 1.4rem;
    color: #666666;
}

.info-tite .iconfont {
    margin-right: .4rem;
    color: #e30713;
}

.info-tite .iconfont..icon-dianhua {
    font-size: 1.3rem;
}

.info-detail {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.8;
    text-decoration: none;
    color: #333333;
}

.tel-detail {
    margin-top: 1.2rem;
    font-size: 3.2rem;
    color: #e30713;
    text-decoration: none;
}

.follow-us {
    margin-top: 1.5rem;
}

.follow-item {
    margin-right: 20px;
}

.follow-item img {
    width: 70px;
    height: 70px;
}

.follow-item span {
    font-size: 1.2rem;
    margin-top: .4rem;
    color: #888888;
}

.amap-adcontent-body .site-title {
    padding: 4px 10px;
    font-size: 1.4rem;
    font-weight: bold;
    background-color: #e30713;
    color: #ffffff;
}

.amap-adcontent-body .site-text {
    padding: 0 10px;
    text-align: justify;
}

.amap-toolbar,
.amap-copyright {
    display: none !important;
}

@media screen and (max-width: 2000px) {
    .banner-item {
        margin-left: calc((100vw - 2000px) / 2);
    }
}

@media screen and (max-width: 1470px) {
    .container-box {
        max-width: 1280px;
    }

    .news-content .news-right {
        padding-left: 20px;
    }
}

@media screen and (max-width: 1280px) {
    .container-box {
        padding-left: 30px;
        padding-right: 30px;
    }

    .container-box {
        flex-wrap: wrap;
    }

    .footer-links {
        padding: 2rem 30px;
    }

    .footer-links li {
        width: 100%;
        max-width: 100%;
        padding: 2rem 0;
    }

    .follow-links a {
        width: auto;
    }

    .pure-menu-item {
        margin: 0 1.5rem;
    }

    .step-item .arrow {
        margin: 3.3rem 1.5rem 0;
    }

    .section-header .header-left {
        width: calc(100% - 260px);
    }

    .apply-list .apply-item {
        width: calc(33.333333% - 13px);
    }

    .product-list .product-item {
        width: calc(25% - 15px);
    }

    .aboutus-section .bg-image {
        bottom: -42vw;
        width: 80vw;
        height: 80vw;
    }
}

@media screen and (max-width: 1080px) {
    .page-header .nav-box {
        padding-right: 0;
    }

    .sub-baner-box {
        height: 600px;
    }

    .container-box {
        max-width: 100vw;
        margin: 0;
    }

    .menu-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        display: flex;
        width: 90px;
        height: 90px;
        transition: .3s ease-in-out;
    }

    .page-header.white-bg .menu-icon {
        background-color: #e30713;
        color: #ffffff;
        transition: .3s ease-in-out;
    }

    .page-header.white-bg .menu-icon::before {
        content: "\e624";
    }

    .pure-menu-horizontal .nav-menu {
        display: none;
        position: fixed;
        top: 90px;
        right: 0;
        z-index: 9;
        width: 335px;
        background-color: #ffffff;
        box-shadow: -2px 10px 30px -10px rgba(0, 0, 0, .1);
        overflow: hidden;
    }

    .pure-menu-list {
        flex-direction: column;
        height: 300px;
        margin: 0;
    }

    .pure-menu-horizontal .pure-menu-list li {
        float: left;
        width: 100%;
        height: 60px;
    }

    .pure-menu-horizontal .pure-menu-list li a {
        border-bottom: 1px solid rgba(0, 0, 0, .1);

    }

    .pure-menu-horizontal .pure-menu-list li:last-child a {
        border: none;
    }

    .pure-menu-item::after {
        display: none;
    }


    .menu-icon::before {
        content: "\e604";
    }

    .pure-menu-item {
        margin: 0;
        padding: 0 20px;
    }

    .pure-menu-item.active {
        background-color: #e30713;
    }

    .pure-menu-link {
        line-height: 60px;
    }

    .pure-menu-item.active .pure-menu-link {
        color: #ffffff;
    }

    .product-item .product-info {
        padding: 40px 0;
    }

    .section-title h5 {
        font-size: 24px;
    }

    .section-title {
        margin: 40px auto 0;
    }

    .section-title p {
        font-size: 42px;
    }

    .product-section {
        padding: 30px 15px 50px;
    }
}

@media screen and (max-width: 980px) {
    .page-header {
        background-color: #ffffff;
    }

    .footer-mall {
        width: 100%;
        margin-top: 4rem;
    }

    .apply-list .apply-item {
        width: calc(50% - 10px);
    }

    .aboutus-section {
        padding: 40px 0;
    }

    .aboutus-body {
        width: 100%;
    }

    .news-section-box {
        padding: 40px 0;
    }

    .news-content {
        flex-direction: column;
    }

    .news-content .news-left {
        width: 100%;
        height: auto;
    }

    .news-content .news-right {
        width: 100%;
        height: auto;
        padding: 20px 0 0;
    }

    .news-right a {
        margin-bottom: 20px;
    }

    .steps-content {
        padding-top: 60px;
    }

    .steps-bg-list {
        width: 100%;
        height: 990px;
    }

    .steps-bg-list li img {
        height: 100%;
        width: auto;
        margin-left: -50%;
    }

    .steps-list {
        flex-wrap: wrap;
        padding: 0;
    }

    .step-item .arrow {
        display: none;
    }

    .steps-list::before {
        display: none;
    }

    .step-item {
        position: relative;
        width: 50%;
        margin: 0;
        background-color: rgba(0, 0, 0, .1);
        border: 1px solid rgba(255, 255, 255, .1);
    }

    .step-item i {
        display: inline-block;
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 20px 40px;
        font-size: 40px;
        color: rgba(255, 255, 255, .2);
    }

    .step-item .content {
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        padding: 20px 40px;
    }

    .step-item .step-icon {
        width: auto;
        height: auto;
        background: transparent;
        border: none;
        color: #ffffff;
        margin-right: 10px;
    }

    .step-item:hover .step-icon {
        transform: scale(1);
        background: transparent;
        border: none;
    }

    .go-chat {
        margin: 40px auto 0;
    }

    .left-link .half-box .box-desc {
        padding: 15px;
    }

    .half-box .box-desc p {
        font-size: 20px;
    }

    .half-box .box-desc span {
        padding: 6px 15px;
        font-size: 13px;
    }

    .product-card .name {
        padding: 10px 15px;
        font-size: 14px;
    }

    .product-card .title {
        padding: 10px 15px;
        font-size: 14px;
    }

}

@media screen and (max-width: 884px) {
    .container-box {
        padding: 0 15px;
    }

    .sub-baner-box {
        height: 400px;
    }

    .banner-words p {
        font-size: 18px;
    }

    .banner-words h5 {
        font-size: 18px;
    }

    .banner-box {
        position: relative;
        height: calc(60vw + 40px);
    }

    .banner-item {
        position: absolute;
        top: 40px;
        left: 0;
        z-index: 2;
        width: 150vw;
        height: 60vw;
        margin-left: -25vw;
    }

    .banner-item .layer img {
        width: 100%;
        height: 100%;
    }

    .product-list {
        flex-wrap: wrap;
    }

    .product-list .product-item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .right-title {
        display: none;
    }

    .brand-info span {
        text-align: left;
    }


    .pure-menu-horizontal .nav-menu {
        top: 60px;
    }

    .page-header {
        height: 60px;
    }

    .nav-logo img {
        height: 36px;
        width: auto;
    }

    .nav-logo .gap-line {
        height: 36px;
        margin: 0 15px;
    }

    .brand-info span {
        font-size: 16px;
    }

    .brand-info p {
        margin: 0;
        padding: 0;
        font-size: 11px;
        color: #666666;
        background: transparent;

    }

    .menu-icon {
        width: 60px;
        height: 60px;
    }

    .aboutus-body {
        margin-top: 40px;
    }

    .company-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .map-content {
        flex-direction: column;
    }

    .left-map {
        width: 100%;
    }

    .right-address {
        width: 100%;
    }

    .company-title img {
        height: 40px;
        margin: 30px 0;
    }

    .product-section {
        padding: 30px 15px;
    }

    .w-25 {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 550px) {
    .pure-menu-horizontal .nav-menu {
        display: block;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        padding-left: 80px;
        z-index: 1000;
        background-color: transparent;
        transition: right .3s ease-in-out;
    }

    .sub-baner-box {
        height: 300px;
    }

    .pure-menu-horizontal .nav-menu.left-show {
        right: 0;
        background-color: rgba(0, 0, 0, .4);
        transition: right .3s ease-in-out, background-color .3s .2s;
    }


    .menu-head {
        position: relative;
        z-index: 1000;
        display: flex;
        width: 100%;
        height: 60px;
        background-color: #f8f8f8;
    }


    .menu-head .menu-handle {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
        height: 100%;
        font-size: 14px;
    }

    .menu-head .menu-handle .iconfont {
        margin-right: 10px;
    }

    .menu-head .search-go {
        background-color: #e30713;
        color: #ffffff;
        text-decoration: none;
    }

    .pure-menu-list {
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #f8f8f8;
    }

    .pure-menu-horizontal .pure-menu-list li {
        background-color: #ffffff;
        line-height: 50x;
        font-size: 14px;
        border-top: 1px solid #f0f0f0;
    }

    .pure-menu-horizontal .pure-menu-list li.active a {
        color: #e30713;
    }

    .apply-item span {
        font-size: 14px;
    }

    .pure-menu-link {
        font-size: 14px;
    }

    .nav-btns .btn-item {
        padding: 10px 5px;
        border: none !important;
    }

    .nav-btns .btn-item .btn-text {
        display: none;
    }

    .nav-btns a.language,
    .nav-btns a.login {
        display: none;
    }

    .company-title {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .company-intro {
        padding: 40px 0;
    }

    .company-detail {
        font-size: 13px;
    }

    .right-address {
        padding: 0 15px;
    }

    .tel-detail {
        font-size: 18px;
    }


    .company-title img {
        height: 20px;
    }

    .company-title h3 {
        font-size: 16px;
    }

    .apply-section-box {
        padding: 30px 0;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 16px;
        font-weight: bold;
    }

    .section-line {
        width: 54px;
        height: 4px;
    }

    .apply-list .apply-item {
        width: 100%;
        margin: 0 0 12px;
        padding: 10px;
        border: 1px solid #f0f0f0;
    }

    .product-section-box {
        padding: 40px 0;
    }

    .product-section-box .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }

    .section-header .header-left {
        width: 100%;
    }

    .section-desc {
        font-size: 13px;
    }

    .section-header .header-right {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }

    .product-list {
        margin: 0;
    }

    .product-list .product-item {
        width: calc(50% - 6px);
        margin-bottom: 12px;
    }

    .product-item .product-info {
        padding: 15px 10px;
    }

    .product-info h6 {
        font-size: 14px;
    }

    .product-info span {
        width: 60px;
        height: 2px;
        margin: 6px auto;
    }

    .product-info p {
        font-size: 12px;
    }

    .go-mall {
        width: 140px;
        line-height: 28px;
        margin-top: 20px;
        font-size: 12px;
    }

    .aboutus-body {
        font-size: 13px;
    }

    .product-section .section-header {
        flex-direction: column;
    }

    .logo-title img {
        height: 18px;
    }

    .left-logo .title-name {
        margin-left: 4px;
        font-size: 16px;
    }

    .aboutus-section {
        padding: 60px 0;
    }

    .aboutus-section .bg-image {
        width: 100vw;
        height: 100vw;
    }

    .aboutus-body {
        margin-top: 20px;
    }

    .aboutus-header {
        justify-content: center;
    }

    .left-logo span.iconfont {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        font-size: 14px;
    }

    .news-content {
        margin-top: 20px;
    }

    .news-left .news-info {
        padding: 10px 16px;
    }

    .news-info .news-data {
        font-size: 14px;
    }

    .news-info .news-data::before {
        height: 14px;
        margin: 0 15px -2px -16px;
    }

    .news-info h6 {
        height: auto;
        margin-top: 6px;
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.6;
        white-space: wrap;
        text-align: justify;
    }

    .news-right a h6 {
        height: auto;
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.6;
        white-space: wrap;
        text-align: justify;
    }

    .news-info p,
    .news-right a p {
        font-size: 12px;
        line-height: 1.6;
    }

    .news-content .news-right {
        padding: 12px 0 0;
    }

    .news-right a {
        display: flex;
        flex-direction: column;
        margin-bottom: 12px;
        height: auto;
        padding: 8px 15px 10px;
    }

    .news-right a span {
        position: static;
        margin-top: 10px;
        font-size: 12px;
    }

    .news-right a i {
        bottom: 10px;
        right: 15px;
        opacity: 1;
        font-size: 13px;
        transform: translate(0);
    }

    .steps-bg-list {
        height: 1100px;
    }

    .steps-list {
        margin-top: 15px;
    }

    .steps-desc {
        padding: 15px;
        height: auto;
        font-size: 13px;
        background-color: rgba(0, 0, 0, .1);
        border-radius: 0;
        box-shadow: none;
    }

    .go-chat {
        margin-top: 20px;
        line-height: 30px;
        font-size: 13px;
    }

    .step-item .content {
        padding: 40px 20px;
    }

    .step-item .content {
        flex-direction: column;
    }

    .step-item .step-icon {
        margin: 0 0 10px;
    }

    .step-item .step-name {
        font-size: 12px;
        line-height: 20px;
    }

    .step-item i {
        padding: 0 20px;
        font-size: 80px;
        color: rgba(255, 255, 255, .06);
    }

    .solution-section-box {
        padding: 60px 0;
    }

    .solutions-list {
        margin-top: 20px;
    }

    .solutions-list img {
        display: none;
    }

    .solutions-list img.vert {
        display: block;
        width: 100%;
        height: auto;
        transform: scale(1.01);
    }

    .footer-box {
        padding-top: 40px;
    }

    .footer-company {
        flex-direction: column;
        align-items: start;
    }

    .footer-company img {
        height: 32px;
    }

    .footer-company span {
        margin: 10px 0 0;
        font-size: 15px;
        letter-spacing: 0;
    }

    .footer-mall {
        display: flex;
        justify-content: space-between;
        margin: 20px 0 30px;
    }

    .footer-mall a {
        font-size: 12px;
    }

    .link-title {
        margin-bottom: 10px;
    }

    .footer-links li {
        padding: 30px 0 0;
    }

    .link-title,
    .link-title span {
        font-size: 13px;
    }

    .contact-tel {
        font-size: 20px;
    }

    .contact-addr,
    .frendly-links a {
        font-size: 12px;
    }

    .copy-right {
        margin-top: 30px;
        padding: 4px 15px;
        font-size: 10px;
    }

    .half-box .box-desc p {
        font-size: 16px;
    }

    .half-box .box-desc span {
        font-size: 12px;
    }

    .product-section {
        padding: 30px 15px;
    }

    .product-card .name {
        font-size: 13px;
    }

    .product-card .title {
        padding: 10px;
        font-size: 12px;
    }

    .w-25 {
        width: calc(50% - 6px);
        margin-bottom: 12px;
    }

    .products-list a:first-child {
        margin-bottom: 12px;
    }
}