@charset "UTF-8";
/* CSS Document */


.header {
    width: 94%;
    position: absolute;
    left: 3%;
    top: 50px;
    background: #223C4D;
    z-index: 999;
}

.header .center-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 0;
}

.header .logo {
    width: 20%;
    text-align: center;
    font-size: 0;
}

.header .logo img {
    width: 300px;
}

@media all and (min-width: 1025px) {
    .header .menu {
        width: 80%;
    }

    .header .menu-list {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        margin-right: 50px;
    }

    .header .menu-list .group {
        margin-left: 20px;
        position: relative;
    }

    .header .menu-list .group:hover {
        z-index: 20;
    }

    .header .menu-list .group:first-child {
        margin-left: 0;
    }

    .header .menu-list .group .tit a {
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        transition: color 0.2s;
        display: flex;
        height: 26px;
        align-items: center;
        padding: 15px 10px;
    }

    .header .menu-list .group .tit a span.icon {
        display: block;
        width: 8px;
        height: 5px;
        margin-left: 7px;
        position: relative;
    }

    .header .menu-list .group .tit a span.icon b,
    .header .menu-list .group .tit a span.icon:before,
    .header .menu-list .group .tit a span.icon:after {
        content: '';
        display: block;
        width: 8px;
        height: 5px;
        background-image: url("../images/menu-arrow.png");
        background-size: 100% 300%;
        position: absolute;
        left: 0;
        top: 0;
        transition: opacity 0.2s;
    }

    .header .menu-list .group .tit a span.icon b {
        background-position-y: bottom;
        opacity: 0;
    }

    .header .menu-list .group .tit a span.icon:before {
        background-position-y: center;
        opacity: 0;
    }

    .header .menu-list .group .tit a span.icon:after {
        background-position-y: top;
        opacity: 1;
    }

    .header .menu-list .group .tit a.link:hover {
        color: #DF1F26;
    }

    .header .menu-list .group .tit a.link:hover span.icon:before {
        opacity: 1;
    }

    .header .menu-list .group .tit a.link:hover span.icon:after {
        opacity: 0;
    }

    .header .menu-list .group .tit a.on {
        color: #DF1F26;
    }

    .header .menu-list .group .tit a.on span.icon:before {
        opacity: 1;
    }

    .header .menu-list .group .tit a.on span.icon:after {
        opacity: 0;
    }

    .header .menu-list .group .sub {
        width: 150px;
        position: absolute;
        left: 0;
        top: 100%;
        background: #223C4D;
        display: none;
    }

    .header .menu-list .group .sub .item {
        border-bottom: 1px solid #fff;
    }

    .header .menu-list .group .sub .item:last-child {
        border-bottom: 0 none;
    }

    .header .menu-list .group .sub .item a {
        display: block;
        padding: 13px 15px;
        font-size: 12px;
        color: #fff;
        font-weight: bold;
        transition: color .2s;
    }

    .header .menu-list .group .sub .item a:hover {
        color: #DF1F26;
    }

    .header .menu-list .group .sub .item a.on {
        color: #DF1F26;
    }
}

.header .menu-button {
    display: none;
}

.header .menu-button a {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
}

.header .menu-button a b,
.header .menu-button a:before,
.header .menu-button a:after {
    content: '';
    display: block;
    height: 4px;
    background: #fff;
    transition: background-color 0.2s;
    position: absolute;
    right: 2px;
}

.header .menu-button a b {
    width: 20px;
    top: 50%;
    margin-top: -2px;
}

.header .menu-button a:before {
    width: 26px;
    top: 5px;
}

.header .menu-button a:after {
    width: 12px;
    bottom: 5px;
}

.header .menu-button a.on b,
.header .menu-button a.on:before,
.header .menu-button a.on:after {
    background: #DF1F26;
}

@media all and (max-width: 1024px) {
    .header {
        top: 30px;
    }

    .header .logo {
        width: 30%;
    }

    .header .menu {
        width: 30px;
        height: 30px;
        position: relative;
        margin-right: 20px;
    }

    .header .menu-list {
        display: none;
        width: 300px;
        height: auto;
        background: #fff;
        position: absolute;
        right: 0;
        top: 100%;
        text-align: center;
    }

    .header .menu-list .group {
        border-bottom: 1px solid #e5e7e9;
    }

    .header .menu-list .group:last-child {
        border-bottom: 0 none;
    }

    .header .menu-list .group .tit a {
        display: block;
        line-height: 26px;
        font-size: 14px;
        color: #223C4D;
        font-weight: bold;
        padding: 5px 36px;
        position: relative;
        transition: all 0.2s;
    }

    .header .menu-list .group .tit a span.icon {
        display: block;
        width: 36px;
        height: 36px;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -18px;
        z-index: 20;
    }

    .header .menu-list .group .tit a span.icon b,
    .header .menu-list .group .tit a span.icon:before,
    .header .menu-list .group .tit a span.icon:after {
        content: '';
        display: block;
        width: 8px;
        height: 6px;
        background-image: url("../images/menu-arrow.png");
        background-size: 100% 300%;
        position: absolute;
        left: 50%;
        margin-left: -4px;
        top: 50%;
        margin-top: -3px;
        transition: opacity 0.2s;
    }

    .header .menu-list .group .tit a span.icon b {
        background-position-y: top;
        opacity: 0;
    }

    .header .menu-list .group .tit a span.icon:before {
        background-position-y: center;
        opacity: 0;
    }

    .header .menu-list .group .tit a span.icon:after {
        background-position-y: bottom;
        opacity: 1;
    }

    .header .menu-list .group .tit a:hover {
        background: #223C4D;
        color: #fff;
    }

    .header .menu-list .group .tit a:hover span.icon b {
        opacity: 1;
    }

    .header .menu-list .group .tit a:hover span.icon:before {
        opacity: 0;
    }

    .header .menu-list .group .tit a:hover span.icon:after {
        opacity: 0;
    }

    .header .menu-list .group .tit a.link:hover {
        background: #223C4D;
        color: #DF1F26;
    }

    .header .menu-list .group .tit a.link:hover span.icon b {
        opacity: 0;
    }

    .header .menu-list .group .tit a.link:hover span.icon:before {
        opacity: 1;
    }

    .header .menu-list .group .tit a.link:hover span.icon:after {
        opacity: 0;
    }

    .header .menu-list .group .tit a.link.on {
        background: #223C4D;
        color: #DF1F26;
    }

    .header .menu-list .group .tit a.link.on span.icon b {
        opacity: 0;
    }

    .header .menu-list .group .tit a.link.on span.icon:before {
        opacity: 1;
    }

    .header .menu-list .group .tit a.link.on span.icon:after {
        opacity: 0;
    }

    .header .menu-list .group .sub {
        display: none;
    }

    .header .menu-list .group .sub .item {
        border-top: 1px solid #e5e7e9;
    }

    .header .menu-list .group .sub .item a {
        display: block;
        line-height: 26px;
        padding: 1px 15px;
        font-size: 12px;
        color: #223C4D;
        font-weight: bold;
        transition: all 0.2s;
    }

    .header .menu-list .group .sub .item a:hover {
        background: #223C4D;
        color: #DF1F26;
    }

    .header .menu-list .group .sub .item a.on {
        background: #223C4D;
        color: #DF1F26;
    }

    .header .menu-list .group:last-child .sub .item:last-child {
        border-bottom: 0 none;
    }

    .header .menu-button {
        display: block;
    }
}

