@charset "UTF-8";
@media screen and (min-width:1200px) {
    .page-cate {
        position: fixed;
        top: 70px;
        width: 94%;
        max-width: 1200px;
        z-index: 9;
        display: flex;
        justify-content: space-between;
        transition: .4s;
    }
    .page-cate.fixed {
        background-color: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        top: 0;
    }
    .page-cate .item {
        position: relative;
        height: 125px;
        width: 12%;
        padding: 10px;
        border: 1px solid rgb(211, 209, 209);
        max-width: 125px;
    }
    .page-cate .item>a {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
    }
    .page-cate.fixed .item {
        background: rgba(225, 225, 225, 0.3);
    }
    .page-cate .item.on {
        background: rgba(230, 242, 253, 0.5);
        border: 1px solid rgba(230, 242, 253, 0.5);
    }
    .page-cate .item .text h5 {
        font-size: 16px;
        color: rgba(0, 0, 0);
    }
    .page-cate .item .text h6 {
        color: rgba(0, 0, 0, 0.88);
        font-size: 12px;
        margin-top: 5px;
    }
    .page-cate .item .pic {
        width: 35px;
        position: absolute;
        right: 2px;
        bottom: -2px;
    }
    .page-cate .item.all .pic {
        right: 6px;
        bottom: 8px;
    }
    .page-product {
        overflow: hidden;
        clear: both;
    }
    .page-product .list {
        display: grid;
        column-gap: 3%;
        grid-template-columns: repeat(4, 22.75%);
        margin-top: 160px;
        border-top: solid rgba(68, 68, 68, .31) 2px;
        padding-top: 40px;
        transition: .4s;
    }
    .page-product .list .item {
        margin-bottom: 30px;
    }
    .page-product .list .item .text .top {
        display: flex;
        align-items: center;
    }
    .page-product .list .item .text .top h4 {
        font-size: 23px;
        color: #000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .page-product .list .item .text .top span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background-color: #deecd8;
        color: #2f8c00;
        padding: 4px;
        font-size: 12px;
        border-radius: 4px;
        max-width: 100px;
    }
    .page-product .list .item .text .top .orange span {
        color: rgb(217, 110, 0);
        background: rgb(239, 230, 222);
    }
    .page-product .list .item .text .top .blue span {
        color: rgb(0, 84, 223);
        background: rgb(226, 231, 240);
    }
    .page-product .list .item .text p {
        color: rgba(0, 0, 0, 0.85);
        font-size: 16px;
        margin-top: 6px;
        margin-bottom: 30px;
    }
    .page-product .list .item .pic {
        background: #eee;
        margin-bottom: 18px;
        overflow: hidden;
        border: 1px solid #ddd;
    }
    .page-product .list .item .pic img {
        transition: transform 0.3s ease 0s, z-index 0.3s
    }
    .page-product .list .item:hover .pic img {
        transform: scale(1.1);
    }
    .page-product-content {
        overflow: hidden;
        clear: both;
    }
    .page-product-content .main {
        margin-top: 160px;
        border-top: solid rgba(68, 68, 68, .31) 2px;
        padding-top: 40px;
        transition: .4s;
    }
    .page-product-content .main>h4 {
        color: rgba(0, 0, 0, 0.85);
        font-size: 32px;
        text-align: center;
        margin-bottom: 40px;
    }
    .page-product-content .main .pic {
        max-width: 625px;
        margin: auto;
        background: #eee;
        border: 1px solid #ddd;
    }
    .page-product-content .main .content {
        max-width: 960px;
        margin: auto;
        margin-top: 40px;
    }
    .page-product-content .main .content p {
        color: rgba(0, 0, 0, 0.85);
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .page-news {
        overflow: hidden;
        clear: both;
    }
    .page-news .list {
        margin-bottom: 40px;
    }
    .page-news .list .item {
        padding: 23px 0;
        border-bottom: 1px solid #eee;
    }
    .page-news .list .item:last-child {
        border-bottom: none;
    }
    .page-news .list .item>a {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .page-news .list .item .pic {
        width: 318px;
        overflow: hidden;
        position: relative;
    }
    .page-news .list .item .pic .time {
        width: 76px;
        height: 58px;
        position: absolute;
        bottom: 27px;
        left: 0;
        z-index: 9;
        background: rgba(49, 49, 49, 0.85);
        text-align: center;
        color: #fff;
    }
    .page-news .list .item .pic .time .d {
        font-size: 24px;
        margin-top: 5px;
    }
    .page-news .list .item .text {
        width: calc(100% - 368px);
    }
    .page-news .list .item .text h5 {
        font-size: 24px;
        color: rgba(0, 0, 0, 0.9);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .page-news .list .item .text p {
        color: rgba(0, 0, 0, 0.65);
        line-height: 22px;
        margin: 18px 0 45px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }
    .page-news .list .item .text .more {
        color: rgba(0, 0, 0, 0.95);
        display: flex;
        align-items: center;
    }
    .page-news .list .item .text .more i {
        margin-right: 10px;
        font-size: 16px;
        transition: .4s;
        color: rgba(0, 0, 0, 0.65);
    }
    .page-news .list .item:hover .text .more i {
        margin-right: 20px;
    }
    .page-banner {
        height: 318px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
    }
    .page-banner h2 {
        font-size: 42px;
        text-transform: uppercase;
    }
    .page-news-cont {
        overflow: hidden;
        clear: both;
    }
    .page-news-cont .container {
        max-width: 1000px;
    }
    .page-news-cont .top-title {
        text-align: center;
        margin-bottom: 30px;
    }
    .page-news-cont .top-title h2 {
        font-size: 32px;
        text-align: center;
        color: rgba(0, 0, 0, 0.85);
        margin-bottom: 24px;
    }
    .page-news-cont .top-title .note {
        color: rgba(0, 0, 0, 0.45);
    }
    .page-news-cont .top-title .note span {
        margin: 0 6px;
    }
    .page-news-cont .content p {
        line-height: 24px;
        color: rgba(0, 0, 0, 0.85);
        margin-bottom: 16px;
    }
    .banner-about {
        height: 85vh;
        position: relative;
    }
    .banner-about .main {
        display: none;
    }
    .banner-about::after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: rgb(0, 0, 0, 0.4);
    }
    .page-about {
        margin-top: -55vh;
        position: relative;
        z-index: 9;
        padding-bottom: 80px;
    }
    .page-about .slogan {
        text-align: center;
        color: #fff;
        padding-bottom: 12vh;
    }
    .page-about .slogan .main h6 {
        font-size: 72px;
        letter-spacing: 2px;
    }
    .page-about .slogan .main p {
        font-size: 32px;
        margin-top: 30px;
    }
    .page-about .company>.container {
        background: #fff;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        box-shadow: 0 12px 24px #8c8c8c33;
    }
    .page-about .company>.container .text,
    .page-about .company>.container .pic {
        width: 50%;
        position: relative;
    }
    .page-about .company>.container .text {
        padding: 3.6vw;
    }
    .page-about .title {
        position: relative;
        font-size: 40px;
        padding-bottom: 24px;
        margin-bottom: 24px;
        color: rgba(0, 0, 0, 0.85);
    }
    .page-about .en-title {
        width: 100%;
        height: 125px;
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(0deg, #f4f8ff, #e1e6f0);
        border: 1px solid #ffffff;
    }
    .page-about .en-title span {
        background-image: linear-gradient(270deg, #0000000d, #00000047);
        font-size: 50px;
        color: transparent;
        background-clip: text;
    }
    .page-about .title::after {
        content: '';
        width: 64px;
        height: 4px;
        background-color: rgba(0, 0, 0, 0.85);
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .page-about .company .text .content {
        padding-bottom: 110px;
    }
    .page-about .company .text .content p {
        color: rgba(0, 0, 0, 0.85);
        line-height: 22px;
        margin-bottom: 15px;
    }
    .page-about .company>.container .pic .location {
        width: 90%;
        height: 55px;
        background: #fff;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        display: flex;
        align-items: center;
    }
    .page-about .company>.container .pic .location i {
        width: 16px;
        margin: 0 16px;
        opacity: 0.65;
        color: rgba(0, 0, 0, 0.88);
    }
    .page-about .company>.container .pic .location p {
        color: rgba(0, 0, 0, 0.88);
    }
    .page-about .company>.container .pic .address {
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0;
        height: 125px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        background: rgb(255, 255, 255, .5);
        backdrop-filter: blur(8px);
    }
    .page-about .company>.container .pic .address h6 {
        font-size: 18px;
        margin-bottom: 9px;
    }
    .page-about .company>.container .pic .address p {
        color: rgba(0, 0, 0, 0.85);
        line-height: 22px;
    }
    .page-about .culture {
        margin: 70px 0;
    }
    .page-about .culture>.container {
        background: #fff;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        box-shadow: 0 12px 24px #8c8c8c33;
    }
    .page-about .culture .text,
    .page-about .culture .pic {
        width: 50%;
        position: relative;
    }
    .page-about .culture .text {
        padding: 3.6vw;
    }
    .page-about .culture .pic img {
        width: 100%;
    }
    .page-about .culture .text .cont {
        padding-top: 10px;
    }
    .page-about .culture .text .cont .item h6 {
        font-size: 21px;
        margin-bottom: 9px;
        color: #121212;
    }
    .page-about .culture .text .cont .item p {
        font-size: 15px;
        margin-bottom: 24px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 20px;
    }
    .page-about .contact>.container {
        background: #fff;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        box-shadow: 0 12px 24px #8c8c8c33;
    }
    .page-about .contact>.container .main,
    .page-about .contact>.container .book {
        width: 50%;
        position: relative;
        padding: 3.6vw;
    }
    .page-about .contact>.container .main {
        background: linear-gradient(0deg, #f4f8ff, #e1e6f0);
    }
    .page-about .contact>.container .main .list {
        padding-top: 20px;
    }
    .page-about .contact>.container .main .list .item h6 {
        font-size: 24px;
        color: rgba(0, 0, 0, 0.88);
        margin-bottom: 26px;
    }
    .page-about .contact>.container .main .list .item p {
        font-size: 18px;
        color: rgba(0, 0, 0, 0.88);
        line-height: 30px;
    }
    .page-about .contact>.container .book form {
        padding-top: 10px;
    }
    .page-about .contact>.container .book form .item {
        margin-bottom: 28px;
    }
    .page-about .contact>.container .book form .item input {
        height: 45px;
        width: 100%;
        padding: 0 16px;
        border: 1px solid rgba(0, 0, 0, 0.65);
    }
    .page-about .contact>.container .book form .item textarea {
        width: 100%;
        padding: 16px;
        height: 124px;
    }
    .page-about .contact>.container .book form .bnt input {
        width: 198px;
        height: 48px;
        background: #191919;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        color: #fff;
        font-size: 15px;
        cursor: pointer;
    }
    .page-manual .list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: initial;
        padding: 0;
        margin-top: 0;
        border: none;
    }
    .page-manual .list .item {
        width: 48.5%;
        background: #eee;
        padding: 20px 24px;
    }
    .page-manual .list .item>a {
        display: flex;
    }
    .page-manual .list .item>a .pic {
        width: 38%;
        max-width: 200px;
        margin-bottom: 0;
        border: none;
    }
    .page-manual .list .item>a .text {
        width: 60%;
        max-width: 280px;
        margin-left: 1.6vw;
        position: relative;
    }
    .page-manual .list .item>a .text .top {
        margin-top: 20px;
    }
    .page-manual .list .item>a .text .top h4 {
        white-space: initial;
        overflow: initial;
        text-overflow: ellipsis;
        line-height: 32px;
    }
    .page-manual .list .item>a .text .top h4 span {
        position: relative;
        bottom: 4px;
    }
    .page-manual .list .item>a .text .top h4 .orange {
        color: rgb(217, 110, 0);
        background: rgb(239, 230, 222);
    }
    .page-manual .list .item>a .text .top h4 .blue {
        color: rgb(0, 84, 223);
        background: rgb(226, 231, 240);
    }
    .page-manual .list .item>a .text .bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #666;
        border-radius: 50px;
        font-size: 16px;
        width: 128px;
        height: 38px;
        color: rgba(0, 0, 0, 0.88);
        position: absolute;
        bottom: 3vh;
        left: 0;
    }
    .page-manual-content .main {
        margin-top: 0;
        border-top: none;
        padding-top: 0;
    }
    .page-manual-content .main .top {
        display: flex;
    }
    .page-manual-content .main .top .pic {
        background: none;
        margin: initial;
        max-width: 310px;
        margin-right: 2vw;
    }
    .page-manual-content .main .top .text h4 {
        font-size: 32px;
        color: #000;
        margin-bottom: 12px;
    }
    .page-manual-content .main .top .text h4 .orange {
        color: rgb(217, 110, 0);
        background: rgb(239, 230, 222);
    }
    .page-manual-content .main .top .text h4 .blue {
        color: rgb(0, 84, 223);
        background: rgb(226, 231, 240);
    }
    .page-manual-content .main .top .text h4 span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background-color: #deecd8;
        color: #2f8c00;
        margin-left: 12px;
        padding: 4px;
        font-size: 12px;
        border-radius: 4px;
        max-width: 100px;
        position: relative;
        bottom: 8px;
    }
    .page-manual-content .main .top .text p {
        color: rgba(0, 0, 0, 0.85);
        font-size: 16px;
        margin-bottom: 32px;
    }
    .page-manual-content .main .top .text>a {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        font-size: 15px;
        width: 150px;
        height: 40px;
        color: #fff;
        background: #000;
    }
    .page-manual-content .main .content {
        max-width: 100%;
    }
    .page-manual-content .main .content .item table {
        border-collapse: collapse;
        border-spacing: 0;
        width: max-content;
        min-width: 50%;
    }
    .page-manual-content .main .content .item table th,
    .page-manual-content .main .content .item table td {
        padding: 10px;
        border: 1px solid #000 !important;
        vertical-align: middle;
        line-height: 30px;
        font-weight: normal;
        color: rgba(0, 0, 0, 0.88);
    }
    .page-manual-content .main .content .item table span {
        font-size: 16px;
        color: rgba(0, 0, 0, 0.88);
    }
    .page-manual-content .main .content .item table p {
        margin-bottom: initial;
        color: rgba(0, 0, 0, 0.88);
    }
    .page-manual-content .main .content .item table b span {
        font-weight: bold;
    }
    .page-manual-content .main .content .item b {
        font-weight: bold;
        font-size: 16px;
    }
    .page-manual-content .main .content .item .tl {
        position: relative;
        margin: 32px 0;
        border-bottom: 1px solid rgba(0, 70, 133, 0.50);
    }
    .page-manual-content .main .content .item .tl h6 {
        background-image: linear-gradient(90deg, #92cbff 2%, #92cbff00 98%);
        font-size: 48px;
        font-family: Impact, Impact-Black;
        font-weight: Black;
        text-align: left;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }
    .page-manual-content .main .content .item .tl h5 {
        color: #004685;
        font-size: 24px;
        padding-left: 24px;
        position: absolute;
        bottom: 5px;
    }
}

@media screen and (min-width:320px) and (max-width:1199px) {
    .page-cate-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: .4rem;
    }
    .page-cate-wrapper::-webkit-scrollbar {
        height: .08rem;
    }
    .page-cate {
        display: inline-flex;
        flex-wrap: nowrap;
        gap: .2133rem;
    }
    .page-cate .item {
        position: relative;
        height: 2.1333rem;
        width: 2.1333rem;
        padding: .2133rem;
        border: 1px solid rgb(211, 209, 209);
        max-width: 2.1333rem;
    }
    .page-cate.fixed .item {
        background: rgba(225, 225, 225, 0.3);
    }
    .page-cate .item.on {
        background: rgba(230, 242, 253, 0.5);
        border: 1px solid rgba(230, 242, 253, 0.5);
    }
    .page-cate .item.all .text h5 {
        display: block;
        font-size: .32rem;
        margin-top: 0.1333rem;
    }
    .page-cate .item .text h5 {
        font-size: .3467rem;
        color: rgba(0, 0, 0);
        display: none;
    }
    .page-cate .item .text h6 {
        color: rgba(0, 0, 0, 0.88);
        font-size: .32rem;
        margin-top: .1333rem;
    }
    .page-cate .item .pic {
        width: .4rem;
        position: absolute;
        right: .2667rem;
        bottom: .1333rem;
    }
    .page-cate .item.all .pic {
        right: .1333rem;
        bottom: .1333rem;
        width: .64rem;
    }
    .page-product .list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 1.0667rem;
        transition: .4s;
    }
    .page-product .list .item {
        margin-bottom: .8rem;
        width: 48%;
        padding-bottom: .5867rem;
        position: relative;
    }
    .page-product .list .item .text .top {
        display: flex;
        align-items: center;
    }
    .page-product .list .item .text .top h4 {
        font-size: .5333rem;
        color: #000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .page-product .list .item .text .top .bq {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .page-product .list .item .text .top span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background-color: #deecd8;
        color: #2f8c00;
        padding: .1067rem;
        font-size: .32rem;
        border-radius: .1067rem;
        max-width: 2.6667rem;
    }
    .page-product .list .item .text .top .orange span {
        color: rgb(217, 110, 0);
        background: rgb(239, 230, 222);
    }
    .page-product .list .item .text .top .blue span {
        color: rgb(0, 84, 223);
        background: rgb(226, 231, 240);
    }
    .page-product .list .item .text p {
        color: rgba(0, 0, 0, 0.85);
        font-size: .3467rem;
        margin: .1333rem 0;
    }
    .page-product .list .item .pic {
        background: #eee;
        margin-bottom: .48rem;
        overflow: hidden;
        border: 1px solid #ddd;
    }
    .page-product .list .item .pic img {
        transition: transform 0.3s ease 0s, z-index 0.3s
    }
    .page-product .list .item:hover .pic img {
        transform: scale(1.1);
    }
    .page-product-content .main {
        padding-top: 1.0667rem;
        transition: .4s;
    }
    .page-product-content .main>h4 {
        color: rgba(0, 0, 0, 0.85);
        font-size: .64rem;
        text-align: center;
        margin-bottom: .48rem;
    }
    .page-product-content .main .pic {
        max-width: 625px;
        margin: auto;
        background: #eee;
        border: 1px solid #ddd;
    }
    .page-product-content .main .content {
        margin-top: .5333rem;
    }
    .page-product-content .main .content p {
        color: rgba(0, 0, 0, 0.85);
        line-height: .5867rem;
        margin-bottom: .3733rem;
    }
    .page-manual-content .main .content .item table {
        border-collapse: collapse;
        border-spacing: 0;
        min-width: 100%;
    }
    .page-manual-content .main .content .item table th,
    .page-manual-content .main .content .item table td {
        padding: .0533rem;
        border: 1px solid #000 !important;
        vertical-align: middle;
        font-weight: normal;
        color: rgba(0, 0, 0, 0.88);
    }
    .page-manual-content .main .content .item table span {
        color: rgba(0, 0, 0, 0.88);
    }
    .page-manual-content .main .content .item table p {
        margin-bottom: initial;
        color: rgba(0, 0, 0, 0.88);
    }
    .page-manual-content .main .content .item table b span {
        font-weight: bold;
    }
    .page-news .list {
        margin-bottom: 1.0667rem;
    }
    .page-news .list .item {
        padding: .5867rem 0;
        border-bottom: 1px solid #eee;
    }
    .page-news .list .item:nth-child(1) {
        padding-top: 0;
    }
    .page-news .list .item .pic {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    .page-news .list .item .pic .time {
        width: 2.0267rem;
        height: 1.5467rem;
        position: absolute;
        bottom: .72rem;
        left: 0;
        z-index: 9;
        background: rgba(49, 49, 49, 0.85);
        text-align: center;
        color: #fff;
    }
    .page-news .list .item .pic .time .d {
        font-size: .64rem;
        margin-top: .1333rem;
    }
    .page-news .list .item .text {
        width: 100%;
    }
    .page-news .list .item .text h5 {
        font-size: .4267rem;
        color: rgba(0, 0, 0, 0.95);
        margin-top: .4rem;
    }
    .page-news .list .item .text p {
        color: rgba(0, 0, 0, 0.65);
        line-height: .5867rem;
        margin: .2133rem 0 .4267rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        font-size: .32rem;
    }
    .page-news .list .item .text .more {
        color: #999;
        display: flex;
        align-items: center;
    }
    .page-news .list .item .text .more i {
        margin-right: .1333rem;
        font-size: .3733rem;
        transition: .4s;
        color: #666;
    }
    .page-news .list .item:hover .text .more i {
        margin-right: 20px;
    }
    .page-news .wrap .container>.more a {
        width: 3.7867rem;
        height: 1.0667rem;
        background: #191919;
        line-height: 1.12rem;
        text-align: center;
        display: block;
        color: #fff;
        font-size: .3467rem;
        margin: auto;
        margin-top: .9333rem;
    }
    .page-banner {
        height: 4.48rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        background-size: 21.3333rem !important;
    }
    .page-banner h2 {
        font-size: .5867rem;
        text-transform: uppercase;
    }
    .page-news-cont .container {
        max-width: 1000px;
    }
    .page-news-cont .top-title {
        text-align: center;
        margin-bottom: .8533rem;
    }
    .page-news-cont .top-title h2 {
        line-height: .64rem;
        font-size: .4267rem;
        font-weight: 700;
        text-align: center;
        color: rgba(0, 0, 0, 0.85);
        margin-bottom: .32rem;
    }
    .page-news-cont .top-title .note {
        color: rgba(0, 0, 0, 0.45);
    }
    .page-news-cont .top-title .note span {
        margin: 0 .1333rem;
        font-size: .32rem;
    }
    .page-news-cont .content p {
        line-height: .64rem;
        color: rgba(0, 0, 0, 0.85);
        margin-bottom: .4267rem;
    }
    .banner-about {
        height: 5.3333rem;
        position: relative;
        background-size: 16.5333rem !important;
    }
    .banner-about .container {
        display: flex;
        align-items: center;
        height: 100%;
        text-align: center;
        justify-content: center;
        color: #fff;
        position: relative;
        z-index: 9;
    }
    .banner-about .container .main h6 {
        color: #fff;
        font-size: .64rem;
        margin-bottom: .1333rem;
    }
    .banner-about::after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: rgb(0, 0, 0, 0.4);
    }
    .page-about {
        padding: 1.2rem 0;
    }
    .page-about .slogan {
        display: none;
    }
    .page-about .company>.container {
        background: #fff;
    }
    .page-about .company>.container .text,
    .page-about .company>.container .pic {
        width: 100%;
        position: relative;
    }
    .page-about .title {
        position: relative;
        font-size: .5333rem;
        padding-bottom: .2667rem;
        margin-bottom: .5867rem;
        color: rgba(0, 0, 0, 0.85);
        font-weight: bold;
    }
    .page-about .en-title {
        display: none;
    }
    .page-about .title::after {
        content: '';
        width: .8rem;
        height: .0533rem;
        background-color: rgba(0, 0, 0, 0.85);
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .page-about .company .text .content p {
        color: rgba(0, 0, 0, 0.85);
        line-height: .5867rem;
        margin-bottom: .4rem;
    }
    .page-about .company>.container .pic {
        height: 9.2rem;
        box-shadow: 0 0.25rem 0.75rem #8c8c8c33;
    }
    .page-about .company>.container .pic .location {
        width: 92%;
        height: 1.12rem;
        background: #fff;
        position: absolute;
        left: 0;
        right: 0;
        top: 2.6667rem;
        margin: auto;
        display: flex;
        align-items: center;
    }
    .page-about .company>.container .pic .location i {
        width: .4267rem;
        margin: 0 .1333rem 0 .2133rem;
        opacity: 0.65;
    }
    .page-about .company>.container .pic .location p {
        font-size: .3467rem;
        color: rgba(0, 0, 0, 0.88);
    }
    .page-about .company>.container .pic .address {
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0;
        height: 2.4533rem;
        display: flex;
        align-items: center;
        padding: 0 .32rem;
        background: rgb(255, 255, 255, .9);
        /* backdrop-filter: blur(8px); */
    }
    .page-about .company>.container .pic .address h6 {
        font-size: .4267rem;
        margin-bottom: .16rem;
    }
    .page-about .company>.container .pic .address p {
        color: rgba(0, 0, 0, 0.85);
        line-height: .5333rem;
        font-size: .3467rem;
    }
    .page-about .culture {
        margin: .9333rem 0;
    }
    .page-about .culture>.container {
        background: #fff;
        box-shadow: 0 0.25rem 0.75rem #8c8c8c33;
    }
    .page-about .culture .text,
    .page-about .culture .pic {
        width: 100%;
        position: relative;
    }
    .page-about .culture .text {
        padding: .4267rem;
    }
    .page-about .culture .pic img {
        width: 100%;
    }
    .page-about .culture .text .cont {
        padding-top: .2667rem;
    }
    .page-about .culture .text .cont .item h6 {
        font-size: .4267rem;
        margin-bottom: .2667rem;
        color: rgba(0, 0, 0, 0.85);
        font-weight: bold;
    }
    .page-about .culture .text .cont .item p {
        margin-bottom: .64rem;
        color: rgba(0, 0, 0, 0.8);
        line-height: .5867rem;
    }
    .page-about .contact>.container {
        background: #fff;
        box-shadow: 0 0.25rem 0.75rem #8c8c8c33;
    }
    .page-about .contact>.container .main,
    .page-about .contact>.container .book {
        width: 100%;
        position: relative;
        padding: .4267rem;
    }
    .page-about .contact>.container .main {
        background: linear-gradient(0deg, #f4f8ff, #e1e6f0);
    }
    .page-about .contact>.container .main .list {
        padding-top: .5333rem;
    }
    .page-about .contact>.container .main .list .item h6 {
        font-size: .48rem;
        color: rgba(0, 0, 0, 0.88);
        margin-bottom: .32rem;
    }
    .page-about .contact>.container .main .list .item p {
        font-size: .3733rem;
        color: rgba(0, 0, 0, 0.65);
        line-height: .7467rem;
    }
    .page-about .contact>.container .book form {
        padding-top: .2667rem;
    }
    .page-about .contact>.container .book form .item {
        margin-bottom: .4267rem;
    }
    .page-about .contact>.container .book form .item input {
        height: 1.12rem;
        width: 100%;
        padding: 0 .4267rem;
        border: 1px solid #ddd;
    }
    .page-about .contact>.container .book form .item textarea {
        width: 100%;
        padding: .4267rem;
        height: 3.3067rem;
        border: 1px solid #ddd;
    }
    .page-about .contact>.container .book form .bnt input {
        width: 3.7867rem;
        height: 1.0667rem;
        background: #191919;
        border: none;
        text-align: center;
        display: block;
        color: #fff;
        font-size: .3467rem;
        margin: auto;
    }
    .page-manual .list {
        display: block;
        padding-top: 0;
    }
    .page-manual .list .item {
        width: 100%;
        background: #eee;
        padding: .32rem;
        margin-bottom: .32rem;
    }
    .page-manual .list .item>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .page-manual .list .item>a .pic {
        width: 2.8267rem;
        margin-bottom: 0;
        border: none;
    }
    .page-manual .list .item>a .text {
        width: 5.0667rem;
        position: relative;
    }
    .page-manual .list .item>a .text .top h4 {
        white-space: initial;
        overflow: initial;
        text-overflow: ellipsis;
        line-height: .64rem;
        font-size: .4rem;
    }
    .page-manual .list .item>a .text .top h4 span {
        position: relative;
        bottom: .0533rem;
    }
    .page-manual .list .item>a .text .top h4 .orange {
        color: rgb(217, 110, 0);
        background: rgb(239, 230, 222);
    }
    .page-manual .list .item>a .text .top h4 .blue {
        color: rgb(0, 84, 223);
        background: rgb(226, 231, 240);
    }
    .page-manual .list .item>a .text .bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #666;
        border-radius: 1.3333rem;
        width: 2.8333rem;
        height: .8533rem;
        color: rgba(0, 0, 0, 0.88);
        font-size: .32rem;
        margin-top: .1333rem;
    }
    .page-manual-content .main {
        padding-top: 0;
    }
    .page-manual-content .main .top {
        display: flex;
        justify-content: space-between;
    }
    .page-manual-content .main .top .pic {
        background: none;
        margin: initial;
        max-width: 3.5rem;
    }
    .page-manual-content .main .top .text {
        width: 5.0667rem;
    }
    .page-manual-content .main .top .text h4 {
        font-size: .4533rem;
        color: #000;
        margin-bottom: .2133rem;
        line-height: .64rem;
    }
    .page-manual-content .main .top .text h4 span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background-color: #deecd8;
        color: #2f8c00;
        margin-left: .32rem;
        padding: .1067rem;
        font-size: .32rem;
        border-radius: 4px;
        max-width: 2.6667rem;
        position: relative;
        bottom: .0533rem;
    }
    .page-manual-content .main .top .text p {
        color: rgba(0, 0, 0, 0.85);
        margin-bottom: .5333rem;
    }
    .page-manual-content .main .top .text>a {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 1.3333rem;
        font-size: .32rem;
        width: 2.6667rem;
        height: .8rem;
        color: #fff;
        background: #000;
        line-height: .8rem;
    }
    .page-manual-content .main .content {
        max-width: 100%;
    }
    .page-manual-content .main .content .item .tl {
        position: relative;
        margin: .5333rem 0;
        border-bottom: 1px solid rgba(0, 70, 133, 0.50);
    }
    .page-manual-content .main .content .item .tl h6 {
        background-image: linear-gradient(90deg, #92cbff 2%, #92cbff00 98%);
        font-size: .6933rem;
        font-weight: bold;
        text-align: left;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
        letter-spacing: -0.0533rem;
        padding-bottom: .0533rem;
    }
    .page-manual-content .main .content .item .tl h5 {
        color: #004685;
        font-size: .4267rem;
        padding-left: .64rem;
        position: absolute;
        bottom: .1333rem;
    }
}

@media screen and (min-width:1200px) and (max-width:1600px) {
    .wrap {
        width: calc(100% - 200px);
        float: right;
    }
    .page-cate {
        width: calc(100% - 265px);
    }
    .page-cate .item {
        width: 10%;
    }
    .page-cate .item .pic {
        width: 30px;
    }
    .index-about .main {
        align-items: initial;
    }
    .footer .main .right .nav {
        width: 48%;
    }
    .footer .main .right .contact p {
        font-size: 18px;
        line-height: 45px;
    }
}

@media screen and (min-width:1200px) and (max-width:1300px) {
    .page-manual .list .item>a .text .top h4 {
        line-height: 30px;
        font-size: 22px;
    }
    .page-manual .list .item {
        padding: 15px;
    }
    .container .index-title h3 {
        font-size: 68px;
    }
    .index-about .main .text h3 {
        font-size: 31px;
    }
    .footer .main .right .nav .item span {
        width: 30px;
    }
    .footer .main .right .nav .item a {
        font-size: 17px;
    }
    .footer .main .right .contact p {
        font-size: 16px;
        line-height: 32px;
    }
    .footer .main .left .text {
        margin-top: 22px;
    }
}