@media all and (max-width: 768px) {
    .header {
        top: 10px;
    }

    .header .center-box {
        padding: 15px 0;
    }

    .header .logo {
        width: 60%;
    }

    .header .menu {
        margin-right: 5px;
    }

    .header .menu-list {
        right: -5px;
        margin-top: 22px;
    }
}


.footer-space {
    height: 80px;
}

.footer {
    background: #223C4D;
    padding: 25px 10px 10px 10px;
}

.footer .center-box {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer .group {
    width: calc(33.333% - 14px);
}

.footer .group .title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #DF1F26;
}

.footer .group .content {
    font-size: 20px;
    color: #808080;
    padding-top: 30px;
    line-height: 34px;
}

.footer .group .content a {
    color: #808080;
}

.footer .group .content.list .item {
    padding-left: 24px;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: left center;
}

.footer .group .content.list .item.icon-email {
    background-image: url("../images/footer-email.png");
}

.footer .group .content.list .item.icon-tel {
    background-image: url("../images/footer-tel.png");
}

.footer .group .content.menu .item {
    position: relative;
    padding-left: 24px;
}

.footer .group .content.menu .item:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7A7A7A;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px;
}

@media all and (max-width: 768px) {
    .footer .center-box {
        display: block;
    }

    .footer .group {
        width: auto;
    }
}


.fixed-message {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
}

.fixed-message a {
    display: block;
    font-size: 0;
    background: #DF1F26;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.fixed-message img {
    width: 60px;
    height: 60px;
}


.banner {
    height: 800px;
    background-size: cover;
    background-position: left center;
}

@media all and (max-width: 1024px) {
    .banner {
        height: 600px;
    }
}

@media all and (max-width: 768px) {
    .banner {
        height: 500px;
    }
}

.banner-video {font-size: 0;}
.banner-video video {width: 100%;}


.index-about {
    position: relative;
    padding: 0 10px;
}

.index-about-background {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0;
}

.index-about-background svg {
    width: 100%;
    height: 500px;
}


.index-about-main {
    position: relative;
    z-index: 20;
    max-width: 1120px;
    min-height: 500px;
    margin: 0 auto;
    text-align: center;
}

.index-about-main .note {
    font-size: 20px;
    color: #DF1F26;
    font-weight: bold;
    padding-top: 60px;
}

.index-about-main .title {
    font-size: 40px;
    color: #223C4D;
    font-weight: bold;
    padding-top: 20px;
}

.index-about-main .content {
    font-size: 27px;
    color: #223C4D;
    font-weight: 500;
    line-height: 1.7;
    padding: 20px 50px 0 50px;
}

.index-about-main .button {
    display: flex;
    justify-content: center;
    padding: 110px 0;
}

.index-about-main .button a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 330px;
    height: 110px;
    background: #DF1F26;
    border-radius: 55px;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

@media all and (max-width: 1024px) {
    .index-about-main .content {
        font-size: 24px;
    }

    .index-about-main .button a {
        width: 294px;
        height: 96px;
        font-size: 30px;
    }
}

@media all and (max-width: 768px) {
    .index-about-main .note {
        font-size: 18px;
    }

    .index-about-main .title {
        font-size: 28px;
    }

    .index-about-main .content {
        font-size: 20px;
        text-align: justify;
        padding: 20px 10px 0 10px;
    }
}

@media all and (max-width: 380px) {
    .index-about-main .button a {
        width: 240px;
        height: 80px;
        font-size: 24px;
    }
}


/*.index-intro {background: url("../images/intro-background.png") no-repeat center bottom / contain; padding: 70px 10px 110px 10px;}*/
.index-intro {padding: 70px 10px 0 10px;}
.index-intro-main {max-width: 1120px; margin: 0 auto;}
.index-intro .title {text-align: center; font-size: 40px; font-weight: bold; color: #223C4D; line-height: 1;}
.index-intro .line {padding: 20px 0;}
.index-intro .line:before {content: ''; display: block; width: 8%; height: 2px; background: #DF1F26; margin: 0 auto;}
.index-intro .player {font-size: 0;}
.index-intro .player video {width: 100%;}

.index-intro-map {position: relative;}
.index-intro-map {
    font-size: -webkit-calc(100vw / 19.20);
    font-size: calc(100vw / 19.20);
}
.index-intro-map .img {font-size: 0;}
.index-intro-map .img img {width: 100%;}

.index-intro-map .point {width: 0.42em; height: 0.42em; border-radius: 50%; box-sizing: border-box; border: 0.05em solid transparent; transition: border-color 0.2s; position: absolute; z-index: 10; cursor: pointer;}
.index-intro-map .point .con {width: auto; height: auto; position: absolute; left: 100%; top: 50%; margin-top: -25px; display: none;}
.index-intro-map .point .con .txt {line-height: 50px; font-size: 20px; color: #000; padding: 0 10px; white-space: nowrap; position: relative; z-index: 10;}
.index-intro-map .point .con .box {width: 100%; height: 100%; position: absolute; left: 0; top: 0; opacity: 0.9;}
.index-intro-map .point .con .box:before {content: ''; display: block; width: 10px; height: 10px; background: #fff; position: absolute; left: -5px; top: 50%; margin-top: -5px; transform: rotate(45deg);}
.index-intro-map .point .con .box:after {content: ''; display: block; width: 100%; height: 100%; background: #fff; border-radius: 5px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);}
.index-intro-map .point:hover {z-index: 20; border-color: #fff;}
.index-intro-map .point:hover .con {display: block;}

.index-intro-map .point.point1 {left: 4.16em; top: 2.60em; z-index: 99;}
.index-intro-map .point.point2 {left: 4.58em; top: 2.42em;}
.index-intro-map .point.point3 {left: 5.07em; top: 2.52em;}
.index-intro-map .point.point4 {left: 8.26em; top: 2.19em;}
.index-intro-map .point.point5 {left: 8.65em; top: 2.15em;}
.index-intro-map .point.point6 {left: 9.22em; top: 2.07em;}
.index-intro-map .point.point7 {left: 11.87em; top: 3.16em;}
.index-intro-map .point.point8 {left: 13.21em; top: 2.55em;}

.index-intro-map .point.point7 .con,
.index-intro-map .point.point8 .con {left: auto; right: 100%;}
.index-intro-map .point.point7 .con .box:before,
.index-intro-map .point.point8 .con .box:before {left: auto; right: -5px;}


@media all and (max-width: 1024px) {
    .index-intro {padding: 70px 10px 0 10px;}

    .index-intro-map .point .con {margin-top: -20px;}
    .index-intro-map .point .con .txt {font-size: 14px; line-height: 40px;}
}
@media all and (max-width: 768px) {
    .index-intro {padding: 70px 10px 0 10px;}
    .index-intro .title {font-size: 28px;}

    .index-intro-map .point .con {margin-top: -18px;}
    .index-intro-map .point .con .txt {font-size: 13px; line-height: 36px;}
}



.index-news {
    max-width: 1120px;
    margin: 0 auto;
    padding: 75px 10px 0 10px;
}

.index-news-line {
    width: 10%;
    height: 4px;
    background: #DF1F26;
}

.index-news-title {
    font-size: 40px;
    font-weight: bold;
    color: #223C4D;
    padding-top: 30px;
}

.index-news-list {
    padding-top: 40px;
}

.index-news-list .group {
    width: calc(50% - 10px);
    padding-top: 20px;
}

.index-news-list .group .box {
    border: 1px solid #e5e5e5;
}

.index-news-list .group .head {
    padding: 14px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-news-list .group .head .user {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.index-news-list .group .head .user .face {
    width: 30px;
    height: 30px;
    font-size: 0;
    margin-right: 10px;
}

.index-news-list .group .head .user .face img {
    width: 30px;
    height: 30px;
}

.index-news-list .group .head .user .name {
    font-size: 16px;
    color: #3a3a3a;
    font-weight: bold;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-news-list .group .head .date {
    font-size: 12px;
    color: #6d6d6d;
    padding-left: 10px;
}

.index-news-list .group .image {
    font-size: 0;
}

.index-news-list .group .image img {
    width: 100%;
}

.index-news-list .group .video {
    font-size: 0;
    position: relative;
}

.index-news-list .group .video:before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    background: url("../images/index-news-play.png") no-repeat center / 100% 100%;
    position: absolute;
    z-index: 20;
    left: 50%;
    margin-left: -24px;
    top: 50%;
    margin-top: -24px;
}

.index-news-list .group .video img {
    width: 100%;
}

.index-news-list .group .text {
    font-size: 14px;
    line-height: 25px;
    color: #666;
    padding: 20px;
}

.index-news-list .group .text a {
    color: #3a3a3a;
    font-weight: bold;
}

.index-news-list .group .text a:hover {
    color: #0b6e27;
}

.index-news-list .group .text.words {
    font-size: 18px;
    line-height: 30px;
}

.index-news-list .group .meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0;
    padding: 0 20px 20px 20px;
}

.index-news-list .group .meta .item {
    padding-left: 20px;
}

.index-news-list .group .meta .item:first-child {
    padding-left: 0;
}

.index-news-list .group .meta .item a {
    display: block;
}

.index-news-list .group .meta .item img {
    width: 18px;
    height: 18px;
}

.index-news-load {
    padding-top: 70px;
    display: flex;
    justify-content: center;
}

.index-news-load a {
    display: block;
    padding: 12px 35px;
    border: 2px solid #000;
    color: #000;
    font-size: 12px;
    line-height: 1;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.2s;
}

.index-news-load a:hover {
    background: #000;
    color: #fff;
}

@media all and (max-width: 1024px) {
    .index-news-list .group {
        width: 100%;
    }
}

@media all and (max-width: 768px) {
    .index-news-title {
        font-size: 28px;
    }
}


.pop-news {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

.pop-news .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}

.pop-news .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.pop-news .outer {
    max-width: 1140px;
    max-height: 85vh;
    overflow: auto;
    z-index: 20;
    background: #fff;
}

.pop-news .inner {
    position: relative;
    display: flex;
}

.pop-news .inner .close {
    position: absolute;
    z-index: 20;
    right: 10px;
    top: 10px;
    width: 12px;
    height: 12px;
    cursor: pointer;
    background: #000 url("../images/pop-close.png") no-repeat center / 100% 100%;
}

.pop-news .inner .close:hover {
    background-color: #fff;
}

.pop-news .inner .controller {
    position: absolute;
    z-index: 20;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0;
}

.pop-news .inner .controller a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 30px;
    margin-right: 5px;
}

.pop-news .inner .controller a:before {
    content: '';
    display: block;
    width: 8px;
    height: 14px;
    background: url("../images/news-controller.png") no-repeat left center / 200% 100%;
}

.pop-news .inner .controller a:last-child {
    margin-right: 0;
}

.pop-news .inner .controller a.prev:before {
    background-position-x: left;
}

.pop-news .inner .controller a.next:before {
    background-position-x: right;
}

.pop-news .inner .cover {
    width: 50%;
}

.pop-news .inner .cover .image {
    font-size: 0;
}

.pop-news .inner .cover .image img {
    width: 100%;
}

.pop-news .inner .cover .player {
    position: relative;
    font-size: 0;
}

.pop-news .inner .cover .player svg {
    width: 100%;
}

.pop-news .inner .cover .player .video-box {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pop-news .inner .cover .player .video-box video {
    width: 100%;
    height: 100%;
    background: #000;
}

.pop-news .inner .main {
    flex: 1;
    min-width: 0;
    padding: 25px;
}

.pop-news .inner .main .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.pop-news .inner .main .head .user {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.pop-news .inner .main .head .user .face {
    width: 30px;
    height: 30px;
    background: #ccc;
    border-radius: 50%;
    font-size: 0;
    margin-right: 10px;
}

.pop-news .inner .main .head .user .face img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.pop-news .inner .main .head .user .name {
    font-size: 14px;
    color: #3a3a3a;
    font-weight: bold;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pop-news .inner .main .head .date {
    font-size: 12px;
    color: #6d6d6d;
    padding-left: 10px;
}

.pop-news .inner .main .content {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    padding-bottom: 80px;
}

.pop-news .inner .main .content.words {
    font-size: 24px;
}

.pop-news .inner .main .content a {
    color: #3a3a3a;
    font-weight: bold;
}

.pop-news .inner .main .content a:hover {
    color: #0b6e27;
}

.pop-news {
    display: none;
}

.pop-news.show {
    display: block;
}

@media all and (max-width: 800px) {
    .pop-news .outer {
        width: 95%;
    }

    .pop-news .inner {
        display: block;
    }

    .pop-news .inner .controller {
        width: 100%;
        justify-content: space-between;
        left: 0;
        bottom: 0;
        box-sizing: border-box;
        padding: 25px;
    }

    .pop-news .inner .cover {
        width: auto;
    }
}


.pages-form-group .tit-box {
    font-size: 18px;
    color: #7A7A7A;
    padding-bottom: 10px;
}

.pages-form-group .inp-box {
    font-size: 0;
    position: relative;
}

.pages-form-group .inp-box input.inp {
    font-size: 15px;
    color: #7A7A7A;
    width: 100%;
    height: 48px;
    border: 1px solid #69727d;
    box-sizing: border-box;
    padding: 0 10px;
}

.pages-form-group .inp-box textarea {
    font-size: 15px;
    color: #7A7A7A;
    width: 100%;
    height: 100px;
    border: 1px solid #69727d;
    box-sizing: border-box;
    padding: 8px 10px;
}

.pages-form-group .agree {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #7A7A7A;
}

.pages-form-group .agree label {
    display: flex;
    align-items: center;
}

.pages-form-group .agree input {
    flex: none;
    width: 24px;
    height: 24px;
    border: 3px solid #000;
    -webkit-appearance: none;
    appearance: none;
    margin-right: 10px;
    background-color: #fff;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.pages-form-group .agree input:checked {
    background-image: url("../images/checked.png");
}

.pages-form-group .btn-box {
    font-size: 0;
}

.pages-form-group .btn-box input.btn {
    width: 100%;
    height: 40px;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    border: 0 none;
    transition: background-color 0.2s;
}

.pages-form-group .btn-box input.btn:hover {
    background: #223C4D;
}

.pages-form-group .error {
    background: url("../images/message-error.png") no-repeat left center / 14px 14px;
    font-size: 18px;
    color: #D9534F;
    padding-left: 24px;
}

.pages-form-group .yzm-box {
    position: absolute;
    right: 4px;
    top: 50%;
    margin-top: -20px;
    z-index: 20;
}

.pages-form-group .yzm-box img {
    width: 100px;
    height: 40px;
    cursor: pointer;
}


.index-message-space {
    height: 170px;
}

.index-message-title {
    font-size: 35px;
    font-weight: bold;
    color: #223C4D;
    padding: 0 10px 10px 10px;
}

.index-message-main {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 100px 50px;
}

.index-message-main .group {
    padding: 20px 0;
}

@media all and (max-width: 1024px) {
    .index-message-main {
        padding: 20px;
    }
}


.n-banner {
    background-position: center;
    background-size: cover;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.n-banner:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.5;
}

@media all and (max-width: 768px) {
    .n-banner {
        height: 350px;
    }
}

.n-location {
    position: relative;
    z-index: 20;
    font-size: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    background: #edeff0;
    border-radius: 4px;
}

.n-location .item {
    padding: 15px 2px;
}

.n-location .item:first-child {
    padding-left: 15px;
}

.n-location .item:first-child a {
    display: flex;
    align-items: center;
}

.n-location .item:first-child a:before {
    content: '';
    font-size: 0;
    display: block;
    width: 18px;
    height: 16px;
    background: url("../images/n-location.png") no-repeat center/ 100% 100%;
    margin-right: 5px;
}

.n-location .item:last-child {
    padding-right: 15px;
}

.n-location a.link {
    color: #223C4D;
}

.n-location span.line {
    color: #ccc;
}

.n-location span.text {
    color: #223C4D;
}


.pages-message-space {
    height: 80px;
}

.pages-content {
    font-size: 20px;
    line-height: 1.7;
}

.pages-content p{
    text-align: justify;
    /* 关键：保持英文单词完整，不截断 */
    word-break: keep-all;
}

.pages-content a {
    color: #000;
}

.pages-content ul {
    padding-left: 50px;
}

.pages-content ul li {
    list-style: disc;
}


.pages-tit {
    font-size: 32px;
    font-weight: bold;
}


.pages-other-title {
    text-align: center;
}

.pages-other-title .name {
    font-size: 59px;
    font-weight: bold;
}

.pages-other-title .note {
    font-size: 20px;
    font-weight: bold;
    padding-top: 20px;
}


.pages-icon-info {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../images/pages-con-group-info.png");
    background-size: auto 100%;
}

.pages-icon-info.heat-type {
    background-position-x: 0;
}

.pages-icon-info.consumer-medium {
    background-position-x: -32px;
}

.pages-icon-info.temperature-range {
    background-position-x: -64px;
}

.pages-icon-info.power-range {
    background-position-x: -96px;
}


.pages-center {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
}

.pages-subtitle {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
    color: #808080;
}

.pages-title {
    font-size: 59px;
    font-weight: bold;
    padding-bottom: 10px;
    color: #223C4D;
}

.pages-title.blue {
    color: #6EC1E4;
}

.pages-title-space {
    height: 60px;
}

.pages-con-group {
    border-bottom: 1px solid #ff0000;
    margin-bottom: 30px;
}

.pages-con-list .pages-con-group:last-child {
    border-bottom: 0 none;
    margin-bottom: 0;
}

.pages-con-group-title {
    font-size: 48px;
    font-weight: bold;
    padding-bottom: 20px;
}

.pages-con-group-mark {
    font-size: 20px;
    color: #7a7a7a;
    line-height: 1.7;
    padding-bottom: 20px;
}

.pages-con-group-info {
    font-size: 20px;
    line-height: 1.7;
    padding-bottom: 20px;
}

.pages-con-group-info .item {
    display: flex;
    align-items: center;
}

.pages-con-group-info .item .pages-icon-info {
    margin-right: 10px;
    flex: none;
}

.pages-con-group-text {
    font-size: 20px;
    padding-bottom: 20px;
    line-height: 1.7;
    word-break: keep-all;
}

.pages-con-group-text a {
    color: #000;
}

.pages-con-group-text .text-italic {
    font-style: italic;
}

.pages-con-group-text .text-bold {
    font-weight: bold;
}

.pages-con-group-text .text-underline {
    text-decoration: underline;
}

.pages-con-group-text .text-color-gray {
    color: #7a7a7a;
}

.pages-con-group-text ul {
    padding-left: 50px;
}

.pages-con-group-text ul li {
    list-style: disc;
}

.pages-con-group-product {
    width: 50%;
    padding-bottom: 40px;
}

.pages-con-group-product .pages-con-group-mark {
    padding-bottom: 0;
}

@media all and (max-width: 768px) {
    .pages-con-group-product {
        width: auto;
    }
}

.pages-con-group-product-item {
    padding-bottom: 20px;
}

.pages-con-group-product .pages-con-group-product-item:last-child {
    padding-bottom: 0;
}

.pages-con-group-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.pages-con-group-product-col {
    width: calc(50% - 10px);
}

.pages-con-group-product-col .pages-con-group-image {
    text-align: center;
}

.pages-con-group-product-col .pages-con-group-image img {
    width: auto;
    max-width: 100%;
}

@media all and (max-width: 768px) {
    .pages-con-group-product-row {
        display: block;
    }

    .pages-con-group-product-col {
        width: auto;
    }

    .pages-con-group-product-col .pages-con-group-image {
        padding-bottom: 20px;
    }
}

.pages-con-group-image {
    font-size: 0;
}

.pages-con-group-image img {
    width: 100%;
}


.pages-con-group-images {
    display: flex;
    justify-content: space-between;
}

.pages-con-group-images .item {
    width: calc(50% - 10px);
}

.pages-txt-group {
    padding-bottom: 60px;
}

.pages-txt-list .pages-txt-group:last-child {
    padding-bottom: 0;
}


.pages-con-group-photo {
    padding-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
}

.pages-con-group-photo .item {
    width: calc(25% - 9px);
    position: relative;
    cursor: pointer;
    margin-right: 12px;
    padding-bottom: 12px;
}

.pages-con-group-photo .item:nth-child(4n + 0) {
    margin-right: 0;
}

.pages-con-group-photo .item svg {
    width: 100%;
}

.pages-con-group-photo .item .box {
    background-size: cover;
    position: relative;
}

.pages-con-group-photo .item .box:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0;
    transition: opacity 0.5s;
}

.pages-con-group-photo .item .box:hover:before {
    opacity: 0.5;
}

@media all and (min-width: 801px) {
    .pages-con-group-photo.pages-con-group-photo7 .item:nth-child(5),
    .pages-con-group-photo.pages-con-group-photo7 .item:nth-child(6),
    .pages-con-group-photo.pages-con-group-photo7 .item:nth-child(7) {
        width: calc(33.333% - 8px);
    }

    .pages-con-group-photo.pages-con-group-photo7 .item:nth-child(7) {
        margin-right: 0;
    }
}

@media all and (max-width: 800px) {
    .pages-con-group-photo .item {
        width: calc(33.333% - 6px);
        margin-right: 9px;
        padding-bottom: 9px;
    }

    .pages-con-group-photo .item:nth-child(4n + 0) {
        margin-right: 9px;
    }

    .pages-con-group-photo .item:nth-child(3n + 0) {
        margin-right: 0;
    }
}

@media all and (max-width: 600px) {
    .pages-con-group-photo {
        justify-content: space-between;
    }

    .pages-con-group-photo .item {
        width: calc(50% - 5px);
        padding-bottom: 10px;
        margin-right: 0;
    }

    .pages-con-group-photo .item:nth-child(4n + 0) {
        margin-right: 0;
    }
}

@media all and (max-width: 340px) {
    .pages-con-group-photo .item {
        width: 100%;
    }
}


.pop-photo {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

.pop-photo .mask {
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
}

.pop-photo .wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.pop-photo .wrap .head {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 15px 20px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 60;
}

.pop-photo .wrap .opera {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.pop-photo .wrap .opera .item {
    width: 18px;
    height: 18px;
    position: relative;
    padding-left: 25px;
}

.pop-photo .wrap .opera .item:first-child {
    padding-left: 0;
}

.pop-photo .wrap .opera .item .icon a {
    display: block;
    width: 18px;
    height: 18px;
    background: url("../images/pop-photo-opera.png") no-repeat left top / auto 200%;
}

.pop-photo .wrap .opera .item.full .icon a {
    background-position-x: 0;
}

.pop-photo .wrap .opera .item.full .icon a.on {
    background-position-x: -18px;
}

.pop-photo .wrap .opera .item.zoom .icon a {
    background-position-x: -36px;
}

.pop-photo .wrap .opera .item.zoom .icon a.on {
    background-position-x: -54px;
}

.pop-photo .wrap .opera .item.share {
    z-index: 60;
}

.pop-photo .wrap .opera .item.share .icon a {
    background-position-x: -72px;
}

.pop-photo .wrap .opera .item.close {
    z-index: 60;
}

.pop-photo .wrap .opera .item.close .icon a {
    background-position-x: -90px;
}

.pop-photo .wrap .opera .item .icon a:hover {
    background-position-y: bottom;
}

.pop-photo .wrap .opera .share-box {
    min-width: 200px;
    height: auto;
    background: #fff;
    position: absolute;
    right: -10px;
    top: 100%;
    margin-top: 20px;
    border-radius: 5px;
    display: none;
}

.pop-photo .wrap .opera .share-box:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: -5px;
    background: #fff;
}

.pop-photo .wrap .opera .share-box .list {
    position: relative;
    z-index: 20;
    padding: 14px 20px;
}

.pop-photo .wrap .opera .share-box .list .itm {
    padding: 6px 0;
}

.pop-photo .wrap .opera .share-box .list .itm a {
    display: flex;
    align-items: center;
}

.pop-photo .wrap .opera .share-box .list .itm a .img {
    font-size: 0;
    margin-right: 10px;
}

.pop-photo .wrap .opera .share-box .list .itm a .img img {
    width: 14px;
    height: 14px;
}

.pop-photo .wrap .opera .share-box .list .itm a .txt {
    font-size: 12px;
    color: #000;
}

.pop-photo .wrap .opera .share-mask {
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: none;
}


.pop-photo .wrap .swiper-button-prev {
    left: 0;
}

.pop-photo .wrap .swiper-button-next {
    right: 0;
}

.pop-photo .wrap .swiper-button-prev,
.pop-photo .wrap .swiper-button-next {
    width: 15%;
    height: 100%;
    z-index: 20;
    top: 0;
    background: none;
    margin: 0;
}

.pop-photo .wrap .swiper-button-prev i,
.pop-photo .wrap .swiper-button-next i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #DF1F26;
    border-radius: 50%;
    position: absolute;
    top: 200px;
}

.pop-photo .wrap .swiper-button-prev i:before,
.pop-photo .wrap .swiper-button-next i:before {
    content: '';
    display: block;
    width: 10px;
    height: 16px;
    background: url("../images/pop-photo-controller.png") no-repeat left center / 200% 100%;
}

.pop-photo .wrap .swiper-button-next i:before {
    background-position-x: right;
}

.pop-photo .wrap .swiper-button-prev i {
    left: 480px;
}

.pop-photo .wrap .swiper-button-next i {
    right: 480px;
}

.pop-photo .wrap .swiper-pagination {
    position: static;
    left: auto;
    bottom: auto;
    width: auto;
    font-size: 16px;
    color: #fff;
    z-index: 10;
}

.pop-photo .wrap .swiper-container,
.pop-photo .wrap .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.pop-photo .wrap .swiper-slide .img {
    font-size: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pop-photo .wrap .swiper-slide .img img {
    max-width: calc(100vw - 140px);
    max-height: calc(100vh - 140px);
}

.pop-photo .wrap .swiper-slide .txt {
    width: 100%;
    height: auto;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    box-sizing: border-box;
    padding: 15px 20px;
}

.pop-photo .wrap.zoom .head {
    background: rgba(0, 0, 0, 0.5);
}

.pop-photo .wrap.zoom .swiper-slide .txt {
    background: rgba(0, 0, 0, 0.5);
}

.pop-photo .wrap.share .opera .share-mask {
    display: block;
}

.pop-photo .wrap.share .opera .item.share .share-box {
    display: block;
}

.pop-photo {
    display: none;
}

.pop-photo .mask {
    opacity: 0;
    transition: opacity 0.2s;
}

.pop-photo .wrap {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
}

.pop-photo.show {
    display: block;
}

.pop-photo.show.anim .mask {
    opacity: 0.8;
}

.pop-photo.show.anim .wrap {
    opacity: 1;
    transform: scale(1);
}

@media all and (max-width: 1120px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 450px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 450px;
    }
}

@media all and (max-width: 1050px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 420px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 420px;
    }
}

@media all and (max-width: 1024px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 400px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 400px;
    }
}

@media all and (max-width: 960px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 350px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 350px;
    }
}

@media all and (max-width: 900px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 300px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 300px;
    }
}

@media all and (max-width: 768px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 250px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 250px;
    }

    .pop-photo .wrap .swiper-slide .img img {
        max-width: 100%;
    }
}

@media all and (max-width: 667px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 200px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 200px;
    }
}

@media all and (max-width: 567px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 150px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 150px;
    }
}

@media all and (max-width: 467px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 100px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 100px;
    }
}

@media all and (max-width: 367px) {
    .pop-photo .wrap .swiper-button-prev i {
        left: 50px;
    }

    .pop-photo .wrap .swiper-button-next i {
        right: 50px;
    }
}


.compact-title {
    font-size: 39px;
    font-weight: bold;
    color: #223C4D;
}

.compact-subtitle {
    font-size: 29px;
    font-weight: bold;
    color: #223C4D;
}

.compact-type {
    font-size: 20px;
    font-weight: bold;
    color: #ff0000;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    line-height: 1.7;
}

.compact-main-info {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #223C4D;
    line-height: 1.7;
}

.compact-main-info a {
    color: #ff0000;
}

.compact-form {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 10px 0 10px;
}

.compact-form-title {
    background: #223C4D;
    border-radius: 10px;
    font-size: 24px;
    color: #fff;
    padding: 5px;
    text-align: center;
}

.compact-form-main {
    padding-top: 30px;
}

.compact-form-main .group {
    padding-top: 20px;
}

.compact-form-main .group .tit-box {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 4px;
}

.compact-form-main .group .tit-box .require {
    color: #ff0000;
}

.compact-form-main .group .inp-box {
    font-size: 0;
    width: 60%;
    position: relative;
}

.compact-form-main .group .inp-box input.inp {
    width: 100%;
    border: 0 none;
    border-bottom: 1px solid #ccc;
    background: #fff;
    box-sizing: border-box;
    height: 38px;
    font-size: 16px;
    color: #333;
}

.compact-form-main .group .inp-box select {
    width: 100%;
    height: 38px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 6px 25px 6px 10px;
    font-size: 16px;
    color: #333;
}

.compact-form-main .group .inp-box select {
    appearance: none;
    background: #ffffff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>") no-repeat right 10px top 60%;
}

.compact-form-main .group .check-box .item {
    padding-top: 5px;
    display: flex;
    align-items: center;
}

.compact-form-main .group .check-box .item:first-child {
    padding-top: 0;
}

.compact-form-main .group .check-box .item label {
    display: flex;
    align-items: center;
    line-height: 2;
}

.compact-form-main .group .check-box .item input {
    margin-right: 10px;
}





.compact-form-main .group .check-box .check-group {
    padding-top: 5px;
    display: flex;
    align-items: center;
}

.compact-form-main .group .check-box .check-group:first-child {
    padding-top: 0;
}

.compact-form-main .group .check-box .check-group label {
    display: flex;
    align-items: center;
    line-height: 2;
}

.compact-form-main .group .check-box .check-group input {
    margin-right: 10px;
}



.compact-form-main .group .tip-box {
    font-size: 12px;
    color: #990000;
    padding-top: 10px;
}

.compact-form-main .group .btn-box {
    font-size: 0;
}

.compact-form-main .group .btn-box input.btn {
    padding: 10px 15px;
    background: #eee;
    border: 1px solid #ddd;
    font-size: 20px;
    color: #000;
    cursor: pointer;
}

.compact-form-main .group .btn-box input.btn:hover {
    background: #ddd;
    border-color: #ccc;
}

.compact-form-main .group .yzm-box {
    position: absolute;
    right: 0;
    top: 0;
}

.compact-form-main .group .yzm-box img {
    width: 80px;
    height: 32px;
    cursor: pointer;
}

@media all and (max-width: 600px) {
    .compact-form-main .group .inp-box {
        width: auto;
    }
}


.compact-head {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 10px;
}

.compact-head .compact-title {
    padding-bottom: 20px;
}

.compact-head .compact-subtitle {
    padding-bottom: 40px;
}

.compact-border {
    border: 3px dotted #000;
    border-radius: 10px;
}

.compact-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compact-main-con {
    width: calc(45% - 10px);
}

.compact-main-con .compact-main-info {
    padding-top: 70px;
}

.compact-main-img {
    width: calc(40% - 10px);
}

.compact-main-img img {
    width: 100%;
}

@media all and (max-width: 768px) {
    .compact-main {
        display: block;
    }

    .compact-main-con {
        width: auto;
    }

    .compact-main-img {
        width: auto;
        padding-top: 70px;
    }
}


.compact-divider {height: 2px; background: #CF1924;}

.compact-main-more {text-align: center; padding: 10px;}
.compact-main-more .icon {font-size: 0;}
.compact-main-more .icon img {width: 50px;}
.compact-main-more .button {padding-top: 30px;}
.compact-main-more .button a {display: inline-block; padding: 12px 24px; background: #CF1924; font-size: 14px; color: #fff; line-height: 1; border-radius: 3px; font-weight: 600;}




.pages-toggle-content {
    border: 1px solid #d5d8dc;
}

.pages-toggle-content .group {
    border-bottom: 1px solid #d5d8dc;
}

.pages-toggle-content .group:last-child {
    border-bottom: 0 none;
}

.pages-toggle-content .group .title {
    padding: 15px 20px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.pages-toggle-content .group .title i {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
    flex: none;
    margin-right: 10px;
}

.pages-toggle-content .group .title i:before,
.pages-toggle-content .group .title i:after {
    content: '';
    background: #000;
    border-radius: 2px;
    position: absolute;
}

.pages-toggle-content .group .title i:before {
    width: 18px;
    height: 4px;
    top: 50%;
    margin-top: -2px;
}

.pages-toggle-content .group .title i:after {
    width: 4px;
    height: 18px;
    left: 50%;
    margin-left: -2px;
}

.pages-toggle-content .group .content {
    border-top: 1px solid #d5d8dc;
    padding: 15px 20px;
    display: none;
}

.pages-toggle-content .group.show .title i:after {
    display: none;
}


.pages-switch .hd {
    display: flex;
}

.pages-switch .hd .item {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #DF1F26;
    cursor: pointer;
}

.pages-switch .hd .item.on {
    border: 2px solid #DF1F26;
    border-bottom: 0 none;
}

.pages-switch .bd {
    border: 2px solid #DF1F26;
    border-top: 0 none;
}

.pages-switch .bd .info-list {
    display: none;
}

.pages-switch .bd .info-list.show {
    display: block;
}

.pages-switch-title {
    padding: 10px;
    font-size: 20px;
    border-top: 2px solid #DF1F26;
    font-weight: bold;
    display: none;
    cursor: pointer;
}

.pages-switch-block {
    padding: 20px;
    display: none;
}

.pages-switch-block.show {
    display: block;
}

.pages-switch-content {
    font-size: 20px;
    line-height: 1.7;
}

.pages-switch-content.align-center {
    text-align: center;
}

.pages-switch-content .text-bold {
    font-weight: bold;
}

.pages-switch-content a {
    color: #000;
}

.pages-switch-contact {
    padding-top: 1.5em;
    text-align: center;
}

.pages-switch-tit {
    font-size: 24px;
    font-weight: bold;
}

.pages-switch-btn {
    padding-top: 1em;
    display: flex;
    justify-content: center;
}

.pages-switch-btn a {
    display: flex;
    height: 66px;
    align-items: center;
    background: #000;
    border: 2px solid #000;
    color: #fff;
    font-size: 20px;
    padding: 0 30px;
}

.pages-switch-btn a:hover {
    background: #fff;
    color: #000;
}

@media all and (max-width: 768px) {
    .pages-switch .hd {
        display: none;
    }

    .pages-switch .bd .info-list {
        display: block;
    }

    .pages-switch-title {
        display: block;
    }

    .pages-switch-block {
        padding: 10px;
        border-top: 2px solid #DF1F26;
    }
}


.pages-files-title {
    border-bottom: 1px solid #DF1F26;
    padding-bottom: 30px;
}

.pages-files-title .name {
    font-size: 59px;
    font-weight: bold;
}

.pages-files-title .name.sub {
    font-size: 48px;
}

.pages-files-title .note {
    font-size: 20px;
    color: #7a7a7a;
    line-height: 1.7;
    padding-top: 20px;
}

.pages-files-list {
    padding-top: 30px;
    text-align: center;
}

.pages-files-list .td {
    padding: 10px;
    box-sizing: border-box;
    border-right: 2px solid #000;
    flex: 1;
    min-width: 0;
}

.pages-files-list .th,
.pages-files-list .tr {
    display: flex;
}

.pages-files-list .th .td:last-child,
.pages-files-list .tr .td:last-child {
    border-right: 0 none;
}

.pages-files-list .th {
    font-size: 32px;
    font-weight: bold;
}

.pages-files-list .tr {
    font-size: 20px;
    line-height: 1.7;
    color: #7a7a7a;
}

.pages-files-list .tr a {
    color: #000;
}

.pages-files-list .tr a.text-underline {
    text-decoration: underline;
}

.pages-files-list .tr a.image-download {
    display: inline-block;
    font-size: 0;
}

.pages-files-list .tr a.image-download img {
    width: 40px;
}

@media all and (max-width: 768px) {
    .pages-files-list {
        padding-top: 0;
    }

    .pages-files-list .td {
        border-right: 0 none;
        padding: 10px 0;
    }

    .pages-files-list .th {
        display: none;
    }

    .pages-files-list .tr {
        display: block;
        border-bottom: 1px solid #000;
        padding: 20px 0;
    }

    .pages-files-list .tr:last-child {
        border-bottom: 0 none;
    }
}


.pages-about {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 10px;
}

.pages-about-title {
    text-align: center;
    font-size: 59px;
    font-weight: bold;
    padding: 70px 0;
}

.pages-about-group {
    display: flex;
    justify-content: space-between;
    padding-top: 140px;
}

.pages-about-main .pages-about-group:first-child {
    padding-top: 0;
}

.pages-about-img {
    width: calc(50% - 10px);
    order: 0;
    font-size: 0;
}

.pages-about-img img {
    width: 100%;
    border-radius: 0 0 0 200px;
}

.pages-about-con {
    width: calc(50% - 10px);
    order: 1;
}

.pages-about-main .pages-about-group:nth-child(even) .pages-about-img {
    order: 1;
}

.pages-about-main .pages-about-group:nth-child(even) .pages-about-img img {
    border-radius: 0 0 200px 0;
}

.pages-about-main .pages-about-group:nth-child(even) .pages-about-con {
    order: 0;
}

.pages-about-tit {
    font-size: 48px;
    font-weight: bold;
    border-bottom: 1px solid #DF1F26;
    padding-bottom: 30px;
}

.pages-about-txt {
    padding-top: 35px;
}

.pages-about-brochures {
    padding-top: 140px;
}

@media all and (max-width: 768px) {
    .pages-about-group {
        display: block;
    }

    .pages-about-img {
        width: auto;
        padding-top: 20px;
        text-align: center;
    }

    .pages-about-img img {
        max-width: 606px
    }

    .pages-about-con {
        width: auto;
    }
}

@media all and (max-width: 640px) {
    .pages-about-tit {
        font-size: 36px;
    }
}


.pages-certificates {
    max-width: 1120px;
    margin: 0 auto;
    padding: 70px 10px 0 10px;
}

.pages-service {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
}

.pages-service-main {
    padding-top: 20px;
}

.pages-contact {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 10px 0 10px;
}

.pages-contact-main {
    padding-top: 80px;
}

.pages-contact-video {
    padding-top: 80px;
    font-size: 0;
}

.pages-contact-video video {
    width: 100%;
}


.pages-terms {
    max-width: 1120px;
    margin: 0 auto;
    padding: 70px 10px 0 10px;
}


.pages-performance-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pages-performance-col {
    width: calc(50% - 15px);
    display: none;
}

.pages-performance-col:nth-child(1),
.pages-performance-col:nth-child(2),
.pages-performance-col:nth-child(3),
.pages-performance-col:nth-child(4) {
    display: block;
}


.pages-performance-more {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.pages-performance-more a {
    display: block;
    padding: 12px 35px;
    border: 2px solid #000;
    color: #000;
    font-size: 12px;
    line-height: 1;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.2s;
}

.pages-performance-more a:before {
    content: 'EXPAND';
}

.pages-performance-more a:hover {
    background: #000;
    color: #fff;
}


.pages-performance-product .pages-con-group-product {
    width: 100%;
}

.pages-performance-product.show .pages-performance-col {
    display: block;
}

.pages-performance-product.show .pages-performance-more a:before {
    content: 'RETRACT';
}

@media all and (max-width: 768px) {
    .pages-performance-col {
        width: 100%;
    }
}


.pop-verify {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
}

.pop-verify.show {
    display: block;
}

.pop-verify .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}

.pop-verify .wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pop-verify .main {
    width: 300px;
    height: auto;
    background: #fff;
    position: relative;
    z-index: 20;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 5px;
}

.pop-verify .main .title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.pop-verify .main .close {
    position: absolute;
    right: 10px;
    top: 10px;
}

.pop-verify .main .close a {
    display: block;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
}

.pop-verify .main .close a:before,
.pop-verify .main .close a:after {
    content: '';
    display: block;
    background: #999;
    position: absolute;
}

.pop-verify .main .close a:before {
    width: 15px;
    height: 1px;
    left: 0;
    top: 7px;
}

.pop-verify .main .close a:after {
    width: 1px;
    height: 15px;
    left: 7px;
    top: 0;
}

.pop-verify .main .text {
    display: flex;
    align-items: center;
    padding-top: 15px;
}

.pop-verify .main .text .box {
    font-size: 0;
    flex: 1;
    min-width: 0;
}

.pop-verify .main .text .box input.inp {
    width: 100%;
    height: 36px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 0 1em;
    font-size: 14px;
    color: #333;
}

.pop-verify .main .text .img {
    font-size: 0;
    padding-left: 10px;
}

.pop-verify .main .text .img img {
    height: 36px;
}

.pop-verify .main .button {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pop-verify .main .button input.btn {
    display: block;
    width: 100%;
    height: 40px;
    background: #223C4D;
    border: 0 none;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
}